diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..f3de7319301c23eae40bdbc3ce9abfbcf8bfbbd8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,39 @@ +# List of untracked files to ignore + +### MATLAB ### +# Windows default autosave extension +*.asv + +# MATLAB project files +resources +Acme.prj + +# OSX / *nix default autosave extension +*.m~ + +# Compiled MEX binaries (all platforms) +*.mex* + +# Packaged app and toolbox files +*.mlappinstall +*.mltbx + +# Generated helpsearch folders +helpsearch*/ + +# Simulink code generation folders +slprj/ +sccprj/ + +# Matlab code generation folders +codegen/ + +# Simulink autosave extension +*.autosave + +# Simulink cache files +*.slxc + +#matlab data +*.mat + diff --git a/README.md b/README.md index e4f66bb6780acf6e04b5b7cd3bcd977a220fc6ea..30b56e743f4bd770cf2b51eeca032e8be72df3be 100644 --- a/README.md +++ b/README.md @@ -1,92 +1,3 @@ -# ACME public +# ACME -Accelerometer Models Extended: simulink package with the framework to simulate accelerometers for space-based missions, from GRACE-like to after LISA. - -## Getting started - -To make it easy for you to get started with GitLab, here's a list of recommended next steps. - -Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)! - -## Add your files - -- [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files -- [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command: - -``` -cd existing_repo -git remote add origin https://gitlab.aei.uni-hannover.de/arthur.reis/acme-public.git -git branch -M main -git push -uf origin main -``` - -## Integrate with your tools - -- [ ] [Set up project integrations](https://gitlab.aei.uni-hannover.de/arthur.reis/acme-public/-/settings/integrations) - -## Collaborate with your team - -- [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/) -- [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html) -- [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically) -- [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/) -- [ ] [Automatically merge when pipeline succeeds](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html) - -## Test and Deploy - -Use the built-in continuous integration in GitLab. - -- [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html) -- [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing(SAST)](https://docs.gitlab.com/ee/user/application_security/sast/) -- [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html) -- [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/) -- [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html) - -*** - -# Editing this README - -When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thank you to [makeareadme.com](https://www.makeareadme.com/) for this template. - -## Suggestions for a good README -Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information. - -## Name -Choose a self-explaining name for your project. - -## Description -Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors. - -## Badges -On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge. - -## Visuals -Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method. - -## Installation -Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection. - -## Usage -Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README. - -## Support -Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc. - -## Roadmap -If you have ideas for releases in the future, it is a good idea to list them in the README. - -## Contributing -State if you are open to contributions and what your requirements are for accepting them. - -For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self. - -You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser. - -## Authors and acknowledgment -Show your appreciation to those who have contributed to the project. - -## License -For open source projects, say how it is licensed. - -## Project status -If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers. +Accelerometer Models Extended: package with the framework to simulate accelerometers for space-based missions, from GRACE-like to after LISA. \ No newline at end of file diff --git a/core/AcmeBlock.m b/core/AcmeBlock.m new file mode 100644 index 0000000000000000000000000000000000000000..bd7fbf64a1e7be5f9110f9f5218585b3bf83ef00 --- /dev/null +++ b/core/AcmeBlock.m @@ -0,0 +1,47 @@ +classdef AcmeBlock + %ACMEBLOCK Summary of this class goes here + % Detailed explanation goes here + + properties + name + model + blockhandle + blocktype + parameters + end + + methods + function obj = AcmeBlock(name, model, parameters) + %ACMEBLOCK Construct an instance of this class + % Detailed explanation goes here + % receives from AcmeBlockType + obj.name = name; + obj.model = model; + %obj.blockhandle = 1; + obj.blockhandle = Simulink.findBlocks(model,'Name',name); + assert(~isempty(obj.blockhandle), "Could not find block '%s' in model '%s'", name, model); + + obj.parameters = parameters; + for iparm = 1:length(obj.parameters.name) + setBlockParm(obj,obj.parameters.name{iparm},... + obj.parameters.value{iparm}); + end + end + + function setBlockParm(obj,name,value) + s = ""; + if isnumeric(value) + if isequal(size(value),[1 1]) + s = num2str(value); + else + s = mat2str(value); + end + elseif isstring(value) + s = value; + end + set_param(obj.blockhandle,name,s); + %set_param_test(obj.blockhandle,name,s); + end + end +end + diff --git a/core/actuators/actParaPlates.png b/core/actuators/actParaPlates.png new file mode 100644 index 0000000000000000000000000000000000000000..767544ddea6642284091287d12656b0d55a91ec8 Binary files /dev/null and b/core/actuators/actParaPlates.png differ diff --git a/core/actuators/actParaPlates.slx b/core/actuators/actParaPlates.slx new file mode 100644 index 0000000000000000000000000000000000000000..41c91c24af4c6bf13adcf4380681d2655bc4327e Binary files /dev/null and b/core/actuators/actParaPlates.slx differ diff --git a/core/actuators/setActuatorParaPlates.m b/core/actuators/setActuatorParaPlates.m new file mode 100644 index 0000000000000000000000000000000000000000..86c26ab8d2701e13d8cc857a6f7689e860e964b9 --- /dev/null +++ b/core/actuators/setActuatorParaPlates.m @@ -0,0 +1,77 @@ +function blockHandle = setActuatorParaPlates(varargin)%model, block, Kp ,Ki ,Kd ,... + %Vp ,Vt ,eps0 ,faceArea ,gap) +%SETACTUATORPARAPLATES - Sets the initial parameters of a paralel plates +%actuator block. +%Sets the initial parameters of a paralel plates actuator block. The PID gains +%can be obtained with the tuning app +% +% Syntax: setActuatorParaPlates(Kp,Ki,Kd,Vp,Vt,eps0,faceArea,gap) +% +% Inputs: +% Kp - Proportional gain, double; +% Ki - Integral gain, double; +% Kd - Differential gain, double; +% Vp - Polarization voltage, double; +% Vt - sqrt of squares of the polarization and detection voltages; +% eps0 - Vacuum permittivity, F/m, double; +% faceArea - area of the plates, m^2, double; +% gap - nominal gap between the plates, m, double; +% +% See also: setSensParaPlates +% +% Author: Arthur Reis +% email: arthur.reis@aei.mpg.de +% Nov 2021; Last revision: 16.Feb.2022; + +% try to load from local json +% should be handle or name +if strcmp(varargin{1},'blockName') + blockName = varargin{2}; +elseif strcmp(varargin{1},'blockHandle') + blockName = get_param(varargin{2},'Name'); +end + +%if file exists +%blockName = get_param(varargin{1},'Name'); +%JSONFILE_name= sprintf(strcat(blockName,'.json')); +%fid=fopen(JSONFILE_name,'r'); +%raw = fread(fid,inf); +%str = char(raw'); +%j = jsondecode(str); +% parses existing json as defaults +% and allows updating + +p = inputParser; +addParameter(p, 'model' , ''); +addParameter(p, 'blockName', ''); +addParameter(p, 'Kp' , 0, @isnumeric); +addParameter(p, 'Ki' , 0, @isnumeric); +addParameter(p, 'Kd' , 0, @isnumeric); +addParameter(p, 'Vp' , 0, @isnumeric); +addParameter(p, 'Vt' , 0, @isnumeric); +addParameter(p, 'eps0' , 0, @isnumeric); +addParameter(p, 'faceArea' , 0, @isnumeric); +addParameter(p, 'gap' , 0, @isnumeric); +parse(p, varargin{:}); +j = p.Results; +js = jsonencode(j,'PrettyPrint',true); +%save p.Results as json +JSONFILE_name= sprintf(strcat(p.Results.blockName,'.json')); +fid=fopen(JSONFILE_name,'w'); +fprintf(fid, js); +fclose(fid); + + + +blockHandle = Simulink.findBlocks(j.model,'Name',j.blockName); +set_param(blockHandle, 'Kp' , num2str(j.Kp)); +set_param(blockHandle, 'Ki' , num2str(j.Ki)); +set_param(blockHandle, 'Kd' , num2str(j.Kd)); +set_param(blockHandle, 'Vp' , num2str(j.Vp)); +set_param(blockHandle, 'Vt' , num2str(j.Vt)); +set_param(blockHandle, 'eps0' , num2str(j.eps0)); +set_param(blockHandle, 'faceArea', num2str(j.faceArea)); +set_param(blockHandle, 'gap' , num2str(j.gap)); + +end + diff --git a/core/actuators/setSinglePlate.m b/core/actuators/setSinglePlate.m new file mode 100644 index 0000000000000000000000000000000000000000..73cceb07d7429a1fd6d7d1920c13b91ce70011bb --- /dev/null +++ b/core/actuators/setSinglePlate.m @@ -0,0 +1,66 @@ +function blockHandle = setSinglePlate(varargin) +%SETACTUATORPARAPLATES - Sets the initial parameters of a paralel plates +%actuator block. +%Sets the initial parameters of a paralel plates actuator block. The PID gains +%can be obtained with the tuning app +% +% Syntax: setActuatorParaPlates(Kp,Ki,Kd,Vp,Vt,eps0,faceArea,gap) +% +% Inputs: +% Kp - Proportional gain, double; +% Ki - Integral gain, double; +% Kd - Differential gain, double; +% Vp - Polarization voltage, double; +% Vt - sqrt of squares of the polarization and detection voltages; +% eps0 - Vacuum permittivity, F/m, double; +% faceArea - area of the plates, m^2, double; +% gap - nominal gap between the plates, m, double; +% +% See also: setSensParaPlates +% +% Author: Arthur Reis +% email: arthur.reis@aei.mpg.de +% Nov 2021; Last revision: 16.Feb.2022; + +% try to load from local json +% should be handle or name +if strcmp(varargin{1},'blockName') + blockName = varargin{2}; +elseif strcmp(varargin{1},'blockHandle') + blockName = get_param(varargin{2},'Name'); +end + +%if file exists +%blockName = get_param(varargin{1},'Name'); +%JSONFILE_name= sprintf(strcat(blockName,'.json')); +%fid=fopen(JSONFILE_name,'r'); +%raw = fread(fid,inf); +%str = char(raw'); +%j = jsondecode(str); +% parses existing json as defaults +% and allows updating + +p = inputParser; +addParameter(p, 'model' , ''); +addParameter(p, 'blockName', ''); +addParameter(p, 'Vt' , 0, @isnumeric); +addParameter(p, 'eps0' , 0, @isnumeric); +addParameter(p, 'faceArea' , 0, @isnumeric); +addParameter(p, 'gap' , 0, @isnumeric); +parse(p, varargin{:}); +j = p.Results; +js = jsonencode(j,'PrettyPrint',true); +%save p.Results as json +JSONFILE_name= sprintf(strcat(p.Results.blockName,'.json')); +fid=fopen(JSONFILE_name,'w'); +fprintf(fid, js); +fclose(fid); + +blockHandle = Simulink.findBlocks(j.model,'Name',j.blockName); +set_param(blockHandle, 'Vt' , num2str(j.Vt)); +set_param(blockHandle, 'eps0' , num2str(j.eps0)); +set_param(blockHandle, 'faceArea', num2str(j.faceArea)); +set_param(blockHandle, 'gap' , num2str(j.gap)); + +end + diff --git a/core/actuators/setSinglePlate_Vsqr.m b/core/actuators/setSinglePlate_Vsqr.m new file mode 100644 index 0000000000000000000000000000000000000000..e32ceb26095fd01f45376475be0f9518cbbe02f6 --- /dev/null +++ b/core/actuators/setSinglePlate_Vsqr.m @@ -0,0 +1,66 @@ +function blockHandle = setSinglePlate_Vsqr(varargin) +%SETACTUATORPARAPLATES - Sets the initial parameters of a paralel plates +%actuator block. +%Sets the initial parameters of a paralel plates actuator block. The PID gains +%can be obtained with the tuning app +% +% Syntax: setActuatorParaPlates(Kp,Ki,Kd,Vp,Vt,eps0,faceArea,gap) +% +% Inputs: +% Kp - Proportional gain, double; +% Ki - Integral gain, double; +% Kd - Differential gain, double; +% Vp - Polarization voltage, double; +% Vt - sqrt of squares of the polarization and detection voltages; +% eps0 - Vacuum permittivity, F/m, double; +% faceArea - area of the plates, m^2, double; +% gap - nominal gap between the plates, m, double; +% +% See also: setSensParaPlates +% +% Author: Arthur Reis +% email: arthur.reis@aei.mpg.de +% Nov 2021; Last revision: 16.Feb.2022; + +% try to load from local json +% should be handle or name +if strcmp(varargin{1},'blockName') + blockName = varargin{2}; +elseif strcmp(varargin{1},'blockHandle') + blockName = get_param(varargin{2},'Name'); +end + +%if file exists +%blockName = get_param(varargin{1},'Name'); +%JSONFILE_name= sprintf(strcat(blockName,'.json')); +%fid=fopen(JSONFILE_name,'r'); +%raw = fread(fid,inf); +%str = char(raw'); +%j = jsondecode(str); +% parses existing json as defaults +% and allows updating + +p = inputParser; +addParameter(p, 'model' , ''); +addParameter(p, 'blockName', ''); +addParameter(p, 'Vt' , 0, @isnumeric); +addParameter(p, 'eps0' , 0, @isnumeric); +addParameter(p, 'faceArea' , 0, @isnumeric); +addParameter(p, 'gap' , 0, @isnumeric); +parse(p, varargin{:}); +j = p.Results; +js = jsonencode(j,'PrettyPrint',true); +%save p.Results as json +JSONFILE_name= sprintf(strcat(p.Results.blockName,'.json')); +fid=fopen(JSONFILE_name,'w'); +fprintf(fid, js); +fclose(fid); + +blockHandle = Simulink.findBlocks(j.model,'Name',j.blockName); +set_param(blockHandle, 'Vt' , num2str(j.Vt)); +set_param(blockHandle, 'eps0' , num2str(j.eps0)); +set_param(blockHandle, 'faceArea', num2str(j.faceArea)); +set_param(blockHandle, 'gap' , num2str(j.gap)); + +end + diff --git a/core/actuators/singlePlate.slx b/core/actuators/singlePlate.slx new file mode 100644 index 0000000000000000000000000000000000000000..570b8946cf717aa653812a28508c0b0b03ad7f17 Binary files /dev/null and b/core/actuators/singlePlate.slx differ diff --git a/core/actuators/singlePlate_Vsqr.slx b/core/actuators/singlePlate_Vsqr.slx new file mode 100644 index 0000000000000000000000000000000000000000..fbad84bb2ab10f045f5450d1d417d3b3cffd94a5 Binary files /dev/null and b/core/actuators/singlePlate_Vsqr.slx differ diff --git a/core/component/Electrode.m b/core/component/Electrode.m new file mode 100644 index 0000000000000000000000000000000000000000..dccf233078ff31226150b21332396744ded7a434 --- /dev/null +++ b/core/component/Electrode.m @@ -0,0 +1,15 @@ +classdef Electrode < AcmeBlock + %ELECTRODE Summary of this class goes here + methods + function obj = Electrode(name, model, Vbias, pos0, theta0, area) + %ELECTRODE Construct an instance of this class + %setElectrode(model, block, Vbias, pos0, theta0, area) + + parameters.name = ["Vbias", "pos0", "theta0", "area"]; + parameters.value = {Vbias , pos0 , theta0 , area }; + obj = obj@AcmeBlock(name, model, parameters); + obj.blocktype = "electrode"; + end + end +end + diff --git a/core/component/SimpleElectrode.png b/core/component/SimpleElectrode.png new file mode 100644 index 0000000000000000000000000000000000000000..22d697e1de818f967a21735280011ec0145b99a6 Binary files /dev/null and b/core/component/SimpleElectrode.png differ diff --git a/core/component/electrode.png b/core/component/electrode.png new file mode 100644 index 0000000000000000000000000000000000000000..22d697e1de818f967a21735280011ec0145b99a6 Binary files /dev/null and b/core/component/electrode.png differ diff --git a/core/component/electrode.slx b/core/component/electrode.slx new file mode 100644 index 0000000000000000000000000000000000000000..12fdbc3806b43404edda0ebcd01b62287eb11281 Binary files /dev/null and b/core/component/electrode.slx differ diff --git a/core/component/planeCapacitor.png b/core/component/planeCapacitor.png new file mode 100644 index 0000000000000000000000000000000000000000..d924409e922f5da97171444075d542a0f413c6b6 Binary files /dev/null and b/core/component/planeCapacitor.png differ diff --git a/core/component/planeCapacitor.slx b/core/component/planeCapacitor.slx new file mode 100644 index 0000000000000000000000000000000000000000..66e557eb652c43e403e5dd847076d0657ad695fe Binary files /dev/null and b/core/component/planeCapacitor.slx differ diff --git a/core/component/setElectrode.m b/core/component/setElectrode.m new file mode 100644 index 0000000000000000000000000000000000000000..6877aca5f4d0573e45fd533b2dba15525f99448e --- /dev/null +++ b/core/component/setElectrode.m @@ -0,0 +1,57 @@ +function blockHandle = setElectrode(varargin) +% +%SETELECTRODE - Sets the initial parameters of a electrode +% Sets the initial parameters of a electrode, to be paired to form a parallel +% plates capacitor. +% +% Syntax: blockHandle = setElectrode(model, block, Vbias, pos0, n0, area) +% +% Inputs: +% model - Name of the Simulink model, string; +% block - Name of the target instance of the Injection Block, string; +% Vbias - Offset voltage, V; +% pos0 - initial/nominal position of the center of the plate, m. +% theta0- initial/nominal direction of plate, comparing to the direction +% towards the other plate of the capacitor. +% area - area of the plate, m^s +% +% Output: +% blockHandle - Simulink block instance handle reference number; +% +% See also: +% +% Author: Arthur Reis +% email: arthur.reis@aei.mpg.de +% Last revision: 7.Apr.2022; +%model, block, Vbias, pos0, theta0, area +defaultSolver = "Variable-step"; +defaultTheta0 = 0; + +p = inputParser; + +addRequired(p, 'model'); +addRequired(p, 'block'); +addRequired(p, 'Vbias', @(x) isnumeric(x) && isscalar(x)); +addRequired(p, 'pos0', @(x) isnumeric(x) && isscalar(x)); +addRequired(p, 'area', @(x) isnumeric(x) && isscalar(x)); +addOptional(p, 'theta0', defaultTheta0); +addParameter(p, "solver", defaultSolver); + +parse(p, varargin{:}); + +blockHandle = Simulink.findBlocks(p.Results.model,'Name',p.Results.block); +set_param(blockHandle,'Vbias', num2str(p.Results.Vbias)); +set_param(blockHandle,'pos0', num2str(p.Results.pos0)); +set_param(blockHandle,'theta0',num2str(p.Results.theta0)); +set_param(blockHandle,'area', num2str(p.Results.area)); + +if strcmp(p.Results.solver,defaultSolver) + load_system("electrode"); + set_param("electrode","SolverType","Variable-step"); +elseif strcmp(p.Results.solver,'Fixed-step') + %set_param(blockHandle,'Vbias', num2str(Vbias)); + load_system("electrode"); + set_param("electrode","SolverType", "Fixed-step") +end +end + diff --git a/core/component/setPlaneCapacitor.m b/core/component/setPlaneCapacitor.m new file mode 100644 index 0000000000000000000000000000000000000000..d5877399f090568bc7abeaca8d402eb95cb090df --- /dev/null +++ b/core/component/setPlaneCapacitor.m @@ -0,0 +1,40 @@ +function blockHandle = setPlaneCapacitor(varargin) +%SETPLANECAPACITOR - Sets the initial parameters of a capacitor. +%Sets the initial parameters of a capacitor. Based on a parallel planes capacitor. +% +% Syntax: blockHandle = setPlaneCapacitor(model, block, eps0) +% +% Inputs: +% model - Name of the Simulink model, string; +% block - Name of the target instance of the Injection Block, string; +% eps0 - Vacuum permittivity, F/m, double; +% +% Outputs: +% blockHandle - Simulink block instance handle reference number; +% See also: +% +% Author: Arthur Reis +% email: arthur.reis@aei.mpg.de +% Apr 2022; Last revision: 7.Apr.2022; +defaultEps0 = 8.8541878128e-12; +defaultSolver = "Variable-step"; + +p = inputParser; +addRequired(p, 'model'); +addRequired(p, 'block'); +addOptional(p, 'eps0', defaultEps0, @(x) isnumeric(x) && isscalar(x)); +addParameter(p, "solver", defaultSolver); + +parse(p, varargin{:}); + +blockHandle = Simulink.findBlocks(p.Results.model,'Name',p.Results.block); +set_param(blockHandle,'eps0', num2str(p.Results.eps0)); + +% if strcmp(p.Results.solver,defaultSolver) +% set_param('planeCapacitor','SolverType','Variable-step'); +% elseif strcmp(p.Results.solver,'Fixed-step') +% %set_param(blockHandle,'Vbias', num2str(Vbias)); +% set_param('planeCapacitor', 'SolverType', 'Fixed-step') +% end +end + diff --git a/core/component/setSinglePlate.m b/core/component/setSinglePlate.m new file mode 100644 index 0000000000000000000000000000000000000000..73cceb07d7429a1fd6d7d1920c13b91ce70011bb --- /dev/null +++ b/core/component/setSinglePlate.m @@ -0,0 +1,66 @@ +function blockHandle = setSinglePlate(varargin) +%SETACTUATORPARAPLATES - Sets the initial parameters of a paralel plates +%actuator block. +%Sets the initial parameters of a paralel plates actuator block. The PID gains +%can be obtained with the tuning app +% +% Syntax: setActuatorParaPlates(Kp,Ki,Kd,Vp,Vt,eps0,faceArea,gap) +% +% Inputs: +% Kp - Proportional gain, double; +% Ki - Integral gain, double; +% Kd - Differential gain, double; +% Vp - Polarization voltage, double; +% Vt - sqrt of squares of the polarization and detection voltages; +% eps0 - Vacuum permittivity, F/m, double; +% faceArea - area of the plates, m^2, double; +% gap - nominal gap between the plates, m, double; +% +% See also: setSensParaPlates +% +% Author: Arthur Reis +% email: arthur.reis@aei.mpg.de +% Nov 2021; Last revision: 16.Feb.2022; + +% try to load from local json +% should be handle or name +if strcmp(varargin{1},'blockName') + blockName = varargin{2}; +elseif strcmp(varargin{1},'blockHandle') + blockName = get_param(varargin{2},'Name'); +end + +%if file exists +%blockName = get_param(varargin{1},'Name'); +%JSONFILE_name= sprintf(strcat(blockName,'.json')); +%fid=fopen(JSONFILE_name,'r'); +%raw = fread(fid,inf); +%str = char(raw'); +%j = jsondecode(str); +% parses existing json as defaults +% and allows updating + +p = inputParser; +addParameter(p, 'model' , ''); +addParameter(p, 'blockName', ''); +addParameter(p, 'Vt' , 0, @isnumeric); +addParameter(p, 'eps0' , 0, @isnumeric); +addParameter(p, 'faceArea' , 0, @isnumeric); +addParameter(p, 'gap' , 0, @isnumeric); +parse(p, varargin{:}); +j = p.Results; +js = jsonencode(j,'PrettyPrint',true); +%save p.Results as json +JSONFILE_name= sprintf(strcat(p.Results.blockName,'.json')); +fid=fopen(JSONFILE_name,'w'); +fprintf(fid, js); +fclose(fid); + +blockHandle = Simulink.findBlocks(j.model,'Name',j.blockName); +set_param(blockHandle, 'Vt' , num2str(j.Vt)); +set_param(blockHandle, 'eps0' , num2str(j.eps0)); +set_param(blockHandle, 'faceArea', num2str(j.faceArea)); +set_param(blockHandle, 'gap' , num2str(j.gap)); + +end + diff --git a/core/component/singlePlate.slx b/core/component/singlePlate.slx new file mode 100644 index 0000000000000000000000000000000000000000..36a3ea468cc0b94e4ccd1b277154955f7f124021 Binary files /dev/null and b/core/component/singlePlate.slx differ diff --git a/core/dynamics/dblIntTransFS.slx b/core/dynamics/dblIntTransFS.slx new file mode 100644 index 0000000000000000000000000000000000000000..0f075a08ccb48fcfce3a9f221ef4a6defb3b370b Binary files /dev/null and b/core/dynamics/dblIntTransFS.slx differ diff --git a/core/dynamics/dblIntTransVS.slx b/core/dynamics/dblIntTransVS.slx new file mode 100644 index 0000000000000000000000000000000000000000..7c5beb500ac64649823b98c6c8d6873809c0f8f5 Binary files /dev/null and b/core/dynamics/dblIntTransVS.slx differ diff --git a/core/dynamics/dblintFS.png b/core/dynamics/dblintFS.png new file mode 100644 index 0000000000000000000000000000000000000000..0c4134df9ae1ee582d50ef2039c2076421520866 Binary files /dev/null and b/core/dynamics/dblintFS.png differ diff --git a/core/dynamics/dblintLinear.slx.original b/core/dynamics/dblintLinear.slx.original new file mode 100644 index 0000000000000000000000000000000000000000..6df179afc5afa8abf5eddfa6564775945bc2daa9 Binary files /dev/null and b/core/dynamics/dblintLinear.slx.original differ diff --git a/core/dynamics/dblintVS.png b/core/dynamics/dblintVS.png new file mode 100644 index 0000000000000000000000000000000000000000..fecad7e7ce487d62e4040fd562710d63fba26a1b Binary files /dev/null and b/core/dynamics/dblintVS.png differ diff --git a/core/dynamics/setDblIntTrans.m b/core/dynamics/setDblIntTrans.m new file mode 100644 index 0000000000000000000000000000000000000000..78f723bf9731c103249ace04e3067e2231a2d48f --- /dev/null +++ b/core/dynamics/setDblIntTrans.m @@ -0,0 +1,48 @@ +function blockHandle = setDblIntTrans(model, block, varargin) +%SETDOUBLEINTEGRATOR - Sets the initial parameters of a double interator block. +%Sets the initial parameters for one instance of the double integrator SISO, +%linear or rotational, block from Acme library. +% +% Syntax: setDoubleIntegrator(model, block, transformation, m, varargin) +% +% Inputs: +% model - Name of the Simulink model, string +% block - Name of the target instance of the Double Integrator Block, string +% varargin - m - mass, kg +% initial position +% - dq0, initial velocity +% +% See also: setDoubleIntegrator_6DOF +% +% Author: Arthur Reis +% email: arthur.reis@aei.mpg.de +% Nov 2021; Last revision: 10.Nov.2021; + +blockHandle = Simulink.findBlocks(strcat(model),... + 'Name',block); + +defaultq0 = 0; +defaultdq0 = 0; +defaultdt = 1; +%defaultSolver = 'VariableStep'; + +p = inputParser; + +addRequired(p, 'm', @(x) (x > 0) && isnumeric(x) && isscalar(x)); +addRequired(p, 'gap', @(x) (x > 0) && isnumeric(x) && isscalar(x)); +addOptional(p, 'q0', defaultq0, @(x) isnumeric(x) && isscalar(x)); +addOptional(p, 'dq0', defaultdq0, @(x) isnumeric(x) && isscalar(x)); +%addParameter(p, 'solver', defaultsolver) +%addOptional(p, 'dt', defaultdt, @(x) isnumeric(x) && isscalar(x)); +parse(p, varargin{:}); + +set_param(blockHandle,'m', num2str(p.Results.m)); +set_param(blockHandle,'gap', num2str(p.Results.gap)); +set_param(blockHandle,'q0', num2str(p.Results.q0)); +set_param(blockHandle,'dq0',num2str(p.Results.dq0)); +%set_param(blockHandle,'dt_solver',num2str(p.Results.dt)); +%if p.Results.solver + + +end + diff --git a/core/dynamics/setDoubleIntegrator.m b/core/dynamics/setDoubleIntegrator.m new file mode 100644 index 0000000000000000000000000000000000000000..84f126417a137f77bb59b28794343d6a8fa10e8e --- /dev/null +++ b/core/dynamics/setDoubleIntegrator.m @@ -0,0 +1,56 @@ +function blockHandle = setDoubleIntegrator(model, block, varargin) +% ======================================================================== +% DEPRECATED, PLZ USE SEPARATED LINEAR AND ROTATION VERSIONS +% ======================================================================== +%SETDOUBLEINTEGRATOR - Sets the initial parameters of a double interator block. +%Sets the initial parameters for one instance of the double integrator SISO, +%linear or rotational, block from Acme library. +% +% Syntax: setDoubleIntegrator(model, block, transformation, m, varargin) +% +% Inputs: +% model - Name of the Simulink model, string +% block - Name of the target instance of the Double Integrator Block, string +% +% varargin - optional +% m - mass, kg +% initial position +% - dq0, initial velocity +% +% See also: setDoubleIntegrator_6DOF +% +% Author: Arthur Reis +% email: arthur.reis@aei.mpg.de +% Nov 2021; Last revision: 10.Nov.2021; + +blockHandle = Simulink.findBlocks(strcat(model),... + 'Name',block); + +%% process inputs +defaultq0 = 0; +defaultdq0 = 0; +defaultmode = 'linear'; +expectedmodes = {'linear', 'rotational'}; + +% parameter parsing, required parms will throw error w/ defaults; +p = inputParser; +%addrequired +%add + +addRequired(p, 'm' , @(x) x>0); +addOptional(p, 'q0' , defaultq0 , @(x) isnumeric(x)); +addOptional(p, 'dq0' , defaultdq0, @(x) isnumeric(x)); +addParameter(p, 'mode', defaultmode); + +parse(p, varargin{:}); + +switch p.Results.mode + case 'linear' + set_param(blockHandle,'m', num2str(p.Results.m)); + set_param(blockHandle,'q0', num2str(p.Results.q0)); + set_param(blockHandle,'dq0',num2str(p.Results.dq0)); + case 'rotational' + ... +end +end + diff --git a/core/libAcme.slx b/core/libAcme.slx new file mode 100644 index 0000000000000000000000000000000000000000..79f927c1bdd7cfa45a69d8ca1c5271d97149eebb Binary files /dev/null and b/core/libAcme.slx differ diff --git a/core/noises/createAccelerationNoiseASD.m b/core/noises/createAccelerationNoiseASD.m new file mode 100644 index 0000000000000000000000000000000000000000..685b4c662721b8e243e24b97bc487bbae244e964 --- /dev/null +++ b/core/noises/createAccelerationNoiseASD.m @@ -0,0 +1,29 @@ +function asd = AccelerationNoiseASD(freq, variables) +%ACCELERATIONNOISEASD Returns ASD for a frequency input +% Returns ASD for a frequency input; +% can return for each axis + switch variables + case "x" + asd = 1./freq; + case "y" + asd = 1./freq.^2; + case "z" + asd = 1./freq.^3; + case "theta" + asd = 1./freq + freq; + case "psi" + asd = 1./freq + freq.^3; + case "phi" + asd = 10*(freq.^0); + case "linear" + asd = (1e-12 * sqrt(... + (1e-3./freq).^4 ./((1e-5./freq).^4+1) + ... + 1 + (freq/1e-1).^4)); + case "angular" + asd = (1e-10 * sqrt(... + (1e-3./freq).^4 ./ ((1e-5./freq).^4+1) +... + 1 + (freq/1e-1).^4)); + otherwise + asd = -1; + end +end \ No newline at end of file diff --git a/core/noises/createNoiseFile.m b/core/noises/createNoiseFile.m new file mode 100644 index 0000000000000000000000000000000000000000..b6ce25630a137a53f7a8379a8fa31b056920ed15 --- /dev/null +++ b/core/noises/createNoiseFile.m @@ -0,0 +1,61 @@ +function createNoiseFile(filename, mode, varargin) +%SETINJECTIONBLOCK - Sets the initial parameters of a injection block. +%Sets the initial parameters for one instance of the injection block from +%Acme library. +% +% Syntax: createNoiseFile(filename, block, mode, varargin) +% createNoiseFile(filename, block, 'FromWorkspace', workspaceVarName) +% createNoiseFile(filename, block, 'FromTimeFunction', funcHandle, t_timeseries) +% createNoiseFile(filename, block, 'FromASD', funcHandle, freqs, N, enbw) +% +% Inputs: +% mode - Specifies how the Injection signal is defined. +% 'FromWorkspace': will use a timeseries existing on the base workspace; +% 'FromFunction': passes a function of time and a timeseries +% argument; +% 'FromASD': passes a ASD, function of frequency and create a time series using +% the ENBW algorithm; +% 'FromFile': uses the data stored in a file. +% workspaceVarName - name of the variable in the workspace, string; +% funcHandle - function (either of t or f). Function handle; +% t_timeseries - time part of a timeseries to be used as argument; +% freqs - array containing [fMin, fMax, fSample]. +% N = number of points that the freqs array has; +% filename - name of the file containing the data +% +% See also: createFrequencyArray, createTimeseriesFromASD_ENBW +% +% Author: Arthur Reis +% email: arthur.reis@aei.mpg.de +% Jun 2022; + + +if strcmp(mode,'FromWorkspace') + % varargin: + % model, block, mode, workspaceVarName + var = varargin{1}; + eval(strcat('save(filename,''var'',''-v7.3'');')); + +elseif strcmp(mode,'FromFunction') + % varargin: + % model, block, mode, funcHandle, t_timeseries + func = varargin{1}; + tSeries = varargin{2}; + arr = timeseries(func(tSeries),tSeries); + save(filename,'arr','-v7.3'); + +elseif strcmp(mode,'FromASD') + % varargin: + % model, block, mode, funcHandle, freqs + func = varargin{1}; + frequencies = varargin{2}; %[fMin, fMax, fSample] + N = varargin{3}; + fSeries = createFrequencyArray(frequencies(2),0,N,'lin', 2,'reverse'); + enbw = varargin{4}; + arr = createTimeseriesFromASD_ENBW(func,fSeries, enbw); + save(filename,'arr','-v7.3'); +end + + +end + diff --git a/core/noises/injection.png b/core/noises/injection.png new file mode 100644 index 0000000000000000000000000000000000000000..2ce5949b0e3fc8c9c186fe0adcbc00a2199b36df Binary files /dev/null and b/core/noises/injection.png differ diff --git a/core/noises/readout.png b/core/noises/readout.png new file mode 100644 index 0000000000000000000000000000000000000000..25be7fe7a11cc14b3de76d0d4555646e47488ff3 Binary files /dev/null and b/core/noises/readout.png differ diff --git a/core/noises/setFromFile.m b/core/noises/setFromFile.m new file mode 100644 index 0000000000000000000000000000000000000000..858813c792285f4f51c603618ea0fe64e60c525a --- /dev/null +++ b/core/noises/setFromFile.m @@ -0,0 +1,23 @@ +function blockHandle = setFromFile(model, block, filename) +%SETINJECTIONBLOCK - Sets the initial parameters of a injection block. +%Sets the initial parameters for one instance of the injection block from +%Acme library. +% +% Syntax: setInjectionBlock(model, block, mode, varargin) +% +% Inputs: +% model - Name of the Simulink model, string +% block - Name of the target instance of the Injection Block, string +% +% See also: createFrequencyArray, createTimeseriesFromASD_ENBW +% +% Author: Arthur Reis +% email: arthur.reis@aei.mpg.de +% Nov 2021; Last revision: 10.Nov.2021; + + +blockHandle = Simulink.findBlocks(model,'Name',block); +set_param(blockHandle,'FileName',strcat(filename)); + +end + diff --git a/core/noises/setInjectionBlock.m b/core/noises/setInjectionBlock.m new file mode 100644 index 0000000000000000000000000000000000000000..31eada7407a64a79f5a2ff9fbef440c71f68325a --- /dev/null +++ b/core/noises/setInjectionBlock.m @@ -0,0 +1,76 @@ +function blockHandle = setInjectionBlock(model, block, mode, varargin) +%SETINJECTIONBLOCK - Sets the initial parameters of a injection block. +%Sets the initial parameters for one instance of the injection block from +%Acme library. +% +% Syntax: setInjectionBlock(model, block, mode, varargin) +% setInjectionBlock(model, block, 'FromWorkspace', workspaceVarName) +% setInjectionBlock(model, block, 'FromFunction', funcHandle, t_timeseries) +% setInjectionBlock(model, block, 'FromASD', funcHandle, freqs, N, enbw) +% setInjectionBlock(model, block, 'FromFile', filename) +% +% Inputs: +% model - Name of the Simulink model, string +% block - Name of the target instance of the Injection Block, string +% mode - Specifies how the Injection signal is defined. +% 'FromWorkspace': will use a timeseries existing on the base workspace; +% 'FromFunction': passes a function of time and a timeseries +% argument; +% 'FromASD': passes a ASD, function of frequency and create a time series using +% the ENBW algorithm; +% 'FromFile': uses the data stored in a file. +% workspaceVarName - name of the variable in the workspace, string; +% funcHandle - function (either of t or f). Function handle; +% t_timeseries - time part of a timeseries to be used as argument; +% freqs - array containing [fMin, fMax, fSample]. +% N = number of points that the freqs array has; +% filename - name of the file containing the data +% +% See also: createFrequencyArray, createTimeseriesFromASD_ENBW +% +% Author: Arthur Reis +% email: arthur.reis@aei.mpg.de +% Nov 2021; Last revision: 10.Nov.2021; + + +if strcmp(mode,'FromWorkspace') + % varargin: + % model, block, mode, workspaceVarName + var = varargin{1}; + filename = strcat(block,'_tmp'); + eval(strcat('save(filename,''var'',''-v7.3'');')); + +elseif strcmp(mode,'FromFunction') + % varargin: + % model, block, mode, funcHandle, t_timeseries + func = varargin{1}; + tSeries = varargin{2}; + arr = timeseries(func(tSeries),tSeries); + filename = strcat(block,'_tmp'); + save(filename,'arr','-v7.3'); + +elseif strcmp(mode,'FromASD') + % varargin: + % model, block, mode, funcHandle, freqs + func = varargin{1}; + frequencies = varargin{2}; %[fMin, fMax, fSample] + N = varargin{3}; + fSeries = createFrequencyArray(frequencies(2),0,N,'lin', 2,'reverse'); + enbw = varargin{4}; + arr = createTimeseriesFromASD_ENBW(func,fSeries, enbw); + filename = strcat(block,'_tmp'); + save(filename,'arr','-v7.3'); + +elseif strcmp(mode,'FromFile') + % varargin: + % model, block, mode, filename + filename = varargin{1}; + +end + +blockHandle = Simulink.findBlocks(strcat(model,'/',block),... + 'Name','blkFromFile'); +set_param(blockHandle,'FileName',strcat(filename)); + +end + diff --git a/core/noises/setReadoutBlock.m b/core/noises/setReadoutBlock.m new file mode 100644 index 0000000000000000000000000000000000000000..5145cc74ad7f5fffe4182e2939ab09d51abce24c --- /dev/null +++ b/core/noises/setReadoutBlock.m @@ -0,0 +1,21 @@ +function blockHandle = setReadoutBlock(model, block, varname, fSample) +%SETREADOUTBLOCK sets an instance of the readout block in a model. +% +% Syntax: setReadoutBlock(model, block, varname, fSample) +% +% Inputs: model - Name of the Simulink model, string; +% block - Name of the target instance of the block, string; +% varname - Name of the variable to be created in the workspace; +% fSample - sampling rate of the block; +% +% See also: setInjectionBlock +% +% Author: Arthur Reis +% email: arthur.reis@aei.mpg.de +% Nov 2021; Last revision: 10.Nov.2021; +blockHandle = Simulink.findBlocks(model, 'Name', block); +set_param(blockHandle,'simout',['''',varname,'''']); +set_param(blockHandle,'fSample',num2str(fSample)); + +end + diff --git a/core/sensors/diffTransformer.png b/core/sensors/diffTransformer.png new file mode 100644 index 0000000000000000000000000000000000000000..d9425695484ba10b02c51c75d611b910cef8b506 Binary files /dev/null and b/core/sensors/diffTransformer.png differ diff --git a/core/sensors/diffTransformer.slx b/core/sensors/diffTransformer.slx new file mode 100644 index 0000000000000000000000000000000000000000..9a34813060b7dccc511f8fd643f4fd7b35929f81 Binary files /dev/null and b/core/sensors/diffTransformer.slx differ diff --git a/core/sensors/lockIn.png b/core/sensors/lockIn.png new file mode 100644 index 0000000000000000000000000000000000000000..60f4af8bc464abff0e7189eeb2e534983525f005 Binary files /dev/null and b/core/sensors/lockIn.png differ diff --git a/core/sensors/lockIn.slx b/core/sensors/lockIn.slx new file mode 100644 index 0000000000000000000000000000000000000000..f1edbc9ea66c19178d5de0798ea2a87f8ad688a9 Binary files /dev/null and b/core/sensors/lockIn.slx differ diff --git a/core/sensors/setDiffTransformer.m b/core/sensors/setDiffTransformer.m new file mode 100644 index 0000000000000000000000000000000000000000..f78df0d0f34e7cb19e68e20444437880d8a30cdf --- /dev/null +++ b/core/sensors/setDiffTransformer.m @@ -0,0 +1,75 @@ +function blockHandle = setDiffTransformer(varargin) +%SETSENSPARAPLATES - Sets the initial parameters of a capacitive sensor. +% Sets the initial parameters of a capacitive sensor. Based on Davor Mance. +% +% davor mance generic diff transformer +% s^2 * L + s*Rl +% U_br = --------------------------------- * U_m*DeltaC +% L*Ceq*s^2 + s*Rl*Ceq + 1 +% +% on the low frequency, assuming that f_detection = f_0_diff_transformer +% Q +% U_br = -----* U_m*DeltaC +% Ceq +% +% Syntax: setInjectionBlock(model, block, eps0, gap, area, Vd, Cf,... +% transformerRatio, transformerCoupling) +% Inputs: +% model - Name of the Simulink model, string; +% block - Name of the target instance of the Injection Block, string; +% C0 - Nominal capacitance of the sensor, ie. capacitance when x = 0, F; +% L - impedance of the coils of the transformer. Assumes all 3 has the same +% impedance, H; +% Q - quality factor; +% f0 - detector freuqnecyy, Hz; +% +% Output +% See also: +% +% Author: Arthur Reis +% email: arthur.reis@aei.mpg.de +% Nov 2021; Last revision: 19.Nov.2021; + +defaultrange = 'low'; +p = inputParser; + +addRequired(p, 'model', @(x) ischar(x)); +addRequired(p, 'block', @(x) ischar(x)); +addRequired(p, 'C0', @(x) isnumeric(x) && isscalar(x)); +addRequired(p, 'L', @(x) isnumeric(x) && isscalar(x)); +addRequired(p, 'f0', @(x) isnumeric(x) && isscalar(x)); +addRequired(p, 'Q', @(x) isnumeric(x) && isscalar(x)); +addOptional(p, 'freqrange', defaultrange, @(x) ischar(x)); + +parse(p, varargin{:}); + +model = p.Results.model; +block = p.Results.block; +C0 = p.Results.C0; +L = p.Results.L; +Q = p.Results.Q; +f0 = p.Results.f0; +freqrange = p.Results.freqrange; + +w0 = f0*2*pi; +Ceq = L/w0^2; + +Rl = L*w0/Q; + +blockHandle = Simulink.findBlocks(strcat(model),'Name',block); +if strcmp(freqrange, 'low') + set_param(blockHandle,'Q', num2str(Q)); + set_param(blockHandle,'Ceq', num2str(Ceq)); + +elseif strcmp(freqrange, 'high') + a = [L Rl 0]; + b = [L*Ceq Rl*Ceq 1]; + [A,B,C,D] = tf2ss(a,b); + set_param(blockHandle,'A', mat2str(A)); + set_param(blockHandle,'B', mat2str(B)); + set_param(blockHandle,'C', mat2str(C)); + set_param(blockHandle,'D', num2str(D)); + +end +end + diff --git a/core/sensors/setLockIn.m b/core/sensors/setLockIn.m new file mode 100644 index 0000000000000000000000000000000000000000..e5282fc02029690610258f6c48e6b44f511f343b --- /dev/null +++ b/core/sensors/setLockIn.m @@ -0,0 +1,27 @@ +function blockHandle = setLockIn(model, block, fPb, fCo, ampGain) +%SETSENSPARAPLATES - Sets the initial parameters of a capacitive sensor. +%Sets the initial parameters of a capacitive sensor. Based on Josselin 1999. +% +% Syntax: setInjectionBlock(model, block, eps0, gap, area, Vd, Cf,... +% transformerRatio, transformerCoupling) +% Inputs: +% model - Name of the Simulink model, string; +% block - Name of the target instance of the Injection Block, string; +% L - impedance of the coils of the transformer. Assumes all 3 has the same +% impedance; +% C0 - Nominal capacitance of the sensor, ie. capacitance when x = 0; +% Cp - Stray capacitance of the differential transformer; +% +% Output +% See also: +% +% Author: Arthur Reis +% email: arthur.reis@aei.mpg.de +% Nov 2021; Last revision: 19.Nov.2021; + +blockHandle = Simulink.findBlocks(model,'Name',block); +set_param(blockHandle,'fPb', num2str(fPb)); +set_param(blockHandle,'fCo', num2str(fCo)); +set_param(blockHandle,'ampGain', num2str(ampGain)); + +end diff --git a/simulations/Tutorial/ex_01.slx b/simulations/Tutorial/ex_01.slx new file mode 100644 index 0000000000000000000000000000000000000000..89bd4575d959ac512c91afd3408fe64c853151f6 Binary files /dev/null and b/simulations/Tutorial/ex_01.slx differ diff --git a/simulations/Tutorial/ex_02.slx b/simulations/Tutorial/ex_02.slx new file mode 100644 index 0000000000000000000000000000000000000000..76c9015dc4d5011469faeab3a36faab0feff482b Binary files /dev/null and b/simulations/Tutorial/ex_02.slx differ diff --git a/simulations/Tutorial/ex_03.slx b/simulations/Tutorial/ex_03.slx new file mode 100644 index 0000000000000000000000000000000000000000..a6b80054af0eef0a7661e48ea0cba06f1b52dfaa Binary files /dev/null and b/simulations/Tutorial/ex_03.slx differ diff --git a/simulations/Tutorial/ex_04.slx b/simulations/Tutorial/ex_04.slx new file mode 100644 index 0000000000000000000000000000000000000000..dd6be9470bcc5a8c14934929eba57473184d46cb Binary files /dev/null and b/simulations/Tutorial/ex_04.slx differ diff --git a/simulations/Tutorial/script_ex_01.m b/simulations/Tutorial/script_ex_01.m new file mode 100644 index 0000000000000000000000000000000000000000..34a6dfaf5e7277de7dc7c20b9b875244026b4774 --- /dev/null +++ b/simulations/Tutorial/script_ex_01.m @@ -0,0 +1,44 @@ +%% Example 01 +% ACME Basics - Time domain simulation +% The first simulation models a test mass that is disturbed by an impulse. +% There is a controller that will try keep the TM centered. +% The simulation is discrete and has a fixed step of length acme_dt_fixedstep +% Considering just 1 translational DOF +clear; + +% load the simulink model. +mdl = 'ex_01'; +load_system(mdl); +acme_dt_fixedstep = 0.01; +stopTime = 10; +%% Setting the TM and control parameters + +mass = 0.08; %kg +gap = 0.0003; %m +% To set the block, the setter searches for a block named "dblInt" on the +% simulink system. Be sure to avoid typos. +dblint = setDblIntTrans(mdl, 'dblInt', mass, gap); + +% the sensor, controller and actuator is represented by only a PID block with +% arbitrary and adequated gains: +Kp = 4; +Ki = 3; +Kd = 1; + +% and the TM is impacted by an impulse of +forceGain = 1e-6; % N +%% Run the simulation +sim(mdl); +open_system([mdl '/scopeAcc']); +open_system([mdl '/scopePos']); + +%% +% other than an external input, we can simulate a TM that begins out of +% equilibrium +forceGain = 0; +x0 = 0.00005; +dx0 = 0; +dblint = setDblIntTrans(mdl, 'dblInt', mass, gap, x0, dx0); +sim(mdl); +open_system([mdl '/scopePos']); + diff --git a/simulations/Tutorial/script_ex_02.m b/simulations/Tutorial/script_ex_02.m new file mode 100644 index 0000000000000000000000000000000000000000..461ba7dc00247d956d809e629f33bea3b20b1ee2 --- /dev/null +++ b/simulations/Tutorial/script_ex_02.m @@ -0,0 +1,96 @@ +%% Example 02 +% ACME Basics - Parametrization +% This example shows how a noise timeseries can be generated, also how you can +% parametrize your simulation +clear; + +mdl = 'ex_02'; +load_system(mdl); + +%% Setting the TM and control parameters + +mass = 0.08; %kg +gap = 0.0003; %m +Kp = 1e-4; +Ki = 1e-6; +Kd = 1e-2; +dblint = setDblIntTrans(mdl, 'dblInt', mass, gap); + +%% Define the input noise +% Will add a timeseries containing noise +% Automatically generated from expression for Amplitude Spectral Density + +tslength = 1e4; +dt = 1; +acme_dt_fixedstep = dt; +t = (0:dt:(tslength-dt))'; +nSteps = length(t); +fSample = 1/dt; +enbw = 1/tslength; + +% Consider one of the ASDs: +noisefunc = @(f) (1e-10 * sqrt( (1e-3./f).^4 ./ ((1e-5./f).^4+1) + 1 + (f/1e-1).^4)); + +% define a "From Workspace" Block that reads the variable: +noise_ts = [t timeseriesFromASD(noisefunc, enbw, fSample, nSteps).Data]; + +%% Run +out = sim(mdl); + +%% Plotting the frequency response +% flpsd is the same lpsd algorithm from ltpda. It gives the ASD from a +% timeseries. +enbw = 1; +Kdes = 100; +olap = 30; +Jdes = 1000; +Lmin = 1; +order = 2; +ts = out.simout.Data; %output: position of the TM + +[axx,fxx] = flpsd( 'ts', ts, 'fs', fSample, 'Kdes', Kdes, 'Lmin', Lmin, ... + 'Jdes', Jdes, 'win', 'hanning', 'olap', olap, 'order', order,... + 'scale', 'ASD', 'LTPDAmode',true); + +[anoise,fnoise] = flpsd( 'ts', noise_ts(:,2), 'fs', fSample, 'Kdes', Kdes, 'Lmin', Lmin, ... + 'Jdes', Jdes, 'win', 'hanning', 'olap', olap, 'order', order,... + 'scale', 'ASD', 'LTPDAmode',true); + +% finding the TF between displacement readout and input perturbation +io(1) = linio(strcat(mdl,'/From Workspace'),1,'input'); +io(2) = linio(strcat(mdl,'/dblInt'),1,'output'); +readout2accTF = getTFresponse(mdl, io, fxx); % TF between readout and acc signal + +%% output comparison +loglog(fxx,noisefunc(fxx),fxx,axx./readout2accTF); +legend('input expression','calibrated acc measurement'); +xlabel('Frequency [Hz]'); +xlim([1e-6 1]); +ylabel('Acceleration [m/s2]'); + +%% Parametrization +% To investigate what happens when the mass changes, for example: +mass_var = [0.04, 0.08, 0.16, 0.32]; +amps = zeros(length(fxx),length(mass_var)); +frqs = zeros(length(fxx),length(mass_var)); +cals = zeros(length(fxx),length(mass_var)); + +for i=1:length(mass_var) + setDblIntTrans(mdl, 'dblInt', mass_var(i), gap); + mass = mass_var(i); + out = sim(mdl); % run the simulation for each mass value + ts = out.simout.Data; + [axx,fxx] = flpsd( 'ts', ts, 'fs', fSample, 'Kdes', Kdes, 'Lmin', Lmin, ... + 'Jdes', Jdes, 'win', 'hanning', 'olap', olap, 'order', order,... + 'scale', 'ASD', 'LTPDAmode',true); + frqs(:,i) = fxx; % save asd + amps(:,i) = axx; + cals(:,i) = getTFresponse(mdl, io, fxx); +end + + +%% +loglog(frqs, amps./cals); +legend(string(mass_var)); +xlabel('Frequency [Hz]'); +ylabel('Acceleration [m/s2]'); \ No newline at end of file diff --git a/simulations/Tutorial/script_ex_03.m b/simulations/Tutorial/script_ex_03.m new file mode 100644 index 0000000000000000000000000000000000000000..9fdb84722d9d5361565110759888984756b981be --- /dev/null +++ b/simulations/Tutorial/script_ex_03.m @@ -0,0 +1,56 @@ +%% Example 03 +% ACME Basics - Instantiation +% ACME can handle multiple copies of the same block on one system; +% it uses the block name to locate and initialize the right one +clear; + +mdl = 'ex_03'; +load_system(mdl); + +fMin = 1e-4; +fMax = 1; +stopTime = 1/fMin; +% +nSteps = 1e5; +tStep = stopTime/nSteps; +fSample = 1/(stopTime/nSteps); +N = stopTime/tStep; +acme_dt_fixedstep = tStep; +t = (0:tStep:(stopTime-tStep))'; +enbw = 1/stopTime; +%% +% each instance of the double integrator and the PID blocks will have different +% parameters +mass = [0.08, 0.1, 0.15]; +gap = [3e-4, 5e-4, 9e-4]; +Kp = [0.04, 0.05, 0.06]; +Ki = [0.003, 0.003, 0.003]; +Kd = [0.1, 0.1, 0.12]; + +% Consider the ASDs: +noisefunc1 = @(f) 1e-12 * f.^-1; +noisefunc2 = @(f) 1e-10 * (f.^2 + f.^0); +enbw = 1; +Kdes = 100; +olap = 30; +Jdes = 1000; +Lmin = 1; +order = 2; +% define a "From Workspace" Block that reads the variable: +noise_ts1 = [t timeseriesFromASD(noisefunc1, enbw, fSample, nSteps).Data]; +noise_ts2 = [t timeseriesFromASD(noisefunc2, enbw, fSample, nSteps).Data]; + +[axx,fxx] = flpsd( 'ts', noise_ts1(:,2), 'fs', fSample, 'Kdes', Kdes, 'Lmin', Lmin, ... + 'Jdes', Jdes, 'win', 'hanning', 'olap', olap, 'order', order,... + 'scale', 'ASD', 'LTPDAmode',true); +[axx2,fxx2] = flpsd( 'ts', noise_ts2(:,2), 'fs', fSample, 'Kdes', Kdes, 'Lmin', Lmin, ... + 'Jdes', Jdes, 'win', 'hanning', 'olap', olap, 'order', order,... + 'scale', 'ASD', 'LTPDAmode',true); +loglog(fxx,axx,fxx2,axx2); +%% Run +sim(mdl); + +open_system([mdl '/Scope1']); +open_system([mdl '/Scope2']); +open_system([mdl '/Scope3']); + diff --git a/simulations/Tutorial/script_ex_04.m b/simulations/Tutorial/script_ex_04.m new file mode 100644 index 0000000000000000000000000000000000000000..ac95d7bbddce72a703ec86da9d1699f32032f12e --- /dev/null +++ b/simulations/Tutorial/script_ex_04.m @@ -0,0 +1,100 @@ +%% Example 04 +% ACME Advanced - GRACE-like Electrostatic ACC +% The capacitive sensing as well as the electrostatic actuators are simulated +clear; + +mdl = 'ex_04'; +load_system(mdl); +%% Accelerometer Parameters +% TM +TM_side = 0.04; % m +nominal_gap = 0.000300; % m +area = (TM_side)^2; % m2 +mass = 0.08; % kg +kb = 1.3806e-23; %boltzmann +T = 300; % K + +% capacitive sensing, see Josselin 1999 +eps0 = 8.86e-12; %F/m, vacuum permittivity +Vd = 5; %V detection rms voltage +Vp = 10; %V polarizing voltage +Vt = sqrt(Vp^2 + Vd^2); +L = 50; +C0 = 5e-13; +Cp = 5e-13; +Q = 200; +fDetection = 1e5; +lockgain = 1; + +% control +Kp = 5e-4; +Ki = 1e-2; +Kd = 0; +driverGain = 1; + +%% block initialization +% there are four electrodes, 2 on the faces on the cage, at potential -V and +V, +% and 2 faces of the TM, at same potential +% +% setElectrode(model, block, Vbias, ... +% pos0, area) +el1 = setElectrode(mdl,'electrode1', 0, ... + TM_side/2+nominal_gap, area); % cage right +el2 = setElectrode(mdl,'electrode2', Vt, ... + TM_side/2, area); % TM right +el3 = setElectrode(mdl,'electrode3', Vt, ... + -TM_side/2, area); % TM left +el4 = setElectrode(mdl,'electrode4', 0, ... + -(TM_side/2+nominal_gap), area); % cage left + +% plane capacitors, each formed by two electrodes, simplified coulombic interaction +% setPlaneCapacitor(model, block, eps0) +cap1 = setPlaneCapacitor(mdl, 'planeCapacitor1', eps0); +cap2 = setPlaneCapacitor(mdl, 'planeCapacitor2', eps0); + +% differential transformer, see Josselin 1999 +% setDiffTransformer(model, block, C0, L, f0, Q, range) +dfTr = setDiffTransformer(mdl, 'diffTransformer', C0, L, fDetection, Q); + +dblint = setDblIntTrans(mdl, 'dblInt', mass, nominal_gap); + +%% simulation parameters +% frequency and time +stopTime = 1e3; +nSteps = 1e4; +tStep = stopTime/nSteps; +acme_dt_fixedstep = tStep; +fSample = 1/(stopTime/nSteps); +%fMax = fSample/2; +%fMin = 1/stopTime; +t = (0:tStep:(stopTime-tStep))'; +enbw = 1/stopTime; + +noisefunc = @(f) (1e-9 * f.^0); +noise_ts1 = [t timeseriesFromASD(noisefunc, enbw, fSample, nSteps).Data]; + +%% +mdlOutput = sim(mdl); +%% +% lpsd options + +Kdes = 100; +olap = 30; +Jdes = 1000; +Lmin = 1; +order = 0; + +[axx,fxx] = flpsd( 'ts', mdlOutput.simout.Data, 'fs', fSample, 'Kdes', Kdes, 'Lmin', Lmin, ... + 'Jdes', Jdes, 'win', 'hanning', 'olap', olap, 'order', order,... + 'scale', 'ASD', 'LTPDAmode',false); + +%% +% finding the TF between displacement readout and input perturbation +io(1) = linio(strcat(mdl,'/From Workspace'),1,'input'); +io(2) = linio(strcat(mdl,'/diffTransformer'),1,'output'); +readout2accTF = getTFresponse(mdl, io, fxx); % TF between readout and acc signal + +loglog(fxx,axx./readout2accTF,fxx,noisefunc(fxx)); +legend('calibrated acc measurement','input expression'); +xlabel('Frequency [Hz]'); +ylabel('Acceleration [m/s2]'); diff --git a/simulations/Tutorial/xhps_integration/XHPS_simple_atittude_control.slx.r2017b b/simulations/Tutorial/xhps_integration/XHPS_simple_atittude_control.slx.r2017b new file mode 100644 index 0000000000000000000000000000000000000000..71a103f630e521e71902a0fcce1311ae7f2b16ae Binary files /dev/null and b/simulations/Tutorial/xhps_integration/XHPS_simple_atittude_control.slx.r2017b differ diff --git a/simulations/Tutorial/xhps_integration/init_parameters.m b/simulations/Tutorial/xhps_integration/init_parameters.m new file mode 100644 index 0000000000000000000000000000000000000000..e23d5833d751973db168a6dbe45117ec6f7bd148 --- /dev/null +++ b/simulations/Tutorial/xhps_integration/init_parameters.m @@ -0,0 +1,259 @@ +%% ex3 +% In this example additional blocks to model non-gravitational +% forces are added, atmospheric drag and solar radiation pressure. The +% computed forces and torques are feed back to the dynamics computatation. +% These models utilize the precomputed lookup tables for high precision +% disturbance modeling. As an example these are given for a simple GRACE +% model. +% There are two different blocks for atmospheric drag, the first one is +% simpler and utilzes a constant drag coefficient and the JB08 density +% model. The atmosphere is treated as co-rotating with the Earth. +% The second block utilizes a variable computation of the drag and lift +% coefficients. Depending on atmosphereic conditions and the satellite +% geometry (FE Model). The computation of the drag coefficient needs inputs +% from the NRLMSISE atmosphere model wich is additionally executed in the +% block. +% Like all Simulink elements, the blocks can be commented-out and -on by +% pressing ctrl + shift + x. +% All necessary parameters are set at the end of this file. + + +% The ordering of variables in the core_params and init_params structs may +% not be changed! This will cause errors in the underlying C-functions. + +clearvars('core_params','init_params'); + +%% core_params + + init_date = [2006,5,1,0,0,1]; + + % =============================== + % PLEASE UNCOMMENT THIS LINE + MJD = HPS_convertCalendarDate2MJD(init_date(1),init_date(2),init_date(3),init_date(4),init_date(5),init_date(6)); + % ==================================================== + core_params.start_date = [MJD,init_date(4:6)]; + +% GRAVITY OPTIONS + + % Gravity Model (simple (1), static spherical harmonics Gravity model (2), time dependent SH model (3)) + core_params.i_grav_model = 2; + % degree and order of gravity field (iN_max (degree) must be bigger or equal iM_max (order)) + core_params.iN_max = 12; + core_params.iM_max = 12; % also zonal degree (up to 6) for simple gravity model (than iM_max=1) + + % Ocean tide model (off (0), on (1)) + core_params.ocean_tides = 0; + % degree = order + core_params.ot_degree = 5; + + % Solid Earth tide model (off (0), with "zero tide" (1), with "tide free" (2) (default:1)) + core_params.solid_Earth_tides = 0; + % degree = order (min 2, maximal 4) + core_params.sEt_degree = 4; + + % Pole tide model (off (0), on (1)) + core_params.pole_tides = 0; + % degree = order (maximal 360) (actually d/o of pole ocean tide model, + % pole Earth tide model just affects the C21 and S21 SH coefficients) + core_params.pt_degree = 60; + + % Calculate gravity gradient matrix? (0 = no, 1 = yes) + core_params.i_gg = 0; + % effects of center of gravity != center of mass (0: off,1: spherical potential, 2: J2 potential) + core_params.i_cog = 0; + % post newtonian corrections to equations of motion (0: off, 1: add Schwarzschild corr., 2: (1)+Lense-Thirring corr., 3: (2)+ de Sitter corr.) + core_params.i_pN = 0; + % calculate gravity gradient torque (0: do not calc, 1: spherical pot. 2: with Gravity gradient matrix) + core_params.i_ggt = 0; + + % Chose ehpemeris model; analytical or JPL models (1: Analytical Montenbruck, 2: DE405, 3: DE430, 4: DE431) + core_params.ehp_model = 1; + + % include moon, planets (0 do not calculate, 1 calculate) + core_params.i_planets(1)=0; % sun + core_params.i_planets(2)=0; % mercury + core_params.i_planets(3)=0; % venus + core_params.i_planets(4)=0; % mars + core_params.i_planets(5)=0; % jupiter + core_params.i_planets(6)=0; % saturn + core_params.i_planets(7)=0; % uranus + core_params.i_planets(8)=1; % neptune + core_params.i_planets(9)=0; % pluto + core_params.i_planets(10)=0; % moon + + + % IERS2010 convention (0: compleat trafo, 1: in future setimated EOP, 2: z-onlyrotation, 3: GeoQ rotation) + core_params.T_e_i_opt = 0; + +% INTEGRATION OPTIONS + + % Integration time limit (integrate until tmax) + core_params.tmax = 18000; + + % step size of simulink simulation [s] + core_params.dt_sim = acme_dt_fixedstep; + + % integration method (0: runge-kutta dopri87 8th order (13 function evaluation), 1: runge-kutta ck54 5th order (6 function evaluation), 2: Adams-Bashforth-Moulton ABM one predictor and one corrector step (2 function evaluation); order specified by core_params.AMB_order ) + core_params.int_meth = 2; + + % only if ABM integrator is chosen + % order of ABM integrator, possible:2, 3, 4, 6, 8, 10, 12, 16, 18, 20, 24, 28 (1 is equal to simple euler scheme -> does not work conflict with loop indices!!!!) + core_params.ABM_order = 8; + + % For Runge Kutta Integrators and initialization of ABM integrator with DoPri87: + % local truncation error between two steps + core_params.eps = 1e-2; + % minimal time step allowed for step size control (if smaller step is proposed h set to hmin) + core_params.hmin = 0.5; + %first step size + core_params.h0 = core_params.dt_sim; + + % just for RKF methods + % option when T_e_i should be updated (0: just after every step in main + % integration loop 1: also inside the integration routine 2: use + % simplified T_e_i computation inside integration routine) 3: just + % every dt_sim time step + core_params.update_T_e_i = 2; + % option when gravity field should be updated (like T_e_i) (0: just + % after every step in main integration loop 1: also inside the + % integration routine 3: just every dt_sim time step (10: no update -> set accordingly in check_params.m) + core_params.update_gfc = 0; + + +% OUTPUT OPTIONS + + % output T_e_i Matrix (0: no 1: output) + core_params.T_e_i = 1; + + % option if position and velocity should be also transformed and saved in ECEF coordinates (0:off, 1: on) + core_params.save_ECEF = 1; + + % output sub steps in one dt_sim step just for RK methods (0: no, 1: output) + core_params.n_h =0; + + % output gravity gradient torque (0: no 1: output ggt is computed in next step so the output is delayed by one dt_sim time step + % 2: calculate ggt of actual step -> computationally more intensive because one more call of gravityfield) + core_params.output_ggt = 1; + + % output ephemeris (0: nein 1: ausgeben) + core_params.output_ehpemeris = 1; + % output ephemeris from which planets + + core_params.outp_eph_planets(1)=1; % sun + core_params.outp_eph_planets(2)=0; % mercury + core_params.outp_eph_planets(3)=0; % venus + core_params.outp_eph_planets(4)=0; % mars + core_params.outp_eph_planets(5)=0; % jupiter + core_params.outp_eph_planets(6)=0; % saturn + core_params.outp_eph_planets(7)=0; % uranus + core_params.outp_eph_planets(8)=0; % neptune + core_params.outp_eph_planets(9)=0; % pluto + core_params.outp_eph_planets(10)=0; % moon + + +% ADDITIONAL PARAMETERS + + % show integration status info (0: no info, 1: some 2: detailed info) + core_params.int_sts =1; + + % number of states (computed in mdlInizialize?!) + core_params.n = 13; + + +clear init_params +%% init_params +% parameter für mdlInitialize + + % Initial conditions (position and velocity) in eci (0) or in ecef (1) frame + init_params.frame = 1; + + init_params.y0(1)=0.883400652246999e-3; % w_x + init_params.y0(2)=0.679655234847646e-3; + init_params.y0(3)=0.018533696711896e-3; + + init_params.y0(4)=0.420661638681150; %q_1 + init_params.y0(5)= -0.215279353484945; + init_params.y0(6)= 0.792394972557636; + init_params.y0(7)= 0.385757427887756; + + % Initial GRACE values in ecef (polar orbit) + init_params.y0(8)= 2495.25780467829; + init_params.y0(9)= 3405.71999114539; + init_params.y0(10)= 6337.46591402429; + + init_params.y0(11)= 3084754.04939809; %x + init_params.y0(12)= 4802725.19816482; %y + init_params.y0(13)=-3808582.60527389; %z + + + %% check consistency of parameters + %core_params = HPS_check_params(core_params); + +%% Control law + +% simple quaternion control law +I = [1 0 0;... + 0 1 0;... + 0 0 1]; + +k = 2; % "geschwindigkeit" +K = k*I; + +c = 2; % "stärke" +C= c*I; + +% constant flight path angle cFPA: +phi1 = pi/180*0; +phi2 = pi/180*-1; +phi3 = pi/180*0; + +% compute quaternion for constant trafo from body frame +% =============================== + % PLEASE UNCOMMENT THIS LINES +% T_v_d = HPS_computeDCMFromEulerAngles( phi1, phi2, phi3, 123); +% q_v_d = HPS_computeQuaternionFromDCM(T_v_d); +% ==================================== + +%% Environment models + +% Additional values for C_d, C_l computation +Y1 = init_date(1)-1; +Y2 = init_date(1)+1; + +% Set C_D options +a_ref_opt = 1; +alpha_opt = 1; +alpha_val = 1; + +et = load('surface_tables/et.txt'); +nt = load('surface_tables/nt.txt'); + +% in case constant wall temp is assumed +n_elem = size(et,1); +T_Wall_const = ones(n_elem,1).*300; + +% Drag Coefficient +c_D = 2.5; + +% atmospheric indices +path_F107 = fullfile(XHPS_path, 'HPS_simulation', 'environment_data', 'activity_indices', 'FLUX', 'F107.txt'); +path_Ap = fullfile(XHPS_path, 'HPS_simulation', 'environment_data', 'activity_indices', 'KP_AP', 'Ap.txt'); + +% load satellite data for surface forces +load('surface_tables/angle_phi.txt'); +load('surface_tables/angle_tht.txt'); +load('surface_tables/force_FX.txt'); +load('surface_tables/force_FY.txt'); +load('surface_tables/force_FZ.txt'); +load('surface_tables/prespoint_X.txt'); +load('surface_tables/prespoint_Y.txt'); +load('surface_tables/prespoint_Z.txt'); +load('surface_tables/ref_area.txt'); +load('surface_tables/torque_TX.txt'); +load('surface_tables/torque_TY.txt'); +load('surface_tables/torque_TZ.txt'); + +% 3 dimensional L array containing absorption coefficients for each element +load('L3d.mat'); +elements_fe = 1:size(L3d,3); + diff --git a/simulations/Tutorial/xhps_integration/script_xhps_acme_01.m b/simulations/Tutorial/xhps_integration/script_xhps_acme_01.m new file mode 100644 index 0000000000000000000000000000000000000000..ce5a26f2826543ad0d4ae21f8079a2af20ead395 --- /dev/null +++ b/simulations/Tutorial/xhps_integration/script_xhps_acme_01.m @@ -0,0 +1,96 @@ +%% Example Accelerometer +% Using ACME and XHPS together +% Using fixed-step solvers +clear; + +% =============================== + % PLEASE UNCOMMENT THIS LINE + hps_startup + % ============================= +mdl = 'xhps_acme_ex_01'; +load_system(mdl); + +%% Setting the TM and control parameters +mass = 0.08; %kg +gap = 0.0003; %m +M_sat = 478; % define the mass of the satellite (typical number for GRACE-FO) + +dblint = setDblIntTrans(mdl, 'dblInt', mass, gap); + +acme_dt_fixedstep = 1; + +init_parameters; + +I = [1 0 0;... + 0 1 0;... + 0 0 1]; + +k = 2; % "geschwindigkeit" +K = k*I; + +c = 2; % "stärke" +C= c*I; + +% constant flight path angle cFPA: +phi1 = pi/180*0; +phi2 = pi/180*-1; +phi3 = pi/180*0; + +% compute quaternion for constant trafo from body frame +T_v_d = HPS_computeDCMFromEulerAngles( phi1, phi2, phi3, 123); +q_v_d = HPS_computeQuaternionFromDCM(T_v_d); + +%% Environment models + +% Additional values for C_d, C_l computation + + init_date = [2006,5,1,0,0,1]; +Y1 = init_date(1)-1; +Y2 = init_date(1)+1; + +% Set C_D options +a_ref_opt = 1; +alpha_opt = 1; +alpha_val = 1; + +et = load('surface_tables/et.txt'); +nt = load('surface_tables/nt.txt'); + +% in case constant wall temp is assumed +n_elem = size(et,1); +T_Wall_const = ones(n_elem,1).*300; + +% Drag Coefficient +c_D = 2.5; + +% atmospheric indices +path_F107 = fullfile(XHPS_path, 'HPS_simulation', 'environment_data', 'activity_indices', 'FLUX', 'F107.txt'); +path_Ap = fullfile(XHPS_path, 'HPS_simulation', 'environment_data', 'activity_indices', 'KP_AP', 'Ap.txt'); + +% load satellite data for surface forces +load('surface_tables/angle_phi.txt'); +load('surface_tables/angle_tht.txt'); +load('surface_tables/force_FX.txt'); +load('surface_tables/force_FY.txt'); +load('surface_tables/force_FZ.txt'); +load('surface_tables/prespoint_X.txt'); +load('surface_tables/prespoint_Y.txt'); +load('surface_tables/prespoint_Z.txt'); +load('surface_tables/ref_area.txt'); +load('surface_tables/torque_TX.txt'); +load('surface_tables/torque_TY.txt'); +load('surface_tables/torque_TZ.txt'); + +% 3 dimensional L array containing absorption coefficients for each element +load('L3d.mat'); +elements_fe = 1:size(L3d,3); + +init_parameters %XHPS stuff +acme_dt_fixedstep = core_params.dt_sim; +%% +sim(mdl) + + + + + diff --git a/simulations/Tutorial/xhps_integration/surface_tables/angle_phi.txt b/simulations/Tutorial/xhps_integration/surface_tables/angle_phi.txt new file mode 100644 index 0000000000000000000000000000000000000000..6431b5cc426bb6455eceb4c23ff92ad5c4c9c489 --- /dev/null +++ b/simulations/Tutorial/xhps_integration/surface_tables/angle_phi.txt @@ -0,0 +1,145 @@ +0.000000000000000 +0.043633231299860 +0.087266462599720 +0.130899693899570 +0.174532925199430 +0.218166156499290 +0.261799387799150 +0.305432619099010 +0.349065850398870 +0.392699081698720 +0.436332312998580 +0.479965544298440 +0.523598775598300 +0.567232006898160 +0.610865238198020 +0.654498469497870 +0.698131700797730 +0.741764932097590 +0.785398163397450 +0.829031394697310 +0.872664625997160 +0.916297857297020 +0.959931088596880 +1.003564319896740 +1.047197551196600 +1.090830782496460 +1.134464013796310 +1.178097245096170 +1.221730476396030 +1.265363707695890 +1.308996938995750 +1.352630170295610 +1.396263401595460 +1.439896632895320 +1.483529864195180 +1.527163095495040 +1.570796326794900 +1.614429558094750 +1.658062789394610 +1.701696020694470 +1.745329251994330 +1.788962483294190 +1.832595714594050 +1.876228945893900 +1.919862177193760 +1.963495408493620 +2.007128639793480 +2.050761871093340 +2.094395102393200 +2.138028333693050 +2.181661564992910 +2.225294796292770 +2.268928027592630 +2.312561258892490 +2.356194490192340 +2.399827721492200 +2.443460952792060 +2.487094184091920 +2.530727415391780 +2.574360646691640 +2.617993877991490 +2.661627109291350 +2.705260340591210 +2.748893571891070 +2.792526803190930 +2.836160034490790 +2.879793265790640 +2.923426497090500 +2.967059728390360 +3.010692959690220 +3.054326190990080 +3.097959422289930 +3.141592653589790 +3.185225884889650 +3.228859116189510 +3.272492347489370 +3.316125578789230 +3.359758810089080 +3.403392041388940 +3.447025272688800 +3.490658503988660 +3.534291735288520 +3.577924966588370 +3.621558197888230 +3.665191429188090 +3.708824660487950 +3.752457891787810 +3.796091123087670 +3.839724354387520 +3.883357585687380 +3.926990816987240 +3.970624048287100 +4.014257279586960 +4.057890510886820 +4.101523742186680 +4.145156973486530 +4.188790204786390 +4.232423436086250 +4.276056667386110 +4.319689898685970 +4.363323129985820 +4.406956361285680 +4.450589592585540 +4.494222823885400 +4.537856055185260 +4.581489286485120 +4.625122517784970 +4.668755749084830 +4.712388980384690 +4.756022211684550 +4.799655442984410 +4.843288674284260 +4.886921905584120 +4.930555136883980 +4.974188368183840 +5.017821599483700 +5.061454830783560 +5.105088062083410 +5.148721293383270 +5.192354524683130 +5.235987755982990 +5.279620987282850 +5.323254218582710 +5.366887449882560 +5.410520681182420 +5.454153912482280 +5.497787143782140 +5.541420375082000 +5.585053606381850 +5.628686837681710 +5.672320068981570 +5.715953300281430 +5.759586531581290 +5.803219762881150 +5.846852994181000 +5.890486225480860 +5.934119456780720 +5.977752688080580 +6.021385919380440 +6.065019150680300 +6.108652381980150 +6.152285613280010 +6.195918844579870 +6.239552075879730 +6.283185307179590 \ No newline at end of file diff --git a/simulations/Tutorial/xhps_integration/surface_tables/angle_tht.txt b/simulations/Tutorial/xhps_integration/surface_tables/angle_tht.txt new file mode 100644 index 0000000000000000000000000000000000000000..5184f2eb20c9ad3f7885ddaa1d7aeb185c8dff8d --- /dev/null +++ b/simulations/Tutorial/xhps_integration/surface_tables/angle_tht.txt @@ -0,0 +1,73 @@ +0.000000000000000 +0.043633231299860 +0.087266462599720 +0.130899693899570 +0.174532925199430 +0.218166156499290 +0.261799387799150 +0.305432619099010 +0.349065850398870 +0.392699081698720 +0.436332312998580 +0.479965544298440 +0.523598775598300 +0.567232006898160 +0.610865238198020 +0.654498469497870 +0.698131700797730 +0.741764932097590 +0.785398163397450 +0.829031394697310 +0.872664625997160 +0.916297857297020 +0.959931088596880 +1.003564319896740 +1.047197551196600 +1.090830782496460 +1.134464013796310 +1.178097245096170 +1.221730476396030 +1.265363707695890 +1.308996938995750 +1.352630170295610 +1.396263401595460 +1.439896632895320 +1.483529864195180 +1.527163095495040 +1.570796326794900 +1.614429558094750 +1.658062789394610 +1.701696020694470 +1.745329251994330 +1.788962483294190 +1.832595714594050 +1.876228945893900 +1.919862177193760 +1.963495408493620 +2.007128639793480 +2.050761871093340 +2.094395102393200 +2.138028333693050 +2.181661564992910 +2.225294796292770 +2.268928027592630 +2.312561258892490 +2.356194490192340 +2.399827721492200 +2.443460952792060 +2.487094184091920 +2.530727415391780 +2.574360646691640 +2.617993877991490 +2.661627109291350 +2.705260340591210 +2.748893571891070 +2.792526803190930 +2.836160034490790 +2.879793265790640 +2.923426497090500 +2.967059728390360 +3.010692959690220 +3.054326190990080 +3.097959422289930 +3.141592653589790 \ No newline at end of file diff --git a/simulations/Tutorial/xhps_integration/surface_tables/ct.txt b/simulations/Tutorial/xhps_integration/surface_tables/ct.txt new file mode 100644 index 0000000000000000000000000000000000000000..20d8b4317a5396ecb8c8a8c9579769248bc845a1 --- /dev/null +++ b/simulations/Tutorial/xhps_integration/surface_tables/ct.txt @@ -0,0 +1,6 @@ + 0.3400 0.6200 0.4000 0.2600 + 0.3400 0.6200 0.4000 0.2600 + 0.6500 0.8100 0.0500 0.3000 + 0.6500 0.8100 0.0500 0.3000 + 0.6500 0.8100 0.0500 0.3000 + 0.1200 0.7500 0.6800 0.2000 diff --git a/simulations/Tutorial/xhps_integration/surface_tables/et.txt b/simulations/Tutorial/xhps_integration/surface_tables/et.txt new file mode 100644 index 0000000000000000000000000000000000000000..781e373e1b3d06b6cf5d98c0bee1c43dd9c09466 --- /dev/null +++ b/simulations/Tutorial/xhps_integration/surface_tables/et.txt @@ -0,0 +1,6 @@ + 1. 0.981336 0.0000 0.9720 -0.3720 2. 1. 4. 6. + 2. 0.981336 3.1230 0.9720 -0.3720 9. 10. 12. 14. + 3. 3.034555 1.5615 0.3125 -0.3720 2. 6. 10. 9. + 4. 2.167362 1.5615 0.9720 -0.7440 6. 4. 12. 10. + 5. 3.034555 1.5615 1.6315 -0.3720 4. 1. 14. 12. + 6. 6.071112 1.5615 0.9720 0.0000 1. 2. 9. 14. diff --git a/simulations/Tutorial/xhps_integration/surface_tables/force_FX.txt b/simulations/Tutorial/xhps_integration/surface_tables/force_FX.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b057d79f3713704d3d39b583f09c3e9a7718c26 --- /dev/null +++ b/simulations/Tutorial/xhps_integration/surface_tables/force_FX.txt @@ -0,0 +1,73 @@ +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +-0.094693368841666 -0.094600756251203 -0.094323123156222 -0.093861082980331 -0.093215656080245 -0.092388266731642 -0.091380738928800 -0.090195291017396 -0.088834529185085 -0.087301439839653 -0.085599380909502 -0.083732072105977 -0.081703584191541 -0.079518327301982 -0.077181038374822 -0.074696767739629 -0.072070864929172 -0.069308963773283 -0.066416966839708 -0.063401029288406 -0.060267542207340 -0.057023115499187 -0.053674560389173 -0.050228871624687 -0.046693209437383 -0.043074881338022 -0.039381323813547 -0.035620083994650 -0.031798801360542 -0.027925189545600 -0.024007018310370 -0.020052095736675 -0.016068250703658 -0.012063315698392 -0.008045110011173 -0.004021423361890 0.000000000000000 0.004021423361889 0.008045110011173 0.012063315698392 0.016068250703657 0.020052095736676 0.024007018310371 0.027925189545599 0.031798801360542 0.035620083994650 0.039381323813546 0.043074881338022 0.046693209437383 0.050228871624686 0.053674560389173 0.057023115499187 0.060267542207340 0.063401029288406 0.066416966839708 0.069308963773281 0.072070864929171 0.074696767739629 0.077181038374822 0.079518327301982 0.081703584191541 0.083732072105977 0.085599380909502 0.087301439839653 0.088834529185085 0.090195291017396 0.091380738928800 0.092388266731642 0.093215656080245 0.093861082980331 0.094323123156222 0.094600756251203 0.094693368841666 0.094600756251203 0.094323123156222 0.093861082980331 0.093215656080245 0.092388266731643 0.091380738928802 0.090195291017396 0.088834529185085 0.087301439839653 0.085599380909502 0.083732072105977 0.081703584191541 0.079518327301982 0.077181038374822 0.074696767739629 0.072070864929172 0.069308963773283 0.066416966839709 0.063401029288406 0.060267542207340 0.057023115499187 0.053674560389173 0.050228871624687 0.046693209437383 0.043074881338022 0.039381323813546 0.035620083994650 0.031798801360543 0.027925189545600 0.024007018310371 0.020052095736675 0.016068250703657 0.012063315698392 0.008045110011173 0.004021423361890 0.000000000000000 -0.004021423361890 -0.008045110011173 -0.012063315698392 -0.016068250703657 -0.020052095736675 -0.024007018310371 -0.027925189545600 -0.031798801360543 -0.035620083994650 -0.039381323813546 -0.043074881338022 -0.046693209437383 -0.050228871624687 -0.053674560389173 -0.057023115499187 -0.060267542207340 -0.063401029288406 -0.066416966839709 -0.069308963773283 -0.072070864929171 -0.074696767739629 -0.077181038374822 -0.079518327301982 -0.081703584191541 -0.083732072105977 -0.085599380909502 -0.087301439839653 -0.088834529185085 -0.090195291017396 -0.091380738928802 -0.092388266731643 -0.093215656080245 -0.093861082980331 -0.094323123156222 -0.094600756251203 -0.094693368841666 +-0.193936206180712 -0.193741698858583 -0.193158660464255 -0.192188539930962 -0.190833746214371 -0.189097639427696 -0.186984518500272 -0.184499605428169 -0.181649026204559 -0.178439788535470 -0.174879756464337 -0.170977622045134 -0.166742874219747 -0.162185765069700 -0.157317273625944 -0.152149067432395 -0.146693462069957 -0.140963378857034 -0.134972300950539 -0.128734228077971 -0.122263630135781 -0.115575399892762 -0.108684805038829 -0.101607439819595 -0.094359176495760 -0.086956116863193 -0.079414544065026 -0.071750874920943 -0.063981612991325 -0.056123302584959 -0.048192483908808 -0.040205649546877 -0.032179202442610 -0.024129415545641 -0.016072393269235 -0.008024034889308 0.000000000000000 0.008024034889308 0.016072393269234 0.024129415545641 0.032179202442610 0.040205649546879 0.048192483908809 0.056123302584958 0.063981612991325 0.071750874920943 0.079414544065025 0.086956116863193 0.094359176495761 0.101607439819595 0.108684805038828 0.115575399892762 0.122263630135781 0.128734228077971 0.134972300950539 0.140963378857034 0.146693462069957 0.152149067432395 0.157317273625944 0.162185765069701 0.166742874219746 0.170977622045134 0.174879756464337 0.178439788535470 0.181649026204559 0.184499605428172 0.186984518500269 0.189097639427695 0.190833746214371 0.192188539930962 0.193158660464256 0.193741698858583 0.193936206180712 0.193741698858583 0.193158660464255 0.192188539930962 0.190833746214371 0.189097639427696 0.186984518500272 0.184499605428172 0.181649026204559 0.178439788535470 0.174879756464338 0.170977622045134 0.166742874219747 0.162185765069700 0.157317273625944 0.152149067432394 0.146693462069961 0.140963378857034 0.134972300950539 0.128734228077971 0.122263630135781 0.115575399892761 0.108684805038828 0.101607439819597 0.094359176495761 0.086956116863193 0.079414544065025 0.071750874920943 0.063981612991325 0.056123302584959 0.048192483908809 0.040205649546879 0.032179202442608 0.024129415545640 0.016072393269235 0.008024034889309 0.000000000000000 -0.008024034889309 -0.016072393269235 -0.024129415545640 -0.032179202442608 -0.040205649546878 -0.048192483908809 -0.056123302584959 -0.063981612991325 -0.071750874920943 -0.079414544065025 -0.086956116863193 -0.094359176495760 -0.101607439819597 -0.108684805038830 -0.115575399892761 -0.122263630135781 -0.128734228077971 -0.134972300950539 -0.140963378857034 -0.146693462069957 -0.152149067432394 -0.157317273625944 -0.162185765069700 -0.166742874219747 -0.170977622045134 -0.174879756464337 -0.178439788535470 -0.181649026204559 -0.184499605428172 -0.186984518500272 -0.189097639427696 -0.190833746214371 -0.192188539930962 -0.193158660464255 -0.193741698858583 -0.193936206180712 +-0.297015475843526 -0.296710526905154 -0.295796514730961 -0.294275939720696 -0.292152957485197 -0.289433361338176 -0.286124557933766 -0.282235536197829 -0.277776829741214 -0.272760472982400 -0.267199951244349 -0.261110145126011 -0.254507269482426 -0.247408807378313 -0.239833439408696 -0.231800968805630 -0.223332242773146 -0.214449070511674 -0.205174138410129 -0.195530922896379 -0.185543601446694 -0.175236962260713 -0.164636313111037 -0.153767389875500 -0.142656265255819 -0.131329258178176 -0.119812844359976 -0.108133568512432 -0.096317958630728 -0.084392442802580 -0.072383268942493 -0.060316427832403 -0.048217579820722 -0.036111985500591 -0.024024440655187 -0.011979215723028 0.000000000000000 0.011979215723027 0.024024440655186 0.036111985500589 0.048217579820721 0.060316427832406 0.072383268942495 0.084392442802578 0.096317958630727 0.108133568512431 0.119812844359975 0.131329258178177 0.142656265255824 0.153767389875496 0.164636313111036 0.175236962260712 0.185543601446689 0.195530922896380 0.205174138410129 0.214449070511674 0.223332242773146 0.231800968805630 0.239833439408696 0.247408807378313 0.254507269482417 0.261110145126002 0.267199951244349 0.272760472982398 0.277776829741214 0.282235536197829 0.286124557933766 0.289433361338176 0.292152957485197 0.294275939720696 0.295796514730961 0.296710526905154 0.297015475843526 0.296710526905154 0.295796514730961 0.294275939720696 0.292152957485197 0.289433361338176 0.286124557933766 0.282235536197829 0.277776829741214 0.272760472982398 0.267199951244349 0.261110145126011 0.254507269482426 0.247408807378313 0.239833439408696 0.231800968805630 0.223332242773146 0.214449070511675 0.205174138410129 0.195530922896379 0.185543601446689 0.175236962260711 0.164636313111036 0.153767389875500 0.142656265255823 0.131329258178176 0.119812844359975 0.108133568512430 0.096317958630728 0.084392442802581 0.072383268942494 0.060316427832405 0.048217579820721 0.036111985500589 0.024024440655188 0.011979215723029 0.000000000000000 -0.011979215723029 -0.024024440655188 -0.036111985500589 -0.048217579820721 -0.060316427832403 -0.072383268942494 -0.084392442802581 -0.096317958630728 -0.108133568512430 -0.119812844359975 -0.131329258178176 -0.142656265255823 -0.153767389875500 -0.164636313111038 -0.175236962260711 -0.185543601446689 -0.195530922896379 -0.205174138410129 -0.214449070511675 -0.223332242773143 -0.231800968805630 -0.239833439408696 -0.247408807378313 -0.254507269482426 -0.261110145126011 -0.267199951244340 -0.272760472982398 -0.277776829741214 -0.282235536197829 -0.286124557933766 -0.289433361338176 -0.292152957485197 -0.294275939720696 -0.295796514730961 -0.296710526905154 -0.297015475843526 +-0.403188783041407 -0.402765646059054 -0.401497490399482 -0.399388076112185 -0.396443650606992 -0.392672919774805 -0.388087007814819 -0.382699406024522 -0.376525910878436 -0.369584551789272 -0.361895509009957 -0.353481022196437 -0.344365290208884 -0.334574362782286 -0.324136024746716 -0.313079673521285 -0.301436190644810 -0.289237808139685 -0.276517970532876 -0.263311193379966 -0.249652919153619 -0.235579371367666 -0.221127407811174 -0.206334373764037 -0.191237956056715 -0.175876038821576 -0.160286561762263 -0.144507381740647 -0.128576138448738 -0.112530124895001 -0.096406163392044 -0.080240487685318 -0.064068631810769 -0.047925326213935 -0.031844401604134 -0.015858700955197 0.000000000000000 0.015858700955196 0.031844401604133 0.047925326213935 0.064068631810767 0.080240487685321 0.096406163392045 0.112530124895000 0.128576138448736 0.144507381740647 0.160286561762262 0.175876038821581 0.191237956056716 0.206334373764037 0.221127407811174 0.235579371367666 0.249652919153616 0.263311193379966 0.276517970532876 0.289237808139684 0.301436190644810 0.313079673521285 0.324136024746717 0.334574362782286 0.344365290208884 0.353481022196437 0.361895509009957 0.369584551789272 0.376525910878437 0.382699406024522 0.388087007814819 0.392672919774805 0.396443650606991 0.399388076112185 0.401497490399482 0.402765646059054 0.403188783041407 0.402765646059054 0.401497490399482 0.399388076112185 0.396443650606991 0.392672919774805 0.388087007814819 0.382699406024522 0.376525910878437 0.369584551789272 0.361895509009957 0.353481022196437 0.344365290208884 0.334574362782286 0.324136024746716 0.313079673521284 0.301436190644812 0.289237808139685 0.276517970532876 0.263311193379966 0.249652919153616 0.235579371367665 0.221127407811174 0.206334373764038 0.191237956056715 0.175876038821581 0.160286561762261 0.144507381740645 0.128576138448738 0.112530124895003 0.096406163392044 0.080240487685319 0.064068631810766 0.047925326213934 0.031844401604135 0.015858700955198 0.000000000000000 -0.015858700955198 -0.031844401604135 -0.047925326213934 -0.064068631810766 -0.080240487685319 -0.096406163392044 -0.112530124895003 -0.128576138448738 -0.144507381740646 -0.160286561762261 -0.175876038821581 -0.191237956056715 -0.206334373764038 -0.221127407811174 -0.235579371367665 -0.249652919153616 -0.263311193379966 -0.276517970532876 -0.289237808139685 -0.301436190644810 -0.313079673521284 -0.324136024746716 -0.334574362782286 -0.344365290208884 -0.353481022196437 -0.361895509009956 -0.369584551789272 -0.376525910878437 -0.382699406024522 -0.388087007814819 -0.392672919774805 -0.396443650606991 -0.399388076112185 -0.401497490399482 -0.402765646059054 -0.403188783041407 +-0.511689944301936 -0.511141732489289 -0.509498839437500 -0.506766483669740 -0.502953333997295 -0.498071466627297 -0.492136305509746 -0.485166546316159 -0.477184064549985 -0.468213808391888 -0.458283676982783 -0.447424384940901 -0.435669313997984 -0.423054352721063 -0.409617725361037 -0.395399810936805 -0.380442953722060 -0.364791266353077 -0.348490426817277 -0.331587470614888 -0.314130579409419 -0.296168867496385 -0.277752167423777 -0.258930816092414 -0.239755442649304 -0.220276759462809 -0.200545357434822 -0.180611506862696 -0.160524965012673 -0.140334791507284 -0.120089172562278 -0.099835255034673 -0.079618991162663 -0.059484994791498 -0.039476409787645 -0.019634791246647 0.000000000000000 0.019634791246646 0.039476409787643 0.059484994791498 0.079618991162661 0.099835255034679 0.120089172562279 0.140334791507283 0.160524965012673 0.180611506862696 0.200545357434821 0.220276759462813 0.239755442649306 0.258930816092414 0.277752167423777 0.296168867496385 0.314130579409419 0.331587470614891 0.348490426817277 0.364791266353076 0.380442953722048 0.395399810936799 0.409617725361038 0.423054352721064 0.435669313997984 0.447424384940901 0.458283676982782 0.468213808391888 0.477184064549986 0.485166546316160 0.492136305509745 0.498071466627297 0.502953333997295 0.506766483669740 0.509498839437500 0.511141732489289 0.511689944301936 0.511141732489289 0.509498839437500 0.506766483669740 0.502953333997295 0.498071466627298 0.492136305509746 0.485166546316160 0.477184064549985 0.468213808391888 0.458283676982783 0.447424384940901 0.435669313997984 0.423054352721064 0.409617725361037 0.395399810936798 0.380442953722060 0.364791266353077 0.348490426817278 0.331587470614889 0.314130579409418 0.296168867496383 0.277752167423776 0.258930816092417 0.239755442649304 0.220276759462810 0.200545357434820 0.180611506862690 0.160524965012677 0.140334791507285 0.120089172562279 0.099835255034675 0.079618991162660 0.059484994791495 0.039476409787647 0.019634791246649 0.000000000000000 -0.019634791246649 -0.039476409787647 -0.059484994791497 -0.079618991162660 -0.099835255034675 -0.120089172562279 -0.140334791507285 -0.160524965012677 -0.180611506862690 -0.200545357434820 -0.220276759462810 -0.239755442649304 -0.258930816092417 -0.277752167423778 -0.296168867496383 -0.314130579409418 -0.331587470614889 -0.348490426817278 -0.364791266353077 -0.380442953722047 -0.395399810936798 -0.409617725361037 -0.423054352721064 -0.435669313997984 -0.447424384940901 -0.458283676982765 -0.468213808391888 -0.477184064549985 -0.485166546316160 -0.492136305509746 -0.498071466627298 -0.502953333997295 -0.506766483669740 -0.509498839437500 -0.511141732489289 -0.511689944301936 +-0.621734738906016 -0.621055477836144 -0.619019986931668 -0.615635131139116 -0.610912312220891 -0.604867409314152 -0.597520696274717 -0.588896736362094 -0.579024254974157 -0.567935991286259 -0.555668529790214 -0.542262112861695 -0.527760435609151 -0.512210424373174 -0.495662000350753 -0.478167829913354 -0.459783063271177 -0.440565063207048 -0.420573125661851 -0.399868193998661 -0.378512568805430 -0.356569615113905 -0.334103468918248 -0.311178744867087 -0.287860246981399 -0.264212684214023 -0.240300392618478 -0.216187065832741 -0.191935495510327 -0.167607323245410 -0.143262805442515 -0.118960592474963 -0.094757523360077 -0.070708437055065 -0.046866001345511 -0.023280560159912 0.000000000000000 0.023280560159911 0.046866001345510 0.070708437055063 0.094757523360076 0.118960592474966 0.143262805442518 0.167607323245408 0.191935495510326 0.216187065832741 0.240300392618477 0.264212684214025 0.287860246981403 0.311178744867087 0.334103468918245 0.356569615113905 0.378512568805430 0.399868193998674 0.420573125661850 0.440565063207042 0.459783063271177 0.478167829913353 0.495662000350753 0.512210424373176 0.527760435609147 0.542262112861695 0.555668529790213 0.567935991286259 0.579024254974159 0.588896736362094 0.597520696274717 0.604867409314152 0.610912312220891 0.615635131139116 0.619019986931668 0.621055477836144 0.621734738906016 0.621055477836144 0.619019986931668 0.615635131139116 0.610912312220891 0.604867409314152 0.597520696274718 0.588896736362094 0.579024254974158 0.567935991286259 0.555668529790215 0.542262112861695 0.527760435609151 0.512210424373175 0.495662000350753 0.478167829913352 0.459783063271179 0.440565063207049 0.420573125661856 0.399868193998661 0.378512568805423 0.356569615113903 0.334103468918244 0.311178744867090 0.287860246981400 0.264212684214025 0.240300392618476 0.216187065832738 0.191935495510330 0.167607323245410 0.143262805442518 0.118960592474966 0.094757523360075 0.070708437055062 0.046866001345513 0.023280560159915 0.000000000000000 -0.023280560159914 -0.046866001345513 -0.070708437055062 -0.094757523360075 -0.118960592474966 -0.143262805442517 -0.167607323245410 -0.191935495510330 -0.216187065832738 -0.240300392618476 -0.264212684214025 -0.287860246981400 -0.311178744867090 -0.334103468918249 -0.356569615113903 -0.378512568805424 -0.399868193998661 -0.420573125661857 -0.440565063207049 -0.459783063271176 -0.478167829913352 -0.495662000350753 -0.512210424373175 -0.527760435609151 -0.542262112861695 -0.555668529790213 -0.567935991286259 -0.579024254974158 -0.588896736362094 -0.597520696274718 -0.604867409314152 -0.610912312220891 -0.615635131139116 -0.619019986931668 -0.621055477836144 -0.621734738906016 +-0.732526798209884 -0.731711471664954 -0.729268392963809 -0.725206249119237 -0.719539465966996 -0.712288129765189 -0.703477878186340 -0.693139761448094 -0.681310074532534 -0.668030161640381 -0.653346194214960 -0.637308924048502 -0.619973413151398 -0.601398742218718 -0.581647699670297 -0.560786453366990 -0.538884207216533 -0.516012844977915 -0.492246563650347 -0.467661498893453 -0.442335344967661 -0.416346971707640 -0.389776041047596 -0.362702625603967 -0.335206831790578 -0.307368429891702 -0.279266493452414 -0.250979050261015 -0.222582747099079 -0.194152530317922 -0.165761344170390 -0.137479848682258 -0.109376158690653 -0.081515605508675 -0.053960522497109 -0.026770055636644 0.000000000000000 0.026770055636642 0.053960522497106 0.081515605508673 0.109376158690649 0.137479848682265 0.165761344170394 0.194152530317919 0.222582747099076 0.250979050261014 0.279266493452412 0.307368429891710 0.335206831790581 0.362702625603967 0.389776041047595 0.416346971707638 0.442335344967661 0.467661498893460 0.492246563650346 0.516012844977914 0.538884207216533 0.560786453366989 0.581647699670298 0.601398742218720 0.619973413151396 0.637308924048501 0.653346194214960 0.668030161640381 0.681310074532535 0.693139761448096 0.703477878186340 0.712288129765189 0.719539465966996 0.725206249119237 0.729268392963810 0.731711471664954 0.732526798209884 0.731711471664955 0.729268392963810 0.725206249119237 0.719539465966995 0.712288129765189 0.703477878186344 0.693139761448095 0.681310074532534 0.668030161640380 0.653346194214961 0.637308924048503 0.619973413151399 0.601398742218718 0.581647699670298 0.560786453366989 0.538884207216535 0.516012844977915 0.492246563650348 0.467661498893458 0.442335344967659 0.416346971707638 0.389776041047593 0.362702625603980 0.335206831790580 0.307368429891710 0.279266493452411 0.250979050261010 0.222582747099080 0.194152530317923 0.165761344170391 0.137479848682260 0.109376158690647 0.081515605508671 0.053960522497110 0.026770055636646 0.000000000000000 -0.026770055636646 -0.053960522497110 -0.081515605508671 -0.109376158690647 -0.137479848682260 -0.165761344170391 -0.194152530317923 -0.222582747099080 -0.250979050261011 -0.279266493452411 -0.307368429891710 -0.335206831790580 -0.362702625603980 -0.389776041047597 -0.416346971707638 -0.442335344967660 -0.467661498893458 -0.492246563650348 -0.516012844977916 -0.538884207216515 -0.560786453366989 -0.581647699670298 -0.601398742218718 -0.619973413151399 -0.637308924048503 -0.653346194214960 -0.668030161640380 -0.681310074532534 -0.693139761448095 -0.703477878186344 -0.712288129765189 -0.719539465966995 -0.725206249119237 -0.729268392963810 -0.731711471664955 -0.732526798209884 +-0.843263588181532 -0.842308176784360 -0.839445506306285 -0.834686247823090 -0.828048119718710 -0.819555788058033 -0.809240728078114 -0.797141047757890 -0.783301274689302 -0.767772107725215 -0.750610135122351 -0.731877521125781 -0.711641663157636 -0.689974821970558 -0.666953727308651 -0.642659161780524 -0.617175525792217 -0.590590386508746 -0.562994013913061 -0.534478907107619 -0.505139314057611 -0.475070748005281 -0.444369503790660 -0.413132177296761 -0.381455191196475 -0.349434330113664 -0.317164288224267 -0.284738232213783 -0.252247382377633 -0.219780614499889 -0.187424084976767 -0.155260881463960 -0.123370701123395 -0.091829558326911 -0.060709523443301 -0.030078494092617 0.000000000000000 0.030078494092615 0.060709523443297 0.091829558326908 0.123370701123393 0.155260881463966 0.187424084976770 0.219780614499887 0.252247382377632 0.284738232213783 0.317164288224265 0.349434330113669 0.381455191196480 0.413132177296760 0.444369503790660 0.475070748005279 0.505139314057611 0.534478907107622 0.562994013913061 0.590590386508744 0.617175525792217 0.642659161780523 0.666953727308653 0.689974821970560 0.711641663157636 0.731877521125780 0.750610135122350 0.767772107725214 0.783301274689303 0.797141047757891 0.809240728078114 0.819555788058033 0.828048119718710 0.834686247823090 0.839445506306285 0.842308176784360 0.843263588181532 0.842308176784360 0.839445506306285 0.834686247823090 0.828048119718710 0.819555788058033 0.809240728078114 0.797141047757891 0.783301274689303 0.767772107725213 0.750610135122351 0.731877521125782 0.711641663157637 0.689974821970560 0.666953727308653 0.642659161780522 0.617175525792217 0.590590386508746 0.562994013913063 0.534478907107620 0.505139314057609 0.475070748005278 0.444369503790658 0.413132177296764 0.381455191196477 0.349434330113667 0.317164288224264 0.284738232213781 0.252247382377634 0.219780614499892 0.187424084976769 0.155260881463964 0.123370701123393 0.091829558326905 0.060709523443302 0.030078494092620 0.000000000000000 -0.030078494092619 -0.060709523443302 -0.091829558326905 -0.123370701123392 -0.155260881463964 -0.187424084976768 -0.219780614499890 -0.252247382377634 -0.284738232213781 -0.317164288224264 -0.349434330113667 -0.381455191196477 -0.413132177296764 -0.444369503790663 -0.475070748005278 -0.505139314057610 -0.534478907107620 -0.562994013913063 -0.590590386508747 -0.617175525792215 -0.642659161780522 -0.666953727308653 -0.689974821970560 -0.711641663157637 -0.731877521125782 -0.750610135122350 -0.767772107725213 -0.783301274689303 -0.797141047757891 -0.809240728078114 -0.819555788058033 -0.828048119718710 -0.834686247823090 -0.839445506306285 -0.842308176784360 -0.843263588181532 +-0.953142439769760 -0.952043952102628 -0.948752764774254 -0.943281680037930 -0.935651952605012 -0.925893166684680 -0.914043065048798 -0.900147331318474 -0.884259326998031 -0.866439785095437 -0.846756462471635 -0.825283753346636 -0.802102266657267 -0.777298370210863 -0.750963704803057 -0.723194671672159 -0.694091896838121 -0.663759676026571 -0.632305404000609 -0.599838992219344 -0.566472278807457 -0.532318434857192 -0.497491371091306 -0.462105148892249 -0.426273399651089 -0.390108756308084 -0.353722300847117 -0.317223031368878 -0.280717352203911 -0.244308590337519 -0.208096541205993 -0.172177046688340 -0.136641607863131 -0.101577034825993 -0.067065135574071 -0.033182445659652 0.000000000000000 0.033182445659650 0.067065135574068 0.101577034825990 0.136641607863126 0.172177046688343 0.208096541205999 0.244308590337517 0.280717352203903 0.317223031368875 0.353722300847116 0.390108756308091 0.426273399651093 0.462105148892249 0.497491371091305 0.532318434857191 0.566472278807453 0.599838992219349 0.632305404000608 0.663759676026570 0.694091896838119 0.723194671672158 0.750963704803060 0.777298370210867 0.802102266657267 0.825283753346635 0.846756462471633 0.866439785095437 0.884259326998031 0.900147331318474 0.914043065048797 0.925893166684679 0.935651952605012 0.943281680037930 0.948752764774256 0.952043952102628 0.953142439769760 0.952043952102628 0.948752764774256 0.943281680037930 0.935651952605011 0.925893166684721 0.914043065048799 0.900147331318474 0.884259326998031 0.866439785095434 0.846756462471635 0.825283753346636 0.802102266657268 0.777298370210866 0.750963704803059 0.723194671672158 0.694091896838124 0.663759676026571 0.632305404000610 0.599838992219344 0.566472278807451 0.532318434857190 0.497491371091304 0.462105148892252 0.426273399651092 0.390108756308085 0.353722300847114 0.317223031368873 0.280717352203912 0.244308590337528 0.208096541205995 0.172177046688341 0.136641607863125 0.101577034825984 0.067065135574073 0.033182445659655 0.000000000000000 -0.033182445659655 -0.067065135574073 -0.101577034825985 -0.136641607863124 -0.172177046688341 -0.208096541205995 -0.244308590337528 -0.280717352203912 -0.317223031368873 -0.353722300847114 -0.390108756308085 -0.426273399651092 -0.462105148892251 -0.497491371091307 -0.532318434857190 -0.566472278807451 -0.599838992219344 -0.632305404000610 -0.663759676026571 -0.694091896838119 -0.723194671672158 -0.750963704803059 -0.777298370210866 -0.802102266657268 -0.825283753346636 -0.846756462471632 -0.866439785095434 -0.884259326998031 -0.900147331318474 -0.914043065048799 -0.925893166684721 -0.935651952605011 -0.943281680037930 -0.948752764774256 -0.952043952102628 -0.953142439769760 +-1.061366581358723 -1.060123077331391 -1.056397596714659 -1.050205204049092 -1.041570907595717 -1.030529511114259 -1.017125407821311 -1.001412317985263 -0.983452972011320 -0.963318741253118 -0.941089219155155 -0.916851755677184 -0.890700948276197 -0.862738093024708 -0.833070599715970 -0.801811375053847 -0.769078178239720 -0.734992953451836 -0.699681143861473 -0.663270991946756 -0.625892830942825 -0.587678372312225 -0.548759994126529 -0.509270035221256 -0.469340099921785 -0.429100378038402 -0.388678984693068 -0.348201324373180 -0.307789483406655 -0.267561654821598 -0.227631599293966 -0.188108145599509 -0.149094733674661 -0.110689003057231 -0.072982429123933 -0.036060009171085 0.000000000000000 0.036060009171082 0.072982429123929 0.110689003057228 0.149094733674658 0.188108145599511 0.227631599293979 0.267561654821597 0.307789483406652 0.348201324373178 0.388678984693067 0.429100378038404 0.469340099921805 0.509270035221255 0.548759994126528 0.587678372312210 0.625892830942825 0.663270991946772 0.699681143861472 0.734992953451835 0.769078178239718 0.801811375053846 0.833070599715971 0.862738093024710 0.890700948276196 0.916851755677183 0.941089219155153 0.963318741253116 0.983452972011320 1.001412317985263 1.017125407821311 1.030529511114259 1.041570907595717 1.050205204049089 1.056397596714659 1.060123077331391 1.061366581358723 1.060123077331391 1.056397596714659 1.050205204049087 1.041570907595716 1.030529511114259 1.017125407821311 1.001412317985263 0.983452972011320 0.963318741253115 0.941089219155156 0.916851755677185 0.890700948276197 0.862738093024709 0.833070599715970 0.801811375053844 0.769078178239721 0.734992953451839 0.699681143861477 0.663270991946771 0.625892830942820 0.587678372312209 0.548759994126526 0.509270035221257 0.469340099921803 0.429100378038403 0.388678984693053 0.348201324373171 0.307789483406656 0.267561654821599 0.227631599293975 0.188108145599510 0.149094733674656 0.110689003057223 0.072982429123935 0.036060009171087 0.000000000000000 -0.036060009171087 -0.072982429123935 -0.110689003057223 -0.149094733674656 -0.188108145599509 -0.227631599293975 -0.267561654821599 -0.307789483406656 -0.348201324373171 -0.388678984693053 -0.429100378038402 -0.469340099921803 -0.509270035221257 -0.548759994126532 -0.587678372312209 -0.625892830942821 -0.663270991946771 -0.699681143861477 -0.734992953451840 -0.769078178239718 -0.801811375053844 -0.833070599715970 -0.862738093024709 -0.890700948276197 -0.916851755677185 -0.941089219155153 -0.963318741253115 -0.983452972011320 -1.001412317985263 -1.017125407821311 -1.030529511114259 -1.041570907595716 -1.050205204049087 -1.056397596714659 -1.060123077331391 -1.061366581358723 +-1.167151127542104 -1.165761733830059 -1.161599378102519 -1.154681501289757 -1.145037054208961 -1.132706322342237 -1.117740682275256 -1.100202291530134 -1.080163713999327 -1.057707483643448 -1.032925609553301 -1.005919025888695 -0.976796990595183 -0.945676437156596 -0.912681283968188 -0.877941706207614 -0.841593375335066 -0.803776671573144 -0.764635874892962 -0.724318340170118 -0.682973662267960 -0.640752836856894 -0.597807422786607 -0.554288711793169 -0.510346911244522 -0.466130345508640 -0.421784681365919 -0.377452182687051 -0.333270999356981 -0.289374495149214 -0.245890618943842 -0.202941323339508 -0.160642034337158 -0.119101175374255 -0.078419748565795 -0.038690975565358 0.000000000000000 0.038690975565356 0.078419748565790 0.119101175374253 0.160642034337157 0.202941323339514 0.245890618943846 0.289374495149213 0.333270999356972 0.377452182687049 0.421784681365918 0.466130345508648 0.510346911244530 0.554288711793166 0.597807422786607 0.640752836856891 0.682973662267946 0.724318340170121 0.764635874892950 0.803776671573142 0.841593375335063 0.877941706207614 0.912681283968192 0.945676437156598 0.976796990595182 1.005919025888695 1.032925609553301 1.057707483643447 1.080163713999328 1.100202291530136 1.117740682275256 1.132706322342237 1.145037054208959 1.154681501289757 1.161599378102519 1.165761733830059 1.167151127542104 1.165761733830059 1.161599378102519 1.154681501289756 1.145037054208958 1.132706322342237 1.117740682275257 1.100202291530134 1.080163713999327 1.057707483643446 1.032925609553305 1.005919025888696 0.976796990595185 0.945676437156598 0.912681283968189 0.877941706207613 0.841593375335069 0.803776671573145 0.764635874892963 0.724318340170121 0.682973662267945 0.640752836856890 0.597807422786601 0.554288711793171 0.510346911244528 0.466130345508641 0.421784681365917 0.377452182687047 0.333270999356983 0.289374495149217 0.245890618943845 0.202941323339512 0.160642034337152 0.119101175374247 0.078419748565798 0.038690975565362 0.000000000000000 -0.038690975565361 -0.078419748565798 -0.119101175374251 -0.160642034337152 -0.202941323339512 -0.245890618943844 -0.289374495149217 -0.333270999356983 -0.377452182687047 -0.421784681365917 -0.466130345508641 -0.510346911244528 -0.554288711793170 -0.597807422786609 -0.640752836856890 -0.682973662267945 -0.724318340170121 -0.764635874892963 -0.803776671573145 -0.841593375335062 -0.877941706207613 -0.912681283968189 -0.945676437156598 -0.976796990595185 -1.005919025888696 -1.032925609553300 -1.057707483643446 -1.080163713999327 -1.100202291530134 -1.117740682275257 -1.132706322342237 -1.145037054208958 -1.154681501289756 -1.161599378102519 -1.165761733830059 -1.167151127542104 +-1.269728978782655 -1.268193896216919 -1.263595300049028 -1.255953103822403 -1.245300360254603 -1.231683057482936 -1.215159835854084 -1.195801627287648 -1.173691219793759 -1.148922750261286 -1.121601129142591 -1.091841401144773 -1.059768046490259 -1.025514227727433 -0.989220987454435 -0.951036402659903 -0.911114701682447 -0.869615350046069 -0.826702111633841 -0.782542091822055 -0.737304769306251 -0.691161023409468 -0.644282163671886 -0.596838968478688 -0.549000739391321 -0.500934377705095 -0.452803489566315 -0.404767525744795 -0.356980961876364 -0.309592524664193 -0.262744469163442 -0.216571911870285 -0.171202223899892 -0.126754488068959 -0.083339023203227 -0.041056978470399 0.000000000000000 0.041056978470396 0.083339023203222 0.126754488068956 0.171202223899890 0.216571911870289 0.262744469163446 0.309592524664192 0.356980961876362 0.404767525744794 0.452803489566312 0.500934377705117 0.549000739391328 0.596838968478686 0.644282163671884 0.691161023409466 0.737304769306248 0.782542091822061 0.826702111633839 0.869615350046067 0.911114701682446 0.951036402659902 0.989220987454440 1.025514227727437 1.059768046490258 1.091841401144772 1.121601129142589 1.148922750261285 1.173691219793761 1.195801627287649 1.215159835854084 1.231683057482934 1.245300360254603 1.255953103822400 1.263595300049028 1.268193896216919 1.269728978782655 1.268193896216919 1.263595300049028 1.255953103822400 1.245300360254602 1.231683057482936 1.215159835854084 1.195801627287649 1.173691219793760 1.148922750261284 1.121601129142592 1.091841401144774 1.059768046490260 1.025514227727435 0.989220987454437 0.951036402659901 0.911114701682450 0.869615350046071 0.826702111633842 0.782542091822057 0.737304769306246 0.691161023409464 0.644282163671879 0.596838968478692 0.549000739391326 0.500934377705097 0.452803489566306 0.404767525744793 0.356980961876366 0.309592524664202 0.262744469163444 0.216571911870288 0.171202223899885 0.126754488068954 0.083339023203229 0.041056978470403 0.000000000000000 -0.041056978470402 -0.083339023203229 -0.126754488068955 -0.171202223899885 -0.216571911870287 -0.262744469163444 -0.309592524664201 -0.356980961876366 -0.404767525744793 -0.452803489566306 -0.500934377705097 -0.549000739391326 -0.596838968478689 -0.644282163671888 -0.691161023409465 -0.737304769306246 -0.782542091822057 -0.826702111633844 -0.869615350046071 -0.911114701682445 -0.951036402659901 -0.989220987454437 -1.025514227727435 -1.059768046490260 -1.091841401144774 -1.121601129142588 -1.148922750261285 -1.173691219793760 -1.195801627287649 -1.215159835854084 -1.231683057482936 -1.245300360254602 -1.255953103822400 -1.263595300049028 -1.268193896216919 -1.269728978782655 +-1.368356587196401 -1.366677090047148 -1.361646102207007 -1.353286087439288 -1.341634328824314 -1.326742695155446 -1.308677316252727 -1.287518169531335 -1.263358580800810 -1.236304642885301 -1.206474556244819 -1.173997896333064 -1.139014812950949 -1.101675167334988 -1.062137613161295 -1.020568628036279 -0.977141502391176 -0.932035292988067 -0.885433748482937 -0.837524214675332 -0.788496527196646 -0.738541899459373 -0.687851813696761 -0.636616922873525 -0.585025971141269 -0.533264740347179 -0.481515029885124 -0.429953676903030 -0.378751623555289 -0.328073037612031 -0.278074492315920 -0.228904210910761 -0.180701380761574 -0.133595541444144 -0.087706050609555 -0.043141630828848 0.000000000000000 0.043141630828845 0.087706050609552 0.133595541444138 0.180701380761572 0.228904210910767 0.278074492315924 0.328073037612028 0.378751623555282 0.429953676903028 0.481515029885122 0.533264740347200 0.585025971141273 0.636616922873522 0.687851813696747 0.738541899459370 0.788496527196644 0.837524214675336 0.885433748482934 0.932035292988066 0.977141502391174 1.020568628036277 1.062137613161297 1.101675167334990 1.139014812950945 1.173997896333063 1.206474556244818 1.236304642885301 1.263358580800811 1.287518169531340 1.308677316252727 1.326742695155445 1.341634328824314 1.353286087439288 1.361646102207008 1.366677090047148 1.368356587196401 1.366677090047148 1.361646102207007 1.353286087439288 1.341634328824314 1.326742695155447 1.308677316252728 1.287518169531337 1.263358580800811 1.236304642885297 1.206474556244825 1.173997896333065 1.139014812950951 1.101675167334988 1.062137613161296 1.020568628036276 0.977141502391222 0.932035292988068 0.885433748482938 0.837524214675334 0.788496527196642 0.738541899459367 0.687851813696745 0.636616922873527 0.585025971141271 0.533264740347182 0.481515029885121 0.429953676903026 0.378751623555291 0.328073037612042 0.278074492315923 0.228904210910763 0.180701380761568 0.133595541444135 0.087706050609558 0.043141630828852 0.000000000000000 -0.043141630828851 -0.087706050609558 -0.133595541444135 -0.180701380761568 -0.228904210910763 -0.278074492315923 -0.328073037612042 -0.378751623555291 -0.429953676903026 -0.481515029885120 -0.533264740347180 -0.585025971141271 -0.636616922873527 -0.687851813696762 -0.738541899459367 -0.788496527196642 -0.837524214675335 -0.885433748482938 -0.932035292988068 -0.977141502391173 -1.020568628036276 -1.062137613161296 -1.101675167334988 -1.139014812950951 -1.173997896333065 -1.206474556244816 -1.236304642885297 -1.263358580800811 -1.287518169531340 -1.308677316252728 -1.326742695155447 -1.341634328824314 -1.353286087439288 -1.361646102207007 -1.366677090047148 -1.368356587196401 +-1.462319544719350 -1.460497971877420 -1.455041628575612 -1.445975587192023 -1.433341457763536 -1.417197123443167 -1.397616372823293 -1.374688431786127 -1.348517398264736 -1.319221584000432 -1.286932768051721 -1.251795367441507 -1.213965530925846 -1.173610162412490 -1.130905881059380 -1.086037925528611 -1.039199010262215 -0.990588141977877 -0.940409404852425 -0.888870723068546 -0.836182609540819 -0.782556909714155 -0.728205549336349 -0.673339295049568 -0.618166536522633 -0.562892098657586 -0.507716092152334 -0.452832810388055 -0.398429680237673 -0.344686273962353 -0.291773388882185 -0.239852200975373 -0.189073497984591 -0.139576996991597 -0.091490750768652 -0.044930646530361 0.000000000000000 0.044930646530357 0.091490750768649 0.139576996991596 0.189073497984586 0.239852200975385 0.291773388882191 0.344686273962351 0.398429680237667 0.452832810388053 0.507716092152332 0.562892098657594 0.618166536522639 0.673339295049542 0.728205549336348 0.782556909714153 0.836182609540817 0.888870723068550 0.940409404852423 0.990588141977875 1.039199010262214 1.086037925528609 1.130905881059384 1.173610162412494 1.213965530925846 1.251795367441506 1.286932768051719 1.319221584000431 1.348517398264738 1.374688431786131 1.397616372823292 1.417197123443166 1.433341457763536 1.445975587192023 1.455041628575612 1.460497971877420 1.462319544719350 1.460497971877420 1.455041628575612 1.445975587192023 1.433341457763535 1.417197123443168 1.397616372823293 1.374688431786129 1.348517398264737 1.319221584000428 1.286932768051722 1.251795367441511 1.213965530925850 1.173610162412491 1.130905881059383 1.086037925528607 1.039199010262218 0.990588141977878 0.940409404852427 0.888870723068547 0.836182609540815 0.782556909714151 0.728205549336316 0.673339295049571 0.618166536522637 0.562892098657592 0.507716092152326 0.452832810388050 0.398429680237676 0.344686273962355 0.291773388882189 0.239852200975384 0.189073497984584 0.139576996991589 0.091490750768654 0.044930646530364 0.000000000000000 -0.044930646530364 -0.091490750768654 -0.139576996991590 -0.189073497984584 -0.239852200975375 -0.291773388882189 -0.344686273962355 -0.398429680237676 -0.452832810388050 -0.507716092152326 -0.562892098657592 -0.618166536522636 -0.673339295049571 -0.728205549336351 -0.782556909714151 -0.836182609540815 -0.888870723068547 -0.940409404852427 -0.990588141977878 -1.039199010262211 -1.086037925528607 -1.130905881059383 -1.173610162412491 -1.213965530925850 -1.251795367441511 -1.286932768051719 -1.319221584000428 -1.348517398264737 -1.374688431786129 -1.397616372823293 -1.417197123443168 -1.433341457763535 -1.445975587192023 -1.455041628575612 -1.460497971877420 -1.462319544719350 +-1.550937951261024 -1.548977689382363 -1.543106163555190 -1.533351093505377 -1.519758480208233 -1.502392309551153 -1.481334140481350 -1.456682580627952 -1.428552653207481 -1.397075059807297 -1.362395344393832 -1.324672964606543 -1.284080277065088 -1.240801444032935 -1.195031269343114 -1.146973971993095 -1.096841906254813 -1.044854237518566 -0.991235583392490 -0.936214629810919 -0.880022732065091 -0.822892510751829 -0.765056452648439 -0.706745526453691 -0.648187823198349 -0.589607230913255 -0.531222152860981 -0.473244278281633 -0.415877414184951 -0.359316386235509 -0.303746016236379 -0.249340183116619 -0.196260973679263 -0.144657928670474 -0.094667388994955 -0.046411946131144 0.000000000000000 0.046411946131141 0.094667388994951 0.144657928670471 0.196260973679261 0.249340183116623 0.303746016236384 0.359316386235506 0.415877414184948 0.473244278281630 0.531222152860962 0.589607230913274 0.648187823198366 0.706745526453689 0.765056452648436 0.822892510751826 0.880022732065088 0.936214629810923 0.991235583392481 1.044854237518558 1.096841906254811 1.146973971993093 1.195031269343117 1.240801444032938 1.284080277065086 1.324672964606543 1.362395344393832 1.397075059807296 1.428552653207485 1.456682580627954 1.481334140481349 1.502392309551153 1.519758480208230 1.533351093505377 1.543106163555191 1.548977689382363 1.550937951261024 1.548977689382363 1.543106163555190 1.533351093505377 1.519758480208230 1.502392309551157 1.481334140481350 1.456682580627953 1.428552653207482 1.397075059807295 1.362395344393834 1.324672964606547 1.284080277065089 1.240801444032936 1.195031269343115 1.146973971993090 1.096841906254816 1.044854237518568 0.991235583392493 0.936214629810921 0.880022732065085 0.822892510751821 0.765056452648425 0.706745526453693 0.648187823198352 0.589607230913257 0.531222152860961 0.473244278281628 0.415877414184953 0.359316386235511 0.303746016236381 0.249340183116621 0.196260973679257 0.144657928670467 0.094667388994959 0.046411946131148 0.000000000000000 -0.046411946131148 -0.094667388994959 -0.144657928670467 -0.196260973679257 -0.249340183116621 -0.303746016236380 -0.359316386235511 -0.415877414184953 -0.473244278281628 -0.531222152860961 -0.589607230913256 -0.648187823198351 -0.706745526453693 -0.765056452648441 -0.822892510751823 -0.880022732065086 -0.936214629810921 -0.991235583392493 -1.044854237518568 -1.096841906254807 -1.146973971993090 -1.195031269343115 -1.240801444032936 -1.284080277065089 -1.324672964606547 -1.362395344393830 -1.397075059807295 -1.428552653207482 -1.456682580627953 -1.481334140481350 -1.502392309551157 -1.519758480208230 -1.533351093505377 -1.543106163555190 -1.548977689382363 -1.550937951261024 +-1.633571522121176 -1.631476980861180 -1.625203507772927 -1.614781488700810 -1.600261346430863 -1.581713211946829 -1.559226467548439 -1.532909165165344 -1.502887324103713 -1.469304113343059 -1.432318924336001 -1.392106341060164 -1.348855014810227 -1.302766451908009 -1.254053723129840 -1.202940104212374 -1.149657657282927 -1.094445763477389 -1.037549617343981 -0.979218693889583 -0.919705199301190 -0.859262516468571 -0.798143656443658 -0.736599726898918 -0.674878428490883 -0.613222589796502 -0.551868751172956 -0.491045807496142 -0.430973719264497 -0.371862301014559 -0.313910095389228 -0.257303340531050 -0.202215037748804 -0.148804125629549 -0.097214765947643 -0.047575745861871 0.000000000000000 0.047575745861868 0.097214765947640 0.148804125629547 0.202215037748800 0.257303340531064 0.313910095389241 0.371862301014557 0.430973719264495 0.491045807496139 0.551868751172953 0.613222589796508 0.674878428490891 0.736599726898914 0.798143656443654 0.859262516468568 0.919705199301187 0.979218693889589 1.037549617343979 1.094445763477387 1.149657657282925 1.202940104212371 1.254053723129890 1.302766451908013 1.348855014810226 1.392106341060162 1.432318924336000 1.469304113343058 1.502887324103716 1.532909165165346 1.559226467548437 1.581713211946829 1.600261346430862 1.614781488700809 1.625203507772927 1.631476980861180 1.633571522121176 1.631476980861180 1.625203507772927 1.614781488700809 1.600261346430862 1.581713211946830 1.559226467548440 1.532909165165345 1.502887324103714 1.469304113343054 1.432318924336003 1.392106341060165 1.348855014810229 1.302766451908012 1.254053723129842 1.202940104212369 1.149657657282934 1.094445763477393 1.037549617343984 0.979218693889585 0.919705199301184 0.859262516468564 0.798143656443652 0.736599726898921 0.674878428490888 0.613222589796506 0.551868751172950 0.491045807496133 0.430973719264501 0.371862301014561 0.313910095389232 0.257303340531054 0.202215037748798 0.148804125629544 0.097214765947646 0.047575745861875 0.000000000000000 -0.047575745861874 -0.097214765947646 -0.148804125629545 -0.202215037748798 -0.257303340531054 -0.313910095389231 -0.371862301014561 -0.430973719264500 -0.491045807496133 -0.551868751172950 -0.613222589796506 -0.674878428490888 -0.736599726898920 -0.798143656443662 -0.859262516468564 -0.919705199301185 -0.979218693889585 -1.037549617343984 -1.094445763477393 -1.149657657282923 -1.202940104212369 -1.254053723129842 -1.302766451908012 -1.348855014810229 -1.392106341060165 -1.432318924335997 -1.469304113343054 -1.502887324103714 -1.532909165165345 -1.559226467548440 -1.581713211946830 -1.600261346430862 -1.614781488700809 -1.625203507772927 -1.631476980861180 -1.633571522121176 +-1.709624395927472 -1.707400975451336 -1.700741755175891 -1.689679785722852 -1.674269909208242 -1.654588397722082 -1.630732450910287 -1.602819556331505 -1.570986717268307 -1.535389553635678 -1.496201282557666 -1.453611586055609 -1.407825374111929 -1.359061452129566 -1.307551102497418 -1.253536590585766 -1.197269606036204 -1.139009650666089 -1.079022384678539 -1.017577943153038 -0.954949234985553 -0.891410236548417 -0.827234292350744 -0.762692434898048 -0.698051735776420 -0.633573699722323 -0.569512713088424 -0.508860304151387 -0.451517831771240 -0.393435414095804 -0.335017611352498 -0.276671016937632 -0.218801235332891 -0.161809868398827 -0.106091532842426 -0.052030931416596 0.000000000000000 0.052030931416592 0.106091532842422 0.161809868398822 0.218801235332888 0.276671016937642 0.335017611352504 0.393435414095797 0.451517831771240 0.508860304151384 0.569512713088422 0.633573699722329 0.698051735776426 0.762692434898045 0.827234292350742 0.891410236548412 0.954949234985550 1.017577943153044 1.079022384678537 1.139009650666083 1.197269606036167 1.253536590585764 1.307551102497424 1.359061452129571 1.407825374111924 1.453611586055607 1.496201282557666 1.535389553635677 1.570986717268310 1.602819556331506 1.630732450910286 1.654588397722081 1.674269909208242 1.689679785722851 1.700741755175893 1.707400975451336 1.709624395927472 1.707400975451336 1.700741755175891 1.689679785722851 1.674269909208242 1.654588397722084 1.630732450910290 1.602819556331505 1.570986717268308 1.535389553635673 1.496201282557667 1.453611586055611 1.407825374111931 1.359061452129567 1.307551102497421 1.253536590585761 1.197269606036206 1.139009650666091 1.079022384678542 1.017577943153040 0.954949234985547 0.891410236548410 0.827234292350730 0.762692434898051 0.698051735776423 0.633573699722327 0.569512713088420 0.508860304151381 0.451517831771246 0.393435414095806 0.335017611352500 0.276671016937636 0.218801235332879 0.161809868398818 0.106091532842429 0.052030931416600 0.000000000000000 -0.052030931416599 -0.106091532842428 -0.161809868398819 -0.218801235332878 -0.276671016937636 -0.335017611352500 -0.393435414095805 -0.451517831771246 -0.508860304151381 -0.569512713088419 -0.633573699722327 -0.698051735776423 -0.762692434898051 -0.827234292350746 -0.891410236548410 -0.954949234985547 -1.017577943153040 -1.079022384678542 -1.139009650666091 -1.197269606036164 -1.253536590585761 -1.307551102497421 -1.359061452129567 -1.407825374111931 -1.453611586055611 -1.496201282557665 -1.535389553635673 -1.570986717268308 -1.602819556331506 -1.630732450910290 -1.654588397722084 -1.674269909208242 -1.689679785722851 -1.700741755175891 -1.707400975451336 -1.709624395927472 +-1.778549606625604 -1.776203657640693 -1.769177735158209 -1.757507533129219 -1.741252277172112 -1.720494330159157 -1.695338644096499 -1.665912062318207 -1.632362477115100 -1.594857848972517 -1.553585094607313 -1.508748851950283 -1.460570131115021 -1.409284861224720 -1.355142343720074 -1.298403623446303 -1.239339789404736 -1.178230217554763 -1.115360768456766 -1.051021952856238 -0.985507078521438 -0.919110391756210 -0.852125227022051 -0.786821428560230 -0.731879363716258 -0.674450552273730 -0.614936151965353 -0.553752367946902 -0.491327355152657 -0.428098031143334 -0.364506823566800 -0.300998376847431 -0.238016243027143 -0.175999581800672 -0.115379894715576 -0.056577818245941 0.000000000000000 0.056577818245936 0.115379894715572 0.175999581800670 0.238016243027139 0.300998376847437 0.364506823566819 0.428098031143332 0.491327355152653 0.553752367946899 0.614936151965338 0.674450552273735 0.731879363716264 0.786821428560218 0.852125227022047 0.919110391756206 0.985507078521428 1.051021952856289 1.115360768456763 1.178230217554761 1.239339789404733 1.298403623446301 1.355142343720082 1.409284861224725 1.460570131115020 1.508748851950279 1.553585094607311 1.594857848972516 1.632362477115105 1.665912062318210 1.695338644096498 1.720494330159156 1.741252277172110 1.757507533129218 1.769177735158210 1.776203657640693 1.778549606625604 1.776203657640693 1.769177735158210 1.757507533129218 1.741252277172110 1.720494330159159 1.695338644096501 1.665912062318208 1.632362477115104 1.594857848972516 1.553585094607314 1.508748851950284 1.460570131115025 1.409284861224722 1.355142343720079 1.298403623446298 1.239339789404738 1.178230217554768 1.115360768456768 1.051021952856241 0.985507078521426 0.919110391756203 0.852125227022044 0.786821428560232 0.731879363716259 0.674450552273734 0.614936151965336 0.553752367946896 0.491327355152663 0.428098031143337 0.364506823566816 0.300998376847436 0.238016243027136 0.175999581800667 0.115379894715579 0.056577818245946 0.000000000000000 -0.056577818245946 -0.115379894715579 -0.175999581800668 -0.238016243027136 -0.300998376847435 -0.364506823566815 -0.428098031143337 -0.491327355152663 -0.553752367946896 -0.614936151965336 -0.674450552273733 -0.731879363716259 -0.786821428560231 -0.852125227022054 -0.919110391756204 -0.985507078521426 -1.051021952856241 -1.115360768456768 -1.178230217554769 -1.239339789404731 -1.298403623446298 -1.355142343720079 -1.409284861224722 -1.460570131115025 -1.508748851950284 -1.553585094607309 -1.594857848972516 -1.632362477115104 -1.665912062318208 -1.695338644096501 -1.720494330159159 -1.741252277172110 -1.757507533129218 -1.769177735158210 -1.776203657640693 -1.778549606625604 +-1.839853185608011 -1.837391962218822 -1.830021086034437 -1.817778852935565 -1.800728803131720 -1.778959293984526 -1.752582906370041 -1.721735688945254 -1.686576245880335 -1.647284674762781 -1.604061362482976 -1.557125647946468 -1.506714361433973 -1.453080251327617 -1.396490309741955 -1.337224009326726 -1.275571464149918 -1.211831528109877 -1.146309844765078 -1.079316862806263 -1.011165831624781 -0.959398614022896 -0.906631648339994 -0.850361102816728 -0.790980146180381 -0.728904630111980 -0.664569993031501 -0.598428016568123 -0.530943459267241 -0.462590593016030 -0.393849668407958 -0.325203335804360 -0.257133049186003 -0.190115480016800 -0.124618968264071 -0.061100037434833 0.000000000000000 0.061100037434828 0.124618968264068 0.190115480016794 0.257133049186001 0.325203335804378 0.393849668407968 0.462590593016022 0.530943459267238 0.598428016568121 0.664569993031499 0.728904630111987 0.790980146180385 0.850361102816724 0.906631648339991 0.959398614022891 1.011165831624778 1.079316862806269 1.146309844765075 1.211831528109871 1.275571464149885 1.337224009326724 1.396490309741963 1.453080251327622 1.506714361433969 1.557125647946466 1.604061362482976 1.647284674762775 1.686576245880338 1.721735688945262 1.752582906370040 1.778959293984526 1.800728803131720 1.817778852935565 1.830021086034439 1.837391962218822 1.839853185608011 1.837391962218822 1.830021086034439 1.817778852935564 1.800728803131720 1.778959293984527 1.752582906370041 1.721735688945254 1.686576245880336 1.647284674762774 1.604061362482978 1.557125647946469 1.506714361433977 1.453080251327619 1.396490309741959 1.337224009326722 1.275571464149922 1.211831528109880 1.146309844765080 1.079316862806265 1.011165831624775 0.959398614022888 0.906631648339981 0.850361102816730 0.790980146180384 0.728904630111983 0.664569993031496 0.598428016568117 0.530943459267247 0.462590593016031 0.393849668407965 0.325203335804363 0.257133049185990 0.190115480016791 0.124618968264074 0.061100037434836 0.000000000000000 -0.061100037434836 -0.124618968264074 -0.190115480016791 -0.257133049185990 -0.325203335804363 -0.393849668407964 -0.462590593016031 -0.530943459267247 -0.598428016568117 -0.664569993031496 -0.728904630111983 -0.790980146180383 -0.850361102816729 -0.906631648339995 -0.959398614022888 -1.011165831624776 -1.079316862806266 -1.146309844765080 -1.211831528109881 -1.275571464149883 -1.337224009326722 -1.396490309741959 -1.453080251327619 -1.506714361433977 -1.557125647946469 -1.604061362482973 -1.647284674762774 -1.686576245880336 -1.721735688945254 -1.752582906370041 -1.778959293984527 -1.800728803131720 -1.817778852935564 -1.830021086034439 -1.837391962218822 -1.839853185608011 +-1.893097862875750 -1.890529468619868 -1.882837928972733 -1.870064080702433 -1.852275677125714 -1.829566928549637 -1.802057863644239 -1.769893516456714 -1.733242945064145 -1.692298089099991 -1.647272474573555 -1.598399775527124 -1.545932243118724 -1.490139013694191 -1.431304308288437 -1.369725536790241 -1.305711320687282 -1.239579448897254 -1.173686293851429 -1.130610508819065 -1.082668196032111 -1.030191679604616 -0.973546577673100 -0.913129084085425 -0.849363019578850 -0.782696674762693 -0.713599468802379 -0.642558449099819 -0.570074658472392 -0.496659397337754 -0.422830409207936 -0.349108018377208 -0.276011249049706 -0.204053955292007 -0.133740991111816 -0.065564449656695 0.000000000000000 0.065564449656691 0.133740991111812 0.204053955292003 0.276011249049703 0.349108018377219 0.422830409207959 0.496659397337751 0.570074658472390 0.642558449099816 0.713599468802376 0.782696674762701 0.849363019578856 0.913129084085421 0.973546577673111 1.030191679604612 1.082668196032106 1.130610508819052 1.173686293851427 1.239579448897251 1.305711320687277 1.369725536790239 1.431304308288523 1.490139013694197 1.545932243118723 1.598399775527122 1.647272474573553 1.692298089099990 1.733242945064148 1.769893516456716 1.802057863644237 1.829566928549637 1.852275677125714 1.870064080702431 1.882837928972733 1.890529468619868 1.893097862875750 1.890529468619868 1.882837928972733 1.870064080702430 1.852275677125712 1.829566928549638 1.802057863644239 1.769893516456716 1.733242945064146 1.692298089099989 1.647272474573556 1.598399775527126 1.545932243118730 1.490139013694193 1.431304308288518 1.369725536790235 1.305711320687286 1.239579448897258 1.173686293851431 1.130610508819049 1.082668196032103 1.030191679604608 0.973546577673111 0.913129084085429 0.849363019578853 0.782696674762698 0.713599468802374 0.642558449099810 0.570074658472397 0.496659397337756 0.422830409207939 0.349108018377212 0.276011249049700 0.204053955292001 0.133740991111820 0.065564449656700 0.000000000000000 -0.065564449656700 -0.133740991111819 -0.204053955292001 -0.276011249049700 -0.349108018377212 -0.422830409207939 -0.496659397337756 -0.570074658472396 -0.642558449099811 -0.713599468802374 -0.782696674762698 -0.849363019578853 -0.913129084085428 -0.973546577673103 -1.030191679604608 -1.082668196032104 -1.130610508819049 -1.173686293851431 -1.239579448897258 -1.305711320687274 -1.369725536790235 -1.431304308288518 -1.490139013694193 -1.545932243118730 -1.598399775527126 -1.647272474573551 -1.692298089099989 -1.733242945064146 -1.769893516456716 -1.802057863644239 -1.829566928549638 -1.852275677125712 -1.870064080702430 -1.882837928972733 -1.890529468619868 -1.893097862875750 +-1.937906339177650 -1.935239666649036 -1.927254114536743 -1.913992980267003 -1.895528096968989 -1.871959342159027 -1.843413954995544 -1.810045667150250 -1.772033653723533 -1.729581311957975 -1.682914876772186 -1.632281883341573 -1.577949488075989 -1.520202660381796 -1.459342258542395 -1.395683003894903 -1.329551368218600 -1.293031292295763 -1.252632987498819 -1.206708763373112 -1.155576175828405 -1.099591115643826 -1.039145163234998 -0.974662674162542 -0.906597617438959 -0.835430190566033 -0.761663236932230 -0.685818492697545 -0.608432691589916 -0.530053557113554 -0.451235712524316 -0.372536539550562 -0.294512017225089 -0.217712572343113 -0.142678972971683 -0.069938296105553 0.000000000000000 0.069938296105549 0.142678972971680 0.217712572343108 0.294512017225079 0.372536539550588 0.451235712524327 0.530053557113551 0.608432691589913 0.685818492697542 0.761663236932227 0.835430190566044 0.906597617438971 0.974662674162542 1.039145163234995 1.099591115643824 1.155576175828401 1.206708763373104 1.252632987498816 1.293031292295761 1.329551368218597 1.395683003894896 1.459342258542403 1.520202660381804 1.577949488075987 1.632281883341570 1.682914876772186 1.729581311957972 1.772033653723537 1.810045667150254 1.843413954995544 1.871959342159027 1.895528096968989 1.913992980267002 1.927254114536743 1.935239666649036 1.937906339177650 1.935239666649036 1.927254114536743 1.913992980267002 1.895528096968988 1.871959342159028 1.843413954995546 1.810045667150253 1.772033653723535 1.729581311957970 1.682914876772189 1.632281883341576 1.577949488075992 1.520202660381800 1.459342258542398 1.395683003894893 1.329551368218603 1.293031292295766 1.252632987498822 1.206708763373100 1.155576175828406 1.099591115643819 1.039145163234992 0.974662674162547 0.906597617438969 0.835430190566035 0.761663236932209 0.685818492697539 0.608432691589941 0.530053557113560 0.451235712524322 0.372536539550584 0.294512017225075 0.217712572343093 0.142678972971690 0.069938296105559 0.000000000000000 -0.069938296105559 -0.142678972971689 -0.217712572343093 -0.294512017225075 -0.372536539550584 -0.451235712524322 -0.530053557113559 -0.608432691589919 -0.685818492697540 -0.761663236932209 -0.835430190566035 -0.906597617438969 -0.974662674162546 -1.039145163235003 -1.099591115643819 -1.155576175828406 -1.206708763373101 -1.252632987498822 -1.293031292295766 -1.329551368218594 -1.395683003894893 -1.459342258542398 -1.520202660381800 -1.577949488075992 -1.632281883341576 -1.682914876772184 -1.729581311957971 -1.772033653723535 -1.810045667150253 -1.843413954995546 -1.871959342159028 -1.895528096968988 -1.913992980267002 -1.927254114536743 -1.935239666649036 -1.937906339177650 +-1.973964104328390 -1.971208768847134 -1.962958017234401 -1.949257508762984 -1.930182992268548 -1.905839783945589 -1.876362041687945 -1.841911841355307 -1.802678061807533 -1.758875086968155 -1.710741334530168 -1.658537622194093 -1.602545383531433 -1.543064746666705 -1.480412489981700 -1.439067000226469 -1.408853338892245 -1.372216176602713 -1.329404646889401 -1.280713425113584 -1.226480545096698 -1.167084888413094 -1.102943365333155 -1.034507808749676 -0.962261604599521 -0.886716084292801 -0.808406706470086 -0.727889057007184 -0.645734697567027 -0.562526894146524 -0.478856257978501 -0.395316331810779 -0.312499154999995 -0.230990841014883 -0.151367200849132 -0.074189445491649 0.000000000000000 0.074189445491645 0.151367200849127 0.230990841014879 0.312499154999988 0.395316331810792 0.478856257978509 0.562526894146520 0.645734697567022 0.727889057007180 0.808406706470086 0.886716084292809 0.962261604599528 1.034507808749628 1.102943365333115 1.167084888413090 1.226480545096695 1.280713425113591 1.329404646889398 1.372216176602709 1.408853338892253 1.439067000226469 1.480412489981708 1.543064746666714 1.602545383531430 1.658537622194091 1.710741334530164 1.758875086968152 1.802678061807541 1.841911841355311 1.876362041687944 1.905839783945588 1.930182992268548 1.949257508762984 1.962958017234403 1.971208768847134 1.973964104328390 1.971208768847134 1.962958017234401 1.949257508762983 1.930182992268547 1.905839783945591 1.876362041687945 1.841911841355308 1.802678061807537 1.758875086968150 1.710741334530170 1.658537622194096 1.602545383531437 1.543064746666706 1.480412489981704 1.439067000226461 1.408853338892248 1.372216176602715 1.329404646889402 1.280713425113587 1.226480545096700 1.167084888413085 1.102943365333111 1.034507808749679 0.962261604599524 0.886716084292807 0.808406706470082 0.727889057007175 0.645734697567030 0.562526894146543 0.478856257978506 0.395316331810783 0.312499154999984 0.230990841014872 0.151367200849140 0.074189445491656 0.000000000000000 -0.074189445491655 -0.151367200849140 -0.230990841014873 -0.312499154999984 -0.395316331810783 -0.478856257978506 -0.562526894146543 -0.645734697567030 -0.727889057007176 -0.808406706470081 -0.886716084292806 -0.962261604599524 -1.034507808749678 -1.102943365333156 -1.167084888413086 -1.226480545096692 -1.280713425113587 -1.329404646889403 -1.372216176602716 -1.408853338892249 -1.439067000226461 -1.480412489981704 -1.543064746666708 -1.602545383531437 -1.658537622194096 -1.710741334530163 -1.758875086968150 -1.802678061807537 -1.841911841355309 -1.876362041687945 -1.905839783945591 -1.930182992268547 -1.949257508762983 -1.962958017234401 -1.971208768847134 -1.973964104328390 +-2.001021780359312 -1.998188048188304 -1.989702856906164 -1.975614110981491 -1.956001281276944 -1.930974853057225 -1.900675558950134 -1.865273402556559 -1.824966479961623 -1.779979607895797 -1.730562768726756 -1.676989383822109 -1.619554428086895 -1.561388117631907 -1.543767451334850 -1.518974378938048 -1.487170568036533 -1.448569460338481 -1.403434701694599 -1.352078192952535 -1.294857776358423 -1.232174575001469 -1.164470005429099 -1.092222486044047 -1.015943866205607 -0.936175603077950 -0.853484715184868 -0.768459543324326 -0.681705350960602 -0.593839797428422 -0.505488318249752 -0.417279447566947 -0.329840118135157 -0.243790974484257 -0.159741734759726 -0.078286636378842 0.000000000000000 0.078286636378837 0.159741734759714 0.243790974484251 0.329840118135155 0.417279447566958 0.505488318249762 0.593839797428416 0.681705350960599 0.768459543324323 0.853484715184866 0.936175603077964 1.015943866205616 1.092222486044044 1.164470005429092 1.232174575001464 1.294857776358423 1.352078192952546 1.403434701694596 1.448569460338466 1.487170568036532 1.518974378938074 1.543767451334858 1.561388117631913 1.619554428086891 1.676989383822107 1.730562768726752 1.779979607895792 1.824966479961748 1.865273402556560 1.900675558950133 1.930974853057222 1.956001281276943 1.975614110981490 1.989702856906164 1.998188048188304 2.001021780359312 1.998188048188304 1.989702856906164 1.975614110981490 1.956001281276942 1.930974853057227 1.900675558950135 1.865273402556560 1.824966479961746 1.779979607895789 1.730562768726757 1.676989383822112 1.619554428086898 1.561388117631909 1.543767451334852 1.518974378938085 1.487170568036537 1.448569460338484 1.403434701694603 1.352078192952543 1.294857776358360 1.232174575001461 1.164470005429087 1.092222486044051 1.015943866205612 0.936175603077953 0.853484715184864 0.768459543324315 0.681705350960608 0.593839797428424 0.505488318249758 0.417279447566954 0.329840118135150 0.243790974484235 0.159741734759729 0.078286636378850 0.000000000000000 -0.078286636378850 -0.159741734759729 -0.243790974484235 -0.329840118135150 -0.417279447566953 -0.505488318249757 -0.593839797428424 -0.681705350960608 -0.768459543324317 -0.853484715184864 -0.936175603077953 -1.015943866205612 -1.092222486044051 -1.164470005429102 -1.232174575001462 -1.294857776358361 -1.352078192952543 -1.403434701694603 -1.448569460338484 -1.487170568036528 -1.518974378938085 -1.543767451334852 -1.561388117631909 -1.619554428086898 -1.676989383822112 -1.730562768726748 -1.779979607895790 -1.824966479961746 -1.865273402556560 -1.900675558950135 -1.930974853057227 -1.956001281276942 -1.975614110981490 -1.989702856906164 -1.998188048188304 -2.001021780359312 +-2.018896971763160 -2.015995683416458 -2.007308529380845 -1.992885525710486 -1.972809643500770 -1.947196228437777 -1.916192194223709 -1.879974995884037 -1.838751390593857 -1.792755995243588 -1.742249651470993 -1.687517610317314 -1.650365640605149 -1.639642829664043 -1.621255556363424 -1.595318083446610 -1.562000483548125 -1.521527396858513 -1.474176376539355 -1.420275834381159 -1.360202602225087 -1.294379127593189 -1.223270324748520 -1.147380105025479 -1.067247612704784 -0.983443194946307 -0.896564136311507 -0.807230190194658 -0.716078941025537 -0.623761032388914 -0.530935297224768 -0.438263827015494 -0.346407017327781 -0.256018627254657 -0.167740890196150 -0.082199713023609 0.000000000000000 0.082199713023605 0.167740890196142 0.256018627254654 0.346407017327774 0.438263827015503 0.530935297224777 0.623761032388910 0.716078941025527 0.807230190194616 0.896564136311503 0.983443194946316 1.067247612704794 1.147380105025472 1.223270324748515 1.294379127593184 1.360202602225083 1.420275834381167 1.474176376539350 1.521527396858510 1.562000483548121 1.595318083446503 1.621255556363430 1.639642829664046 1.650365640605147 1.687517610317310 1.742249651470989 1.792755995243586 1.838751390593863 1.879974995884042 1.916192194223707 1.947196228437776 1.972809643500767 1.992885525710486 2.007308529380847 2.015995683416458 2.018896971763160 2.015995683416458 2.007308529380845 1.992885525710485 1.972809643500765 1.947196228437784 1.916192194223711 1.879974995884040 1.838751390593860 1.792755995243582 1.742249651470995 1.687517610317317 1.650365640605151 1.639642829664046 1.621255556363428 1.595318083446499 1.562000483548127 1.521527396858516 1.474176376539357 1.420275834381162 1.360202602225056 1.294379127593123 1.223270324748510 1.147380105025485 1.067247612704788 0.983443194946312 0.896564136311499 0.807230190194609 0.716078941025542 0.623761032388920 0.530935297224774 0.438263827015500 0.346407017327770 0.256018627254644 0.167740890196153 0.082199713023615 0.000000000000000 -0.082199713023614 -0.167740890196153 -0.256018627254647 -0.346407017327770 -0.438263827015500 -0.530935297224774 -0.623761032388920 -0.716078941025542 -0.807230190194610 -0.896564136311498 -0.983443194946312 -1.067247612704787 -1.147380105025485 -1.223270324748524 -1.294379127593124 -1.360202602225056 -1.420275834381163 -1.474176376539358 -1.521527396858516 -1.562000483548119 -1.595318083446499 -1.621255556363428 -1.639642829664046 -1.650365640605151 -1.687517610317317 -1.742249651470988 -1.792755995243583 -1.838751390593860 -1.879974995884040 -1.916192194223711 -1.947196228437784 -1.972809643500765 -1.992885525710485 -2.007308529380845 -2.015995683416458 -2.018896971763160 +-2.027475608844478 -2.024518098067377 -2.015662932557126 -2.000962090391833 -1.980501794665399 -1.954401906122401 -1.922815079195240 -1.885925687740920 -1.843948528483327 -1.797127311827718 -1.745732951292409 -1.727717620196494 -1.724729362488396 -1.713652775365184 -1.694547990085441 -1.667534523070718 -1.632790415582196 -1.590550931157568 -1.541106820621309 -1.484802167767342 -1.422031831997898 -1.353238507265528 -1.278909419579247 -1.199572688081655 -1.115793377260398 -1.028169270202204 -0.937326394917648 -0.843914337639280 -0.748601378614828 -0.652069487261672 -0.555009214620264 -0.458114521818721 -0.362077583748580 -0.267583607335959 -0.175305703680868 -0.085899852924739 0.000000000000000 0.085899852924735 0.175305703680863 0.267583607335950 0.362077583748575 0.458114521818729 0.555009214620288 0.652069487261658 0.748601378614816 0.843914337639276 0.937326394917598 1.028169270202212 1.115793377260407 1.199572688081652 1.278909419579242 1.353238507265525 1.422031831997894 1.484802167767340 1.541106820621310 1.590550931157564 1.632790415582087 1.667534523070714 1.694547990085414 1.713652775365197 1.724729362488396 1.727717620196493 1.745732951292405 1.797127311827717 1.843948528483331 1.885925687740924 1.922815079195240 1.954401906122398 1.980501794665397 2.000962090391833 2.015662932557127 2.024518098067377 2.027475608844478 2.024518098067378 2.015662932557127 2.000962090391833 1.980501794665396 1.954401906122402 1.922815079195242 1.885925687740921 1.843948528483329 1.797127311827713 1.745732951292411 1.727717620196497 1.724729362488398 1.713652775365187 1.694547990085412 1.667534523070710 1.632790415582200 1.590550931157569 1.541106820621311 1.484802167767338 1.422031831997890 1.353238507265517 1.278909419579237 1.199572688081658 1.115793377260401 1.028169270202207 0.937326394917593 0.843914337639268 0.748601378614838 0.652069487261684 0.555009214620270 0.458114521818726 0.362077583748563 0.267583607335941 0.175305703680875 0.085899852924745 0.000000000000000 -0.085899852924744 -0.175305703680875 -0.267583607335943 -0.362077583748563 -0.458114521818725 -0.555009214620268 -0.652069487261684 -0.748601378614838 -0.843914337639269 -0.937326394917590 -1.028169270202207 -1.115793377260401 -1.199572688081658 -1.278909419579250 -1.353238507265520 -1.422031831997891 -1.484802167767338 -1.541106820621311 -1.590550931157567 -1.632790415582085 -1.667534523070710 -1.694547990085412 -1.713652775365187 -1.724729362488398 -1.727717620196497 -1.745732951292401 -1.797127311827714 -1.843948528483329 -1.885925687740921 -1.922815079195242 -1.954401906122402 -1.980501794665396 -2.000962090391833 -2.015662932557127 -2.024518098067378 -2.027475608844478 +-2.026712774034931 -2.023710783070814 -2.014722777904250 -1.999802534254145 -1.979039254413689 -1.952556934717808 -1.920513486624633 -1.883099617974868 -1.840537482788098 -1.793079109675858 -1.791771583355370 -1.797237106614887 -1.794270517957701 -1.782871875120856 -1.763103639804025 -1.735090248531926 -1.699017215133384 -1.655129771567786 -1.603731057347629 -1.545179871226924 -1.479888002156675 -1.408317159702215 -1.330975527162103 -1.248413963492347 -1.161221882811241 -1.070022842705890 -0.975469874775692 -0.878240592805139 -0.779032115646685 -0.678555843301796 -0.577532125801662 -0.476684865302983 -0.376736092318898 -0.278400557200845 -0.182380377868600 -0.089359784355651 0.000000000000000 0.089359784355645 0.182380377868595 0.278400557200842 0.376736092318891 0.476684865302994 0.577532125801678 0.678555843301755 0.779032115646682 0.878240592805134 0.975469874775688 1.070022842705900 1.161221882811250 1.248413963492342 1.330975527162100 1.408317159702210 1.479888002156671 1.545179871226928 1.603731057347626 1.655129771567781 1.699017215133379 1.735090248531923 1.763103639804031 1.782871875120863 1.794270517957578 1.797237106614886 1.791771583355367 1.793079109675854 1.840537482788105 1.883099617974874 1.920513486624633 1.952556934717807 1.979039254413689 1.999802534254139 2.014722777904251 2.023710783070814 2.026712774034931 2.023710783070814 2.014722777904251 1.999802534254139 1.979039254413687 1.952556934717813 1.920513486624634 1.883099617974874 1.840537482788102 1.793079109675852 1.791771583355371 1.797237106614891 1.794270517957701 1.782871875120859 1.763103639804029 1.735090248531921 1.699017215133386 1.655129771567788 1.603731057347632 1.545179871226926 1.479888002156666 1.408317159702207 1.330975527162094 1.248413963492360 1.161221882811245 1.070022842705895 0.975469874775684 0.878240592805128 0.779032115646692 0.678555843301804 0.577532125801668 0.476684865302987 0.376736092318882 0.278400557200832 0.182380377868608 0.089359784355661 0.000000000000000 -0.089359784355661 -0.182380377868607 -0.278400557200835 -0.376736092318881 -0.476684865302986 -0.577532125801666 -0.678555843301803 -0.779032115646691 -0.878240592805130 -0.975469874775683 -1.070022842705895 -1.161221882811245 -1.248413963492360 -1.330975527162114 -1.408317159702207 -1.479888002156667 -1.545179871226926 -1.603731057347632 -1.655129771567790 -1.699017215133375 -1.735090248531921 -1.763103639804029 -1.782871875120859 -1.794270517957701 -1.797237106614891 -1.791771583355364 -1.793079109675852 -1.840537482788102 -1.883099617974874 -1.920513486624634 -1.952556934717813 -1.979039254413687 -1.999802534254139 -2.014722777904251 -2.023710783070814 -2.026712774034931 +-2.016633004965481 -2.013598596750262 -2.004513881283266 -1.989434253962609 -1.968451600976369 -1.941693643545034 -1.909323026741241 -1.871536159707014 -1.828561815945615 -1.841098486075931 -1.855598148986149 -1.861412346540779 -1.858476079215421 -1.846789128192751 -1.826416099983722 -1.797485981061131 -1.760191205811000 -1.714786244797364 -1.661585723985908 -1.600962089133700 -1.533342833007977 -1.459207306418540 -1.379083137212492 -1.293542284355550 -1.203196756998411 -1.108694030972655 -1.010712197456645 -0.909954880588718 -0.807145962558268 -0.703024156167190 -0.598337466012941 -0.493837580287601 -0.390274235714679 -0.288389598345727 -0.188912702818137 -0.092553992227254 0.000000000000000 0.092553992227248 0.188912702818132 0.288389598345722 0.390274235714674 0.493837580287640 0.598337466012950 0.703024156167177 0.807145962558264 0.909954880588712 1.010712197456636 1.108694030972668 1.203196756998421 1.293542284355547 1.379083137212488 1.459207306418534 1.533342833007972 1.600962089133706 1.661585723985906 1.714786244797361 1.760191205810997 1.797485981061128 1.826416099983729 1.846789128192877 1.858476079215416 1.861412346540776 1.855598148986146 1.841098486075929 1.828561815945621 1.871536159707019 1.909323026741240 1.941693643545033 1.968451600976368 1.989434253962609 2.004513881283266 2.013598596750262 2.016633004965481 2.013598596750263 2.004513881283266 1.989434253962607 1.968451600976367 1.941693643545038 1.909323026741249 1.871536159707017 1.828561815945619 1.841098486075926 1.855598148986093 1.861412346540782 1.858476079215424 1.846789128192754 1.826416099983726 1.797485981061123 1.760191205811006 1.714786244797370 1.661585723985910 1.600962089133702 1.533342833007967 1.459207306418529 1.379083137212483 1.293542284355555 1.203196756998417 1.108694030972664 1.010712197456631 0.909954880588707 0.807145962558274 0.703024156167195 0.598337466012947 0.493837580287635 0.390274235714669 0.288389598345713 0.188912702818146 0.092553992227260 0.000000000000000 -0.092553992227259 -0.188912702818145 -0.288389598345713 -0.390274235714669 -0.493837580287634 -0.598337466012946 -0.703024156167194 -0.807145962558273 -0.909954880588708 -1.010712197456631 -1.108694030972664 -1.203196756998417 -1.293542284355553 -1.379083137212496 -1.459207306418530 -1.533342833007968 -1.600962089133702 -1.661585723985911 -1.714786244797370 -1.760191205810993 -1.797485981061123 -1.826416099983726 -1.846789128192754 -1.858476079215424 -1.861412346540782 -1.855598148986144 -1.841098486075927 -1.828561815945619 -1.871536159707017 -1.909323026741249 -1.941693643545038 -1.968451600976367 -1.989434253962607 -2.004513881283266 -2.013598596750263 -2.016633004965481 +-1.997330072063418 -1.994275540012572 -1.985130930951965 -1.969953069761446 -1.948836210948586 -1.921911361781154 -1.889345341786512 -1.851339585671285 -1.874552128462319 -1.898509324637099 -1.913626611373725 -1.919770057656411 -1.916872175225607 -1.904932471670065 -1.884017497094154 -1.854260383922493 -1.815859883256651 -1.769078905022645 -1.714242572920568 -1.651735808870768 -1.582000465231887 -1.505532026494635 -1.422875905434035 -1.334623361779844 -1.241407074333312 -1.143896400093267 -1.042792356330632 -0.938822363655835 -0.832734789938483 -0.725293336451107 -0.617271308806051 -0.509445816129506 -0.402591942458905 -0.297476934560100 -0.194854450233771 -0.095458910717820 0.000000000000000 0.095458910717814 0.194854450233764 0.297476934560094 0.402591942458897 0.509445816129523 0.617271308806068 0.725293336451101 0.832734789938479 0.938822363655825 1.042792356330628 1.143896400093277 1.241407074333334 1.334623361779838 1.422875905434031 1.505532026494628 1.582000465231869 1.651735808870776 1.714242572920566 1.769078905022639 1.815859883256648 1.854260383922489 1.884017497094162 1.904932471670069 1.916872175225605 1.919770057656410 1.913626611373724 1.898509324637096 1.874552128462325 1.851339585671292 1.889345341786510 1.921911361781153 1.948836210948586 1.969953069761444 1.985130930951967 1.994275540012572 1.997330072063418 1.994275540012572 1.985130930951967 1.969953069761444 1.948836210948585 1.921911361781155 1.889345341786512 1.851339585671289 1.874552128462321 1.898509324637155 1.913626611373730 1.919770057656415 1.916872175225609 1.904932471670065 1.884017497094155 1.854260383922536 1.815859883256659 1.769078905022647 1.714242572920572 1.651735808870771 1.582000465231865 1.505532026494623 1.422875905434025 1.334623361779848 1.241407074333330 1.143896400093271 1.042792356330585 0.938822363655818 0.832734789938496 0.725293336451119 0.617271308806058 0.509445816129513 0.402591942458894 0.297476934560085 0.194854450233777 0.095458910717826 0.000000000000000 -0.095458910717825 -0.194854450233775 -0.297476934560089 -0.402591942458893 -0.509445816129513 -0.617271308806056 -0.725293336451118 -0.832734789938495 -0.938822363655819 -1.042792356330584 -1.143896400093271 -1.241407074333329 -1.334623361779847 -1.422875905434039 -1.505532026494623 -1.582000465231866 -1.651735808870772 -1.714242572920573 -1.769078905022647 -1.815859883256687 -1.854260383922536 -1.884017497094155 -1.904932471670065 -1.916872175225609 -1.919770057656415 -1.913626611373720 -1.898509324637156 -1.874552128462321 -1.851339585671289 -1.889345341786512 -1.921911361781155 -1.948836210948585 -1.969953069761444 -1.985130930951967 -1.994275540012572 -1.997330072063418 +-1.968966232432371 -1.965904008506523 -1.956736734583034 -1.941522464031819 -1.920357486218741 -1.893375630805061 -1.860747301091999 -1.891301271846980 -1.924968190828265 -1.949746018181757 -1.965429250822207 -1.971879718273553 -1.969027670038894 -1.956872345768559 -1.935482023812314 -1.904993547705249 -1.865611334102363 -1.817605869618911 -1.761311707916290 -1.697124982169731 -1.625500451739790 -1.546948105405640 -1.462029346890056 -1.371352791579010 -1.275569706293497 -1.175369126683725 -1.071472689262922 -0.964629217269677 -0.855609101413405 -0.745198518117871 -0.634193529110512 -0.523394107105397 -0.413598132887529 -0.305595409322203 -0.200161737681841 -0.098053101206823 0.000000000000000 0.098053101206818 0.200161737681835 0.305595409322195 0.413598132887522 0.523394107105415 0.634193529110529 0.745198518117865 0.855609101413400 0.964629217269670 1.071472689262876 1.175369126683742 1.275569706293507 1.371352791579006 1.462029346890049 1.546948105405635 1.625500451739785 1.697124982169737 1.761311707916277 1.817605869618908 1.865611334102357 1.904993547705243 1.935482023812322 1.956872345768569 1.969027670038892 1.971879718273551 1.965429250822204 1.949746018181817 1.924968190828208 1.891301271846985 1.860747301091998 1.893375630805057 1.920357486218738 1.941522464031819 1.956736734583035 1.965904008506522 1.968966232432371 1.965904008506523 1.956736734583034 1.941522464031817 1.920357486218734 1.893375630805063 1.860747301092002 1.891301271846981 1.924968190828269 1.949746018181814 1.965429250822209 1.971879718273556 1.969027670038899 1.956872345768564 1.935482023812319 1.904993547705240 1.865611334102368 1.817605869618913 1.761311707916295 1.697124982169733 1.625500451739781 1.546948105405629 1.462029346890044 1.371352791579016 1.275569706293503 1.175369126683729 1.071472689262871 0.964629217269661 0.855609101413410 0.745198518117873 0.634193529110525 0.523394107105404 0.413598132887518 0.305595409322190 0.200161737681848 0.098053101206831 0.000000000000000 -0.098053101206830 -0.200161737681847 -0.305595409322191 -0.413598132887517 -0.523394107105403 -0.634193529110524 -0.745198518117873 -0.855609101413409 -0.964629217269662 -1.071472689262870 -1.175369126683729 -1.275569706293502 -1.371352791579015 -1.462029346890061 -1.546948105405629 -1.625500451739781 -1.697124982169733 -1.761311707916295 -1.817605869618913 -1.865611334102359 -1.904993547705240 -1.935482023812319 -1.956872345768564 -1.969027670038899 -1.971879718273556 -1.965429250822202 -1.949746018181815 -1.924968190828269 -1.891301271846981 -1.860747301092002 -1.893375630805063 -1.920357486218734 -1.941522464031817 -1.956736734583034 -1.965904008506523 -1.968966232432371 +-1.931770965758742 -1.928713527500892 -1.919560951091543 -1.904372308123065 -1.883245573994676 -1.856316915799810 -1.890853500987066 -1.934301190393480 -1.968919887010190 -1.994431201990187 -2.010624156204884 -2.017356817945172 -2.014557418692040 -2.002224938395978 -1.980429155737753 -1.949310162905497 -1.909077348496319 -1.860007856186257 -1.802444530802858 -1.736793367324589 -1.663520482111770 -1.583148629303347 -1.496253288770133 -1.403458355271529 -1.305431461491873 -1.202878970416526 -1.096540675017452 -0.987184245444457 -0.875599465834107 -0.762592304446545 -0.648978862107136 -0.535579244851381 -0.423211407246825 -0.312685013086671 -0.204795360015882 -0.100317414161238 0.000000000000000 0.100317414161227 0.204795360015877 0.312685013086667 0.423211407246814 0.535579244851399 0.648978862107151 0.762592304446540 0.875599465834102 0.987184245444453 1.096540675017447 1.202878970416538 1.305431461491889 1.403458355271520 1.496253288770128 1.583148629303342 1.663520482111765 1.736793367324598 1.802444530802854 1.860007856186254 1.909077348496314 1.949310162905491 1.980429155737759 2.002224938395986 2.014557418692037 2.017356817945169 2.010624156204882 1.994431201990185 1.968919887010130 1.934301190393434 1.890853500987066 1.856316915799807 1.883245573994675 1.904372308123064 1.919560951091543 1.928713527500891 1.931770965758742 1.928713527500892 1.919560951091543 1.904372308123064 1.883245573994674 1.856316915799811 1.890853500987069 1.934301190393432 1.968919887010191 1.994431201990245 2.010624156204825 2.017356817945174 2.014557418692044 2.002224938395982 1.980429155737756 1.949310162905488 1.909077348496324 1.860007856186262 1.802444530802863 1.736793367324593 1.663520482111760 1.583148629303337 1.496253288770121 1.403458355271533 1.305431461491880 1.202878970416534 1.096540675017437 0.987184245444445 0.875599465834112 0.762592304446556 0.648978862107144 0.535579244851393 0.423211407246811 0.312685013086658 0.204795360015891 0.100317414161245 0.000000000000000 -0.100317414161244 -0.204795360015889 -0.312685013086658 -0.423211407246810 -0.535579244851388 -0.648978862107143 -0.762592304446555 -0.875599465834111 -0.987184245444447 -1.096540675017437 -1.202878970416532 -1.305431461491876 -1.403458355271533 -1.496253288770137 -1.583148629303337 -1.663520482111761 -1.736793367324594 -1.802444530802863 -1.860007856186263 -1.909077348496311 -1.949310162905488 -1.980429155737753 -2.002224938395982 -2.014557418692044 -2.017356817945174 -2.010624156204877 -1.994431201990246 -1.968919887010191 -1.934301190393433 -1.890853500987069 -1.856316915799811 -1.883245573994674 -1.904372308123064 -1.919560951091543 -1.928713527500892 -1.931770965758742 +-1.886039201917748 -1.882998979169059 -1.873898316975778 -1.858797087199574 -1.837794589724026 -1.873070114431188 -1.926183163814942 -1.970638144597883 -2.006083854768955 -2.032235744131777 -2.048878108051775 -2.055865760835855 -2.053125175951596 -2.040655084338433 -2.018526526185207 -1.986882355699492 -1.945936202550774 -1.895970897799514 -1.837336376192619 -1.770447070686486 -1.695778818916267 -1.613865305039877 -1.525294063916455 -1.430702077904297 -1.330770999658755 -1.226222037154457 -1.117810539719712 -1.006320326145195 -0.892557797886951 -0.777345882016261 -0.661517849861725 -0.545911058232062 -0.431360660694650 -0.318693336610946 -0.208721085492833 -0.102235133744649 0.000000000000000 0.102235133744642 0.208721085492826 0.318693336610942 0.431360660694646 0.545911058232079 0.661517849861743 0.777345882016251 0.892557797886941 1.006320326145189 1.117810539719707 1.226222037154482 1.330770999658782 1.430702077904293 1.525294063916450 1.613865305039874 1.695778818916260 1.770447070686499 1.837336376192615 1.895970897799506 1.945936202550767 1.986882355699488 2.018526526185215 2.040655084338440 2.053125175951594 2.055865760835852 2.048878108051771 2.032235744131834 2.006083854768963 1.970638144597886 1.926183163814938 1.873070114431187 1.837794589724025 1.858797087199573 1.873898316975780 1.882998979169059 1.886039201917748 1.882998979169059 1.873898316975779 1.858797087199573 1.837794589724023 1.873070114431191 1.926183163814942 1.970638144597884 2.006083854768954 2.032235744131833 2.048878108051777 2.055865760835859 2.053125175951599 2.040655084338437 2.018526526185211 1.986882355699482 1.945936202550776 1.895970897799518 1.837336376192624 1.770447070686493 1.695778818916255 1.613865305039867 1.525294063916443 1.430702077904303 1.330770999658760 1.226222037154477 1.117810539719688 1.006320326145183 0.892557797886956 0.777345882016268 0.661517849861733 0.545911058232068 0.431360660694639 0.318693336610932 0.208721085492841 0.102235133744657 0.000000000000000 -0.102235133744655 -0.208721085492841 -0.318693336610933 -0.431360660694638 -0.545911058232066 -0.661517849861732 -0.777345882016267 -0.892557797886956 -1.006320326145183 -1.117810539719688 -1.226222037154476 -1.330770999658760 -1.430702077904302 -1.525294063916459 -1.613865305039868 -1.695778818916255 -1.770447070686494 -1.837336376192624 -1.895970897799518 -1.945936202550765 -1.986882355699482 -2.018526526185211 -2.040655084338437 -2.053125175951599 -2.055865760835859 -2.048878108051770 -2.032235744131833 -2.006083854768954 -1.970638144597885 -1.926183163814942 -1.873070114431191 -1.837794589724023 -1.858797087199573 -1.873898316975779 -1.882998979169059 -1.886039201917748 +-1.832129053819130 -1.829118335819277 -1.820106380720106 -1.805153636664087 -1.838171587977010 -1.900647621465264 -1.954746332685023 -2.000045188959775 -2.036186713354481 -2.062881229515108 -2.079909094104688 -2.087122399797473 -2.084446135805152 -2.071878797042214 -2.049492437216054 -2.017432165363009 -1.975915089573094 -1.925228715853349 -1.865728814216097 -1.797836768130617 -1.722036427400756 -1.638870488307280 -1.548936428444197 -1.452882027063665 -1.351400504894890 -1.245225320291038 -1.135124661174058 -1.021895674553959 -0.906358477396183 -0.789349994270253 -0.671717668527142 -0.554313094714342 -0.437985620533770 -0.323575966876605 -0.211909914331079 -0.103792104050853 0.000000000000000 0.103792104050840 0.211909914331073 0.323575966876597 0.437985620533762 0.554313094714354 0.671717668527157 0.789349994270248 0.906358477396178 1.021895674553953 1.135124661174052 1.245225320291054 1.351400504894900 1.452882027063659 1.548936428444192 1.638870488307274 1.722036427400751 1.797836768130628 1.865728814216092 1.925228715853345 1.975915089573089 2.017432165363004 2.049492437216063 2.071878797042221 2.084446135805146 2.087122399797469 2.079909094104685 2.062881229515106 2.036186713354486 2.000045188959780 1.954746332685021 1.900647621465261 1.838171587977008 1.805153636664086 1.820106380720107 1.829118335819277 1.832129053819130 1.829118335819278 1.820106380720107 1.805153636664085 1.838171587977008 1.900647621465266 1.954746332685025 2.000045188959777 2.036186713354485 2.062881229515101 2.079909094104688 2.087122399797477 2.084446135805156 2.071878797042218 2.049492437216060 2.017432165363000 1.975915089573098 1.925228715853354 1.865728814216102 1.797836768130622 1.722036427400746 1.638870488307268 1.548936428444183 1.452882027063680 1.351400504894896 1.245225320291047 1.135124661174042 1.021895674553948 0.906358477396188 0.789349994270260 0.671717668527150 0.554313094714350 0.437985620533759 0.323575966876588 0.211909914331087 0.103792104050860 0.000000000000000 -0.103792104050859 -0.211909914331086 -0.323575966876589 -0.437985620533759 -0.554313094714349 -0.671717668527149 -0.789349994270260 -0.906358477396188 -1.021895674553950 -1.135124661174042 -1.245225320291046 -1.351400504894896 -1.452882027063679 -1.548936428444201 -1.638870488307269 -1.722036427400748 -1.797836768130622 -1.865728814216102 -1.925228715853354 -1.975915089573084 -2.017432165363000 -2.049492437216060 -2.071878797042218 -2.084446135805157 -2.087122399797477 -2.079909094104682 -2.062881229515102 -2.036186713354485 -2.000045188959778 -1.954746332685025 -1.900647621465266 -1.838171587977008 -1.805153636664085 -1.820106380720107 -1.829118335819278 -1.832129053819130 +-1.770459072789640 -1.767489916365217 -1.758602762546261 -1.786733431883643 -1.858087457296871 -1.921451176563427 -1.976333605643734 -2.022306398246819 -2.059007126091790 -2.086142061090739 -2.103488438234392 -2.110896181903549 -2.108289082412486 -2.095665413762432 -2.073097987832540 -2.040733644517840 -1.998792181610066 -1.947564732475348 -1.887411603779899 -1.818759589617466 -1.742098782373288 -1.657978904482828 -1.567005188886217 -1.469833839407724 -1.367167105482859 -1.259748008587090 -1.148354760365228 -1.033794914804762 -0.916899298815469 -0.798515767262073 -0.679502829829207 -0.560723198069910 -0.443037301595906 -0.327296822597973 -0.214338297746198 -0.104976836002961 0.000000000000000 0.104976836002953 0.214338297746192 0.327296822597964 0.443037301595898 0.560723198069965 0.679502829829216 0.798515767262064 0.916899298815460 1.033794914804741 1.148354760365222 1.259748008587102 1.367167105482869 1.469833839407717 1.567005188886203 1.657978904482824 1.742098782373281 1.818759589617478 1.887411603779892 1.947564732475344 1.998792181610059 2.040733644517833 2.073097987832548 2.095665413762440 2.108289082412482 2.110896181903547 2.103488438234443 2.086142061090737 2.059007126091792 2.022306398246823 1.976333605643735 1.921451176563427 1.858087457296870 1.786733431883642 1.758602762546262 1.767489916365216 1.770459072789640 1.767489916365217 1.758602762546262 1.786733431883642 1.858087457296870 1.921451176563431 1.976333605643734 2.022306398246822 2.059007126091789 2.086142061090734 2.103488438234396 2.110896181903552 2.108289082412490 2.095665413762436 2.073097987832545 2.040733644517835 1.998792181610068 1.947564732475353 1.887411603779903 1.818759589617470 1.742098782373271 1.657978904482818 1.567005188886198 1.469833839407729 1.367167105482864 1.259748008587097 1.148354760365218 1.033794914804735 0.916899298815474 0.798515767262078 0.679502829829211 0.560723198069953 0.443037301595895 0.327296822597955 0.214338297746206 0.104976836002969 0.000000000000000 -0.104976836002967 -0.214338297746205 -0.327296822597956 -0.443037301595892 -0.560723198069953 -0.679502829829210 -0.798515767262077 -0.916899298815474 -1.033794914804736 -1.148354760365217 -1.259748008587096 -1.367167105482864 -1.469833839407729 -1.567005188886222 -1.657978904482818 -1.742098782373275 -1.818759589617472 -1.887411603779903 -1.947564732475353 -1.998792181610055 -2.040733644517835 -2.073097987832545 -2.095665413762436 -2.108289082412490 -2.110896181903552 -2.103488438234438 -2.086142061090735 -2.059007126091789 -2.022306398246822 -1.976333605643734 -1.921451176563431 -1.858087457296870 -1.786733431883642 -1.758602762546262 -1.767489916365217 -1.770459072789640 +-1.701505047416269 -1.698589186953036 -1.719672543856335 -1.799246064898853 -1.871316533991022 -1.935328742183681 -1.990786913770167 -2.037258495816664 -2.074377470106259 -2.101847162250781 -2.119442526548596 -2.127011889145392 -2.124478136176407 -2.111839337780544 -2.089168803168894 -2.056614566250052 -2.014398305644124 -1.962813707218036 -1.902224281506096 -1.833060652530405 -1.755817338546526 -1.671049049105741 -1.579366526500301 -1.481431963119362 -1.377954029469200 -1.269682550566844 -1.157402871092239 -1.041929952044946 -0.924102243694309 -0.804775381310299 -0.684815751507432 -0.565093978017643 -0.446478376317312 -0.329828426769690 -0.215988315800588 -0.105780594106182 0.000000000000000 0.105780594106174 0.215988315800579 0.329828426769685 0.446478376317299 0.565093978017662 0.684815751507448 0.804775381310294 0.924102243694303 1.041929952044925 1.157402871092233 1.269682550566857 1.377954029469222 1.481431963119356 1.579366526500288 1.671049049105737 1.755817338546521 1.833060652530417 1.902224281506092 1.962813707218081 2.014398305644118 2.056614566250048 2.089168803168902 2.111839337780552 2.124478136176403 2.127011889145390 2.119442526548592 2.101847162250780 2.074377470106261 2.037258495816667 1.990786913770228 1.935328742183678 1.871316533991022 1.799246064898853 1.719672543856337 1.698589186953035 1.701505047416269 1.698589186953036 1.719672543856335 1.799246064898852 1.871316533991021 1.935328742183684 1.990786913770169 2.037258495816665 2.074377470106261 2.101847162250776 2.119442526548597 2.127011889145397 2.124478136176411 2.111839337780548 2.089168803168899 2.056614566250047 2.014398305644129 1.962813707218040 1.902224281506096 1.833060652530411 1.755817338546514 1.671049049105731 1.579366526500282 1.481431963119365 1.377954029469217 1.269682550566850 1.157402871092214 1.041929952044918 0.924102243694314 0.804775381310310 0.684815751507444 0.565093978017659 0.446478376317294 0.329828426769674 0.215988315800598 0.105780594106190 0.000000000000000 -0.105780594106190 -0.215988315800594 -0.329828426769675 -0.446478376317293 -0.565093978017659 -0.684815751507443 -0.804775381310304 -0.924102243694314 -1.041929952044919 -1.157402871092213 -1.269682550566849 -1.377954029469216 -1.481431963119365 -1.579366526500307 -1.671049049105732 -1.755817338546515 -1.833060652530411 -1.902224281506098 -1.962813707218040 -2.014398305644115 -2.056614566250047 -2.089168803168899 -2.111839337780548 -2.124478136176411 -2.127011889145397 -2.119442526548589 -2.101847162250776 -2.074377470106261 -2.037258495816665 -1.990786913770169 -1.935328742183684 -1.871316533991021 -1.799246064898852 -1.719672543856335 -1.698589186953036 -1.701505047416269 +-1.625796370243551 -1.638224438344956 -1.725199097874952 -1.805249826017741 -1.877762677525772 -1.942179203154592 -1.998000712329927 -2.044792084553508 -2.082185100511270 -2.109881267493886 -2.127654117584119 -2.135350961068260 -2.132894081671602 -2.120281364457504 -2.097586351543171 -2.064957725130458 -2.022618221707633 -1.970862985596688 -1.910057374284103 -1.840634232140709 -1.763090653174209 -1.677984257346137 -1.585929008675617 -1.487590606842172 -1.383681487236883 -1.274955467386455 -1.162202080367051 -1.046240638196463 -0.927914070251247 -0.808082583459415 -0.687617192376442 -0.567393168237430 -0.448283456694435 -0.331152114182400 -0.216847812716142 -0.106197462395254 0.000000000000000 0.106197462395245 0.216847812716132 0.331152114182393 0.448283456694422 0.567393168237444 0.687617192376459 0.808082583459410 0.927914070251241 1.046240638196458 1.162202080367046 1.274955467386484 1.383681487236895 1.487590606842164 1.585929008675611 1.677984257346131 1.763090653174203 1.840634232140724 1.910057374284100 1.970862985596684 2.022618221707628 2.064957725130455 2.097586351543180 2.120281364457513 2.132894081671599 2.135350961068257 2.127654117584118 2.109881267493884 2.082185100511275 2.044792084553509 1.998000712329926 1.942179203154589 1.877762677525771 1.805249826017741 1.725199097874954 1.638224438344956 1.625796370243551 1.638224438344956 1.725199097874953 1.805249826017809 1.877762677525772 1.942179203154594 1.998000712329928 2.044792084553508 2.082185100511273 2.109881267493881 2.127654117584120 2.135350961068263 2.132894081671606 2.120281364457508 2.097586351543176 2.064957725130448 2.022618221707638 1.970862985596687 1.910057374284107 1.840634232140718 1.763090653174198 1.677984257346124 1.585929008675603 1.487590606842181 1.383681487236889 1.274955467386462 1.162202080367043 1.046240638196447 0.927914070251260 0.808082583459431 0.687617192376455 0.567393168237438 0.448283456694419 0.331152114182380 0.216847812716151 0.106197462395261 0.000000000000000 -0.106197462395261 -0.216847812716148 -0.331152114182381 -0.448283456694418 -0.567393168237438 -0.687617192376454 -0.808082583459431 -0.927914070251258 -1.046240638196449 -1.162202080367041 -1.274955467386461 -1.383681487236889 -1.487590606842180 -1.585929008675623 -1.677984257346125 -1.763090653174199 -1.840634232140719 -1.910057374284107 -1.970862985596687 -2.022618221707624 -2.064957725130448 -2.097586351543176 -2.120281364457509 -2.132894081671606 -2.135350961068263 -2.127654117584113 -2.109881267493884 -2.082185100511273 -2.044792084553508 -1.998000712329928 -1.942179203154594 -1.877762677525772 -1.805249826017809 -1.725199097874953 -1.638224438344956 -1.625796370243551 +-1.543912000000001 -1.637327390477638 -1.724479329857751 -1.804701769276823 -1.877379556755504 -1.941953127652891 -1.997922775556172 -2.044852471075952 -2.082373199455687 -2.110185791556627 -2.128063226630110 -2.135852389302498 -2.133475267344977 -2.120929581051290 -2.098288839365034 -2.065701822255867 -2.023391493204398 -1.971653349986792 -1.910853226220477 -1.841424560306250 -1.763865152449829 -1.678733434339264 -1.586644279755988 -1.488264387888401 -1.384307274364470 -1.275527908000119 -1.162717033953934 -1.046695226360854 -0.928306715573807 -0.808413036853468 -0.687886548703460 -0.567603870037130 -0.448439285977778 -0.331258172330710 -0.216910488622101 -0.106224389075658 0.000000000000000 0.106224389075649 0.216910488622095 0.331258172330702 0.448439285977775 0.567603870037151 0.687886548703480 0.808413036853457 0.928306715573797 1.046695226360850 1.162717033953915 1.275527908000129 1.384307274364483 1.488264387888388 1.586644279755972 1.678733434339258 1.763865152449822 1.841424560306264 1.910853226220474 1.971653349986787 2.023391493204391 2.065701822255857 2.098288839365038 2.120929581051291 2.133475267344973 2.135852389302493 2.128063226630107 2.110185791556622 2.082373199455691 2.044852471075957 1.997922775556173 1.941953127652891 1.877379556755503 1.804701769276821 1.724479329857683 1.637327390477637 1.543912000000001 1.637327390477638 1.724479329857752 1.804701769276889 1.877379556755501 1.941953127652893 1.997922775556175 2.044852471075953 2.082373199455690 2.110185791556618 2.128063226630112 2.135852389302502 2.133475267344981 2.120929581051290 2.098288839365037 2.065701822255855 2.023391493204402 1.971653349986798 1.910853226220482 1.841424560306260 1.763865152449816 1.678733434339253 1.586644279755967 1.488264387888409 1.384307274364478 1.275527908000125 1.162717033953910 1.046695226360840 0.928306715573813 0.808413036853483 0.687886548703473 0.567603870037137 0.448439285977764 0.331258172330692 0.216910488622111 0.106224389075666 0.000000000000000 -0.106224389075665 -0.216910488622109 -0.331258172330693 -0.448439285977764 -0.567603870037137 -0.687886548703467 -0.808413036853473 -0.928306715573813 -1.046695226360841 -1.162717033953910 -1.275527908000125 -1.384307274364477 -1.488264387888408 -1.586644279755992 -1.678733434339253 -1.763865152449816 -1.841424560306260 -1.910853226220482 -1.971653349986798 -2.023391493204388 -2.065701822255855 -2.098288839365037 -2.120929581051290 -2.133475267344981 -2.135852389302502 -2.128063226630104 -2.110185791556618 -2.082373199455690 -2.044852471075953 -1.997922775556175 -1.941953127652893 -1.877379556755501 -1.804701769276889 -1.724479329857752 -1.637327390477638 -1.543912000000001 +-1.792487472432115 -1.804756887539775 -1.891255890094131 -1.970514862719308 -2.041921367319085 -2.104919060643569 -2.159011952946331 -2.203768214249620 -2.238823499188345 -2.263883765057528 -2.278727561527215 -2.283207774503789 -2.277252810751615 -2.260867214136474 -2.234131708665648 -2.197202667848445 -2.150311014256452 -2.093760557488164 -2.027925783005056 -1.953249108475789 -1.870237628306040 -1.779459370917458 -1.681539097040256 -1.577153670762909 -1.467027038331114 -1.351924852660650 -1.232648784221591 -1.110030561326685 -0.984925784912885 -0.858207564613249 -0.730760024271936 -0.603471726042024 -0.477229062822762 -0.352909669028033 -0.231375899536799 -0.113468426151971 0.000000000000000 0.113468426151954 0.231375899536791 0.352909669028026 0.477229062822749 0.603471726042044 0.730760024271953 0.858207564613245 0.984925784912879 1.110030561326680 1.232648784221589 1.351924852660681 1.467027038331126 1.577153670762900 1.681539097040251 1.779459370917452 1.870237628306029 1.953249108475799 2.027925783005053 2.093760557488161 2.150311014256447 2.197202667848440 2.234131708665632 2.260867214136475 2.277252810751613 2.283207774503786 2.278727561527214 2.263883765057524 2.238823499188352 2.203768214249576 2.159011952946329 2.104919060643589 2.041921367319085 1.970514862719307 1.891255890094133 1.804756887539775 1.792487472432115 1.804756887539775 1.891255890094132 1.970514862719307 2.041921367319084 2.104919060643571 2.159011952946331 2.203768214249576 2.238823499188351 2.263883765057525 2.278727561527217 2.283207774503792 2.277252810751620 2.260867214136478 2.234131708665650 2.197202667848435 2.150311014256456 2.093760557488170 2.027925783005061 1.953249108475793 1.870237628305987 1.779459370917444 1.681539097040242 1.577153670762917 1.467027038331122 1.351924852660676 1.232648784221583 1.110030561326671 0.984925784912898 0.858207564613259 0.730760024271949 0.603471726042038 0.477229062822742 0.352909669028013 0.231375899536805 0.113468426151981 0.000000000000000 -0.113468426151980 -0.231375899536805 -0.352909669028014 -0.477229062822742 -0.603471726042030 -0.730760024271949 -0.858207564613259 -0.984925784912896 -1.110030561326671 -1.232648784221580 -1.351924852660675 -1.467027038331122 -1.577153670762915 -1.681539097040263 -1.779459370917445 -1.870237628305987 -1.953249108475794 -2.027925783005061 -2.093760557488170 -2.150311014256442 -2.197202667848435 -2.234131708665632 -2.260867214136478 -2.277252810751620 -2.283207774503792 -2.278727561527207 -2.263883765057525 -2.238823499188351 -2.203768214249576 -2.159011952946331 -2.104919060643571 -2.041921367319084 -1.970514862719307 -1.891255890094132 -1.804756887539775 -1.792487472432115 +-2.033618631854766 -2.030386672849425 -2.050522335838145 -2.128518371582681 -2.198384566826571 -2.259569908581227 -2.311584002240669 -2.354000850869364 -2.386462154665734 -2.408680105382445 -2.420439654305766 -2.421600236387900 -2.412096937241909 -2.391941093934137 -2.361220324797816 -2.320097987820286 -2.268812071487583 -2.207673526271268 -2.137064049186653 -2.057433337993197 -1.969295835632147 -1.873226989361706 -1.769859052726314 -1.659876461964811 -1.544010821688383 -1.423035537617778 -1.297760136848077 -1.169024318472854 -1.037691779444327 -0.904643862245104 -0.770773072297361 -0.636976514017097 -0.504149295033475 -0.373177948330982 -0.244933921928896 -0.120267185195090 0.000000000000000 0.120267185195082 0.244933921928890 0.373177948330970 0.504149295033461 0.636976514017118 0.770773072297389 0.904643862245095 1.037691779444322 1.169024318472848 1.297760136848071 1.423035537617800 1.544010821688395 1.659876461964773 1.769859052726310 1.873226989361700 1.969295835632142 2.057433337993209 2.137064049186649 2.207673526271257 2.268812071487575 2.320097987820281 2.361220324797825 2.391941093934143 2.412096937241940 2.421600236387896 2.420439654305763 2.408680105382495 2.386462154665686 2.354000850869330 2.311584002240664 2.259569908581226 2.198384566826571 2.128518371582681 2.050522335838149 2.030386672849425 2.033618631854766 2.030386672849426 2.050522335838149 2.128518371582679 2.198384566826571 2.259569908581230 2.311584002240668 2.354000850869368 2.386462154665684 2.408680105382491 2.420439654305767 2.421600236387901 2.412096937241915 2.391941093934140 2.361220324797821 2.320097987820275 2.268812071487569 2.207673526271273 2.137064049186657 2.057433337993203 1.969295835632135 1.873226989361694 1.769859052726303 1.659876461964815 1.544010821688388 1.423035537617783 1.297760136848063 1.169024318472827 1.037691779444338 0.904643862245120 0.770773072297379 0.636976514017112 0.504149295033457 0.373177948330962 0.244933921928906 0.120267185195100 0.000000000000000 -0.120267185195099 -0.244933921928906 -0.373177948330963 -0.504149295033456 -0.636976514017110 -0.770773072297377 -0.904643862245120 -1.037691779444337 -1.169024318472829 -1.297760136848062 -1.423035537617783 -1.544010821688387 -1.659876461964814 -1.769859052726321 -1.873226989361694 -1.969295835632136 -2.057433337993203 -2.137064049186659 -2.207673526271273 -2.268812071487572 -2.320097987820275 -2.361220324797821 -2.391941093934140 -2.412096937241915 -2.421600236387901 -2.420439654305762 -2.408680105382491 -2.386462154665684 -2.354000850869368 -2.311584002240668 -2.259569908581230 -2.198384566826571 -2.128518371582679 -2.050522335838149 -2.030386672849426 -2.033618631854766 +-2.265467554564834 -2.262027259750679 -2.251727587601164 -2.277507047476037 -2.345575647955768 -2.404725980810966 -2.454475082422531 -2.494404378079947 -2.524162943642304 -2.543470265822300 -2.552118479916376 -2.549974067753128 -2.536979002718571 -2.513151332896502 -2.478585197619102 -2.433450277006628 -2.377990678370599 -2.312523267616898 -2.237435457987904 -2.153182472591420 -2.060284101148062 -1.959320975219694 -1.850930389826425 -1.735801702793877 -1.614671346370417 -1.488317488586312 -1.357554384480012 -1.223226459660341 -1.086202170699632 -0.947367688535689 -0.807620452399890 -0.667862642761413 -0.528994622385845 -0.391908394840738 -0.257481129641710 -0.126568802718639 0.000000000000000 0.126568802718629 0.257481129641700 0.391908394840690 0.528994622385838 0.667862642761442 0.807620452399904 0.947367688535672 1.086202170699623 1.223226459660325 1.357554384480006 1.488317488586335 1.614671346370429 1.735801702793869 1.850930389826413 1.959320975219689 2.060284101148053 2.153182472591431 2.237435457987895 2.312523267616894 2.377990678370593 2.433450277006619 2.478585197619110 2.513151332896510 2.536979002718569 2.549974067753126 2.552118479916373 2.543470265822299 2.524162943642308 2.494404378079952 2.454475082422532 2.404725980810963 2.345575647955767 2.277507047476035 2.251727587601165 2.262027259750679 2.265467554564834 2.262027259750629 2.251727587601164 2.277507047476033 2.345575647955767 2.404725980810966 2.454475082422532 2.494404378079949 2.524162943642305 2.543470265822299 2.552118479916381 2.549974067753131 2.536979002718575 2.513151332896504 2.478585197619108 2.433450277006616 2.377990678370602 2.312523267616904 2.237435457987910 2.153182472591425 2.060284101148049 1.959320975219651 1.850930389826408 1.735801702793881 1.614671346370425 1.488317488586318 1.357554384479998 1.223226459660314 1.086202170699637 0.947367688535698 0.807620452399899 0.667862642761430 0.528994622385824 0.391908394840682 0.257481129641721 0.126568802718648 0.000000000000000 -0.126568802718646 -0.257481129641716 -0.391908394840683 -0.528994622385824 -0.667862642761429 -0.807620452399899 -0.947367688535696 -1.086202170699637 -1.223226459660315 -1.357554384479997 -1.488317488586317 -1.614671346370423 -1.735801702793881 -1.850930389826431 -1.959320975219680 -2.060284101148050 -2.153182472591425 -2.237435457987910 -2.312523267616904 -2.377990678370589 -2.433450277006616 -2.478585197619108 -2.513151332896504 -2.536979002718575 -2.549974067753131 -2.552118479916368 -2.543470265822299 -2.524162943642305 -2.494404378079950 -2.454475082422532 -2.404725980810966 -2.345575647955767 -2.277507047476033 -2.251727587601164 -2.262027259750629 -2.265467554564834 +-2.486265119490477 -2.482631808900764 -2.471753261172538 -2.453693477613255 -2.482369856975055 -2.539278050493226 -2.586593252424076 -2.623905842886222 -2.650873547255860 -2.667224152066290 -2.672757704204074 -2.667348176420538 -2.650944586208059 -2.623571559227046 -2.585329332653919 -2.536393198068318 -2.477012387724284 -2.407508412262970 -2.328272862070967 -2.239764688546358 -2.142506985463357 -2.037083294411572 -1.924133461880610 -1.804349078954391 -1.678468537730495 -1.547271741481752 -1.411574508190020 -1.272222709398808 -1.130086188331555 -0.986052502882525 -0.841020540411306 -0.695894052231194 -0.551575156283818 -0.408957856722497 -0.268921628992699 -0.132325118489002 0.000000000000000 0.132325118488993 0.268921628992690 0.408957856722485 0.551575156283812 0.695894052231217 0.841020540411330 0.986052502882506 1.130086188331545 1.272222709398791 1.411574508190015 1.547271741481769 1.678468537730507 1.804349078954385 1.924133461880604 2.037083294411559 2.142506985463350 2.239764688546368 2.328272862070963 2.407508412262967 2.477012387724286 2.536393198068315 2.585329332653928 2.623571559227052 2.650944586208050 2.667348176420534 2.672757704204075 2.667224152066289 2.650873547255864 2.623905842886197 2.586593252424073 2.539278050493222 2.482369856975055 2.453693477613255 2.471753261172504 2.482631808900764 2.486265119490477 2.482631808900730 2.471753261172538 2.453693477613181 2.482369856975054 2.539278050493230 2.586593252424078 2.623905842886195 2.650873547255861 2.667224152066284 2.672757704204078 2.667348176420541 2.650944586208063 2.623571559227049 2.585329332653925 2.536393198068308 2.477012387724276 2.407508412262976 2.328272862070973 2.239764688546363 2.142506985463347 2.037083294411553 1.924133461880596 1.804349078954404 1.678468537730503 1.547271741481760 1.411574508190006 1.272222709398778 1.130086188331563 0.986052502882537 0.841020540411319 0.695894052231207 0.551575156283799 0.408957856722476 0.268921628992709 0.132325118489015 0.000000000000000 -0.132325118489015 -0.268921628992708 -0.408957856722477 -0.551575156283799 -0.695894052231205 -0.841020540411316 -0.986052502882536 -1.130086188331562 -1.272222709398780 -1.411574508190006 -1.547271741481759 -1.678468537730502 -1.804349078954404 -1.924133461880615 -2.037083294411554 -2.142506985463347 -2.239764688546364 -2.328272862070973 -2.407508412262976 -2.477012387724281 -2.536393198068308 -2.585329332653925 -2.623571559227049 -2.650944586208063 -2.667348176420541 -2.672757704204071 -2.667224152066285 -2.650873547255861 -2.623905842886196 -2.586593252424078 -2.539278050493230 -2.482369856975054 -2.453693477613181 -2.471753261172538 -2.482631808900730 -2.486265119490477 +-2.694324481047253 -2.690514949814248 -2.679107826590122 -2.660167373716662 -2.633800199256438 -2.662195805059223 -2.706926789935368 -2.741513516344039 -2.765623567056787 -2.778993969949832 -2.781433350673960 -2.772823559722302 -2.753120761182742 -2.722355974532646 -2.680635064952829 -2.628138181805169 -2.565118649082893 -2.491901315778923 -2.408880378198325 -2.316516690226375 -2.215334581432809 -2.105918206609517 -1.988907453874580 -1.864993441813123 -1.734913639223460 -1.599446643890790 -1.459406659376061 -1.315637711092668 -1.169007644902898 -1.020401953104422 -0.870717473976453 -0.720856011998693 -0.571717926450496 -0.424195736323268 -0.279167789347365 -0.137492042436698 0.000000000000000 0.137492042436688 0.279167789347356 0.424195736323261 0.571717926450482 0.720856011998719 0.870717473976469 1.020401953104416 1.169007644902888 1.315637711092651 1.459406659376058 1.599446643890824 1.734913639223473 1.864993441813117 1.988907453874576 2.105918206609510 2.215334581432803 2.316516690226387 2.408880378198320 2.491901315778917 2.565118649082887 2.628138181805161 2.680635064952837 2.722355974532626 2.753120761182738 2.772823559722299 2.781433350673957 2.778993969949831 2.765623567056792 2.741513516343971 2.706926789935367 2.662195805059223 2.633800199256436 2.660167373716735 2.679107826590123 2.690514949814248 2.694324481047253 2.690514949814249 2.679107826590122 2.660167373716735 2.633800199256436 2.662195805059225 2.706926789935370 2.741513516344042 2.765623567056791 2.778993969949828 2.781433350673965 2.772823559722304 2.753120761182744 2.722355974532651 2.680635064952833 2.628138181805157 2.565118649082896 2.491901315778933 2.408880378198330 2.316516690226381 2.215334581432761 2.105918206609495 1.988907453874562 1.864993441813130 1.734913639223470 1.599446643890795 1.459406659376050 1.315637711092640 1.169007644902907 1.020401953104429 0.870717473976459 0.720856011998707 0.571717926450475 0.424195736323213 0.279167789347375 0.137492042436712 0.000000000000000 -0.137492042436710 -0.279167789347374 -0.424195736323213 -0.571717926450475 -0.720856011998706 -0.870717473976459 -1.020401953104427 -1.169007644902907 -1.315637711092640 -1.459406659376047 -1.599446643890795 -1.734913639223469 -1.864993441813130 -1.988907453874585 -2.105918206609496 -2.215334581432761 -2.316516690226381 -2.408880378198330 -2.491901315778934 -2.565118649082757 -2.628138181805157 -2.680635064952833 -2.722355974532651 -2.753120761182744 -2.772823559722304 -2.781433350673954 -2.778993969949828 -2.765623567056791 -2.741513516344043 -2.706926789935370 -2.662195805059225 -2.633800199256436 -2.660167373716735 -2.679107826590122 -2.690514949814249 -2.694324481047253 +-2.888053919316258 -2.884086311581712 -2.872204959301080 -2.852474128447099 -2.825000440731671 -2.789932145035041 -2.814551903068382 -2.846324452912810 -2.867531921851581 -2.877921450071510 -2.877310843624495 -2.865590157334487 -2.842722749679013 -2.808745801203141 -2.763770292063044 -2.707980438374013 -2.641632591118496 -2.565053605422057 -2.478638691996491 -2.382848766457870 -2.278207316013064 -2.165296806647727 -2.044754657414968 -1.917268811686825 -1.783572938270664 -1.644441298081976 -1.500683314582170 -1.353137888424099 -1.202667498669743 -1.050152134548352 -0.896483102994745 -0.742556758134969 -0.589268199466032 -0.437504985699499 -0.288140911110109 -0.142029890743330 0.000000000000000 0.142029890743320 0.288140911110100 0.437504985699486 0.589268199466017 0.742556758134991 0.896483102994765 1.050152134548346 1.202667498669739 1.353137888424072 1.500683314582166 1.644441298081992 1.783572938270702 1.917268811686804 2.044754657414963 2.165296806647720 2.278207316013052 2.382848766457881 2.478638691996489 2.565053605422054 2.641632591118493 2.707980438374009 2.763770292063053 2.808745801203147 2.842722749679010 2.865590157334395 2.877310843624492 2.877921450071507 2.867531921851588 2.846324452912813 2.814551903068380 2.789932145035039 2.825000440731697 2.852474128447099 2.872204959301081 2.884086311581712 2.888053919316258 2.884086311581712 2.872204959301081 2.852474128447182 2.825000440731695 2.789932145034963 2.814551903068306 2.846324452912813 2.867531921851586 2.877921450071502 2.877310843624499 2.865590157334493 2.842722749679014 2.808745801203144 2.763770292063048 2.707980438374006 2.641632591118500 2.565053605422068 2.478638691996497 2.382848766457875 2.278207316013048 2.165296806647714 2.044754657414956 1.917268811686831 1.783572938270669 1.644441298081985 1.500683314582157 1.353137888424063 1.202667498669752 1.050152134548362 0.896483102994760 0.742556758134984 0.589268199466014 0.437504985699478 0.288140911110120 0.142029890743344 0.000000000000000 -0.142029890743342 -0.288140911110119 -0.437504985699482 -0.589268199466012 -0.742556758134977 -0.896483102994760 -1.050152134548361 -1.202667498669749 -1.353137888424067 -1.500683314582156 -1.644441298081984 -1.783572938270669 -1.917268811686830 -2.044754657414981 -2.165296806647715 -2.278207316013049 -2.382848766457875 -2.478638691996498 -2.565053605422069 -2.641632591118489 -2.707980438374006 -2.763770292063048 -2.808745801203144 -2.842722749679014 -2.865590157334493 -2.877310843624493 -2.877921450071502 -2.867531921851586 -2.846324452912813 -2.814551903068306 -2.789932145034963 -2.825000440731695 -2.852474128447182 -2.872204959301081 -2.884086311581712 -2.888053919316258 +-3.065968969721945 -3.061862642266129 -3.049565045263110 -3.029140190830525 -3.000694286977120 -2.964375023020477 -2.920370576549826 -2.937531377417175 -2.955813568041175 -2.963244394272424 -2.959651374028294 -2.944933030275516 -2.919059908552692 -2.882075070431860 -2.834094058653759 -2.775304333642576 -2.705964185089307 -2.626401126241273 -2.537009782433941 -2.438249289210201 -2.330640219061736 -2.214761059384569 -2.091244267612014 -1.960771932680123 -1.824071074938319 -1.681908619342222 -1.535086079220975 -1.384433990089523 -1.230806134849825 -1.075073603292881 -0.918118730050687 -0.760828956053365 -0.604090659113489 -0.448782999475588 -0.295771826046530 -0.145903688545492 0.000000000000000 0.145903688545484 0.295771826046513 0.448782999475581 0.604090659113483 0.760828956053389 0.918118730050707 1.075073603292877 1.230806134849816 1.384433990089514 1.535086079220970 1.681908619342243 1.824071074938339 1.960771932680084 2.091244267612009 2.214761059384561 2.330640219061730 2.438249289210211 2.537009782433936 2.626401126241268 2.705964185089302 2.775304333642571 2.834094058653766 2.882075070431867 2.919059908552688 2.944933030275535 2.959651374028291 2.963244394272424 2.955813568041178 2.937531377417182 2.920370576549825 2.964375023020476 3.000694286977104 3.029140190830522 3.049565045263110 3.061862642266129 3.065968969721945 3.061862642266037 3.049565045263110 3.029140190830520 3.000694286977097 2.964375023020478 2.920370576549828 2.937531377417177 2.955813568041178 2.963244394272423 2.959651374028224 2.944933030275520 2.919059908552697 2.882075070431861 2.834094058653764 2.775304333642568 2.705964185089313 2.626401126241278 2.537009782433947 2.438249289210207 2.330640219061724 2.214761059384555 2.091244267612002 1.960771932680128 1.824071074938326 1.681908619342228 1.535086079220963 1.384433990089496 1.230806134849845 1.075073603292890 0.918118730050697 0.760828956053383 0.604090659113469 0.448782999475567 0.295771826046539 0.145903688545505 0.000000000000000 -0.145903688545504 -0.295771826046539 -0.448782999475568 -0.604090659113468 -0.760828956053383 -0.918118730050697 -1.075073603292888 -1.230806134849845 -1.384433990089506 -1.535086079220962 -1.681908619342226 -1.824071074938326 -1.960771932680128 -2.091244267612025 -2.214761059384557 -2.330640219061725 -2.438249289210207 -2.537009782433947 -2.626401126241279 -2.705964185089299 -2.775304333642567 -2.834094058653764 -2.882075070431862 -2.919059908552697 -2.944933030275520 -2.959651374028288 -2.963244394272423 -2.955813568041178 -2.937531377417181 -2.920370576549828 -2.964375023020478 -3.000694286977097 -3.029140190830520 -3.049565045263110 -3.061862642266037 -3.065968969721945 +-3.226703739865909 -3.222479116490256 -3.209826460790329 -3.188809275412495 -3.159532930349533 -3.122143964915044 -3.076829117676685 -3.023814091458034 -3.029785492284867 -3.034302494128189 -3.027817539680909 -3.010237819021245 -2.981541002286194 -2.941775706802340 -2.891061450269649 -2.829588089739727 -2.757614749993643 -2.675468248764549 -2.583541030035753 -2.482288620338708 -2.372226626570280 -2.253927297291801 -2.128015672756007 -1.995165352002011 -1.856093908234562 -1.711557986348754 -1.562348118847110 -1.409283298509755 -1.253205348001102 -1.094973128117139 -0.935456627580844 -0.775530978174357 -0.616070439544540 -0.457942398233954 -0.302001425365518 -0.149083436950436 0.000000000000000 0.149083436950424 0.302001425365506 0.457942398233946 0.616070439544533 0.775530978174380 0.935456627580868 1.094973128117119 1.253205348001098 1.409283298509747 1.562348118847082 1.711557986348773 1.856093908234588 1.995165352002006 2.128015672755966 2.253927297291796 2.372226626570275 2.482288620338717 2.583541030035751 2.675468248764544 2.757614749993641 2.829588089739721 2.891061450269632 2.941775706802348 2.981541002286217 3.010237819021243 3.027817539680906 3.034302494128187 3.029785492284872 3.023814091458035 3.076829117676584 3.122143964915044 3.159532930349529 3.188809275412496 3.209826460790330 3.222479116490256 3.226703739865909 3.222479116490277 3.209826460790328 3.188809275412495 3.159532930349618 3.122143964915051 3.076829117676686 3.023814091458034 3.029785492284871 3.034302494128184 3.027817539680912 3.010237819021247 2.981541002286198 2.941775706802344 2.891061450269646 2.829588089739716 2.757614749993651 2.675468248764552 2.583541030035799 2.482288620338713 2.372226626570271 2.253927297291791 2.128015672755958 1.995165352002052 1.856093908234584 1.711557986348759 1.562348118847075 1.409283298509739 1.253205348001121 1.094973128117149 0.935456627580859 0.775530978174370 0.616070439544519 0.457942398233932 0.302001425365528 0.149083436950445 0.000000000000000 -0.149083436950444 -0.302001425365527 -0.457942398233933 -0.616070439544518 -0.775530978174370 -0.935456627580853 -1.094973128117144 -1.253205348001121 -1.409283298509742 -1.562348118847074 -1.711557986348758 -1.856093908234583 -1.995165352002051 -2.128015672756010 -2.253927297291791 -2.372226626570272 -2.482288620338713 -2.583541030035799 -2.675468248764552 -2.757614749993639 -2.829588089739716 -2.891061450269631 -2.941775706802344 -2.981541002286198 -3.010237819021247 -3.027817539680905 -3.034302494128185 -3.029785492284871 -3.023814091458034 -3.076829117676686 -3.122143964915051 -3.159532930349618 -3.188809275412495 -3.209826460790328 -3.222479116490277 -3.226703739865909 +-3.369021327352881 -3.364699745119248 -3.351755957806779 -3.330252706775595 -3.300294105946523 -3.262024962767408 -3.215629834506943 -3.161331826761810 -3.099391142929956 -3.090542377136816 -3.081278216663208 -3.060995439162104 -3.029678722184282 -2.987381870711424 -2.934227758939755 -2.870407773997871 -2.796180765114797 -2.711871505460177 -2.617868677543447 -2.514622396632339 -2.402641290123289 -2.282489154129735 -2.154781211730150 -2.020180000307108 -1.879390918192105 -1.733157463390227 -1.582256199462429 -1.427491485690380 -1.269690010413105 -1.109695167890920 -0.948361320221020 -0.786547986679533 -0.625114003395307 -0.464911696469817 -0.306781111539064 -0.151544342329816 0.000000000000000 0.151544342329807 0.306781111539054 0.464911696469803 0.625114003395284 0.786547986679553 0.948361320221035 1.109695167890909 1.269690010413099 1.427491485690372 1.582256199462426 1.733157463390240 1.879390918192119 2.020180000307102 2.154781211730144 2.282489154129731 2.402641290123284 2.514622396632358 2.617868677543445 2.711871505460171 2.796180765114792 2.870407773997868 2.934227758939762 2.987381870711429 3.029678722184280 3.060995439162101 3.081278216663204 3.090542377136813 3.099391142929979 3.161331826761791 3.215629834506963 3.262024962767407 3.300294105946521 3.330252706775494 3.351755957806781 3.364699745119345 3.369021327352881 3.364699745119249 3.351755957806780 3.330252706775493 3.300294105946521 3.262024962767409 3.215629834506944 3.161331826761812 3.099391142929977 3.090542377136811 3.081278216663212 3.060995439162107 3.029678722184286 2.987381870711427 2.934227758939757 2.870407773997862 2.796180765114803 2.711871505460185 2.617868677543464 2.514622396632342 2.402641290123182 2.282489154129716 2.154781211730104 2.020180000307114 1.879390918192112 1.733157463390233 1.582256199462398 1.427491485690352 1.269690010413113 1.109695167890940 0.948361320221032 0.786547986679543 0.625114003395279 0.464911696469795 0.306781111539074 0.151544342329837 0.000000000000000 -0.151544342329836 -0.306781111539070 -0.464911696469796 -0.625114003395279 -0.786547986679542 -0.948361320221031 -1.109695167890940 -1.269690010413113 -1.427491485690352 -1.582256199462397 -1.733157463390233 -1.879390918192112 -2.020180000307114 -2.154781211730155 -2.282489154129724 -2.402641290123186 -2.514622396632342 -2.617868677543464 -2.711871505460185 -2.796180765114789 -2.870407773997862 -2.934227758939757 -2.987381870711427 -3.029678722184286 -3.060995439162107 -3.081278216663204 -3.090542377136812 -3.099391142929977 -3.161331826761812 -3.215629834506944 -3.262024962767409 -3.300294105946521 -3.330252706775493 -3.351755957806780 -3.364699745119249 -3.369021327352881 +-3.491823259279344 -3.487426807775081 -3.474258075423299 -3.452378796194547 -3.421891419301807 -3.382938451451551 -3.335701542688946 -3.280400322471438 -3.217290994408342 -3.146664699860852 -3.119612625001364 -3.096805978829637 -3.063093417530189 -3.018533525546655 -2.963251888901107 -2.897440545896220 -2.821356960910176 -2.735322528261264 -2.639720616651403 -2.534994168133097 -2.421642868893625 -2.300219912355272 -2.171328378149064 -2.035617253398974 -1.893777125433397 -1.746535577503593 -1.594652321307744 -1.438914102092548 -1.280129413797919 -1.119123063129264 -0.956730622562322 -0.793792813105916 -0.631149858162301 -0.469635850021469 -0.310073170417459 -0.153267006144544 0.000000000000000 0.153267006144523 0.310073170417450 0.469635850021456 0.631149858162287 0.793792813105940 0.956730622562350 1.119123063129256 1.280129413797907 1.438914102092528 1.594652321307736 1.746535577503625 1.893777125433418 2.035617253398969 2.171328378149057 2.300219912355268 2.421642868893622 2.534994168133113 2.639720616651398 2.735322528261259 2.821356960910164 2.897440545896218 2.963251888901115 3.018533525546668 3.063093417530184 3.096805978829634 3.119612625001361 3.146664699860848 3.217290994408345 3.280400322471460 3.335701542688965 3.382938451451532 3.421891419301787 3.452378796194445 3.474258075423299 3.487426807775099 3.491823259279344 3.487426807775081 3.474258075423299 3.452378796194445 3.421891419301784 3.382938451451553 3.335701542688948 3.280400322471440 3.217290994408344 3.146664699860857 3.119612625001368 3.096805978829641 3.063093417530193 3.018533525546659 2.963251888901110 2.897440545896214 2.821356960910180 2.735322528261275 2.639720616651407 2.534994168133109 2.421642868893617 2.300219912355248 2.171328378149054 2.035617253398982 1.893777125433413 1.746535577503599 1.594652321307731 1.438914102092516 1.280129413797928 1.119123063129276 0.956730622562332 0.793792813105928 0.631149858162281 0.469635850021447 0.310073170417474 0.153267006144552 0.000000000000000 -0.153267006144552 -0.310073170417465 -0.469635850021448 -0.631149858162280 -0.793792813105927 -0.956730622562331 -1.119123063129271 -1.280129413797928 -1.438914102092520 -1.594652321307731 -1.746535577503599 -1.893777125433412 -2.035617253398981 -2.171328378149070 -2.300219912355249 -2.421642868893618 -2.534994168133109 -2.639720616651408 -2.735322528261269 -2.821356960910160 -2.897440545896214 -2.963251888901110 -3.018533525546659 -3.063093417530193 -3.096805978829641 -3.119612625001359 -3.146664699860855 -3.217290994408344 -3.280400322471440 -3.335701542688948 -3.382938451451553 -3.421891419301784 -3.452378796194445 -3.474258075423299 -3.487426807775081 -3.491823259279344 +-3.594157881495314 -3.589709236342949 -3.576383506166246 -3.554241179016862 -3.523382643278823 -3.483947553337032 -3.436113947937792 -3.380097127604625 -3.316148299209273 -3.244552997477958 -3.165629294808237 -3.117381768186023 -3.081516010262737 -3.034979202425548 -2.977898976478611 -2.910467137253235 -2.832938664679321 -2.745630264765080 -2.648918479577388 -2.543237369615240 -2.429075785173374 -2.306974246367080 -2.177521454420648 -2.041350459580824 -1.899134513585818 -1.751582636978580 -1.599434933685256 -1.443457687162822 -1.284438274052602 -1.123179932628288 -0.960496424406751 -0.797206628074928 -0.634129105377474 -0.472076678803733 -0.311851060803338 -0.154237573853898 0.000000000000000 0.154237573853890 0.311851060803328 0.472076678803721 0.634129105377448 0.797206628074945 0.960496424406836 1.123179932628267 1.284438274052597 1.443457687162816 1.599434933685241 1.751582636978594 1.899134513585827 2.041350459580811 2.177521454420642 2.306974246367076 2.429075785173370 2.543237369615251 2.648918479577375 2.745630264765075 2.832938664679319 2.910467137253229 2.977898976478618 3.034979202425555 3.081516010262728 3.117381768186016 3.165629294808235 3.244552997477955 3.316148299209378 3.380097127604646 3.436113947937792 3.483947553337030 3.523382643278821 3.554241179016955 3.576383506166247 3.589709236342948 3.594157881495314 3.589709236342950 3.576383506166247 3.554241179016955 3.523382643278819 3.483947553337013 3.436113947937774 3.380097127604628 3.316148299209376 3.244552997477954 3.165629294808241 3.117381768186024 3.081516010262741 3.034979202425551 2.977898976478612 2.910467137253224 2.832938664679335 2.745630264765085 2.648918479577412 2.543237369615245 2.429075785173360 2.306974246367069 2.177521454420637 2.041350459580828 1.899134513585822 1.751582636978586 1.599434933685236 1.443457687162806 1.284438274052607 1.123179932628297 0.960496424406767 0.797206628074934 0.634129105377442 0.472076678803712 0.311851060803353 0.154237573853910 0.000000000000000 -0.154237573853909 -0.311851060803353 -0.472076678803714 -0.634129105377441 -0.797206628074934 -0.960496424406767 -1.123179932628295 -1.284438274052607 -1.443457687162808 -1.599434933685236 -1.751582636978586 -1.899134513585821 -2.041350459580827 -2.177521454420651 -2.306974246367071 -2.429075785173360 -2.543237369615245 -2.648918479577412 -2.745630264765085 -2.832938664679316 -2.910467137253224 -2.977898976478612 -3.034979202425551 -3.081516010262741 -3.117381768186024 -3.165629294808234 -3.244552997477954 -3.316148299209376 -3.380097127604629 -3.436113947937773 -3.483947553337013 -3.523382643278819 -3.554241179016955 -3.576383506166247 -3.589709236342950 -3.594157881495314 +-3.675227633736876 -3.670749885612816 -3.657336353125756 -3.635046049260124 -3.603976920964520 -3.564265240192893 -3.516084757498592 -3.459645624252440 -3.395193091231995 -3.323005992912076 -3.243395028325297 -3.156700850813369 -3.084790070941455 -3.036577941410250 -2.978042204137735 -2.909373546750152 -2.830823383120739 -2.742702456195425 -2.645379019508188 -2.539276610184174 -2.424871429285689 -2.302689348287244 -2.173302563262347 -2.037325920996795 -1.895412943691641 -1.748251581171320 -1.596559721542676 -1.441080493050314 -1.282577391428509 -1.121829268341147 -0.959625217530837 -0.796759396046928 -0.634025818393384 -0.472213161619395 -0.312099619276193 -0.154447841773324 0.000000000000000 0.154447841773313 0.312099619276180 0.472213161619382 0.634025818393371 0.796759396046947 0.959625217530854 1.121829268341140 1.282577391428500 1.441080493050295 1.596559721542670 1.748251581171359 1.895412943691658 2.037325920996792 2.173302563262342 2.302689348287236 2.424871429285683 2.539276610184182 2.645379019508162 2.742702456195422 2.830823383120734 2.909373546750146 2.978042204137742 3.036577941410257 3.084790070941522 3.156700850813362 3.243395028325293 3.323005992912076 3.395193091231997 3.459645624252442 3.516084757498586 3.564265240192892 3.603976920964516 3.635046049260122 3.657336353125775 3.670749885612816 3.675227633736876 3.670749885612800 3.657336353125757 3.635046049260126 3.603976920964413 3.564265240192895 3.516084757498695 3.459645624252441 3.395193091231997 3.323005992912075 3.243395028325298 3.156700850813374 3.084790070941460 3.036577941410252 2.978042204137740 2.909373546750143 2.830823383120741 2.742702456195429 2.645379019508197 2.539276610184177 2.424871429285678 2.302689348287233 2.173302563262338 2.037325920996802 1.895412943691655 1.748251581171326 1.596559721542665 1.441080493050286 1.282577391428512 1.121829268341167 0.959625217530843 0.796759396046942 0.634025818393364 0.472213161619374 0.312099619276202 0.154447841773334 0.000000000000000 -0.154447841773333 -0.312099619276200 -0.472213161619378 -0.634025818393362 -0.796759396046940 -0.959625217530842 -1.121829268341166 -1.282577391428512 -1.441080493050287 -1.596559721542665 -1.748251581171326 -1.895412943691654 -2.037325920996801 -2.173302563262351 -2.302689348287234 -2.424871429285679 -2.539276610184178 -2.645379019508197 -2.742702456195429 -2.830823383120729 -2.909373546750143 -2.978042204137740 -3.036577941410253 -3.084790070941460 -3.156700850813374 -3.243395028325291 -3.323005992912075 -3.395193091231997 -3.459645624252442 -3.516084757498695 -3.564265240192895 -3.603976920964413 -3.635046049260128 -3.657336353125757 -3.670749885612800 -3.675227633736876 +-3.734395155198510 -3.729911635658833 -3.716480222734434 -3.694158236307941 -3.663040819683550 -3.623260357760774 -3.574985668309270 -3.518420972116358 -3.453804649364947 -3.381407791109899 -3.301532556185656 -3.214510345247305 -3.120699804941159 -3.023300394371093 -2.963663794850631 -2.894151935838702 -2.815011609682534 -2.726546365837511 -2.629114769371662 -2.523128271135584 -2.409048704665616 -2.287385427674202 -2.158692128635194 -2.023563321464010 -1.882630553625187 -1.736558355128509 -1.586039957807030 -1.431792815978044 -1.274553961060027 -1.115075223948877 -0.954118359931751 -0.792450111627735 -0.630837245892400 -0.470041600797656 -0.310815178702844 -0.153895321064714 0.000000000000000 0.153895321064704 0.310815178702838 0.470041600797644 0.630837245892387 0.792450111627752 0.954118359931779 1.115075223948868 1.274553961060009 1.431792815978042 1.586039957807027 1.736558355128521 1.882630553625196 2.023563321463986 2.158692128635188 2.287385427674194 2.409048704665613 2.523128271135635 2.629114769371659 2.726546365837506 2.815011609682531 2.894151935838699 2.963663794850638 3.023300394371100 3.120699804941154 3.214510345247300 3.301532556185653 3.381407791109895 3.453804649364933 3.518420972116340 3.574985668309267 3.623260357760774 3.663040819683549 3.694158236307940 3.716480222734435 3.729911635658832 3.734395155198510 3.729911635658814 3.716480222734434 3.694158236307941 3.663040819683549 3.623260357760790 3.574985668309269 3.518420972116360 3.453804649364949 3.381407791109875 3.301532556185659 3.214510345247307 3.120699804941166 3.023300394371095 2.963663794850634 2.894151935838696 2.815011609682540 2.726546365837541 2.629114769371665 2.523128271135618 2.409048704665607 2.287385427674188 2.158692128635147 2.023563321464013 1.882630553625193 1.736558355128512 1.586039957807023 1.431792815978034 1.274553961060031 1.115075223948885 0.954118359931769 0.792450111627746 0.630837245892383 0.470041600797605 0.310815178702859 0.153895321064723 0.000000000000000 -0.153895321064721 -0.310815178702858 -0.470041600797606 -0.630837245892380 -0.792450111627746 -0.954118359931768 -1.115075223948880 -1.274553961060031 -1.431792815978035 -1.586039957807023 -1.736558355128512 -1.882630553625192 -2.023563321464013 -2.158692128635198 -2.287385427674189 -2.409048704665608 -2.523128271135618 -2.629114769371665 -2.726546365837533 -2.815011609682529 -2.894151935838696 -2.963663794850633 -3.023300394371097 -3.120699804941166 -3.214510345247307 -3.301532556185649 -3.381407791109876 -3.453804649364949 -3.518420972116360 -3.574985668309269 -3.623260357760790 -3.663040819683549 -3.694158236307941 -3.716480222734434 -3.729911635658814 -3.734395155198510 +-3.771188174011205 -3.766722279447901 -3.753343106735187 -3.731106077387175 -3.700103189992314 -3.660462467076707 -3.612347186222768 -3.555954900904470 -3.491516257987170 -3.419293620284773 -3.339579503933374 -3.252694841651393 -3.158987084169580 -3.058828153246261 -2.952612260707675 -2.864900719161065 -2.785606850512471 -2.697268752349490 -2.600233973873800 -2.494900407482388 -2.381713908919237 -2.261165581322103 -2.133788742546136 -2.000155597501720 -1.860873639440918 -1.716581806141443 -1.567946418757987 -1.415656932722551 -1.260421531468267 -1.102962594908809 -0.944012075529075 -0.784306815613183 -0.624583839559558 -0.465575655396796 -0.308005599526304 -0.152583258369443 0.000000000000000 0.152583258369435 0.308005599526288 0.465575655396784 0.624583839559553 0.784306815613198 0.944012075529102 1.102962594908800 1.260421531468231 1.415656932722543 1.567946418757981 1.716581806141459 1.860873639440931 2.000155597501715 2.133788742546129 2.261165581322098 2.381713908919227 2.494900407482426 2.600233973873767 2.697268752349488 2.785606850512468 2.864900719161060 2.952612260707682 3.058828153246269 3.158987084169577 3.252694841651390 3.339579503933374 3.419293620284773 3.491516257987172 3.555954900904473 3.612347186222765 3.660462467076707 3.700103189992314 3.731106077387194 3.753343106735204 3.766722279447918 3.771188174011205 3.766722279447903 3.753343106735204 3.731106077387192 3.700103189992298 3.660462467076711 3.612347186222772 3.555954900904470 3.491516257987171 3.419293620284768 3.339579503933378 3.252694841651394 3.158987084169583 3.058828153246263 2.952612260707677 2.864900719161060 2.785606850512477 2.697268752349495 2.600233973873805 2.494900407482391 2.381713908919223 2.261165581322094 2.133788742546117 2.000155597501725 1.860873639440924 1.716581806141449 1.567946418757975 1.415656932722534 1.260421531468273 1.102962594908827 0.944012075529093 0.784306815613188 0.624583839559540 0.465575655396774 0.308005599526313 0.152583258369456 0.000000000000000 -0.152583258369456 -0.308005599526309 -0.465575655396774 -0.624583839559540 -0.784306815613187 -0.944012075529093 -1.102962594908827 -1.260421531468273 -1.415656932722535 -1.567946418757975 -1.716581806141449 -1.860873639440924 -2.000155597501724 -2.133788742546140 -2.261165581322095 -2.381713908919224 -2.494900407482391 -2.600233973873805 -2.697268752349495 -2.785606850512463 -2.864900719161060 -2.952612260707677 -3.058828153246263 -3.158987084169583 -3.252694841651394 -3.339579503933368 -3.419293620284769 -3.491516257987171 -3.555954900904470 -3.612347186222772 -3.660462467076711 -3.700103189992300 -3.731106077387192 -3.753343106735204 -3.766722279447903 -3.771188174011205 +-3.785303143340003 -3.780878158403606 -3.767621016114918 -3.745585048672183 -3.714858792598096 -3.675565465629024 -3.627862239540072 -3.571939314038076 -3.508018798258362 -3.436353407750510 -3.357224986131329 -3.270942861812498 -3.177842051350864 -3.078281322034416 -2.972641127285025 -2.861321429320521 -2.744739424283039 -2.655075088100207 -2.558939795264459 -2.454791953845730 -2.343059951718560 -2.224215034091944 -2.098768438692813 -1.967268253500250 -1.830296019520156 -1.688463102982918 -1.542406863052697 -1.392786642654773 -1.240279611328957 -1.085576490110853 -0.929377189303080 -0.772386390633975 -0.615309105695637 -0.458846242709926 -0.303690213588121 -0.150520612923798 0.000000000000000 0.150520612923786 0.303690213588113 0.458846242709911 0.615309105695612 0.772386390633996 0.929377189303100 1.085576490110844 1.240279611328955 1.392786642654742 1.542406863052689 1.688463102982960 1.830296019520169 1.967268253500245 2.098768438692808 2.224215034091921 2.343059951718555 2.454791953845737 2.558939795264456 2.655075088100205 2.744739424282978 2.861321429320519 2.972641127285032 3.078281322034431 3.177842051350726 3.270942861812496 3.357224986131328 3.436353407750407 3.508018798258363 3.571939314038079 3.627862239540070 3.675565465629023 3.714858792598077 3.745585048672182 3.767621016114917 3.780878158403606 3.785303143340003 3.780878158403606 3.767621016114916 3.745585048672182 3.714858792598077 3.675565465629044 3.627862239540074 3.571939314038078 3.508018798258362 3.436353407750406 3.357224986131333 3.270942861812478 3.177842051350885 3.078281322034419 2.972641127285031 2.861321429320508 2.744739424283041 2.655075088100212 2.558939795264462 2.454791953845732 2.343059951718550 2.224215034091919 2.098768438692786 1.967268253500255 1.830296019520162 1.688463102982954 1.542406863052685 1.392786642654736 1.240279611328965 1.085576490110871 0.929377189303096 0.772386390633986 0.615309105695607 0.458846242709903 0.303690213588131 0.150520612923806 0.000000000000000 -0.150520612923806 -0.303690213588127 -0.458846242709903 -0.615309105695606 -0.772386390633984 -0.929377189303096 -1.085576490110871 -1.240279611328961 -1.392786642654736 -1.542406863052685 -1.688463102982951 -1.830296019520162 -1.967268253500255 -2.098768438692816 -2.224215034091919 -2.343059951718551 -2.454791953845732 -2.558939795264462 -2.655075088100213 -2.744739424282975 -2.861321429320508 -2.972641127285031 -3.078281322034419 -3.177842051350885 -3.270942861812478 -3.357224986131224 -3.436353407750407 -3.508018798258362 -3.571939314038078 -3.627862239540074 -3.675565465629044 -3.714858792598077 -3.745585048672182 -3.767621016114916 -3.780878158403606 -3.785303143340003 +-3.776607596349565 -3.772246518178838 -3.759180339263501 -3.737460127302585 -3.707170665524666 -3.668429960711609 -3.621388559273347 -3.566228676169918 -3.503163142787892 -3.432434181142241 -3.354312012980178 -3.269093313515051 -3.177099520582355 -3.078675011011309 -2.974185156901813 -2.864014275312754 -2.748563485575330 -2.628248489048766 -2.505528798821613 -2.403091240702712 -2.293364915433061 -2.176799756506008 -2.053883378431534 -1.925138126198336 -1.791117886315781 -1.652404682208874 -1.509605078334822 -1.363346418798633 -1.214272927470379 -1.063041697616067 -0.910318599866927 -0.756774137938926 -0.603079281885379 -0.449901308811755 -0.297899680905165 -0.147721990327470 0.000000000000000 0.147721990327458 0.297899680905157 0.449901308811744 0.603079281885373 0.756774137938944 0.910318599866941 1.063041697616060 1.214272927470372 1.363346418798629 1.509605078334797 1.652404682208892 1.791117886315788 1.925138126198314 2.053883378431523 2.176799756505971 2.293364915433058 2.403091240702734 2.505528798821610 2.628248489048760 2.748563485575325 2.864014275312638 2.974185156901819 3.078675011011414 3.177099520582352 3.269093313515041 3.354312012980175 3.432434181142241 3.503163142787896 3.566228676169920 3.621388559273347 3.668429960711628 3.707170665524664 3.737460127302585 3.759180339263414 3.772246518178930 3.776607596349565 3.772246518178838 3.759180339263502 3.737460127302580 3.707170665524666 3.668429960711609 3.621388559273349 3.566228676169920 3.503163142787894 3.432434181142239 3.354312012980182 3.269093313515049 3.177099520582356 3.078675011011314 2.974185156901815 2.864014275312635 2.748563485575332 2.628248489048767 2.505528798821617 2.403091240702715 2.293364915433024 2.176799756505967 2.053883378431493 1.925138126198341 1.791117886315784 1.652404682208888 1.509605078334794 1.363346418798585 1.214272927470400 1.063041697616087 0.910318599866933 0.756774137938939 0.603079281885360 0.449901308811735 0.297899680905175 0.147721990327479 0.000000000000000 -0.147721990327478 -0.297899680905175 -0.449901308811740 -0.603079281885360 -0.756774137938938 -0.910318599866931 -1.063041697616071 -1.214272927470399 -1.363346418798586 -1.509605078334794 -1.652404682208888 -1.791117886315784 -1.925138126198341 -2.053883378431540 -2.176799756505968 -2.293364915433054 -2.403091240702716 -2.505528798821617 -2.628248489048767 -2.748563485575302 -2.864014275312635 -2.974185156901815 -3.078675011011314 -3.177099520582356 -3.269093313515052 -3.354312012980171 -3.432434181142239 -3.503163142787894 -3.566228676169920 -3.621388559273349 -3.668429960711609 -3.707170665524666 -3.737460127302580 -3.759180339263502 -3.772246518178838 -3.776607596349565 +-3.745141202027003 -3.740866566623564 -3.728058906328876 -3.706766866251439 -3.677071213422482 -3.639084376827998 -3.592949807948301 -3.538841166261629 -3.476961335381142 -3.407541276671446 -3.330838728311236 -3.247136758834905 -3.156742185178909 -3.059983866185310 -2.957210883351002 -2.848790621369644 -2.735106761668988 -2.616557202711640 -2.493551921288479 -2.366510789386503 -2.235861361463253 -2.119264469571418 -1.999459959019981 -1.874071607826553 -1.743624154389892 -1.608668729506835 -1.469779502645905 -1.327550174335451 -1.182590339719602 -1.035521749279258 -0.886974493462831 -0.737583138518981 -0.587982841167814 -0.438805469882494 -0.290675760483292 -0.144207533465544 0.000000000000000 0.144207533465535 0.290675760483274 0.438805469882459 0.587982841167802 0.737583138519041 0.886974493462846 1.035521749279203 1.182590339719593 1.327550174335434 1.469779502645896 1.608668729506844 1.743624154389904 1.874071607826549 1.999459959019971 2.119264469571413 2.235861361463250 2.366510789386508 2.493551921288466 2.616557202711607 2.735106761668983 2.848790621369643 2.957210883351008 3.059983866185315 3.156742185178908 3.247136758834904 3.330838728311239 3.407541276671447 3.476961335381145 3.538841166261553 3.592949807948302 3.639084376827996 3.677071213422481 3.706766866251439 3.728058906328971 3.740866566623583 3.745141202027003 3.740866566623564 3.728058906328971 3.706766866251439 3.677071213422483 3.639084376827977 3.592949807948301 3.538841166261551 3.476961335381143 3.407541276671444 3.330838728311227 3.247136758834907 3.156742185178913 3.059983866185313 2.957210883351004 2.848790621369640 2.735106761668989 2.616557202711641 2.493551921288488 2.366510789386504 2.235861361463244 2.119264469571394 1.999459959019967 1.874071607826559 1.743624154389898 1.608668729506842 1.469779502645891 1.327550174335431 1.182590339719607 1.035521749279263 0.886974493462838 0.737583138518986 0.587982841167798 0.438805469882446 0.290675760483298 0.144207533465558 0.000000000000000 -0.144207533465556 -0.290675760483298 -0.438805469882448 -0.587982841167798 -0.737583138518986 -0.886974493462837 -1.035521749279263 -1.182590339719606 -1.327550174335431 -1.469779502645889 -1.608668729506840 -1.743624154389897 -1.874071607826559 -1.999459959019987 -2.119264469571394 -2.235861361463244 -2.366510789386504 -2.493551921288488 -2.616557202711641 -2.735106761668978 -2.848790621369640 -2.957210883351004 -3.059983866185313 -3.156742185178913 -3.247136758834907 -3.330838728311146 -3.407541276671444 -3.476961335381143 -3.538841166261552 -3.592949807948301 -3.639084376827977 -3.677071213422483 -3.706766866251439 -3.728058906328971 -3.740866566623564 -3.745141202027003 +-3.691115513740659 -3.686949225802079 -3.674465751577206 -3.653711173777211 -3.624762010646011 -3.587724788629350 -3.542735448258910 -3.489958587357024 -3.429586546797902 -3.361838345135041 -3.286958469446549 -3.205215530728731 -3.116900793088752 -3.022326586839019 -2.921824616370884 -2.815744174383236 -2.704450274649072 -2.588321716026492 -2.467749090844081 -2.343132751122774 -2.214880746323964 -2.083406746444979 -1.949127964311636 -1.814442341390634 -1.688162317273788 -1.557575207604744 -1.423221431094844 -1.285659653906148 -1.145463420823984 -1.003217691346995 -0.859515305341958 -0.714953403414596 -0.570129827465593 -0.425639527026295 -0.282070996904050 -0.140002771410127 0.000000000000000 0.140002771410119 0.282070996904034 0.425639527026290 0.570129827465581 0.714953403414608 0.859515305342016 1.003217691346979 1.145463420823977 1.285659653906141 1.423221431094842 1.557575207604755 1.688162317273800 1.814442341390627 1.949127964311633 2.083406746444973 2.214880746323951 2.343132751122781 2.467749090844076 2.588321716026489 2.704450274649070 2.815744174383234 2.921824616370889 3.022326586839044 3.116900793088749 3.205215530728728 3.286958469446529 3.361838345135041 3.429586546797905 3.489958587357026 3.542735448258845 3.587724788629348 3.624762010646010 3.653711173777210 3.674465751577208 3.686949225802078 3.691115513740659 3.686949225802079 3.674465751577208 3.653711173777210 3.624762010646009 3.587724788629352 3.542735448258945 3.489958587357025 3.429586546797903 3.361838345135018 3.286958469446552 3.205215530728732 3.116900793088752 3.022326586839021 2.921824616370887 2.815744174383230 2.704450274649079 2.588321716026494 2.467749090844090 2.343132751122777 2.214880746323947 2.083406746444968 1.949127964311628 1.814442341390637 1.688162317273794 1.557575207604751 1.423221431094835 1.285659653906126 1.145463420823992 1.003217691347000 0.859515305341968 0.714953403414602 0.570129827465560 0.425639527026275 0.282070996904058 0.140002771410140 0.000000000000000 -0.140002771410139 -0.282070996904058 -0.425639527026276 -0.570129827465559 -0.714953403414602 -0.859515305341968 -1.003217691347000 -1.145463420823991 -1.285659653906127 -1.423221431094835 -1.557575207604750 -1.688162317273791 -1.814442341390637 -1.949127964311675 -2.083406746444968 -2.214880746323948 -2.343132751122777 -2.467749090844091 -2.588321716026494 -2.704450274649068 -2.815744174383230 -2.921824616370887 -3.022326586839021 -3.116900793088752 -3.205215530728732 -3.286958469446528 -3.361838345135018 -3.429586546797903 -3.489958587357025 -3.542735448258945 -3.587724788629352 -3.624762010646009 -3.653711173777210 -3.674465751577208 -3.686949225802079 -3.691115513740659 +-3.614912412346496 -3.610875579856112 -3.598779575470346 -3.578667799038718 -3.550612319499034 -3.514713480565567 -3.471099352488490 -3.419925033647887 -3.361371806769148 -3.295646155544335 -3.222978648385909 -3.143622696944074 -3.057853197856885 -2.965965066987224 -2.868271676106473 -2.765103202628757 -2.656804903555199 -2.543735325267859 -2.426264461201983 -2.304771869733238 -2.179644764824014 -2.051276092096984 -1.920062603030728 -1.786402939907936 -1.650695743985935 -1.513337799117184 -1.374722222702831 -1.237982461918721 -1.103164712223597 -0.966366570359044 -0.828142436407372 -0.689050819652260 -0.549651027314710 -0.410499858264522 -0.272148325061649 -0.135138427447310 0.000000000000000 0.135138427447303 0.272148325061633 0.410499858264490 0.549651027314704 0.689050819652311 0.828142436407392 0.966366570358996 1.103164712223593 1.237982461918716 1.374722222702821 1.513337799117194 1.650695743985948 1.786402939907923 1.920062603030723 2.051276092096982 2.179644764823985 2.304771869733242 2.426264461201966 2.543735325267857 2.656804903555195 2.765103202628754 2.868271676106479 2.965965066987230 3.057853197856883 3.143622696944072 3.222978648385908 3.295646155544334 3.361371806769147 3.419925033647889 3.471099352488488 3.514713480565565 3.550612319499033 3.578667799038716 3.598779575470346 3.610875579856112 3.614912412346496 3.610875579856110 3.598779575470345 3.578667799038716 3.550612319499031 3.514713480565568 3.471099352488492 3.419925033647887 3.361371806769146 3.295646155544332 3.222978648385912 3.143622696944076 3.057853197856891 2.965965066987225 2.868271676106475 2.765103202628749 2.656804903555201 2.543735325267862 2.426264461201985 2.304771869733241 2.179644764823980 2.051276092096927 1.920062603030719 1.786402939907938 1.650695743985938 1.513337799117189 1.374722222702816 1.237982461918714 1.103164712223602 0.966366570359052 0.828142436407376 0.689050819652266 0.549651027314699 0.410499858264481 0.272148325061659 0.135138427447320 0.000000000000000 -0.135138427447319 -0.272148325061658 -0.410499858264482 -0.549651027314698 -0.689050819652266 -0.828142436407376 -0.966366570359052 -1.103164712223601 -1.237982461918715 -1.374722222702816 -1.513337799117188 -1.650695743985938 -1.786402939907938 -1.920062603030734 -2.051276092096927 -2.179644764823981 -2.304771869733241 -2.426264461201985 -2.543735325267862 -2.656804903555192 -2.765103202628749 -2.868271676106475 -2.965965066987225 -3.057853197856891 -3.143622696944076 -3.222978648385907 -3.295646155544332 -3.361371806769146 -3.419925033647887 -3.471099352488492 -3.514713480565568 -3.550612319499031 -3.578667799038716 -3.598779575470345 -3.610875579856110 -3.614912412346496 +-3.517081255594990 -3.513194030420254 -3.501545918063716 -3.482177535301007 -3.455156334829902 -3.420576244108803 -3.378557163177557 -3.329244324878487 -3.272807521827461 -3.209440205385299 -3.139358462742624 -3.062799879048115 -2.980022292273837 -2.891302449225161 -2.796934571743189 -2.697228842734890 -2.592509822171028 -2.483114803628864 -2.369392122314192 -2.251699425773250 -2.130401918702174 -2.005870593369917 -1.878480457202092 -1.748608769011818 -1.616633295227784 -1.482930597242679 -1.347874360705345 -1.211833777194943 -1.075171988262516 -0.938244601292877 -0.801398286048225 -0.664969460092776 -0.529283070584467 -0.394651479149287 -0.261373455740996 -0.129733286532641 0.000000000000000 0.129733286532628 0.261373455740990 0.394651479149281 0.529283070584457 0.664969460092791 0.801398286048247 0.938244601292861 1.075171988262496 1.211833777194940 1.347874360705340 1.482930597242688 1.616633295227815 1.748608769011795 1.878480457202023 2.005870593369914 2.130401918702140 2.251699425773273 2.369392122314166 2.483114803628861 2.592509822171026 2.697228842734812 2.796934571743193 2.891302449225166 2.980022292273834 3.062799879048015 3.139358462742621 3.209440205385296 3.272807521827469 3.329244324878492 3.378557163177556 3.420576244108803 3.455156334829903 3.482177535300974 3.501545918063738 3.513194030420254 3.517081255594990 3.513194030420253 3.501545918063717 3.482177535300959 3.455156334829900 3.420576244108801 3.378557163177560 3.329244324878488 3.272807521827465 3.209440205385294 3.139358462742625 3.062799879048116 2.980022292273840 2.891302449225164 2.796934571743192 2.697228842734809 2.592509822171057 2.483114803628891 2.369392122314228 2.251699425773255 2.130401918702137 2.005870593369912 1.878480457202018 1.748608769011824 1.616633295227797 1.482930597242686 1.347874360705336 1.211833777194902 1.075171988262524 0.938244601292882 0.801398286048238 0.664969460092782 0.529283070584451 0.394651479149270 0.261373455741005 0.129733286532650 0.000000000000000 -0.129733286532648 -0.261373455741005 -0.394651479149273 -0.529283070584451 -0.664969460092782 -0.801398286048236 -0.938244601292882 -1.075171988262523 -1.211833777194903 -1.347874360705336 -1.482930597242685 -1.616633295227787 -1.748608769011823 -1.878480457202127 -2.005870593369912 -2.130401918702137 -2.251699425773255 -2.369392122314228 -2.483114803628891 -2.592509822171022 -2.697228842734809 -2.796934571743192 -2.891302449225164 -2.980022292273840 -3.062799879048116 -3.139358462742619 -3.209440205385294 -3.272807521827465 -3.329244324878488 -3.378557163177560 -3.420576244108801 -3.455156334829900 -3.482177535300959 -3.501545918063717 -3.513194030420253 -3.517081255594990 +-3.398334755423414 -3.394616181136919 -3.383473065133421 -3.364943161910653 -3.339089175837358 -3.305998433021070 -3.265782425025809 -3.218576227515863 -3.164537797742425 -3.103847155599762 -3.036705453752924 -2.963333943077502 -2.883972840339963 -2.798880105685611 -2.708330138085776 -2.612612397418729 -2.512029962319197 -2.406898033323073 -2.297542391158136 -2.184297820283564 -2.067506507955295 -1.947516429200000 -1.824679728106231 -1.699351105791363 -1.571886225279541 -1.442640143330158 -1.311965778981466 -1.180212428238879 -1.047724333923981 -0.914839319232816 -0.781887493015143 -0.649190034200027 -0.517058062149796 -0.385791599037302 -0.255678629611392 -0.126994262949393 0.000000000000000 0.126994262949378 0.255678629611387 0.385791599037287 0.517058062149767 0.649190034200045 0.781887493015153 0.914839319232807 1.047724333923978 1.180212428238841 1.311965778981464 1.442640143330168 1.571886225279552 1.699351105791361 1.824679728106227 1.947516429199949 2.067506507955292 2.184297820283572 2.297542391158133 2.406898033323068 2.512029962319132 2.612612397418729 2.708330138085779 2.798880105685617 2.883972840339881 2.963333943077477 3.036705453752925 3.103847155599762 3.164537797742430 3.218576227515865 3.265782425025807 3.305998433021070 3.339089175837356 3.364943161910653 3.383473065133419 3.394616181136917 3.398334755423414 3.394616181136918 3.383473065133422 3.364943161910653 3.339089175837355 3.305998433021073 3.265782425025809 3.218576227515864 3.164537797742427 3.103847155599755 3.036705453752924 2.963333943077505 2.883972840339970 2.798880105685611 2.708330138085778 2.612612397418715 2.512029962319198 2.406898033323076 2.297542391158138 2.184297820283569 2.067506507955202 1.947516429199947 1.824679728106204 1.699351105791368 1.571886225279550 1.442640143330164 1.311965778981451 1.180212428238822 1.047724333924001 0.914839319232823 0.781887493015148 0.649190034200040 0.517058062149763 0.385791599037277 0.255678629611402 0.126994262949400 0.000000000000000 -0.126994262949399 -0.255678629611401 -0.385791599037277 -0.517058062149763 -0.649190034200040 -0.781887493015148 -0.914839319232823 -1.047724333924000 -1.180212428238822 -1.311965778981451 -1.442640143330164 -1.571886225279549 -1.699351105791366 -1.824679728106234 -1.947516429199947 -2.067506507955228 -2.184297820283569 -2.297542391158138 -2.406898033323076 -2.512029962319131 -2.612612397418715 -2.708330138085778 -2.798880105685612 -2.883972840339970 -2.963333943077505 -3.036705453752925 -3.103847155599755 -3.164537797742427 -3.218576227515865 -3.265782425025809 -3.305998433021073 -3.339089175837355 -3.364943161910653 -3.383473065133422 -3.394616181136918 -3.398334755423414 +-3.259543614402149 -3.256011482478145 -3.245426718076497 -3.227824155816312 -3.203261655487296 -3.171819806574281 -3.133601517358220 -3.088731491335290 -3.037355594444455 -2.979640117317008 -2.915770937454907 -2.845952586898802 -2.770407231563973 -2.689373568991978 -2.603105651785348 -2.511871644463220 -2.415952521882413 -2.315640717724681 -2.211238731836848 -2.103057705437337 -1.991415973363317 -1.876637602623089 -1.759050926549308 -1.638987083801592 -1.516778571364013 -1.392757820506247 -1.267255804440211 -1.140600686103419 -1.013116514138935 -0.885121974724618 -0.756929206432738 -0.628842684777757 -0.501158182544152 -0.374161811373519 -0.248129149445826 -0.123324459408156 0.000000000000000 0.123324459408149 0.248129149445806 0.374161811373513 0.501158182544146 0.628842684777773 0.756929206432763 0.885121974724615 1.013116514138896 1.140600686103408 1.267255804440210 1.392757820506273 1.516778571364019 1.638987083801589 1.759050926549302 1.876637602623085 1.991415973363314 2.103057705437379 2.211238731836809 2.315640717724680 2.415952521882410 2.511871644463219 2.603105651785379 2.689373568991984 2.770407231563973 2.845952586898801 2.915770937454906 2.979640117317002 3.037355594444457 3.088731491335294 3.133601517358219 3.171819806574280 3.203261655487300 3.227824155816311 3.245426718076496 3.256011482478145 3.259543614402149 3.256011482478146 3.245426718076496 3.227824155816315 3.203261655487300 3.171819806574281 3.133601517358222 3.088731491335293 3.037355594444457 2.979640117317002 2.915770937454908 2.845952586898804 2.770407231563975 2.689373568991980 2.603105651785354 2.511871644463217 2.415952521882421 2.315640717724682 2.211238731836850 2.103057705437339 1.991415973363303 1.876637602623073 1.759050926549296 1.638987083801619 1.516778571364016 1.392757820506265 1.267255804440203 1.140600686103402 1.013116514138942 0.885121974724621 0.756929206432751 0.628842684777765 0.501158182544143 0.374161811373502 0.248129149445835 0.123324459408167 0.000000000000000 -0.123324459408167 -0.248129149445831 -0.374161811373502 -0.501158182544143 -0.628842684777762 -0.756929206432751 -0.885121974724621 -1.013116514138942 -1.140600686103402 -1.267255804440203 -1.392757820506265 -1.516778571364016 -1.638987083801619 -1.759050926549310 -1.876637602623073 -1.991415973363303 -2.103057705437340 -2.211238731836850 -2.315640717724683 -2.415952521882410 -2.511871644463217 -2.603105651785357 -2.689373568991980 -2.770407231563975 -2.845952586898804 -2.915770937454905 -2.979640117317002 -3.037355594444457 -3.088731491335293 -3.133601517358222 -3.171819806574281 -3.203261655487300 -3.227824155816315 -3.245426718076496 -3.256011482478146 -3.259543614402149 +-3.101729962035641 -3.098400677517652 -3.088423468035238 -3.071830212765799 -3.048673867230933 -3.019028199858987 -2.982987425611816 -2.940665739091159 -2.892196750203990 -2.837732826099323 -2.777444343703615 -2.711518857758196 -2.640160189805234 -2.563587444074173 -2.482033956676989 -2.395746184936821 -2.304982544037140 -2.210012198487048 -2.111113816159959 -2.008574292858371 -1.902687455503850 -1.793752752132175 -1.682073936902845 -1.567957758293458 -1.451712658560841 -1.333647492397735 -1.214070272507309 -1.093286949556774 -0.971600233654687 -0.849308464132486 -0.726704533997935 -0.604074874971551 -0.481698508518780 -0.359846167757527 -0.238779494552682 -0.118750315514719 0.000000000000000 0.118750315514708 0.238779494552675 0.359846167757520 0.481698508518775 0.604074874971567 0.726704533997944 0.849308464132477 0.971600233654680 1.093286949556772 1.214070272507292 1.333647492397746 1.451712658560849 1.567957758293431 1.682073936902835 1.793752752132173 1.902687455503837 2.008574292858393 2.111113816159956 2.210012198487045 2.304982544037129 2.395746184936818 2.482033956676992 2.563587444074179 2.640160189805234 2.711518857758194 2.777444343703615 2.837732826099296 2.892196750203991 2.940665739091159 2.982987425611801 3.019028199858987 3.048673867230930 3.071830212765803 3.088423468035239 3.098400677517652 3.101729962035641 3.098400677517656 3.088423468035239 3.071830212765800 3.048673867230930 3.019028199858991 2.982987425611771 2.940665739091159 2.892196750203990 2.837732826099293 2.777444343703617 2.711518857758196 2.640160189805235 2.563587444074174 2.482033956676991 2.395746184936816 2.304982544037144 2.210012198487049 2.111113816159961 2.008574292858371 1.902687455503836 1.793752752132171 1.682073936902832 1.567957758293465 1.451712658560846 1.333647492397738 1.214070272507286 1.093286949556763 0.971600233654691 0.849308464132489 0.726704533997940 0.604074874971563 0.481698508518771 0.359846167757500 0.238779494552695 0.118750315514727 0.000000000000000 -0.118750315514726 -0.238779494552695 -0.359846167757500 -0.481698508518764 -0.604074874971561 -0.726704533997940 -0.849308464132489 -0.971600233654691 -1.093286949556768 -1.214070272507283 -1.333647492397738 -1.451712658560846 -1.567957758293461 -1.682073936902846 -1.793752752132171 -1.902687455503836 -2.008574292858373 -2.111113816159961 -2.210012198487049 -2.304982544037129 -2.395746184936816 -2.482033956676991 -2.563587444074174 -2.640160189805235 -2.711518857758196 -2.777444343703614 -2.837732826099293 -2.892196750203990 -2.940665739091159 -2.982987425611771 -3.019028199858991 -3.048673867230930 -3.071830212765800 -3.088423468035239 -3.098400677517656 -3.101729962035641 +-2.926059640756391 -2.922948098413294 -2.913623123794071 -2.898113627372093 -2.876467637718194 -2.848752069238214 -2.815052399128987 -2.775472255656044 -2.730132920431901 -2.679172747929707 -2.622746505996951 -2.561024641640776 -2.494192476826625 -2.422449339473645 -2.346007635228785 -2.265091865963566 -2.179937601255048 -2.090790409382998 -1.997904754602684 -1.901542867625072 -1.801973596366865 -1.699471244103580 -1.594314402185709 -1.486784784449989 -1.377166070378189 -1.265742763930117 -1.152799074797502 -1.038617828600478 -0.923479412279339 -0.807660760616446 -0.691434389469530 -0.575067480901709 -0.458821024965493 -0.342949022433719 -0.227697752283269 -0.113305107220112 0.000000000000000 0.113305107220103 0.227697752283257 0.342949022433693 0.458821024965484 0.575067480901731 0.691434389469536 0.807660760616438 0.923479412279334 1.038617828600470 1.152799074797493 1.265742763930132 1.377166070378196 1.486784784449986 1.594314402185705 1.699471244103549 1.801973596366863 1.901542867625085 1.997904754602680 2.090790409382996 2.179937601255043 2.265091865963563 2.346007635228789 2.422449339473646 2.494192476826624 2.561024641640774 2.622746505996950 2.679172747929706 2.730132920431902 2.775472255656044 2.815052399128960 2.848752069238150 2.876467637718194 2.898113627372093 2.913623123794074 2.922948098413293 2.926059640756391 2.922948098413297 2.913623123794071 2.898113627372097 2.876467637718250 2.848752069238214 2.815052399128988 2.775472255656044 2.730132920431902 2.679172747929703 2.622746505996951 2.561024641640779 2.494192476826626 2.422449339473646 2.346007635228788 2.265091865963562 2.179937601255049 2.090790409383002 1.997904754602687 1.901542867625074 1.801973596366861 1.699471244103546 1.594314402185701 1.486784784449992 1.377166070378194 1.265742763930126 1.152799074797491 1.038617828600467 0.923479412279341 0.807660760616452 0.691434389469534 0.575067480901719 0.458821024965479 0.342949022433686 0.227697752283278 0.113305107220120 0.000000000000000 -0.113305107220119 -0.227697752283278 -0.342949022433686 -0.458821024965478 -0.575067480901719 -0.691434389469534 -0.807660760616452 -0.923479412279341 -1.038617828600467 -1.152799074797490 -1.265742763930126 -1.377166070378194 -1.486784784449991 -1.594314402185711 -1.699471244103547 -1.801973596366862 -1.901542867625074 -1.997904754602687 -2.090790409383002 -2.179937601255038 -2.265091865963562 -2.346007635228788 -2.422449339473646 -2.494192476826626 -2.561024641640780 -2.622746505996948 -2.679172747929703 -2.730132920431902 -2.775472255656044 -2.815052399128988 -2.848752069238214 -2.876467637718250 -2.898113627372097 -2.913623123794071 -2.922948098413297 -2.926059640756391 +-2.733833400192915 -2.730952872105629 -2.722319951711612 -2.707960589914861 -2.687917902822278 -2.662251969556812 -2.631039551017901 -2.594373731393941 -2.552363484725319 -2.505133169293776 -2.452821953068997 -2.395583173878236 -2.333583638369575 -2.267002864216956 -2.196032270361339 -2.120874320390166 -2.041741624432210 -1.958856005180744 -1.872447533849090 -1.782753542018041 -1.690017615443444 -1.594488575958422 -1.496419457627994 -1.396066483292347 -1.293688047569913 -1.189543712285052 -1.083893220133570 -0.976995532210574 -0.869107894794797 -0.760484940515832 -0.651377828730358 -0.542033429595709 -0.432693555966057 -0.323594246842014 -0.214965105688264 -0.107028696494514 0.000000000000000 0.107028696494506 0.214965105688260 0.323594246842007 0.432693555966044 0.542033429595717 0.651377828730375 0.760484940515824 0.869107894794792 0.976995532210572 1.083893220133567 1.189543712285059 1.293688047569923 1.396066483292346 1.496419457627992 1.594488575958420 1.690017615443441 1.782753542018077 1.872447533849086 1.958856005180744 2.041741624432208 2.120874320390164 2.196032270361343 2.267002864216965 2.333583638369571 2.395583173878234 2.452821953068997 2.505133169293775 2.552363484725320 2.594373731393943 2.631039551017901 2.662251969556812 2.687917902822278 2.707960589914860 2.722319951711610 2.730952872105652 2.733833400192915 2.730952872105624 2.722319951711610 2.707960589914859 2.687917902822278 2.662251969556813 2.631039551017901 2.594373731393942 2.552363484725319 2.505133169293774 2.452821953068998 2.395583173878238 2.333583638369576 2.267002864216963 2.196032270361342 2.120874320390163 2.041741624432231 1.958856005180805 1.872447533849097 1.782753542018044 1.690017615443437 1.594488575958417 1.496419457627989 1.396066483292352 1.293688047569918 1.189543712285053 1.083893220133566 0.976995532210566 0.869107894794799 0.760484940515837 0.651377828730368 0.542033429595713 0.432693555966034 0.323594246842002 0.214965105688274 0.107028696494523 0.000000000000000 -0.107028696494521 -0.214965105688273 -0.323594246842002 -0.432693555966034 -0.542033429595713 -0.651377828730363 -0.760484940515837 -0.869107894794799 -0.976995532210570 -1.083893220133566 -1.189543712285053 -1.293688047569918 -1.396066483292352 -1.496419457628007 -1.594488575958417 -1.690017615443438 -1.782753542018044 -1.872447533849097 -1.958856005180805 -2.041741624432207 -2.120874320390163 -2.196032270361342 -2.267002864216963 -2.333583638369576 -2.395583173878238 -2.452821953068996 -2.505133169293774 -2.552363484725319 -2.594373731393942 -2.631039551017901 -2.662251969556813 -2.687917902822278 -2.707960589914859 -2.722319951711610 -2.730952872105624 -2.733833400192915 +-2.526477066603094 -2.523839102035641 -2.515932894233734 -2.502781465989509 -2.484423072483820 -2.460911027847862 -2.432313463885766 -2.398713022481759 -2.360206483631500 -2.316904331438096 -2.268930260801169 -2.216420627891892 -2.159523847848761 -2.098399743450574 -2.033218848813115 -1.964161672418184 -1.891417924016502 -1.815185710145362 -1.735670703165237 -1.653085288852878 -1.567647697679754 -1.479581124965242 -1.389112845113519 -1.296473325127864 -1.201895342543951 -1.105613112836075 -1.007861431225104 -0.908874833660571 -0.808886781557869 -0.708128874649109 -0.606830096054600 -0.505216093402454 -0.403508499518072 -0.301924295877861 -0.200675221672785 -0.099967230959970 0.000000000000000 0.099967230959965 0.200675221672777 0.301924295877838 0.403508499518058 0.505216093402474 0.606830096054618 0.708128874649094 0.808886781557866 0.908874833660567 1.007861431225100 1.105613112836083 1.201895342543956 1.296473325127860 1.389112845113518 1.479581124965242 1.567647697679751 1.653085288852932 1.735670703165234 1.815185710145358 1.891417924016501 1.964161672418182 2.033218848813116 2.098399743450575 2.159523847848760 2.216420627891892 2.268930260801138 2.316904331438095 2.360206483631502 2.398713022481760 2.432313463885764 2.460911027847862 2.484423072483820 2.502781465989504 2.515932894233734 2.523839102035640 2.526477066603094 2.523839102035640 2.515932894233734 2.502781465989504 2.484423072483817 2.460911027847862 2.432313463885770 2.398713022481760 2.360206483631500 2.316904331438061 2.268930260801170 2.216420627891893 2.159523847848762 2.098399743450574 2.033218848813116 1.964161672418176 1.891417924016523 1.815185710145363 1.735670703165271 1.653085288852928 1.567647697679749 1.479581124965210 1.389112845113516 1.296473325127865 1.201895342543954 1.105613112836077 1.007861431225097 0.908874833660553 0.808886781557881 0.708128874649112 0.606830096054607 0.505216093402467 0.403508499518050 0.301924295877831 0.200675221672794 0.099967230959981 0.000000000000000 -0.099967230959980 -0.200675221672792 -0.301924295877833 -0.403508499518049 -0.505216093402467 -0.606830096054607 -0.708128874649112 -0.808886781557880 -0.908874833660553 -1.007861431225097 -1.105613112836077 -1.201895342543954 -1.296473325127865 -1.389112845113525 -1.479581124965210 -1.567647697679749 -1.653085288852928 -1.735670703165271 -1.815185710145363 -1.891417924016494 -1.964161672418176 -2.033218848813116 -2.098399743450574 -2.159523847848762 -2.216420627891893 -2.268930260801133 -2.316904331438061 -2.360206483631500 -2.398713022481760 -2.432313463885770 -2.460911027847862 -2.484423072483817 -2.502781465989504 -2.515932894233734 -2.523839102035640 -2.526477066603094 +-2.305530762157086 -2.303145100471762 -2.295994841297674 -2.284100132850809 -2.267494457575225 -2.246224485907037 -2.220349872814404 -2.189942998373195 -2.155088653982452 -2.115883676156327 -2.072436530148713 -2.024866845967851 -1.973304909626105 -1.917891112729550 -1.858775363759226 -1.796116464609012 -1.730081456141928 -1.660844936689404 -1.588588357558167 -1.513499299717956 -1.435770735922775 -1.355600282568419 -1.273189445609003 -1.188742864843750 -1.102467560844722 -1.014572188725669 -0.925266302852889 -0.834759636470524 -0.743261400058778 -0.650979602061232 -0.558120395414071 -0.464887453080245 -0.371481375543736 -0.278099132950080 -0.184933544294995 -0.092172795762219 0.000000000000000 0.092172795762212 0.184933544294992 0.278099132950064 0.371481375543717 0.464887453080257 0.558120395414076 0.650979602061229 0.743261400058776 0.834759636470518 0.925266302852886 1.014572188725674 1.102467560844743 1.188742864843727 1.273189445609001 1.355600282568403 1.435770735922773 1.513499299717985 1.588588357558152 1.660844936689403 1.730081456141925 1.796116464609011 1.858775363759237 1.917891112729558 1.973304909626103 2.024866845967847 2.072436530148676 2.115883676156326 2.155088653982452 2.189942998373198 2.220349872814403 2.246224485907036 2.267494457575225 2.284100132850806 2.295994841297668 2.303145100471762 2.305530762157086 2.303145100471762 2.295994841297668 2.284100132850806 2.267494457575224 2.246224485907037 2.220349872814407 2.189942998373198 2.155088653982452 2.115883676156326 2.072436530148715 2.024866845967854 1.973304909626106 1.917891112729557 1.858775363759237 1.796116464609010 1.730081456141929 1.660844936689406 1.588588357558167 1.513499299717957 1.435770735922757 1.355600282568394 1.273189445609000 1.188742864843752 1.102467560844743 1.014572188725670 0.925266302852883 0.834759636470510 0.743261400058781 0.650979602061234 0.558120395414075 0.464887453080255 0.371481375543708 0.278099132950061 0.184933544295001 0.092172795762225 0.000000000000000 -0.092172795762225 -0.184933544295001 -0.278099132950061 -0.371481375543706 -0.464887453080255 -0.558120395414074 -0.650979602061234 -0.743261400058781 -0.834759636470510 -0.925266302852883 -1.014572188725670 -1.102467560844743 -1.188742864843751 -1.273189445609004 -1.355600282568394 -1.435770735922757 -1.513499299717957 -1.588588357558167 -1.660844936689406 -1.730081456141925 -1.796116464609010 -1.858775363759237 -1.917891112729557 -1.973304909626106 -2.024866845967854 -2.072436530148665 -2.115883676156326 -2.155088653982452 -2.189942998373198 -2.220349872814407 -2.246224485907037 -2.267494457575224 -2.284100132850806 -2.295994841297669 -2.303145100471762 -2.305530762157086 +-2.072637255984002 -2.070511753261974 -2.064141036144709 -2.053542453474088 -2.038744839119627 -2.019788391191989 -1.996724503968228 -1.969615553544659 -1.938534638511786 -1.903565277216263 -1.864801063429580 -1.822345282490620 -1.776310490218234 -1.726818057102779 -1.673997680484115 -1.617986867597716 -1.558930392529118 -1.496979730250662 -1.432292471028405 -1.365031718575524 -1.295365475395927 -1.223466018802428 -1.149509271112639 -1.073674167518914 -0.996142025097708 -0.917095916369106 -0.836720050740761 -0.755199167067704 -0.672717940440236 -0.589460406165930 -0.505609403751580 -0.421346043508793 -0.336849198209017 -0.252295022000767 -0.167856498575037 -0.083703020325234 0.000000000000000 0.083703020325229 0.167856498575032 0.252295022000759 0.336849198209008 0.421346043508799 0.505609403751600 0.589460406165923 0.672717940440226 0.755199167067687 0.836720050740731 0.917095916369112 0.996142025097728 1.073674167518914 1.149509271112623 1.223466018802426 1.295365475395921 1.365031718575528 1.432292471028392 1.496979730250654 1.558930392529115 1.617986867597715 1.673997680484122 1.726818057102781 1.776310490218234 1.822345282490618 1.864801063429579 1.903565277216263 1.938534638511788 1.969615553544661 1.996724503968228 2.019788391191987 2.038744839119626 2.053542453474088 2.064141036144709 2.070511753261973 2.072637255984002 2.070511753261969 2.064141036144709 2.053542453474087 2.038744839119619 2.019788391191989 1.996724503968229 1.969615553544661 1.938534638511787 1.903565277216263 1.864801063429580 1.822345282490620 1.776310490218235 1.726818057102779 1.673997680484115 1.617986867597712 1.558930392529120 1.496979730250666 1.432292471028406 1.365031718575526 1.295365475395920 1.223466018802387 1.149509271112619 1.073674167518936 0.996142025097727 0.917095916369112 0.836720050740721 0.755199167067686 0.672717940440239 0.589460406165936 0.505609403751588 0.421346043508796 0.336849198209003 0.252295022000754 0.167856498575043 0.083703020325240 0.000000000000000 -0.083703020325240 -0.167856498575042 -0.252295022000754 -0.336849198209003 -0.421346043508796 -0.505609403751588 -0.589460406165933 -0.672717940440239 -0.755199167067686 -0.836720050740720 -0.917095916369112 -0.996142025097727 -1.073674167518936 -1.149509271112639 -1.223466018802422 -1.295365475395920 -1.365031718575526 -1.432292471028406 -1.496979730250666 -1.558930392529087 -1.617986867597712 -1.673997680484115 -1.726818057102779 -1.776310490218235 -1.822345282490620 -1.864801063429578 -1.903565277216263 -1.938534638511787 -1.969615553544661 -1.996724503968229 -2.019788391191989 -2.038744839119619 -2.053542453474087 -2.064141036144709 -2.070511753261969 -2.072637255984002 +-1.829529535499412 -1.827670105424525 -1.822096703643781 -1.812823975918008 -1.799876266725354 -1.783287521980615 -1.763101153644108 -1.739369867018336 -1.712155451745518 -1.681528537731070 -1.647568317421001 -1.610362236050489 -1.570005651665200 -1.526601466882048 -1.480259734511652 -1.431097239304293 -1.379237058203543 -1.324808101600193 -1.267944638168023 -1.208785805933863 -1.147475112289636 -1.084159925686511 -1.018990961769499 -0.952121766705067 -0.883708200435359 -0.813907922550195 -0.742879883410530 -0.670783823080880 -0.597779780535501 -0.524027615492964 -0.449686545110516 -0.374914697630252 -0.299868684916624 -0.224703195662053 -0.149570610861795 -0.074620642975310 0.000000000000000 0.074620642975305 0.149570610861788 0.224703195662051 0.299868684916615 0.374914697630256 0.449686545110539 0.524027615492962 0.597779780535499 0.670783823080879 0.742879883410528 0.813907922550199 0.883708200435379 0.952121766705066 1.018990961769495 1.084159925686492 1.147475112289635 1.208785805933868 1.267944638168021 1.324808101600190 1.379237058203541 1.431097239304292 1.480259734511654 1.526601466882049 1.570005651665199 1.610362236050488 1.647568317421001 1.681528537731070 1.712155451745520 1.739369867018336 1.763101153644108 1.783287521980615 1.799876266725353 1.812823975918008 1.822096703643781 1.827670105424525 1.829529535499412 1.827670105424525 1.822096703643781 1.812823975917967 1.799876266725353 1.783287521980616 1.763101153644108 1.739369867018336 1.712155451745519 1.681528537731069 1.647568317421003 1.610362236050496 1.570005651665202 1.526601466882049 1.480259734511653 1.431097239304291 1.379237058203547 1.324808101600193 1.267944638168028 1.208785805933866 1.147475112289635 1.084159925686489 1.018990961769493 0.952121766705076 0.883708200435378 0.813907922550198 0.742879883410522 0.670783823080869 0.597779780535505 0.524027615492968 0.449686545110519 0.374914697630253 0.299868684916613 0.224703195662048 0.149570610861802 0.074620642975314 0.000000000000000 -0.074620642975314 -0.149570610861802 -0.224703195662048 -0.299868684916612 -0.374914697630253 -0.449686545110519 -0.524027615492968 -0.597779780535505 -0.670783823080869 -0.742879883410522 -0.813907922550198 -0.883708200435378 -0.952121766705071 -1.018990961769511 -1.084159925686489 -1.147475112289635 -1.208785805933866 -1.267944638168029 -1.324808101600194 -1.379237058203526 -1.431097239304291 -1.480259734511653 -1.526601466882049 -1.570005651665202 -1.610362236050495 -1.647568317421000 -1.681528537731069 -1.712155451745519 -1.739369867018336 -1.763101153644108 -1.783287521980616 -1.799876266725353 -1.812823975917972 -1.822096703643781 -1.827670105424525 -1.829529535499412 +-1.578017692463564 -1.576428261916891 -1.571663995141225 -1.563736951463164 -1.552667178957812 -1.538482638549286 -1.521219098355973 -1.500919998881536 -1.477636289815553 -1.451426239367544 -1.422355217209877 -1.390495452250935 -1.355925766595991 -1.318731287180291 -1.279003136676135 -1.236838105381822 -1.192338305893348 -1.145610812442881 -1.096767286855518 -1.045923593131949 -0.993199402706685 -0.938717792458291 -0.882604837563054 -0.824989201282320 -0.766001723760177 -0.705775011879521 -0.644443032183246 -0.582140708812375 -0.519003528345994 -0.455167153347257 -0.390767046330104 -0.325938105758548 -0.260814315579302 -0.195528409667882 -0.130211552439746 -0.064993036742008 0.000000000000000 0.064993036742002 0.130211552439742 0.195528409667879 0.260814315579300 0.325938105758559 0.390767046330110 0.455167153347246 0.519003528345994 0.582140708812373 0.644443032183245 0.705775011879545 0.766001723760184 0.824989201282318 0.882604837563053 0.938717792458291 0.993199402706685 1.045923593131954 1.096767286855516 1.145610812442880 1.192338305893348 1.236838105381815 1.279003136676136 1.318731287180307 1.355925766595991 1.390495452250935 1.422355217209876 1.451426239367542 1.477636289815557 1.500919998881536 1.521219098355965 1.538482638549286 1.552667178957811 1.563736951463164 1.571663995141225 1.576428261916891 1.578017692463564 1.576428261916891 1.571663995141225 1.563736951463162 1.552667178957811 1.538482638549287 1.521219098355974 1.500919998881536 1.477636289815554 1.451426239367541 1.422355217209877 1.390495452250935 1.355925766595993 1.318731287180293 1.279003136676135 1.236838105381807 1.192338305893349 1.145610812442900 1.096767286855518 1.045923593131950 0.993199402706683 0.938717792458288 0.882604837563052 0.824989201282339 0.766001723760178 0.705775011879534 0.644443032183243 0.582140708812371 0.519003528345996 0.455167153347260 0.390767046330106 0.325938105758553 0.260814315579298 0.195528409667875 0.130211552439754 0.064993036742013 0.000000000000000 -0.064993036742013 -0.130211552439750 -0.195528409667876 -0.260814315579298 -0.325938105758552 -0.390767046330106 -0.455167153347260 -0.519003528345996 -0.582140708812371 -0.644443032183243 -0.705775011879533 -0.766001723760177 -0.824989201282339 -0.882604837563061 -0.938717792458290 -0.993199402706683 -1.045923593131950 -1.096767286855518 -1.145610812442900 -1.192338305893347 -1.236838105381807 -1.279003136676136 -1.318731287180293 -1.355925766595993 -1.390495452250935 -1.422355217209875 -1.451426239367542 -1.477636289815554 -1.500919998881536 -1.521219098355974 -1.538482638549287 -1.552667178957811 -1.563736951463162 -1.571663995141225 -1.576428261916891 -1.578017692463564 +-1.319975223431465 -1.318657703134431 -1.314708349051943 -1.308136770186820 -1.298958943529696 -1.287197157255283 -1.272879931630242 -1.256041918062260 -1.236723776837886 -1.214972034209820 -1.190838919604957 -1.164382183827259 -1.135664899229167 -1.104755242915400 -1.071726264128660 -1.036655637042452 -0.999625400254102 -0.960721684332523 -0.920034428823026 -0.877657090154680 -0.833686341925918 -0.788221769065980 -0.741365557381897 -0.693222180001198 -0.643898082214067 -0.593501366199158 -0.542141477091132 -0.489928891810164 -0.436974812028577 -0.383390862595457 -0.329288796677003 -0.274780208801316 -0.219976256918510 -0.164987394503795 -0.109923113642177 -0.054891699938696 0.000000000000000 0.054891699938691 0.109923113642172 0.164987394503794 0.219976256918509 0.274780208801328 0.329288796677017 0.383390862595454 0.436974812028577 0.489928891810162 0.542141477091132 0.593501366199161 0.643898082214071 0.693222180001196 0.741365557381896 0.788221769065979 0.833686341925917 0.877657090154701 0.920034428823025 0.960721684332523 0.999625400254102 1.036655637042451 1.071726264128664 1.104755242915415 1.135664899229149 1.164382183827256 1.190838919604956 1.214972034209820 1.236723776837890 1.256041918062261 1.272879931630242 1.287197157255283 1.298958943529693 1.308136770186819 1.314708349051943 1.318657703134431 1.319975223431465 1.318657703134431 1.314708349051943 1.308136770186819 1.298958943529693 1.287197157255283 1.272879931630243 1.256041918062260 1.236723776837890 1.214972034209820 1.190838919604957 1.164382183827262 1.135664899229167 1.104755242915414 1.071726264128661 1.036655637042450 0.999625400254103 0.960721684332537 0.920034428823031 0.877657090154700 0.833686341925916 0.788221769065979 0.741365557381895 0.693222180001200 0.643898082214069 0.593501366199158 0.542141477091131 0.489928891810144 0.436974812028582 0.383390862595459 0.329288796677005 0.274780208801322 0.219976256918507 0.164987394503788 0.109923113642182 0.054891699938700 0.000000000000000 -0.054891699938700 -0.109923113642181 -0.164987394503792 -0.219976256918506 -0.274780208801322 -0.329288796677004 -0.383390862595459 -0.436974812028582 -0.489928891810144 -0.542141477091131 -0.593501366199158 -0.643898082214068 -0.693222180001200 -0.741365557381900 -0.788221769065979 -0.833686341925916 -0.877657090154701 -0.920034428823031 -0.960721684332537 -0.999625400254101 -1.036655637042450 -1.071726264128661 -1.104755242915414 -1.135664899229167 -1.164382183827262 -1.190838919604956 -1.214972034209820 -1.236723776837890 -1.256041918062260 -1.272879931630243 -1.287197157255283 -1.298958943529693 -1.308136770186819 -1.314708349051943 -1.318657703134431 -1.319975223431465 +-1.057324848712688 -1.056279119140543 -1.053144370851825 -1.047927917061285 -1.040641919604991 -1.031303348802861 -1.019933927553853 -1.006560059951007 -0.991212744779696 -0.973927474340443 -0.954744119109388 -0.933706798819470 -0.910863740611840 -0.886267124967153 -0.859972920184517 -0.832040706226575 -0.802533488796024 -0.771517504549291 -0.739062018387750 -0.705239113795739 -0.670123477216226 -0.633792177471880 -0.596324441247617 -0.557801425654765 -0.518305988892365 -0.477922460012318 -0.436736408778181 -0.394834416585542 -0.352303849384137 -0.309232633507274 -0.265709035276203 -0.221821445202202 -0.177658167560808 -0.133307216059820 -0.088856116265749 -0.044391715393350 0.000000000000000 0.044391715393346 0.088856116265744 0.133307216059818 0.177658167560804 0.221821445202212 0.265709035276221 0.309232633507272 0.352303849384128 0.394834416585541 0.436736408778179 0.477922460012323 0.518305988892369 0.557801425654764 0.596324441247614 0.633792177471879 0.670123477216226 0.705239113795753 0.739062018387750 0.771517504549291 0.802533488796023 0.832040706226574 0.859972920184518 0.886267124967157 0.910863740611835 0.933706798819466 0.954744119109387 0.973927474340439 0.991212744779696 1.006560059951007 1.019933927553853 1.031303348802861 1.040641919604989 1.047927917061285 1.053144370851825 1.056279119140543 1.057324848712688 1.056279119140542 1.053144370851825 1.047927917061284 1.040641919604990 1.031303348802861 1.019933927553853 1.006560059951007 0.991212744779696 0.973927474340438 0.954744119109388 0.933706798819470 0.910863740611840 0.886267124967154 0.859972920184518 0.832040706226574 0.802533488796024 0.771517504549291 0.739062018387753 0.705239113795741 0.670123477216224 0.633792177471877 0.596324441247612 0.557801425654768 0.518305988892369 0.477922460012318 0.436736408778176 0.394834416585531 0.352303849384138 0.309232633507275 0.265709035276211 0.221821445202211 0.177658167560802 0.133307216059809 0.088856116265752 0.044391715393353 0.000000000000000 -0.044391715393353 -0.088856116265751 -0.133307216059809 -0.177658167560802 -0.221821445202211 -0.265709035276211 -0.309232633507275 -0.352303849384138 -0.394834416585532 -0.436736408778176 -0.477922460012318 -0.518305988892366 -0.557801425654768 -0.596324441247623 -0.633792177471877 -0.670123477216224 -0.705239113795741 -0.739062018387753 -0.771517504549291 -0.802533488796022 -0.832040706226574 -0.859972920184518 -0.886267124967154 -0.910863740611840 -0.933706798819470 -0.954744119109387 -0.973927474340438 -0.991212744779696 -1.006560059951007 -1.019933927553853 -1.031303348802861 -1.040641919604990 -1.047927917061284 -1.053144370851825 -1.056279119140542 -1.057324848712688 +-0.792023957618699 -0.791247870290579 -0.788921339785831 -0.785049555313152 -0.779641148144208 -0.772708165585799 -0.764266034712551 -0.754333516030958 -0.742932647291782 -0.730088677713975 -0.715829992926373 -0.700188030975701 -0.683197189788486 -0.664894726512311 -0.645320649195212 -0.624517601294452 -0.602530739533782 -0.579407605653301 -0.555197992618216 -0.529953805870375 -0.503728920221518 -0.476579032997597 -0.448561514051183 -0.419735253261658 -0.390160506143409 -0.359898738177441 -0.329012468474707 -0.297565113367994 -0.265620830514888 -0.233244364076182 -0.200500891513187 -0.167455872523908 -0.134174900610658 -0.100723557743334 -0.067167272550693 -0.033571182438705 0.000000000000000 0.033571182438703 0.067167272550689 0.100723557743331 0.134174900610657 0.167455872523909 0.200500891513201 0.233244364076179 0.265620830514887 0.297565113367988 0.329012468474707 0.359898738177443 0.390160506143414 0.419735253261657 0.448561514051182 0.476579032997593 0.503728920221518 0.529953805870379 0.555197992618216 0.579407605653300 0.602530739533781 0.624517601294452 0.645320649195212 0.664894726512311 0.683197189788486 0.700188030975701 0.715829992926373 0.730088677713974 0.742932647291783 0.754333516030958 0.764266034712551 0.772708165585799 0.779641148144208 0.785049555313152 0.788921339785831 0.791247870290579 0.792023957618699 0.791247870290579 0.788921339785831 0.785049555313152 0.779641148144208 0.772708165585799 0.764266034712551 0.754333516030958 0.742932647291782 0.730088677713974 0.715829992926373 0.700188030975701 0.683197189788486 0.664894726512311 0.645320649195212 0.624517601294452 0.602530739533782 0.579407605653302 0.555197992618218 0.529953805870376 0.503728920221517 0.476579032997592 0.448561514051182 0.419735253261658 0.390160506143414 0.359898738177442 0.329012468474699 0.297565113367978 0.265620830514895 0.233244364076183 0.200500891513192 0.167455872523909 0.134174900610651 0.100723557743329 0.067167272550694 0.033571182438708 0.000000000000000 -0.033571182438708 -0.067167272550694 -0.100723557743329 -0.134174900610651 -0.167455872523909 -0.200500891513192 -0.233244364076183 -0.265620830514895 -0.297565113367978 -0.329012468474699 -0.359898738177442 -0.390160506143414 -0.419735253261658 -0.448561514051186 -0.476579032997593 -0.503728920221517 -0.529953805870376 -0.555197992618218 -0.579407605653302 -0.602530739533781 -0.624517601294452 -0.645320649195212 -0.664894726512311 -0.683197189788486 -0.700188030975701 -0.715829992926373 -0.730088677713974 -0.742932647291782 -0.754333516030958 -0.764266034712551 -0.772708165585799 -0.779641148144208 -0.785049555313152 -0.788921339785831 -0.791247870290579 -0.792023957618699 +-0.526049790619129 -0.525539184754952 -0.524008452446046 -0.521460846614861 -0.517901779049993 -0.513338805825213 -0.507781606970776 -0.501241960480828 -0.493733710764092 -0.485272731667074 -0.475876884221531 -0.465565969287664 -0.454361675285323 -0.442287521223313 -0.429368795254808 -0.415632489002696 -0.401107227913335 -0.385823197910252 -0.369812068631115 -0.353106913540698 -0.335742127221381 -0.317753340148700 -0.299177331264782 -0.280051938665011 -0.260415968714964 -0.240309103914149 -0.219771809820865 -0.198845241348912 -0.177571148741354 -0.155991783519742 -0.134149804698731 -0.112088185546325 -0.089850121158775 -0.067478937106940 -0.045017999397552 -0.022510625978217 0.000000000000000 0.022510625978215 0.045017999397551 0.067478937106938 0.089850121158772 0.112088185546328 0.134149804698736 0.155991783519740 0.177571148741354 0.198845241348910 0.219771809820864 0.240309103914151 0.260415968714973 0.280051938665011 0.299177331264782 0.317753340148696 0.335742127221381 0.353106913540699 0.369812068631115 0.385823197910252 0.401107227913335 0.415632489002690 0.429368795254809 0.442287521223313 0.454361675285323 0.465565969287664 0.475876884221531 0.485272731667074 0.493733710764092 0.501241960480828 0.507781606970769 0.513338805825212 0.517901779049993 0.521460846614861 0.524008452446046 0.525539184754952 0.526049790619129 0.525539184754952 0.524008452446046 0.521460846614861 0.517901779049993 0.513338805825213 0.507781606970776 0.501241960480828 0.493733710764092 0.485272731667074 0.475876884221531 0.465565969287665 0.454361675285323 0.442287521223313 0.429368795254809 0.415632489002690 0.401107227913335 0.385823197910252 0.369812068631116 0.353106913540699 0.335742127221377 0.317753340148696 0.299177331264782 0.280051938665012 0.260415968714971 0.240309103914149 0.219771809820864 0.198845241348903 0.177571148741356 0.155991783519742 0.134149804698735 0.112088185546327 0.089850121158770 0.067478937106936 0.045017999397553 0.022510625978219 0.000000000000000 -0.022510625978219 -0.045017999397553 -0.067478937106937 -0.089850121158770 -0.112088185546327 -0.134149804698735 -0.155991783519742 -0.177571148741356 -0.198845241348905 -0.219771809820864 -0.240309103914149 -0.260415968714971 -0.280051938665012 -0.299177331264783 -0.317753340148696 -0.335742127221377 -0.353106913540699 -0.369812068631116 -0.385823197910253 -0.401107227913335 -0.415632489002690 -0.429368795254809 -0.442287521223313 -0.454361675285323 -0.465565969287665 -0.475876884221531 -0.485272731667074 -0.493733710764092 -0.501241960480828 -0.507781606970776 -0.513338805825213 -0.517901779049993 -0.521460846614861 -0.524008452446046 -0.525539184754952 -0.526049790619129 +-0.261384471030160 -0.261133205446137 -0.260379915375465 -0.259126119681844 -0.257374345873620 -0.255128124220689 -0.252391979545254 -0.249171420713465 -0.245472927862281 -0.241303937403348 -0.236672824852653 -0.231588885541594 -0.226062313271603 -0.220104176980880 -0.213726395497311 -0.206941710457701 -0.199763657478047 -0.192206535664760 -0.184285375560654 -0.176015905623613 -0.167414517339097 -0.158498229070493 -0.149284648753877 -0.139791935545465 -0.130038760531629 -0.120044266612177 -0.109828027668089 -0.099410007124864 -0.088810516022164 -0.078050170699438 -0.067149850205881 -0.056130653541269 -0.045013856831982 -0.033820870544021 -0.022573196831836 -0.011292387118604 0.000000000000000 0.011292387118603 0.022573196831836 0.033820870544019 0.045013856831981 0.056130653541269 0.067149850205884 0.078050170699437 0.088810516022164 0.099410007124864 0.109828027668089 0.120044266612179 0.130038760531630 0.139791935545463 0.149284648753877 0.158498229070493 0.167414517339095 0.176015905623617 0.184285375560653 0.192206535664760 0.199763657478045 0.206941710457696 0.213726395497313 0.220104176980881 0.226062313271603 0.231588885541593 0.236672824852653 0.241303937403348 0.245472927862281 0.249171420713465 0.252391979545253 0.255128124220689 0.257374345873620 0.259126119681844 0.260379915375465 0.261133205446137 0.261384471030160 0.261133205446137 0.260379915375465 0.259126119681844 0.257374345873620 0.255128124220689 0.252391979545259 0.249171420713465 0.245472927862281 0.241303937403348 0.236672824852653 0.231588885541594 0.226062313271603 0.220104176980881 0.213726395497311 0.206941710457695 0.199763657478047 0.192206535664761 0.184285375560654 0.176015905623617 0.167414517339095 0.158498229070492 0.149284648753877 0.139791935545465 0.130038760531629 0.120044266612178 0.109828027668088 0.099410007124863 0.088810516022165 0.078050170699440 0.067149850205884 0.056130653541269 0.045013856831981 0.033820870544018 0.022573196831838 0.011292387118605 0.000000000000000 -0.011292387118605 -0.022573196831837 -0.033820870544018 -0.045013856831981 -0.056130653541269 -0.067149850205883 -0.078050170699440 -0.088810516022165 -0.099410007124863 -0.109828027668088 -0.120044266612178 -0.130038760531629 -0.139791935545465 -0.149284648753878 -0.158498229070492 -0.167414517339095 -0.176015905623617 -0.184285375560654 -0.192206535664761 -0.199763657478043 -0.206941710457695 -0.213726395497311 -0.220104176980881 -0.226062313271603 -0.231588885541594 -0.236672824852653 -0.241303937403348 -0.245472927862281 -0.249171420713465 -0.252391979545259 -0.255128124220689 -0.257374345873620 -0.259126119681844 -0.260379915375465 -0.261133205446137 -0.261384471030160 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 \ No newline at end of file diff --git a/simulations/Tutorial/xhps_integration/surface_tables/force_FY.txt b/simulations/Tutorial/xhps_integration/surface_tables/force_FY.txt new file mode 100644 index 0000000000000000000000000000000000000000..db1943662b9765e5c6dc4398d090870b8d972240 --- /dev/null +++ b/simulations/Tutorial/xhps_integration/surface_tables/force_FY.txt @@ -0,0 +1,73 @@ +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 -0.003741642114497 -0.007475883195102 -0.011195338416566 -0.014892655323942 -0.018560529900459 -0.022191722495286 -0.025779073565435 -0.029315519186929 -0.032794106291377 -0.036208007585332 -0.039550536111202 -0.042815159410122 -0.045995513248874 -0.049085414874920 -0.052078875765624 -0.054970113839954 -0.057753565103198 -0.060423894697722 -0.062976007335193 -0.065405057088327 -0.067706456522821 -0.069875885152755 -0.071909297205522 -0.073802928684976 -0.075553303724218 -0.077157240222096 -0.078611854760163 -0.079914566799413 -0.081063102158629 -0.082055495778624 -0.082890093779058 -0.083565554816708 -0.084080850756202 -0.084435266666326 -0.084628400156788 -0.084660160072122 -0.084628400156788 -0.084435266666326 -0.084080850756202 -0.083565554816708 -0.082890093779058 -0.082055495778622 -0.081063102158629 -0.079914566799413 -0.078611854760163 -0.077157240222096 -0.075553303724218 -0.073802928684976 -0.071909297205522 -0.069875885152755 -0.067706456522821 -0.065405057088327 -0.062976007335191 -0.060423894697722 -0.057753565103198 -0.054970113839954 -0.052078875765624 -0.049085414874920 -0.045995513248874 -0.042815159410122 -0.039550536111202 -0.036208007585332 -0.032794106291377 -0.029315519186928 -0.025779073565434 -0.022191722495287 -0.018560529900460 -0.014892655323942 -0.011195338416567 -0.007475883195101 -0.003741642114497 0.000000000000000 0.003741642114497 0.007475883195102 0.011195338416567 0.014892655323943 0.018560529900459 0.022191722495286 0.025779073565434 0.029315519186928 0.032794106291377 0.036208007585331 0.039550536111202 0.042815159410122 0.045995513248874 0.049085414874920 0.052078875765624 0.054970113839954 0.057753565103198 0.060423894697721 0.062976007335193 0.065405057088327 0.067706456522822 0.069875885152755 0.071909297205522 0.073802928684976 0.075553303724218 0.077157240222096 0.078611854760163 0.079914566799413 0.081063102158629 0.082055495778622 0.082890093779058 0.083565554816708 0.084080850756202 0.084435266666326 0.084628400156788 0.084660160072122 0.084628400156788 0.084435266666326 0.084080850756202 0.083565554816708 0.082890093779058 0.082055495778622 0.081063102158629 0.079914566799413 0.078611854760163 0.077157240222096 0.075553303724218 0.073802928684976 0.071909297205522 0.069875885152755 0.067706456522822 0.065405057088327 0.062976007335193 0.060423894697721 0.057753565103198 0.054970113839954 0.052078875765624 0.049085414874920 0.045995513248874 0.042815159410122 0.039550536111202 0.036208007585332 0.032794106291377 0.029315519186928 0.025779073565434 0.022191722495286 0.018560529900459 0.014892655323943 0.011195338416567 0.007475883195102 0.003741642114497 0.000000000000000 +0.000000000000000 -0.007552443669037 -0.015089398530788 -0.022595413727078 -0.030055114161294 -0.037453238038245 -0.044774673997041 -0.052004497704781 -0.059128007781824 -0.066130760933054 -0.072998606163870 -0.079717717964619 -0.086274628352757 -0.092656257668164 -0.098849944023743 -0.104843471320614 -0.110625095744755 -0.116183570670001 -0.121508169900619 -0.126588709195208 -0.131415566022587 -0.135979697509254 -0.140272656546969 -0.144286606038374 -0.148014331267357 -0.151449250390051 -0.154585423051210 -0.157417557139265 -0.159941013701926 -0.162151810052165 -0.164046621102292 -0.165622778971072 -0.166878270915857 -0.167811735647969 -0.168422458095677 -0.168710362684157 -0.168676005206892 -0.168710362684157 -0.168422458095677 -0.167811735647969 -0.166878270915857 -0.165622778971072 -0.164046621102289 -0.162151810052165 -0.159941013701926 -0.157417557139265 -0.154585423051210 -0.151449250390051 -0.148014331267356 -0.144286606038375 -0.140272656546969 -0.135979697509254 -0.131415566022587 -0.126588709195208 -0.121508169900619 -0.116183570670001 -0.110625095744755 -0.104843471320614 -0.098849944023741 -0.092656257668162 -0.086274628352757 -0.079717717964620 -0.072998606163870 -0.066130760933054 -0.059128007781824 -0.052004497704780 -0.044774673997041 -0.037453238038245 -0.030055114161295 -0.022595413727079 -0.015089398530787 -0.007552443669037 0.000000000000000 0.007552443669036 0.015089398530787 0.022595413727079 0.030055114161295 0.037453238038244 0.044774673997040 0.052004497704780 0.059128007781824 0.066130760933054 0.072998606163870 0.079717717964619 0.086274628352757 0.092656257668162 0.098849944023742 0.104843471320614 0.110625095744751 0.116183570670001 0.121508169900619 0.126588709195208 0.131415566022587 0.135979697509254 0.140272656546969 0.144286606038374 0.148014331267357 0.151449250390051 0.154585423051210 0.157417557139265 0.159941013701926 0.162151810052162 0.164046621102292 0.165622778971072 0.166878270915857 0.167811735647969 0.168422458095677 0.168710362684157 0.168676005206892 0.168710362684157 0.168422458095677 0.167811735647969 0.166878270915857 0.165622778971072 0.164046621102292 0.162151810052162 0.159941013701926 0.157417557139265 0.154585423051210 0.151449250390051 0.148014331267357 0.144286606038374 0.140272656546969 0.135979697509254 0.131415566022587 0.126588709195208 0.121508169900619 0.116183570670001 0.110625095744755 0.104843471320614 0.098849944023742 0.092656257668162 0.086274628352757 0.079717717964619 0.072998606163870 0.066130760933054 0.059128007781824 0.052004497704780 0.044774673997040 0.037453238038244 0.030055114161295 0.022595413727079 0.015089398530787 0.007552443669036 0.000000000000000 +0.000000000000000 -0.011403402162763 -0.022782602558186 -0.034113464474866 -0.045371981044957 -0.056534339496693 -0.067576984608370 -0.078476681104987 -0.089210574745201 -0.099756251853976 -0.110091797065654 -0.120195849052730 -0.130047654027697 -0.139627116818295 -0.148914849330989 -0.157892216232644 -0.166541377696694 -0.174845329077035 -0.182787937390691 -0.190353974508475 -0.197529146971544 -0.204300122370861 -0.210654552245585 -0.216581091475711 -0.222069414163405 -0.227110226016134 -0.231695273263576 -0.235817348157996 -0.239470291125293 -0.242648989650818 -0.245349373999679 -0.247568409886354 -0.249304088222313 -0.250555412083164 -0.251322381048395 -0.251605973077176 -0.251408124092660 -0.251605973077176 -0.251322381048395 -0.250555412083164 -0.249304088222313 -0.247568409886354 -0.245349373999680 -0.242648989650818 -0.239470291125293 -0.235817348157996 -0.231695273263584 -0.227110226016126 -0.222069414163397 -0.216581091475711 -0.210654552245585 -0.204300122370861 -0.197529146971546 -0.190353974508474 -0.182787937390691 -0.174845329077036 -0.166541377696694 -0.157892216232644 -0.148914849330988 -0.139627116818291 -0.130047654027698 -0.120195849052731 -0.110091797065655 -0.099756251853976 -0.089210574745201 -0.078476681104984 -0.067576984608370 -0.056534339496695 -0.045371981044957 -0.034113464474866 -0.022782602558184 -0.011403402162764 0.000000000000000 0.011403402162762 0.022782602558185 0.034113464474868 0.045371981044958 0.056534339496693 0.067576984608369 0.078476681104986 0.089210574745201 0.099756251853978 0.110091797065651 0.120195849052729 0.130047654027693 0.139627116818295 0.148914849330989 0.157892216232645 0.166541377696693 0.174845329077035 0.182787937390690 0.190353974508474 0.197529146971546 0.204300122370861 0.210654552245585 0.216581091475711 0.222069414163405 0.227110226016134 0.231695273263584 0.235817348157998 0.239470291125292 0.242648989650818 0.245349373999680 0.247568409886354 0.249304088222313 0.250555412083164 0.251322381048395 0.251605973077176 0.251408124092660 0.251605973077176 0.251322381048395 0.250555412083164 0.249304088222313 0.247568409886354 0.245349373999680 0.242648989650818 0.239470291125293 0.235817348157998 0.231695273263584 0.227110226016134 0.222069414163405 0.216581091475711 0.210654552245585 0.204300122370861 0.197529146971546 0.190353974508474 0.182787937390690 0.174845329077035 0.166541377696698 0.157892216232645 0.148914849330989 0.139627116818295 0.130047654027693 0.120195849052729 0.110091797065655 0.099756251853978 0.089210574745201 0.078476681104986 0.067576984608369 0.056534339496693 0.045371981044958 0.034113464474868 0.022782602558185 0.011403402162762 0.000000000000000 +0.000000000000000 -0.015265209476269 -0.030496945349366 -0.045661831338955 -0.060726685369375 -0.075658615572232 -0.090425114977121 -0.104994154466050 -0.119334273578129 -0.133414668764627 -0.147205278710453 -0.160676866356610 -0.173801097278696 -0.186550614099378 -0.198899106637276 -0.210821377521259 -0.222293403026973 -0.233292388921903 -0.243796821135629 -0.253786511103478 -0.263242635663736 -0.272147771421486 -0.280485923524611 -0.288242548830786 -0.295404573476623 -0.301960404892624 -0.307899938338926 -0.313214558067663 -0.317897133247280 -0.321942008812361 -0.325344991429335 -0.328103330793547 -0.330215696496351 -0.331682150722164 -0.332504117054514 -0.332684345687057 -0.332226875349733 -0.332684345687057 -0.332504117054514 -0.331682150722164 -0.330215696496351 -0.328103330793547 -0.325344991429335 -0.321942008812361 -0.317897133247280 -0.313214558067663 -0.307899938338927 -0.301960404892624 -0.295404573476623 -0.288242548830786 -0.280485923524611 -0.272147771421486 -0.263242635663736 -0.253786511103477 -0.243796821135637 -0.233292388921903 -0.222293403026975 -0.210821377521259 -0.198899106637276 -0.186550614099376 -0.173801097278696 -0.160676866356610 -0.147205278710454 -0.133414668764629 -0.119334273578126 -0.104994154466048 -0.090425114977121 -0.075658615572234 -0.060726685369376 -0.045661831338956 -0.030496945349364 -0.015265209476270 0.000000000000000 0.015265209476268 0.030496945349366 0.045661831338957 0.060726685369378 0.075658615572231 0.090425114977121 0.104994154466049 0.119334273578128 0.133414668764629 0.147205278710453 0.160676866356606 0.173801097278696 0.186550614099377 0.198899106637276 0.210821377521260 0.222293403026973 0.233292388921903 0.243796821135629 0.253786511103478 0.263242635663736 0.272147771421486 0.280485923524612 0.288242548830786 0.295404573476623 0.301960404892624 0.307899938338927 0.313214558067663 0.317897133247280 0.321942008812361 0.325344991429335 0.328103330793547 0.330215696496352 0.331682150722164 0.332504117054514 0.332684345687057 0.332226875349733 0.332684345687057 0.332504117054514 0.331682150722164 0.330215696496352 0.328103330793547 0.325344991429335 0.321942008812361 0.317897133247280 0.313214558067663 0.307899938338927 0.301960404892624 0.295404573476623 0.288242548830786 0.280485923524611 0.272147771421486 0.263242635663736 0.253786511103478 0.243796821135629 0.233292388921903 0.222293403026976 0.210821377521260 0.198899106637276 0.186550614099377 0.173801097278696 0.160676866356606 0.147205278710455 0.133414668764629 0.119334273578128 0.104994154466049 0.090425114977121 0.075658615572231 0.060726685369378 0.045661831338957 0.030496945349366 0.015265209476268 0.000000000000000 +0.000000000000000 -0.019108474924074 -0.038173716097640 -0.057152624274413 -0.076002368563214 -0.094680518976367 -0.113145177035106 -0.131355103803996 -0.149269844743300 -0.166849850788795 -0.184056595093218 -0.200852684891459 -0.217201967983558 -0.233069633363912 -0.248422305563177 -0.263228132309535 -0.277456865158820 -0.291079932787878 -0.304070506691952 -0.316403559075091 -0.328055912771299 -0.339006283084290 -0.349235311483271 -0.358725591142738 -0.367461684363650 -0.375430131962503 -0.382619454762362 -0.389020147367107 -0.394624664443893 -0.399427399782507 -0.403424658439916 -0.406614622316219 -0.408997309543228 -0.410574528098226 -0.411349824084140 -0.411328425141765 -0.410517179481322 -0.411328425141765 -0.411349824084140 -0.410574528098226 -0.408997309543228 -0.406614622316219 -0.403424658439916 -0.399427399782507 -0.394624664443893 -0.389020147367107 -0.382619454762373 -0.375430131962503 -0.367461684363650 -0.358725591142738 -0.349235311483271 -0.339006283084290 -0.328055912771300 -0.316403559075090 -0.304070506691952 -0.291079932787880 -0.277456865158820 -0.263228132309535 -0.248422305563177 -0.233069633363910 -0.217201967983559 -0.200852684891462 -0.184056595093219 -0.166849850788800 -0.149269844743295 -0.131355103803995 -0.113145177035106 -0.094680518976371 -0.076002368563215 -0.057152624274414 -0.038173716097637 -0.019108474924076 0.000000000000000 0.019108474924073 0.038173716097638 0.057152624274415 0.076002368563217 0.094680518976365 0.113145177035105 0.131355103803995 0.149269844743296 0.166849850788801 0.184056595093218 0.200852684891459 0.217201967983558 0.233069633363910 0.248422305563177 0.263228132309535 0.277456865158820 0.291079932787878 0.304070506691952 0.316403559075091 0.328055912771308 0.339006283084297 0.349235311483271 0.358725591142738 0.367461684363650 0.375430131962503 0.382619454762374 0.389020147367107 0.394624664443893 0.399427399782507 0.403424658439916 0.406614622316219 0.408997309543228 0.410574528098227 0.411349824084140 0.411328425141765 0.410517179481322 0.411328425141765 0.411349824084140 0.410574528098227 0.408997309543228 0.406614622316219 0.403424658439916 0.399427399782507 0.394624664443893 0.389020147367107 0.382619454762374 0.375430131962503 0.367461684363650 0.358725591142738 0.349235311483271 0.339006283084297 0.328055912771308 0.316403559075091 0.304070506691952 0.291079932787878 0.277456865158821 0.263228132309535 0.248422305563177 0.233069633363910 0.217201967983558 0.200852684891459 0.184056595093219 0.166849850788801 0.149269844743296 0.131355103803995 0.113145177035105 0.094680518976365 0.076002368563217 0.057152624274415 0.038173716097638 0.019108474924073 0.000000000000000 +0.000000000000000 -0.022903948935494 -0.045754489942250 -0.068498391408669 -0.091082773453657 -0.113455281538457 -0.135564257391312 -0.157358906377187 -0.178789460468549 -0.199807336002573 -0.220365285444833 -0.240417542419404 -0.259919959310052 -0.278830136786341 -0.297107544661937 -0.314713633549459 -0.331611936836802 -0.347768162573060 -0.363150274918338 -0.377728564879045 -0.391475710120141 -0.404366823715267 -0.416379491767179 -0.427493799900739 -0.437692348701376 -0.446960258240512 -0.455285161897048 -0.462657189749096 -0.469068941873361 -0.474515451949032 -0.478994141619687 -0.482504766119469 -0.485049351717998 -0.486632125583005 -0.487259438698419 -0.486939682510040 -0.485683200000004 -0.486939682510040 -0.487259438698417 -0.486632125583005 -0.485049351717998 -0.482504766119469 -0.478994141619687 -0.474515451949032 -0.469068941873361 -0.462657189749096 -0.455285161897047 -0.446960258240512 -0.437692348701371 -0.427493799900739 -0.416379491767179 -0.404366823715268 -0.391475710120141 -0.377728564879039 -0.363150274918338 -0.347768162573070 -0.331611936836809 -0.314713633549461 -0.297107544661936 -0.278830136786340 -0.259919959310055 -0.240417542419405 -0.220365285444834 -0.199807336002574 -0.178789460468545 -0.157358906377185 -0.135564257391313 -0.113455281538457 -0.091082773453658 -0.068498391408670 -0.045754489942248 -0.022903948935495 0.000000000000000 0.022903948935491 0.045754489942249 0.068498391408671 0.091082773453659 0.113455281538456 0.135564257391310 0.157358906377187 0.178789460468545 0.199807336002574 0.220365285444832 0.240417542419404 0.259919959310052 0.278830136786340 0.297107544661937 0.314713633549461 0.331611936836802 0.347768162573060 0.363150274918332 0.377728564879045 0.391475710120141 0.404366823715268 0.416379491767179 0.427493799900738 0.437692348701376 0.446960258240512 0.455285161897047 0.462657189749096 0.469068941873361 0.474515451949032 0.478994141619687 0.482504766119469 0.485049351717998 0.486632125583005 0.487259438698419 0.486939682510040 0.485683200000004 0.486939682510040 0.487259438698419 0.486632125583005 0.485049351717998 0.482504766119469 0.478994141619687 0.474515451949032 0.469068941873361 0.462657189749096 0.455285161897047 0.446960258240512 0.437692348701376 0.427493799900738 0.416379491767179 0.404366823715268 0.391475710120141 0.377728564879045 0.363150274918332 0.347768162573060 0.331611936836809 0.314713633549461 0.297107544661937 0.278830136786340 0.259919959310052 0.240417542419404 0.220365285444834 0.199807336002574 0.178789460468545 0.157358906377187 0.135564257391310 0.113455281538455 0.091082773453659 0.068498391408671 0.045754489942249 0.022903948935491 0.000000000000000 +0.000000000000000 -0.026622745661530 -0.053181572616846 -0.079612784603072 -0.105853129053690 -0.131840015978885 -0.157511733307217 -0.182807657546518 -0.207668458653778 -0.232036298043192 -0.255855018707938 -0.279070326484747 -0.301629961550359 -0.323483859304675 -0.344584299867062 -0.364886045488821 -0.384346465265727 -0.402925646619508 -0.420586493105217 -0.437294808192127 -0.453019364758479 -0.467731960134436 -0.481407456621611 -0.494023807512775 -0.505562068727717 -0.516006396274622 -0.525344029834926 -0.533565262857849 -0.540663399633787 -0.546634699895543 -0.551478311571564 -0.555196192385218 -0.557793021058238 -0.559276098934828 -0.559655242894687 -0.558942670468005 -0.557152878103152 -0.558942670468005 -0.559655242894687 -0.559276098934828 -0.557793021058238 -0.555196192385218 -0.551478311571560 -0.546634699895543 -0.540663399633788 -0.533565262857850 -0.525344029834927 -0.516006396274620 -0.505562068727716 -0.494023807512775 -0.481407456621611 -0.467731960134436 -0.453019364758495 -0.437294808192127 -0.420586493105218 -0.402925646619509 -0.384346465265727 -0.364886045488823 -0.344584299867061 -0.323483859304667 -0.301629961550360 -0.279070326484747 -0.255855018707939 -0.232036298043195 -0.207668458653775 -0.182807657546514 -0.157511733307221 -0.131840015978890 -0.105853129053692 -0.079612784603073 -0.053181572616841 -0.026622745661532 0.000000000000000 0.026622745661529 0.053181572616844 0.079612784603076 0.105853129053696 0.131840015978884 0.157511733307216 0.182807657546518 0.207668458653778 0.232036298043196 0.255855018707938 0.279070326484738 0.301629961550359 0.323483859304667 0.344584299867061 0.364886045488823 0.384346465265726 0.402925646619503 0.420586493105216 0.437294808192127 0.453019364758495 0.467731960134437 0.481407456621611 0.494023807512775 0.505562068727716 0.516006396274622 0.525344029834927 0.533565262857850 0.540663399633788 0.546634699895543 0.551478311571560 0.555196192385218 0.557793021058238 0.559276098934828 0.559655242894687 0.558942670468007 0.557152878103152 0.558942670468007 0.559655242894687 0.559276098934828 0.557793021058238 0.555196192385218 0.551478311571560 0.546634699895543 0.540663399633788 0.533565262857850 0.525344029834927 0.516006396274622 0.505562068727716 0.494023807512775 0.481407456621610 0.467731960134437 0.453019364758495 0.437294808192127 0.420586493105216 0.402925646619503 0.384346465265728 0.364886045488823 0.344584299867061 0.323483859304667 0.301629961550359 0.279070326484738 0.255855018707939 0.232036298043196 0.207668458653778 0.182807657546518 0.157511733307216 0.131840015978883 0.105853129053696 0.079612784603074 0.053181572616844 0.026622745661529 0.000000000000000 +0.000000000000000 -0.030236562813629 -0.060398439537675 -0.090411216614356 -0.120201024038616 -0.149694803367565 -0.178820571238861 -0.207507676949213 -0.235687052685184 -0.263291455049168 -0.290255696583115 -0.316516866061549 -0.342014536402241 -0.366690959127894 -0.390491244404195 -0.413363525777806 -0.435259108842261 -0.456132603168614 -0.475942036951274 -0.494648953935639 -0.512218492313488 -0.528619445392709 -0.543824303969080 -0.557809280448983 -0.570554314892457 -0.582043063263190 -0.592262868288272 -0.601204713441538 -0.608863160671689 -0.615236272598347 -0.620325519995040 -0.624135675467324 -0.626674694316464 -0.627953583652822 -0.627986260889194 -0.626789402800681 -0.624382286385832 -0.626789402800681 -0.627986260889194 -0.627953583652822 -0.626674694316464 -0.624135675467324 -0.620325519995040 -0.615236272598347 -0.608863160671689 -0.601204713441538 -0.592262868288271 -0.582043063263187 -0.570554314892457 -0.557809280448983 -0.543824303969080 -0.528619445392709 -0.512218492313488 -0.494648953935637 -0.475942036951291 -0.456132603168615 -0.435259108842262 -0.413363525777806 -0.390491244404194 -0.366690959127891 -0.342014536402243 -0.316516866061550 -0.290255696583115 -0.263291455049168 -0.235687052685182 -0.207507676949210 -0.178820571238862 -0.149694803367566 -0.120201024038617 -0.090411216614360 -0.060398439537670 -0.030236562813631 0.000000000000000 0.030236562813628 0.060398439537673 0.090411216614362 0.120201024038619 0.149694803367560 0.178820571238860 0.207507676949211 0.235687052685183 0.263291455049169 0.290255696583114 0.316516866061548 0.342014536402240 0.366690959127892 0.390491244404195 0.413363525777808 0.435259108842261 0.456132603168613 0.475942036951273 0.494648953935638 0.512218492313488 0.528619445392726 0.543824303969080 0.557809280448983 0.570554314892457 0.582043063263187 0.592262868288272 0.601204713441538 0.608863160671689 0.615236272598347 0.620325519995040 0.624135675467324 0.626674694316464 0.627953583652822 0.627986260889194 0.626789402800681 0.624382286385832 0.626789402800681 0.627986260889194 0.627953583652822 0.626674694316464 0.624135675467324 0.620325519995040 0.615236272598347 0.608863160671689 0.601204713441538 0.592262868288272 0.582043063263187 0.570554314892457 0.557809280448983 0.543824303969080 0.528619445392726 0.512218492313488 0.494648953935638 0.475942036951273 0.456132603168613 0.435259108842262 0.413363525777808 0.390491244404195 0.366690959127892 0.342014536402240 0.316516866061548 0.290255696583117 0.263291455049169 0.235687052685183 0.207507676949211 0.178820571238860 0.149694803367560 0.120201024038618 0.090411216614362 0.060398439537673 0.030236562813628 0.000000000000000 +0.000000000000000 -0.033717897061179 -0.067350165989807 -0.100811504854643 -0.134017262264095 -0.166883757991436 -0.199328598062940 -0.231270982523332 -0.262632004144095 -0.293334936403270 -0.323305509140030 -0.352472170372806 -0.380766332866190 -0.408122604137169 -0.434478998706023 -0.459777131519926 -0.483962391606890 -0.506984095153807 -0.528795617343248 -0.549354502429085 -0.568622551679008 -0.586565888962425 -0.603155003912899 -0.618364772745614 -0.632174456958856 -0.644567680296398 -0.655532384489765 -0.665060764439399 -0.673149183625406 -0.679798070666427 -0.685011798062938 -0.688798544272705 -0.691170140367238 -0.692141902609696 -0.691732452375621 -0.689963524908050 -0.686859768456764 -0.689963524908050 -0.691732452375621 -0.692141902609696 -0.691170140367238 -0.688798544272689 -0.685011798062938 -0.679798070666427 -0.673149183625406 -0.665060764439402 -0.655532384489765 -0.644567680296398 -0.632174456958855 -0.618364772745614 -0.603155003912899 -0.586565888962425 -0.568622551679008 -0.549354502429085 -0.528795617343249 -0.506984095153811 -0.483962391606890 -0.459777131519926 -0.434478998706023 -0.408122604137166 -0.380766332866190 -0.352472170372813 -0.323305509140032 -0.293334936403272 -0.262632004144084 -0.231270982523322 -0.199328598062944 -0.166883757991438 -0.134017262264097 -0.100811504854648 -0.067350165989801 -0.033717897061182 0.000000000000000 0.033717897061177 0.067350165989805 0.100811504854650 0.134017262264102 0.166883757991435 0.199328598062939 0.231270982523323 0.262632004144094 0.293334936403273 0.323305509140029 0.352472170372806 0.380766332866188 0.408122604137167 0.434478998706023 0.459777131519927 0.483962391606890 0.506984095153807 0.528795617343248 0.549354502429085 0.568622551679008 0.586565888962426 0.603155003912899 0.618364772745611 0.632174456958855 0.644567680296398 0.655532384489768 0.665060764439401 0.673149183625406 0.679798070666427 0.685011798062938 0.688798544272686 0.691170140367238 0.692141902609696 0.691732452375621 0.689963524908050 0.686859768456764 0.689963524908050 0.691732452375621 0.692141902609696 0.691170140367238 0.688798544272686 0.685011798062938 0.679798070666427 0.673149183625406 0.665060764439402 0.655532384489768 0.644567680296398 0.632174456958855 0.618364772745611 0.603155003912898 0.586565888962426 0.568622551679008 0.549354502429085 0.528795617343248 0.506984095153807 0.483962391606895 0.459777131519927 0.434478998706023 0.408122604137167 0.380766332866188 0.352472170372806 0.323305509140033 0.293334936403273 0.262632004144094 0.231270982523323 0.199328598062939 0.166883757991435 0.134017262264102 0.100811504854650 0.067350165989805 0.033717897061177 0.000000000000000 +0.000000000000000 -0.037040253348471 -0.073983845137376 -0.110734496850563 -0.147196693814772 -0.183276061526853 -0.218879735312256 -0.253916721164785 -0.288298245680101 -0.321938093071684 -0.354752927349116 -0.386662597842298 -0.417590426372167 -0.447463474496883 -0.476212789401797 -0.503773627150185 -0.530085652169962 -0.555093112016118 -0.578744986620476 -0.600995111416328 -0.621802273905616 -0.641130283419008 -0.658948014001711 -0.675229420541877 -0.689953528438568 -0.703104397285235 -0.714671059217952 -0.724647432746016 -0.733032213043333 -0.739828739833029 -0.745044844140551 -0.748692675325274 -0.750788509922760 -0.751352543940249 -0.750408670345753 -0.747984243575316 -0.744109832952494 -0.747984243575316 -0.750408670345752 -0.751352543940249 -0.750788509922759 -0.748692675325274 -0.745044844140551 -0.739828739833028 -0.733032213043333 -0.724647432746017 -0.714671059217952 -0.703104397285235 -0.689953528438568 -0.675229420541877 -0.658948014001712 -0.641130283419009 -0.621802273905616 -0.600995111416324 -0.578744986620476 -0.555093112016118 -0.530085652169966 -0.503773627150185 -0.476212789401796 -0.447463474496881 -0.417590426372168 -0.386662597842298 -0.354752927349129 -0.321938093071691 -0.288298245680098 -0.253916721164783 -0.218879735312259 -0.183276061526855 -0.147196693814773 -0.110734496850568 -0.073983845137370 -0.037040253348473 0.000000000000000 0.037040253348468 0.073983845137373 0.110734496850570 0.147196693814777 0.183276061526853 0.218879735312255 0.253916721164784 0.288298245680100 0.321938093071692 0.354752927349115 0.386662597842297 0.417590426372151 0.447463474496883 0.476212789401796 0.503773627150204 0.530085652169961 0.555093112016102 0.578744986620472 0.600995111416324 0.621802273905617 0.641130283419009 0.658948014001711 0.675229420541877 0.689953528438568 0.703104397285235 0.714671059217952 0.724647432746017 0.733032213043334 0.739828739833028 0.745044844140551 0.748692675325274 0.750788509922759 0.751352543940252 0.750408670345753 0.747984243575316 0.744109832952494 0.747984243575316 0.750408670345753 0.751352543940252 0.750788509922759 0.748692675325274 0.745044844140551 0.739828739833029 0.733032213043334 0.724647432746017 0.714671059217952 0.703104397285235 0.689953528438568 0.675229420541877 0.658948014001711 0.641130283419009 0.621802273905617 0.600995111416324 0.578744986620472 0.555093112016102 0.530085652169966 0.503773627150204 0.476212789401796 0.447463474496883 0.417590426372151 0.386662597842297 0.354752927349129 0.321938093071692 0.288298245680100 0.253916721164784 0.218879735312246 0.183276061526853 0.147196693814777 0.110734496850570 0.073983845137373 0.037040253348468 0.000000000000000 +0.000000000000000 -0.040178346538063 -0.080248990676544 -0.120104672641362 -0.159639015258577 -0.198746958645966 -0.237325187027028 -0.275272545128647 -0.312490441697422 -0.348883237761088 -0.384358617369334 -0.418827938672236 -0.452206563333566 -0.484414162428948 -0.515374997144772 -0.545018172771042 -0.573277864668562 -0.600093515088193 -0.625409999922530 -0.649177764681516 -0.671352929196360 -0.691897360773746 -0.710778715739962 -0.727970449532246 -0.743451795709638 -0.757207714467963 -0.769228811449244 -0.779511227836138 -0.788056502913232 -0.794871410458272 -0.799967770498254 -0.803362238122626 -0.805076071192118 -0.805134878911552 -0.803568353351199 -0.800409986099534 -0.795696772313636 -0.800409986099532 -0.803568353351198 -0.805134878911552 -0.805076071192118 -0.803362238122626 -0.799967770498254 -0.794871410458272 -0.788056502913232 -0.779511227836138 -0.769228811449244 -0.757207714467962 -0.743451795709635 -0.727970449532246 -0.710778715739965 -0.691897360773746 -0.671352929196360 -0.649177764681515 -0.625409999922530 -0.600093515088193 -0.573277864668562 -0.545018172771043 -0.515374997144771 -0.484414162428946 -0.452206563333567 -0.418827938672242 -0.384358617369334 -0.348883237761089 -0.312490441697413 -0.275272545128644 -0.237325187027029 -0.198746958645967 -0.159639015258582 -0.120104672641364 -0.080248990676536 -0.040178346538066 0.000000000000000 0.040178346538060 0.080248990676541 0.120104672641365 0.159639015258583 0.198746958645963 0.237325187027027 0.275272545128645 0.312490441697421 0.348883237761090 0.384358617369333 0.418827938672236 0.452206563333561 0.484414162428948 0.515374997144771 0.545018172771043 0.573277864668561 0.600093515088193 0.625409999922530 0.649177764681515 0.671352929196360 0.691897360773748 0.710778715739965 0.727970449532246 0.743451795709635 0.757207714467963 0.769228811449245 0.779511227836138 0.788056502913232 0.794871410458272 0.799967770498254 0.803362238122626 0.805076071192118 0.805134878911552 0.803568353351199 0.800409986099534 0.795696772313636 0.800409986099534 0.803568353351199 0.805134878911552 0.805076071192118 0.803362238122626 0.799967770498254 0.794871410458272 0.788056502913232 0.779511227836138 0.769228811449245 0.757207714467963 0.743451795709638 0.727970449532246 0.710778715739962 0.691897360773745 0.671352929196360 0.649177764681515 0.625409999922530 0.600093515088192 0.573277864668578 0.545018172771043 0.515374997144771 0.484414162428948 0.452206563333561 0.418827938672236 0.384358617369335 0.348883237761090 0.312490441697421 0.275272545128645 0.237325187027027 0.198746958645963 0.159639015258583 0.120104672641365 0.080248990676541 0.040178346538060 0.000000000000000 +0.000000000000000 -0.043108293845951 -0.086097921066757 -0.128850719531398 -0.171249533016447 -0.213178706480105 -0.254524572182047 -0.295175923699546 -0.335024474976712 -0.373965301650462 -0.411897262023201 -0.448723395196944 -0.484351294046351 -0.518693450886736 -0.551667573887227 -0.583196872486142 -0.613210310285452 -0.641642824130673 -0.668435508321053 -0.693535763139826 -0.716897407144967 -0.738480752913958 -0.758252646191178 -0.776186468640178 -0.792262104655034 -0.806465872932386 -0.818790423746263 -0.829234603101506 -0.837803285164605 -0.844507174583011 -0.849362580503097 -0.852391164281533 -0.853619663054345 -0.853079591479866 -0.850806924105550 -0.846841760924575 -0.841227978782650 -0.846841760924575 -0.850806924105549 -0.853079591479864 -0.853619663054344 -0.852391164281533 -0.849362580503098 -0.844507174583010 -0.837803285164605 -0.829234603101506 -0.818790423746263 -0.806465872932386 -0.792262104655033 -0.776186468640178 -0.758252646191178 -0.738480752913959 -0.716897407144968 -0.693535763139825 -0.668435508321053 -0.641642824130676 -0.613210310285452 -0.583196872486142 -0.551667573887225 -0.518693450886734 -0.484351294046352 -0.448723395196963 -0.411897262023207 -0.373965301650463 -0.335024474976709 -0.295175923699535 -0.254524572182048 -0.213178706480106 -0.171249533016451 -0.128850719531399 -0.086097921066750 -0.043108293845955 0.000000000000000 0.043108293845948 0.086097921066756 0.128850719531401 0.171249533016453 0.213178706480104 0.254524572182046 0.295175923699537 0.335024474976710 0.373965301650463 0.411897262023201 0.448723395196944 0.484351294046347 0.518693450886735 0.551667573887225 0.583196872486143 0.613210310285437 0.641642824130673 0.668435508321049 0.693535763139825 0.716897407144968 0.738480752913958 0.758252646191178 0.776186468640176 0.792262104655035 0.806465872932386 0.818790423746265 0.829234603101506 0.837803285164606 0.844507174583011 0.849362580503097 0.852391164281533 0.853619663054344 0.853079591479864 0.850806924105551 0.846841760924575 0.841227978782650 0.846841760924575 0.850806924105551 0.853079591479864 0.853619663054344 0.852391164281533 0.849362580503097 0.844507174583011 0.837803285164606 0.829234603101506 0.818790423746265 0.806465872932386 0.792262104655035 0.776186468640176 0.758252646191175 0.738480752913958 0.716897407144968 0.693535763139825 0.668435508321049 0.641642824130673 0.613210310285453 0.583196872486143 0.551667573887225 0.518693450886735 0.484351294046347 0.448723395196944 0.411897262023208 0.373965301650463 0.335024474976710 0.295175923699537 0.254524572182046 0.213178706480104 0.171249533016453 0.128850719531401 0.086097921066756 0.043108293845948 0.000000000000000 +0.000000000000000 -0.045807796603972 -0.091486122416067 -0.136906074822832 -0.181939884037623 -0.226461470714134 -0.270346993071006 -0.313475380148571 -0.355728847918294 -0.396993395088660 -0.437159275596651 -0.476121444940899 -0.513779977700239 -0.550040453786691 -0.584814311206103 -0.618019163337754 -0.649579078997569 -0.679424823813583 -0.707494061717626 -0.733731515638916 -0.758089086773723 -0.780525932097664 -0.801008500079122 -0.819510524846631 -0.836012979351180 -0.850503988349643 -0.862978702313315 -0.873439133632507 -0.881893956746573 -0.888358274071383 -0.892853349825568 -0.895406314069412 -0.896049839463934 -0.894821793432665 -0.891764868561936 -0.886926194207719 -0.880356932385753 -0.886926194207719 -0.891764868561936 -0.894821793432665 -0.896049839463934 -0.895406314069414 -0.892853349825568 -0.888358274071383 -0.881893956746572 -0.873439133632505 -0.862978702313315 -0.850503988349643 -0.836012979351178 -0.819510524846631 -0.801008500079122 -0.780525932097664 -0.758089086773723 -0.733731515638915 -0.707494061717639 -0.679424823813584 -0.649579078997569 -0.618019163337757 -0.584814311206085 -0.550040453786689 -0.513779977700240 -0.476121444940919 -0.437159275596652 -0.396993395088661 -0.355728847918286 -0.313475380148560 -0.270346993071007 -0.226461470714138 -0.181939884037627 -0.136906074822836 -0.091486122416061 -0.045807796603974 0.000000000000000 0.045807796603968 0.091486122416064 0.136906074822842 0.181939884037629 0.226461470714133 0.270346993071005 0.313475380148562 0.355728847918293 0.396993395088663 0.437159275596633 0.476121444940898 0.513779977700238 0.550040453786690 0.584814311206102 0.618019163337757 0.649579078997569 0.679424823813583 0.707494061717626 0.733731515638916 0.758089086773723 0.780525932097664 0.801008500079124 0.819510524846621 0.836012979351177 0.850503988349643 0.862978702313314 0.873439133632504 0.881893956746575 0.888358274071373 0.892853349825568 0.895406314069414 0.896049839463934 0.894821793432664 0.891764868561936 0.886926194207719 0.880356932385753 0.886926194207719 0.891764868561936 0.894821793432664 0.896049839463934 0.895406314069414 0.892853349825568 0.888358274071373 0.881893956746575 0.873439133632504 0.862978702313314 0.850503988349643 0.836012979351180 0.819510524846631 0.801008500079121 0.780525932097664 0.758089086773723 0.733731515638916 0.707494061717626 0.679424823813583 0.649579078997570 0.618019163337757 0.584814311206102 0.550040453786690 0.513779977700238 0.476121444940898 0.437159275596653 0.396993395088663 0.355728847918293 0.313475380148562 0.270346993071005 0.226461470714133 0.181939884037629 0.136906074822841 0.091486122416064 0.045807796603968 0.000000000000000 +0.000000000000000 -0.048256309966130 -0.096372587258720 -0.144209432397943 -0.191628708295824 -0.238494161491879 -0.284672031517107 -0.330031644562623 -0.374445987742438 -0.417792260379862 -0.459952398912729 -0.500813572202157 -0.540268644243126 -0.578216601508919 -0.614562942415842 -0.649220026666229 -0.682107382514985 -0.713151970305943 -0.742288400936714 -0.769459108231359 -0.794614474528474 -0.817712909123689 -0.838720879538977 -0.857612895924124 -0.874371449224144 -0.888986904070514 -0.901457347668898 -0.911788396260404 -0.919992961025774 -0.926090975578244 -0.930109087450651 -0.932080316223126 -0.932043681158381 -0.930043801408510 -0.926130472031982 -0.920358219208096 -0.912785838159367 -0.920358219208096 -0.926130472031981 -0.930043801408510 -0.932043681158381 -0.932080316223126 -0.930109087450652 -0.926090975578244 -0.919992961025774 -0.911788396260404 -0.901457347668898 -0.888986904070512 -0.874371449224145 -0.857612895924125 -0.838720879538977 -0.817712909123689 -0.794614474528475 -0.769459108231358 -0.742288400936715 -0.713151970305944 -0.682107382514986 -0.649220026666229 -0.614562942415841 -0.578216601508906 -0.540268644243127 -0.500813572202158 -0.459952398912734 -0.417792260379864 -0.374445987742430 -0.330031644562621 -0.284672031517108 -0.238494161491880 -0.191628708295826 -0.144209432397949 -0.096372587258716 -0.048256309966134 0.000000000000000 0.048256309966127 0.096372587258718 0.144209432397950 0.191628708295830 0.238494161491868 0.284672031517104 0.330031644562623 0.374445987742437 0.417792260379865 0.459952398912728 0.500813572202153 0.540268644243125 0.578216601508918 0.614562942415841 0.649220026666230 0.682107382514985 0.713151970305943 0.742288400936714 0.769459108231358 0.794614474528475 0.817712909123689 0.838720879538977 0.857612895924125 0.874371449224145 0.888986904070512 0.901457347668898 0.911788396260405 0.919992961025775 0.926090975578244 0.930109087450652 0.932080316223126 0.932043681158380 0.930043801408509 0.926130472031982 0.920358219208096 0.912785838159367 0.920358219208096 0.926130472031982 0.930043801408510 0.932043681158380 0.932080316223126 0.930109087450652 0.926090975578244 0.919992961025774 0.911788396260405 0.901457347668898 0.888986904070512 0.874371449224144 0.857612895924125 0.838720879538977 0.817712909123689 0.794614474528475 0.769459108231358 0.742288400936714 0.713151970305943 0.682107382514986 0.649220026666230 0.614562942415841 0.578216601508918 0.540268644243125 0.500813572202153 0.459952398912735 0.417792260379865 0.374445987742437 0.330031644562622 0.284672031517104 0.238494161491868 0.191628708295830 0.144209432397950 0.096372587258718 0.048256309966127 0.000000000000000 +0.000000000000000 -0.050435199267290 -0.100720126646737 -0.150705209295696 -0.200242267988172 -0.249185202770970 -0.297390665328070 -0.344718713772575 -0.391033445713363 -0.436203605600498 -0.480103162540142 -0.522611854982729 -0.563615698928319 -0.603007456556008 -0.640687062470226 -0.676562005062007 -0.710547660806784 -0.742567579657935 -0.772553720047461 -0.800446632364653 -0.826195590153762 -0.849758668642737 -0.871102770591700 -0.890203599821882 -0.907045583156701 -0.921621741869725 -0.933933514087832 -0.943990529940661 -0.951810341574788 -0.957418110461517 -0.960846254719393 -0.962134059441916 -0.961327253268678 -0.958477554659058 -0.953642191522767 -0.946883398028603 -0.938267892549423 -0.946883398028600 -0.953642191522766 -0.958477554659058 -0.961327253268678 -0.962134059441908 -0.960846254719392 -0.957418110461517 -0.951810341574787 -0.943990529940661 -0.933933514087831 -0.921621741869725 -0.907045583156701 -0.890203599821881 -0.871102770591700 -0.849758668642737 -0.826195590153762 -0.800446632364643 -0.772553720047462 -0.742567579657935 -0.710547660806786 -0.676562005062007 -0.640687062470225 -0.603007456556006 -0.563615698928338 -0.522611854982730 -0.480103162540143 -0.436203605600499 -0.391033445713360 -0.344718713772572 -0.297390665328072 -0.249185202770972 -0.200242267988176 -0.150705209295698 -0.100720126646728 -0.050435199267294 0.000000000000000 0.050435199267285 0.100720126646731 0.150705209295703 0.200242267988177 0.249185202770969 0.297390665328069 0.344718713772574 0.391033445713361 0.436203605600501 0.480103162540141 0.522611854982728 0.563615698928318 0.603007456556008 0.640687062470226 0.676562005062008 0.710547660806784 0.742567579657932 0.772553720047461 0.800446632364653 0.826195590153761 0.849758668642737 0.871102770591700 0.890203599821881 0.907045583156700 0.921621741869725 0.933933514087831 0.943990529940661 0.951810341574789 0.957418110461517 0.960846254719393 0.962134059441907 0.961327253268676 0.958477554659056 0.953642191522767 0.946883398028603 0.938267892549423 0.946883398028603 0.953642191522767 0.958477554659056 0.961327253268676 0.962134059441907 0.960846254719393 0.957418110461517 0.951810341574789 0.943990529940661 0.933933514087831 0.921621741869726 0.907045583156700 0.890203599821881 0.871102770591700 0.849758668642737 0.826195590153761 0.800446632364653 0.772553720047461 0.742567579657932 0.710547660806788 0.676562005062008 0.640687062470226 0.603007456556007 0.563615698928318 0.522611854982728 0.480103162540164 0.436203605600501 0.391033445713361 0.344718713772574 0.297390665328069 0.249185202770969 0.200242267988177 0.150705209295703 0.100720126646731 0.050435199267285 0.000000000000000 +0.000000000000000 -0.052327881844218 -0.104495653180255 -0.156343968731642 -0.207715008724397 -0.258453229271862 -0.308406098020875 -0.357424810313443 -0.405364981260141 -0.452087309296386 -0.497458207000363 -0.541350395188529 -0.583643456572340 -0.624224345551939 -0.662987851041464 -0.699837009559994 -0.734683466182467 -0.767447781320786 -0.798059681696701 -0.826458254269363 -0.852592082290453 -0.876419323075121 -0.897907727493684 -0.917034601604442 -0.933786711260489 -0.948160130926172 -0.960160038333991 -0.969800456991788 -0.977103948915798 -0.982101260308880 -0.984830923229261 -0.985338816592951 -0.983677690129218 -0.979906655153302 -0.974090646236915 -0.966299858042062 -0.956609161735567 -0.966299858042059 -0.974090646236915 -0.979906655153302 -0.983677690129218 -0.985338816592952 -0.984830923229261 -0.982101260308880 -0.977103948915798 -0.969800456991790 -0.960160038333991 -0.948160130926171 -0.933786711260489 -0.917034601604442 -0.897907727493684 -0.876419323075121 -0.852592082290453 -0.826458254269361 -0.798059681696701 -0.767447781320786 -0.734683466182468 -0.699837009559995 -0.662987851041460 -0.624224345551935 -0.583643456572342 -0.541350395188531 -0.497458207000364 -0.452087309296391 -0.405364981260137 -0.357424810313441 -0.308406098020885 -0.258453229271874 -0.207715008724398 -0.156343968731644 -0.104495653180249 -0.052327881844223 0.000000000000000 0.052327881844214 0.104495653180252 0.156343968731646 0.207715008724402 0.258453229271859 0.308406098020874 0.357424810313442 0.405364981260139 0.452087309296392 0.497458207000341 0.541350395188525 0.583643456572340 0.624224345551938 0.662987851041461 0.699837009559998 0.734683466182467 0.767447781320785 0.798059681696700 0.826458254269361 0.852592082290454 0.876419323075123 0.897907727493683 0.917034601604442 0.933786711260489 0.948160130926173 0.960160038333991 0.969800456991789 0.977103948915797 0.982101260308880 0.984830923229261 0.985338816592951 0.983677690129218 0.979906655153301 0.974090646236916 0.966299858042062 0.956609161735567 0.966299858042062 0.974090646236916 0.979906655153301 0.983677690129218 0.985338816592951 0.984830923229261 0.982101260308880 0.977103948915797 0.969800456991790 0.960160038333994 0.948160130926172 0.933786711260489 0.917034601604442 0.897907727493685 0.876419323075123 0.852592082290454 0.826458254269361 0.798059681696700 0.767447781320785 0.734683466182468 0.699837009559998 0.662987851041461 0.624224345551938 0.583643456572340 0.541350395188525 0.497458207000365 0.452087309296392 0.405364981260139 0.357424810313442 0.308406098020874 0.258453229271859 0.207715008724402 0.156343968731646 0.104495653180252 0.052327881844214 0.000000000000000 +0.000000000000000 -0.053919953239673 -0.107670432822632 -0.161082796341695 -0.213990058435332 -0.266227705716699 -0.317634495501446 -0.368053233118404 -0.417331522743626 -0.465322486891548 -0.511885449925737 -0.556886581213902 -0.600199493846398 -0.641705795160355 -0.681295585662975 -0.718867903322112 -0.754331110589520 -0.787603221936728 -0.818612170115421 -0.847296009796559 -0.873603057694754 -0.897491968742513 -0.918931748337626 -0.937901701147282 -0.954391317403873 -0.968400098074811 -0.979937320721871 -0.997365680520410 -1.022940041238050 -1.044434127792941 -1.061697999115275 -1.074612142677827 -1.083088361451755 -1.087070425937447 -1.086534486344010 -1.081489241811113 -1.071975865408250 -1.081489241811111 -1.086534486344018 -1.087070425937447 -1.083088361451757 -1.074612142677825 -1.061697999115275 -1.044434127792939 -1.022940041238052 -0.997365680520418 -0.979937320721870 -0.968400098074812 -0.954391317403865 -0.937901701147282 -0.918931748337626 -0.897491968742513 -0.873603057694754 -0.847296009796549 -0.818612170115421 -0.787603221936729 -0.754331110589520 -0.718867903322115 -0.681295585662973 -0.641705795160351 -0.600199493846400 -0.556886581213903 -0.511885449925739 -0.465322486891549 -0.417331522743619 -0.368053233118396 -0.317634495501448 -0.266227705716703 -0.213990058435343 -0.161082796341697 -0.107670432822627 -0.053919953239677 0.000000000000000 0.053919953239670 0.107670432822630 0.161082796341703 0.213990058435344 0.266227705716696 0.317634495501445 0.368053233118403 0.417331522743620 0.465322486891550 0.511885449925736 0.556886581213901 0.600199493846397 0.641705795160354 0.681295585662974 0.718867903322116 0.754331110589508 0.787603221936728 0.818612170115419 0.847296009796559 0.873603057694789 0.897491968742514 0.918931748337626 0.937901701147282 0.954391317403874 0.968400098074812 0.979937320721870 0.997365680520418 1.022940041238051 1.044434127792942 1.061697999115274 1.074612142677825 1.083088361451756 1.087070425937447 1.086534486344010 1.081489241811115 1.071975865408250 1.081489241811115 1.086534486344010 1.087070425937447 1.083088361451756 1.074612142677825 1.061697999115274 1.044434127792942 1.022940041238051 0.997365680520418 0.979937320721870 0.968400098074812 0.954391317403874 0.937901701147282 0.918931748337624 0.897491968742514 0.873603057694789 0.847296009796559 0.818612170115419 0.787603221936728 0.754331110589521 0.718867903322116 0.681295585662974 0.641705795160354 0.600199493846397 0.556886581213901 0.511885449925740 0.465322486891550 0.417331522743620 0.368053233118403 0.317634495501445 0.266227705716696 0.213990058435344 0.161082796341703 0.107670432822630 0.053919953239670 0.000000000000000 +0.000000000000000 -0.055199296829016 -0.110220303583806 -0.164885626786361 -0.219019660203707 -0.272449463645368 -0.325005624092679 -0.376523093472284 -0.426841997557551 -0.475808410692880 -0.523275091286219 -0.569102173302227 -0.613157809310058 -0.655318760994125 -0.695470933419735 -0.733509849755668 -0.769341063590454 -0.802880506432477 -0.834054768456770 -0.862801311044449 -0.889068610157133 -0.912816230087289 -0.934014827630214 -0.956593407726177 -1.000106850607613 -1.040121616984228 -1.076354894568390 -1.108550902565102 -1.136482800292369 -1.159954378949337 -1.178801523722806 -1.192893435164117 -1.202133600593484 -1.206460508184456 -1.205848098333150 -1.200305948908619 -1.189879192999567 -1.200305948908620 -1.205848098333149 -1.206460508184455 -1.202133600593484 -1.192893435164118 -1.178801523722804 -1.159954378949343 -1.136482800292381 -1.108550902565104 -1.076354894568390 -1.040121616984220 -1.000106850607604 -0.956593407726180 -0.934014827630213 -0.912816230087289 -0.889068610157133 -0.862801311044439 -0.834054768456780 -0.802880506432510 -0.769341063590455 -0.733509849755668 -0.695470933419732 -0.655318760994107 -0.613157809310062 -0.569102173302228 -0.523275091286221 -0.475808410692881 -0.426841997557543 -0.376523093472281 -0.325005624092680 -0.272449463645368 -0.219019660203709 -0.164885626786363 -0.110220303583800 -0.055199296829020 0.000000000000000 0.055199296829011 0.110220303583802 0.164885626786365 0.219019660203710 0.272449463645365 0.325005624092667 0.376523093472282 0.426841997557545 0.475808410692883 0.523275091286219 0.569102173302226 0.613157809310058 0.655318760994124 0.695470933419734 0.733509849755671 0.769341063590453 0.802880506432477 0.834054768456770 0.862801311044439 0.889068610157133 0.912816230087290 0.934014827630213 0.956593407726176 1.000106850607605 1.040121616984228 1.076354894568391 1.108550902565104 1.136482800292370 1.159954378949333 1.178801523722805 1.192893435164116 1.202133600593484 1.206460508184455 1.205848098333151 1.200305948908620 1.189879192999567 1.200305948908620 1.205848098333151 1.206460508184455 1.202133600593484 1.192893435164116 1.178801523722805 1.159954378949333 1.136482800292371 1.108550902565104 1.076354894568391 1.040121616984229 1.000106850607605 0.956593407726177 0.934014827630206 0.912816230087290 0.889068610157133 0.862801311044439 0.834054768456770 0.802880506432477 0.769341063590467 0.733509849755671 0.695470933419734 0.655318760994124 0.613157809310058 0.569102173302226 0.523275091286226 0.475808410692883 0.426841997557545 0.376523093472282 0.325005624092667 0.272449463645365 0.219019660203710 0.164885626786365 0.110220303583802 0.055199296829011 0.000000000000000 +0.000000000000000 -0.056156176035041 -0.112125859407628 -0.167723518229745 -0.222765535723091 -0.277071151723230 -0.330463385055189 -0.382769930623558 -0.433824025245990 -0.483465276488635 -0.531540449033800 -0.577904203421713 -0.622419782358170 -0.664959640163534 -0.705406011356033 -0.743651414807250 -0.779599090379644 -0.813163365448414 -0.844269949222907 -0.872856153308245 -0.898871037484878 -0.950955814322818 -1.004716648738655 -1.055375073992861 -1.102572163671320 -1.145973571441379 -1.185272028322289 -1.220189637325745 -1.250479948087442 -1.275929795776371 -1.296360890357003 -1.311631144171783 -1.321635727796316 -1.326307846179857 -1.325619229205594 -1.319580332970944 -1.308240250282990 -1.319580332970944 -1.325619229205592 -1.326307846179857 -1.321635727796316 -1.311631144171784 -1.296360890357003 -1.275929795776371 -1.250479948087442 -1.220189637325747 -1.185272028322290 -1.145973571441378 -1.102572163671308 -1.055375073992861 -1.004716648738657 -0.950955814322819 -0.898871037484877 -0.872856153308236 -0.844269949222907 -0.813163365448415 -0.779599090379644 -0.743651414807250 -0.705406011356031 -0.664959640163531 -0.622419782358172 -0.577904203421714 -0.531540449033801 -0.483465276488637 -0.433824025245983 -0.382769930623549 -0.330463385055191 -0.277071151723236 -0.222765535723103 -0.167723518229747 -0.112125859407622 -0.056156176035046 0.000000000000000 0.056156176035038 0.112125859407625 0.167723518229753 0.222765535723105 0.277071151723227 0.330463385055187 0.382769930623557 0.433824025245984 0.483465276488638 0.531540449033799 0.577904203421712 0.622419782358170 0.664959640163533 0.705406011356032 0.743651414807253 0.779599090379632 0.813163365448414 0.844269949222905 0.872856153308245 0.898871037484915 0.950955814322820 1.004716648738660 1.055375073992857 1.102572163671319 1.145973571441379 1.185272028322292 1.220189637325750 1.250479948087443 1.275929795776370 1.296360890357003 1.311631144171784 1.321635727796314 1.326307846179856 1.325619229205597 1.319580332970945 1.308240250282990 1.319580332970945 1.325619229205597 1.326307846179856 1.321635727796313 1.311631144171784 1.296360890357003 1.275929795776370 1.250479948087443 1.220189637325750 1.185272028322293 1.145973571441379 1.102572163671319 1.055375073992857 1.004716648738652 0.950955814322820 0.898871037484915 0.872856153308245 0.844269949222905 0.813163365448414 0.779599090379645 0.743651414807253 0.705406011356032 0.664959640163533 0.622419782358170 0.577904203421712 0.531540449033802 0.483465276488638 0.433824025245984 0.382769930623557 0.330463385055187 0.277071151723227 0.222765535723105 0.167723518229753 0.112125859407625 0.056156176035038 0.000000000000000 +0.000000000000000 -0.056783308429214 -0.113372597863673 -0.169574872604397 -0.225199176618978 -0.280057596113362 -0.333966241532557 -0.386746202369548 -0.438224468362382 -0.488234810906810 -0.536618618805260 -0.583225682808360 -0.627914923783329 -0.670555059756764 -0.711025207529779 -0.749215415043174 -0.785027121179290 -0.818373540218393 -0.851816430474225 -0.917227425178583 -0.980587040686408 -1.041446469980004 -1.099374241023039 -1.153959440170765 -1.204814782456615 -1.251579505495708 -1.293922065083807 -1.331542612071587 -1.364175231751608 -1.391589928796690 -1.413594342716332 -1.430035180842943 -1.440799357999993 -1.445814834230624 -1.445051144254420 -1.438519614658686 -1.426273267199131 -1.438519614658685 -1.445051144254419 -1.445814834230624 -1.440799357999991 -1.430035180842943 -1.413594342716319 -1.391589928796691 -1.364175231751609 -1.331542612071587 -1.293922065083808 -1.251579505495704 -1.204814782456610 -1.153959440170767 -1.099374241023039 -1.041446469980010 -0.980587040686408 -0.917227425178579 -0.851816430474228 -0.818373540218394 -0.785027121179291 -0.749215415043174 -0.711025207529776 -0.670555059756760 -0.627914923783330 -0.583225682808362 -0.536618618805261 -0.488234810906815 -0.438224468362379 -0.386746202369546 -0.333966241532570 -0.280057596113374 -0.225199176618979 -0.169574872604399 -0.113372597863668 -0.056783308429219 0.000000000000000 0.056783308429209 0.113372597863670 0.169574872604400 0.225199176618983 0.280057596113360 0.333966241532556 0.386746202369547 0.438224468362380 0.488234810906816 0.536618618805258 0.583225682808359 0.627914923783328 0.670555059756763 0.711025207529777 0.749215415043176 0.785027121179290 0.818373540218393 0.851816430474219 0.917227425178582 0.980587040686434 1.041446469980011 1.099374241023040 1.153959440170765 1.204814782456614 1.251579505495708 1.293922065083809 1.331542612071590 1.364175231751606 1.391589928796681 1.413594342716330 1.430035180842943 1.440799357999992 1.445814834230623 1.445051144254419 1.438519614658689 1.426273267199131 1.438519614658689 1.445051144254419 1.445814834230624 1.440799357999992 1.430035180842943 1.413594342716331 1.391589928796681 1.364175231751606 1.331542612071590 1.293922065083809 1.251579505495708 1.204814782456614 1.153959440170765 1.099374241023021 1.041446469980011 0.980587040686432 0.917227425178582 0.851816430474219 0.818373540218393 0.785027121179303 0.749215415043176 0.711025207529776 0.670555059756763 0.627914923783328 0.583225682808359 0.536618618805262 0.488234810906816 0.438224468362380 0.386746202369547 0.333966241532555 0.280057596113360 0.225199176618983 0.169574872604400 0.113372597863670 0.056783308429209 0.000000000000000 +0.000000000000000 -0.057075921155340 -0.113951030519494 -0.170425599985644 -0.226302061414671 -0.281386068170707 -0.335487534671937 -0.388421646881355 -0.440009836877531 -0.490080714910546 -0.538470952662335 -0.585026111790804 -0.629601412241228 -0.672062435252133 -0.712285756465180 -0.750159505062003 -0.785583845397449 -0.856394645536186 -0.928139101836150 -0.998184693193545 -1.066035259020424 -1.131209626381192 -1.193245204983589 -1.251701444141823 -1.306163125523570 -1.356243466735771 -1.401587012236243 -1.441872289670056 -1.476814211507408 -1.506166203790544 -1.529722045866768 -1.547317407176498 -1.558831069461645 -1.564185825147829 -1.563349045109052 -1.556332911530450 -1.543194314128037 -1.556332911530449 -1.563349045109051 -1.564185825147829 -1.558831069461644 -1.547317407176495 -1.529722045866768 -1.506166203790546 -1.476814211507408 -1.441872289670056 -1.401587012236244 -1.356243466735766 -1.306163125523567 -1.251701444141825 -1.193245204983595 -1.131209626381193 -1.066035259020426 -0.998184693193540 -0.928139101836151 -0.856394645536204 -0.785583845397451 -0.750159505062004 -0.712285756465178 -0.672062435252129 -0.629601412241229 -0.585026111790825 -0.538470952662358 -0.490080714910547 -0.440009836877528 -0.388421646881346 -0.335487534671939 -0.281386068170709 -0.226302061414673 -0.170425599985652 -0.113951030519483 -0.057075921155345 0.000000000000000 0.057075921155335 0.113951030519486 0.170425599985654 0.226302061414674 0.281386068170700 0.335487534671935 0.388421646881348 0.440009836877529 0.490080714910548 0.538470952662335 0.585026111790803 0.629601412241209 0.672062435252130 0.712285756465178 0.750159505062004 0.785583845397449 0.856394645536185 0.928139101836145 0.998184693193544 1.066035259020428 1.131209626381200 1.193245204983598 1.251701444141822 1.306163125523568 1.356243466735769 1.401587012236242 1.441872289670057 1.476814211507408 1.506166203790533 1.529722045866768 1.547317407176491 1.558831069461643 1.564185825147829 1.563349045109054 1.556332911530453 1.543194314128037 1.556332911530453 1.563349045109054 1.564185825147829 1.558831069461643 1.547317407176491 1.529722045866768 1.506166203790533 1.476814211507408 1.441872289670057 1.401587012236242 1.356243466735770 1.306163125523568 1.251701444141822 1.193245204983588 1.131209626381200 1.066035259020427 0.998184693193544 0.928139101836145 0.856394645536185 0.785583845397452 0.750159505062004 0.712285756465178 0.672062435252130 0.629601412241209 0.585026111790803 0.538470952662359 0.490080714910548 0.440009836877529 0.388421646881348 0.335487534671935 0.281386068170700 0.226302061414674 0.170425599985654 0.113951030519486 0.057075921155335 0.000000000000000 +0.000000000000000 -0.057031787253890 -0.113856755153302 -0.170269225824439 -0.226065796490925 -0.281046457420727 -0.335015686513928 -0.387783513014551 -0.439166543059021 -0.488988940055799 -0.537083353225959 -0.583291788017406 -0.627466412536336 -0.669470294611935 -0.709178064623657 -0.771033324204726 -0.849403749411865 -0.927056834992462 -1.003443807616933 -1.078023874859966 -1.150268263751664 -1.219664171151220 -1.285718596017970 -1.347962024549074 -1.405951940264514 -1.459276132445856 -1.507555777862692 -1.550448272438683 -1.587649791404205 -1.618897558540755 -1.643971807330097 -1.662697419154673 -1.674945226148328 -1.680632968838369 -1.679725901338179 -1.672237039526182 -1.658227050351406 -1.672237039526181 -1.679725901338176 -1.680632968838367 -1.674945226148327 -1.662697419154672 -1.643971807330096 -1.618897558540755 -1.587649791404205 -1.550448272438682 -1.507555777862692 -1.459276132445853 -1.405951940264509 -1.347962024549076 -1.285718596017970 -1.219664171151227 -1.150268263751664 -1.078023874859962 -1.003443807616934 -0.927056834992463 -0.849403749411882 -0.771033324204727 -0.709178064623627 -0.669470294611909 -0.627466412536338 -0.583291788017407 -0.537083353225962 -0.488988940055800 -0.439166543059013 -0.387783513014547 -0.335015686513929 -0.281046457420740 -0.226065796490926 -0.170269225824445 -0.113856755153297 -0.057031787253895 0.000000000000000 0.057031787253887 0.113856755153300 0.170269225824446 0.226065796490931 0.281046457420725 0.335015686513926 0.387783513014549 0.439166543059020 0.488988940055802 0.537083353225958 0.583291788017403 0.627466412536335 0.669470294611935 0.709178064623657 0.771033324204734 0.849403749411862 0.927056834992461 1.003443807616931 1.078023874859964 1.150268263751665 1.219664171151230 1.285718596017971 1.347962024549073 1.405951940264513 1.459276132445854 1.507555777862707 1.550448272438683 1.587649791404203 1.618897558540754 1.643971807330097 1.662697419154670 1.674945226148328 1.680632968838367 1.679725901338183 1.672237039526184 1.658227050351406 1.672237039526184 1.679725901338183 1.680632968838367 1.674945226148328 1.662697419154672 1.643971807330097 1.618897558540754 1.587649791404204 1.550448272438682 1.507555777862707 1.459276132445855 1.405951940264513 1.347962024549073 1.285718596017970 1.219664171151230 1.150268263751665 1.078023874859964 1.003443807616931 0.927056834992461 0.849403749411885 0.771033324204734 0.709178064623656 0.669470294611935 0.627466412536335 0.583291788017403 0.537083353225964 0.488988940055802 0.439166543059019 0.387783513014549 0.335015686513926 0.281046457420725 0.226065796490931 0.170269225824446 0.113856755153300 0.057031787253887 0.000000000000000 +0.000000000000000 -0.056651242610504 -0.113090489257568 -0.169106940222562 -0.224492179966482 -0.279041348506323 -0.332554288107929 -0.384836657353191 -0.435701004881992 -0.484967795408417 -0.532466380965648 -0.578035910739268 -0.621526173305621 -0.665230711408927 -0.747978031395458 -0.831139186684716 -0.914128752644380 -0.996361046729377 -1.077254498472069 -1.156235991319946 -1.232745143437470 -1.306238495047283 -1.376193570588566 -1.442112784919849 -1.503527163969282 -1.559999851643519 -1.611129376423355 -1.656552652896077 -1.695947695484020 -1.729036023809903 -1.755584741479823 -1.775408272538863 -1.788369742453689 -1.794381993170715 -1.793408224576654 -1.785462257519578 -1.770608416422573 -1.785462257519578 -1.793408224576654 -1.794381993170715 -1.788369742453690 -1.775408272538863 -1.755584741479822 -1.729036023809903 -1.695947695484030 -1.656552652896076 -1.611129376423367 -1.559999851643517 -1.503527163969269 -1.442112784919857 -1.376193570588566 -1.306238495047287 -1.232745143437477 -1.156235991319905 -1.077254498472071 -0.996361046729382 -0.914128752644381 -0.831139186684717 -0.747978031395427 -0.665230711408924 -0.621526173305622 -0.578035910739290 -0.532466380965649 -0.484967795408421 -0.435701004881985 -0.384836657353188 -0.332554288107930 -0.279041348506325 -0.224492179966486 -0.169106940222571 -0.113090489257562 -0.056651242610506 0.000000000000000 0.056651242610499 0.113090489257565 0.169106940222577 0.224492179966487 0.279041348506321 0.332554288107927 0.384836657353190 0.435701004881986 0.484967795408423 0.532466380965624 0.578035910739266 0.621526173305617 0.665230711408925 0.747978031395443 0.831139186684720 0.914128752644374 0.996361046729354 1.077254498472065 1.156235991319945 1.232745143437479 1.306238495047288 1.376193570588569 1.442112784919848 1.503527163969282 1.559999851643519 1.611129376423368 1.656552652896081 1.695947695483940 1.729036023809900 1.755584741479822 1.775408272538863 1.788369742453689 1.794381993170713 1.793408224576657 1.785462257519578 1.770608416422573 1.785462257519578 1.793408224576656 1.794381993170713 1.788369742453689 1.775408272538863 1.755584741479822 1.729036023809901 1.695947695483940 1.656552652896081 1.611129376423368 1.559999851643519 1.503527163969282 1.442112784919848 1.376193570588550 1.306238495047288 1.232745143437477 1.156235991319945 1.077254498472065 0.996361046729354 0.914128752644382 0.831139186684720 0.747978031395443 0.665230711408925 0.621526173305617 0.578035910739266 0.532466380965653 0.484967795408423 0.435701004881986 0.384836657353190 0.332554288107927 0.279041348506321 0.224492179966487 0.169106940222577 0.113090489257565 0.056651242610499 0.000000000000000 +0.000000000000000 -0.055937183399694 -0.111658064578442 -0.166947588875262 -0.221593188013267 -0.275386001517027 -0.328122072182047 -0.379603507248235 -0.429639597184523 -0.478047884307216 -0.524655173828100 -0.569298480356058 -0.628881366266895 -0.715007030096871 -0.802183458511645 -0.889798394532392 -0.977234702640585 -1.063874971007948 -1.149106118942751 -1.232323974661975 -1.312937788716400 -1.390374648880709 -1.464083763062580 -1.533540577782593 -1.598250701020216 -1.657753599703377 -1.711626043824040 -1.759485271085274 -1.800991848101628 -1.835852206475706 -1.863820834540106 -1.884702108165644 -1.898351746773008 -1.904677883529924 -1.903641741641279 -1.895257911630270 -1.879594227532162 -1.895257911630271 -1.903641741641279 -1.904677883529920 -1.898351746773007 -1.884702108165644 -1.863820834540105 -1.835852206475707 -1.800991848101628 -1.759485271085277 -1.711626043824040 -1.657753599703351 -1.598250701020209 -1.533540577782593 -1.464083763062581 -1.390374648880710 -1.312937788716404 -1.232323974661957 -1.149106118942752 -1.063874971007951 -0.977234702640634 -0.889798394532394 -0.802183458511639 -0.715007030096868 -0.628881366266907 -0.569298480356059 -0.524655173828104 -0.478047884307217 -0.429639597184516 -0.379603507248225 -0.328122072182049 -0.275386001517028 -0.221593188013271 -0.166947588875264 -0.111658064578431 -0.055937183399696 0.000000000000000 0.055937183399688 0.111658064578439 0.166947588875266 0.221593188013272 0.275386001517025 0.328122072182045 0.379603507248227 0.429639597184521 0.478047884307217 0.524655173828099 0.569298480356056 0.628881366266893 0.715007030096870 0.802183458511642 0.889798394532409 0.977234702640581 1.063874971007945 1.149106118942749 1.232323974661971 1.312937788716408 1.390374648880767 1.464083763062584 1.533540577782589 1.598250701020212 1.657753599703373 1.711626043824047 1.759485271085278 1.800991848101627 1.835852206475706 1.863820834540105 1.884702108165644 1.898351746773005 1.904677883529919 1.903641741641279 1.895257911630270 1.879594227532162 1.895257911630270 1.903641741641279 1.904677883529919 1.898351746773005 1.884702108165644 1.863820834540105 1.835852206475706 1.800991848101626 1.759485271085277 1.711626043824058 1.657753599703376 1.598250701020213 1.533540577782589 1.464083763062580 1.390374648880767 1.312937788716407 1.232323974661971 1.149106118942748 1.063874971007945 0.977234702640643 0.889798394532409 0.802183458511642 0.715007030096870 0.628881366266893 0.569298480356056 0.524655173828104 0.478047884307217 0.429639597184521 0.379603507248227 0.328122072182045 0.275386001517025 0.221593188013272 0.166947588875266 0.111658064578439 0.055937183399688 0.000000000000000 +0.000000000000000 -0.054895044043216 -0.109570382732652 -0.163807605750129 -0.217390883710500 -0.270108235850596 -0.321752770575715 -0.372123890131831 -0.421028450939180 -0.468281871454034 -0.513709179816210 -0.584527417376775 -0.673090359707318 -0.763389300854868 -0.854791953425708 -0.946656123567311 -1.038334496733533 -1.129179465483244 -1.218547962756896 -1.305806264029151 -1.390334721964997 -1.471532397714338 -1.548821553758071 -1.621651974268033 -1.689505080243493 -1.751897808245117 -1.808386223335539 -1.858568838850818 -1.902089617848577 -1.938640633495017 -1.967964368234686 -1.989855634331759 -2.004163101239573 -2.010790418240518 -2.009696923866345 -2.000897936747218 -1.984464625709002 -2.000897936747218 -2.009696923866344 -2.010790418240526 -2.004163101239593 -1.989855634331759 -1.967964368234678 -1.938640633495020 -1.902089617848576 -1.858568838850821 -1.808386223335539 -1.751897808245115 -1.689505080243485 -1.621651974268059 -1.548821553758088 -1.471532397714340 -1.390334721964995 -1.305806264029149 -1.218547962756901 -1.129179465483248 -1.038334496733534 -0.946656123567316 -0.854791953425687 -0.763389300854849 -0.673090359707329 -0.584527417376777 -0.513709179816212 -0.468281871454039 -0.421028450939155 -0.372123890131810 -0.321752770575729 -0.270108235850598 -0.217390883710513 -0.163807605750136 -0.109570382732640 -0.054895044043219 0.000000000000000 0.054895044043211 0.109570382732643 0.163807605750137 0.217390883710515 0.270108235850594 0.321752770575714 0.372123890131829 0.421028450939178 0.468281871454040 0.513709179816209 0.584527417376773 0.673090359707316 0.763389300854866 0.854791953425689 0.946656123567318 1.038334496733532 1.129179465483243 1.218547962756878 1.305806264029150 1.390334721965055 1.471532397714343 1.548821553758095 1.621651974268032 1.689505080243487 1.751897808245116 1.808386223335539 1.858568838850820 1.902089617848577 1.938640633495017 1.967964368234679 1.989855634331758 2.004163101239591 2.010790418240538 2.009696923866345 2.000897936747218 1.984464625709002 2.000897936747218 2.009696923866345 2.010790418240538 2.004163101239591 1.989855634331758 1.967964368234685 1.938640633495017 1.902089617848577 1.858568838850820 1.808386223335542 1.751897808245116 1.689505080243488 1.621651974268033 1.548821553758068 1.471532397714343 1.390334721965055 1.305806264029150 1.218547962756878 1.129179465483243 1.038334496733537 0.946656123567318 0.854791953425689 0.763389300854866 0.673090359707316 0.584527417376773 0.513709179816216 0.468281871454040 0.421028450939178 0.372123890131829 0.321752770575714 0.270108235850594 0.217390883710515 0.163807605750137 0.109570382732643 0.054895044043211 0.000000000000000 +0.000000000000000 -0.053532755850835 -0.106843332239620 -0.159710888014735 -0.211917249131349 -0.263248218490550 -0.313494857520070 -0.362454730406535 -0.409933102168429 -0.455744082103565 -0.533454433419881 -0.623425841706802 -0.715855110319708 -0.810097453621139 -0.905492827867982 -1.001370845664464 -1.097055772121830 -1.191871564903287 -1.285146919990929 -1.376220284963096 -1.464444801810012 -1.549193141845425 -1.629862196084688 -1.705877585552645 -1.776697957348160 -1.841819033910063 -1.900777384805932 -1.953153892459661 -1.998576885561428 -2.036724916418169 -2.067329161206080 -2.090175424944610 -2.105105736011875 -2.112019518132867 -2.110874330980075 -2.101686173795665 -2.084529349763349 -2.101686173795665 -2.110874330980074 -2.112019518132867 -2.105105736011875 -2.090175424944610 -2.067329161206071 -2.036724916418169 -1.998576885561432 -1.953153892459662 -1.900777384805933 -1.841819033910054 -1.776697957348068 -1.705877585552667 -1.629862196084689 -1.549193141845427 -1.464444801810024 -1.376220284963080 -1.285146919990935 -1.191871564903289 -1.097055772121835 -1.001370845664466 -0.905492827867975 -0.810097453621128 -0.715855110319721 -0.623425841706804 -0.533454433419884 -0.455744082103567 -0.409933102168422 -0.362454730406532 -0.313494857520071 -0.263248218490552 -0.211917249131363 -0.159710888014737 -0.106843332239609 -0.053532755850841 0.000000000000000 0.053532755850833 0.106843332239612 0.159710888014738 0.211917249131364 0.263248218490548 0.313494857520068 0.362454730406533 0.409933102168423 0.455744082103568 0.533454433419842 0.623425841706790 0.715855110319706 0.810097453621137 0.905492827867981 1.001370845664471 1.097055772121829 1.191871564903283 1.285146919990926 1.376220284963081 1.464444801810029 1.549193141845429 1.629862196084694 1.705877585552642 1.776697957348157 1.841819033910055 1.900777384805942 1.953153892459665 1.998576885561405 2.036724916418164 2.067329161206071 2.090175424944610 2.105105736011875 2.112019518132863 2.110874330980074 2.101686173795665 2.084529349763350 2.101686173795665 2.110874330980074 2.112019518132863 2.105105736011875 2.090175424944610 2.067329161206071 2.036724916418164 1.998576885561405 1.953153892459665 1.900777384805943 1.841819033910055 1.776697957348158 1.705877585552644 1.629862196084662 1.549193141845429 1.464444801810029 1.376220284963081 1.285146919990926 1.191871564903283 1.097055772121837 1.001370845664471 0.905492827867981 0.810097453621136 0.715855110319706 0.623425841706790 0.533454433419888 0.455744082103568 0.409933102168423 0.362454730406533 0.313494857520068 0.263248218490548 0.211917249131364 0.159710888014738 0.106843332239612 0.053532755850833 0.000000000000000 +0.000000000000000 -0.051860686658270 -0.103497667600237 -0.154688614164690 -0.205213941940037 -0.254858158311197 -0.303411180719699 -0.350669616216276 -0.396437993175972 -0.477118888595801 -0.567404430721778 -0.660893360657947 -0.756936496301897 -0.854863816527136 -0.953989444473918 -1.053616754397581 -1.153043563423455 -1.251567368904758 -1.348490591728313 -1.443125785858136 -1.534800774659933 -1.622863675097176 -1.706687771735155 -1.785676203626215 -1.859266428563074 -1.926934430872469 -1.988198640867902 -2.042623536259120 -2.089822898233661 -2.129462697539421 -2.161263588705019 -2.185002993507380 -2.200516757910062 -2.207700369933380 -2.206509729246803 -2.196961462676193 -2.179132783262236 -2.196961462676193 -2.206509729246803 -2.207700369933379 -2.200516757910061 -2.185002993507380 -2.161263588705020 -2.129462697539424 -2.089822898233665 -2.042623536259119 -1.988198640867904 -1.926934430872457 -1.859266428563071 -1.785676203626308 -1.706687771735165 -1.622863675097178 -1.534800774659934 -1.443125785858119 -1.348490591728317 -1.251567368904775 -1.153043563423458 -1.053616754397604 -0.953989444473911 -0.854863816527114 -0.756936496301899 -0.660893360657950 -0.567404430721792 -0.477118888595805 -0.396437993175969 -0.350669616216266 -0.303411180719700 -0.254858158311199 -0.205213941940041 -0.154688614164697 -0.103497667600226 -0.051860686658272 0.000000000000000 0.051860686658264 0.103497667600229 0.154688614164699 0.205213941940043 0.254858158311195 0.303411180719697 0.350669616216276 0.396437993175970 0.477118888595807 0.567404430721775 0.660893360657945 0.756936496301894 0.854863816527134 0.953989444473917 1.053616754397611 1.153043563423452 1.251567368904756 1.348490591728311 1.443125785858123 1.534800774659960 1.622863675097188 1.706687771735166 1.785676203626195 1.859266428563074 1.926934430872468 1.988198640867911 2.042623536259138 2.089822898233657 2.129462697539418 2.161263588705022 2.185002993507378 2.200516757910068 2.207700369933374 2.206509729246804 2.196961462676191 2.179132783262236 2.196961462676191 2.206509729246804 2.207700369933374 2.200516757910066 2.185002993507379 2.161263588705022 2.129462697539415 2.089822898233657 2.042623536259138 1.988198640867912 1.926934430872468 1.859266428563074 1.785676203626207 1.706687771735153 1.622863675097179 1.534800774659959 1.443125785858123 1.348490591728311 1.251567368904754 1.153043563423467 1.053616754397611 0.953989444473917 0.854863816527134 0.756936496301894 0.660893360657945 0.567404430721795 0.477118888595807 0.396437993175970 0.350669616216276 0.303411180719697 0.254858158311195 0.205213941940043 0.154688614164699 0.103497667600229 0.051860686658264 0.000000000000000 +0.000000000000000 -0.049891561921692 -0.099558851342571 -0.148779006736550 -0.197331978351843 -0.245001908736559 -0.291578483043754 -0.336858239396093 -0.417105857190210 -0.506570078272665 -0.599992962514764 -0.696729423339031 -0.796107827947003 -0.897434985899359 -1.000001304524714 -1.103086072149789 -1.205962829165351 -1.307904786268650 -1.408190248855234 -1.506108006482314 -1.600962646582238 -1.692079752172970 -1.778810944190354 -1.860538730237239 -1.936681123011737 -2.006695993419775 -2.070085125387050 -2.126397941645997 -2.175234872268646 -2.216250340422644 -2.249155342733824 -2.273719604710526 -2.289773294910585 -2.297208284876645 -2.295978945314923 -2.286102472506725 -2.267658742510726 -2.286102472506721 -2.295978945314923 -2.297208284876643 -2.289773294910584 -2.273719604710527 -2.249155342733823 -2.216250340422647 -2.175234872268648 -2.126397941645998 -2.070085125387059 -2.006695993419769 -1.936681123011728 -1.860538730237241 -1.778810944190366 -1.692079752172977 -1.600962646582242 -1.506108006482300 -1.408190248855236 -1.307904786268655 -1.205962829165355 -1.103086072149794 -1.000001304524688 -0.897434985899331 -0.796107827947010 -0.696729423339033 -0.599992962514776 -0.506570078272670 -0.417105857190183 -0.336858239396082 -0.291578483043756 -0.245001908736561 -0.197331978351845 -0.148779006736551 -0.099558851342566 -0.049891561921695 0.000000000000000 0.049891561921687 0.099558851342569 0.148779006736559 0.197331978351846 0.245001908736557 0.291578483043752 0.336858239396091 0.417105857190185 0.506570078272672 0.599992962514762 0.696729423339029 0.796107827946996 0.897434985899354 1.000001304524707 1.103086072149797 1.205962829165350 1.307904786268634 1.408190248855231 1.506108006482313 1.600962646582253 1.692079752172980 1.778810944190369 1.860538730237237 1.936681123011735 2.006695993419773 2.070085125387060 2.126397941646000 2.175234872268644 2.216250340422637 2.249155342733822 2.273719604710526 2.289773294910583 2.297208284876643 2.295978945314920 2.286102472506725 2.267658742510726 2.286102472506725 2.295978945314920 2.297208284876643 2.289773294910582 2.273719604710526 2.249155342733822 2.216250340422637 2.175234872268645 2.126397941646000 2.070085125387060 2.006695993419773 1.936681123011735 1.860538730237238 1.778810944190352 1.692079752172979 1.600962646582253 1.506108006482313 1.408190248855231 1.307904786268634 1.205962829165410 1.103086072149797 1.000001304524705 0.897434985899353 0.796107827946994 0.696729423339029 0.599992962514779 0.506570078272672 0.417105857190185 0.336858239396091 0.291578483043752 0.245001908736557 0.197331978351846 0.148779006736559 0.099558851342569 0.049891561921687 0.000000000000000 +0.000000000000000 -0.047640367869342 -0.095056860236679 -0.142027041411147 -0.188331344868941 -0.233754481777249 -0.278086818466337 -0.355083107439496 -0.442575318898456 -0.534776699464084 -0.631054947071876 -0.730745488866423 -0.833156409250505 -0.937573588642668 -1.043266014076538 -1.149491221461172 -1.255500828314833 -1.360546115088196 -1.463883612818508 -1.564780654798707 -1.662520850213728 -1.756409438280041 -1.845778482328303 -1.929991864475640 -2.008450043044654 -2.080594536681883 -2.145912101198126 -2.203938567483632 -2.254262311417384 -2.296527329483372 -2.330435896794518 -2.355750787391908 -2.372297040010392 -2.379963255945885 -2.378702419211155 -2.368532232791591 -2.349534968481563 -2.368532232791591 -2.378702419211148 -2.379963255945886 -2.372297040010392 -2.355750787391911 -2.330435896794520 -2.296527329483371 -2.254262311417384 -2.203938567483631 -2.145912101198127 -2.080594536681877 -2.008450043044654 -1.929991864475642 -1.845778482328305 -1.756409438280043 -1.662520850213731 -1.564780654798702 -1.463883612818509 -1.360546115088211 -1.255500828314851 -1.149491221461183 -1.043266014076531 -0.937573588642660 -0.833156409250507 -0.730745488866439 -0.631054947071887 -0.534776699464087 -0.442575318898450 -0.355083107439488 -0.278086818466339 -0.233754481777251 -0.188331344868943 -0.142027041411148 -0.095056860236674 -0.047640367869345 0.000000000000000 0.047640367869337 0.095056860236676 0.142027041411150 0.188331344868944 0.233754481777247 0.278086818466335 0.355083107439493 0.442575318898454 0.534776699464102 0.631054947071874 0.730745488866421 0.833156409250502 0.937573588642662 1.043266014076536 1.149491221461185 1.255500828314827 1.360546115088193 1.463883612818494 1.564780654798706 1.662520850213762 1.756409438280043 1.845778482328315 1.929991864475639 2.008450043044653 2.080594536681882 2.145912101198159 2.203938567483663 2.254262311417382 2.296527329483375 2.330435896794520 2.355750787391909 2.372297040010392 2.379963255945881 2.378702419211155 2.368532232791604 2.349534968481563 2.368532232791599 2.378702419211155 2.379963255945886 2.372297040010392 2.355750787391909 2.330435896794520 2.296527329483375 2.254262311417382 2.203938567483660 2.145912101198159 2.080594536681882 2.008450043044653 1.929991864475639 1.845778482328302 1.756409438280042 1.662520850213758 1.564780654798706 1.463883612818494 1.360546115088192 1.255500828314854 1.149491221461185 1.043266014076535 0.937573588642662 0.833156409250502 0.730745488866420 0.631054947071890 0.534776699464102 0.442575318898454 0.355083107439493 0.278086818466335 0.233754481777247 0.188331344868944 0.142027041411150 0.095056860236676 0.047640367869337 0.000000000000000 +0.000000000000000 -0.045124237447263 -0.090025957153239 -0.134484104721556 -0.178280541746865 -0.221201477143833 -0.292752978241202 -0.377133915128310 -0.466955019334830 -0.561605457648605 -0.660436496121653 -0.762766301007595 -0.867884994050883 -0.975059923908353 -1.083541113834573 -1.192566844414713 -1.301369329094772 -1.409180439546826 -1.515237437520129 -1.618788669772460 -1.719099182949133 -1.815456215877891 -1.907174527673489 -1.993601521283643 -2.074122123660054 -2.148163385574749 -2.215198766232058 -2.274752070210538 -2.326401006906397 -2.369780345512646 -2.404584641634519 -2.430570514890220 -2.447558460253770 -2.455434179431931 -2.454149422208023 -2.443722331405183 -2.424237288885157 -2.443722331405182 -2.454149422208022 -2.455434179431935 -2.447558460253770 -2.430570514890212 -2.404584641634517 -2.369780345512653 -2.326401006906397 -2.274752070210547 -2.215198766232062 -2.148163385574747 -2.074122123660046 -1.993601521283675 -1.907174527673489 -1.815456215877914 -1.719099182949136 -1.618788669772448 -1.515237437520130 -1.409180439546827 -1.301369329094774 -1.192566844414717 -1.083541113834562 -0.975059923908326 -0.867884994050885 -0.762766301007596 -0.660436496121665 -0.561605457648609 -0.466955019334811 -0.377133915128303 -0.292752978241221 -0.221201477143834 -0.178280541746867 -0.134484104721558 -0.090025957153236 -0.045124237447268 0.000000000000000 0.045124237447260 0.090025957153237 0.134484104721560 0.178280541746880 0.221201477143831 0.292752978241200 0.377133915128308 0.466955019334826 0.561605457648623 0.660436496121651 0.762766301007591 0.867884994050880 0.975059923908350 1.083541113834567 1.192566844414735 1.301369329094770 1.409180439546824 1.515237437520125 1.618788669772457 1.719099182949145 1.815456215877925 1.907174527673491 1.993601521283641 2.074122123660052 2.148163385574747 2.215198766232064 2.274752070210547 2.326401006906392 2.369780345512650 2.404584641634517 2.430570514890219 2.447558460253768 2.455434179431931 2.454149422208024 2.443722331405183 2.424237288885157 2.443722331405183 2.454149422208024 2.455434179431931 2.447558460253768 2.430570514890220 2.404584641634517 2.369780345512650 2.326401006906392 2.274752070210546 2.215198766232064 2.148163385574747 2.074122123660052 1.993601521283641 1.907174527673488 1.815456215877925 1.719099182949136 1.618788669772457 1.515237437520125 1.409180439546823 1.301369329094778 1.192566844414735 1.083541113834567 0.975059923908350 0.867884994050880 0.762766301007591 0.660436496121667 0.561605457648623 0.466955019334826 0.377133915128308 0.292752978241200 0.221201477143831 0.178280541746880 0.134484104721560 0.090025957153237 0.045124237447260 0.000000000000000 +0.000000000000000 -0.042362319927254 -0.084504430302467 -0.126207602970534 -0.167256061666220 -0.231803486793328 -0.311971983880159 -0.398277566877268 -0.490139346693931 -0.586933110339360 -0.687995928964070 -0.792631062798886 -0.900113125930284 -1.009693471866501 -1.120605759164693 -1.232071655012161 -1.343306633599558 -1.453525825394708 -1.561949873032224 -1.667810749475373 -1.770357494385907 -1.868861825252136 -1.962623580768411 -2.050975955228967 -2.133290484277439 -2.208981744238080 -2.277511729421562 -2.338393874242539 -2.391196689673356 -2.435546986488137 -2.471132660877750 -2.497705021344474 -2.515080639254975 -2.523142709050318 -2.521841907828125 -2.511196747812625 -2.491293419070012 -2.511196747812628 -2.521841907828127 -2.523142709050318 -2.515080639254975 -2.497705021344446 -2.471132660877719 -2.435546986488137 -2.391196689673360 -2.338393874242540 -2.277511729421567 -2.208981744238068 -2.133290484277437 -2.050975955228968 -1.962623580768413 -1.868861825252139 -1.770357494385908 -1.667810749475359 -1.561949873032236 -1.453525825394711 -1.343306633599560 -1.232071655012180 -1.120605759164683 -1.009693471866495 -0.900113125930291 -0.792631062798894 -0.687995928964073 -0.586933110339369 -0.490139346693913 -0.398277566877261 -0.311971983880166 -0.231803486793338 -0.167256061666225 -0.126207602970536 -0.084504430302461 -0.042362319927257 0.000000000000000 0.042362319927249 0.084504430302463 0.126207602970538 0.167256061666227 0.231803486793326 0.311971983880152 0.398277566877263 0.490139346693916 0.586933110339382 0.687995928964060 0.792631062798884 0.900113125930282 1.009693471866497 1.120605759164688 1.232071655012184 1.343306633599554 1.453525825394705 1.561949873032221 1.667810749475370 1.770357494385919 1.868861825252142 1.962623580768416 2.050975955228964 2.133290484277439 2.208981744238071 2.277511729421569 2.338393874242547 2.391196689673359 2.435546986488136 2.471132660877719 2.497705021344472 2.515080639254982 2.523142709050318 2.521841907828120 2.511196747812625 2.491293419070012 2.511196747812625 2.521841907828120 2.523142709050318 2.515080639254982 2.497705021344473 2.471132660877725 2.435546986488136 2.391196689673359 2.338393874242547 2.277511729421569 2.208981744238071 2.133290484277439 2.050975955228964 1.962623580768404 1.868861825252141 1.770357494385918 1.667810749475370 1.561949873032221 1.453525825394705 1.343306633599582 1.232071655012184 1.120605759164688 1.009693471866497 0.900113125930282 0.792631062798884 0.687995928964088 0.586933110339381 0.490139346693916 0.398277566877263 0.311971983880152 0.231803486793326 0.167256061666227 0.126207602970538 0.084504430302463 0.042362319927249 0.000000000000000 +0.000000000000000 -0.039375635169326 -0.078534301837686 -0.117260525333909 -0.173860135746016 -0.248779069726780 -0.330483908737241 -0.418431772572659 -0.512031350098293 -0.610647250958766 -0.713604694786601 -0.820194502501166 -0.929678351985344 -1.041294258411398 -1.154262237770543 -1.267790110762273 -1.381079403124040 -1.493331297740583 -1.603752593471715 -1.711561625578079 -1.815994102907477 -1.916308817631093 -2.011793184277706 -2.101768566105727 -2.185595348458608 -2.262677720669624 -2.332468130282628 -2.394471375845475 -2.448248307267425 -2.493419105708792 -2.529666118160748 -2.556736225247841 -2.574442724327931 -2.582666713640547 -2.581357967039637 -2.570535292710603 -2.550286373186025 -2.570535292710603 -2.581357967039629 -2.582666713640547 -2.574442724327947 -2.556736225247839 -2.529666118160750 -2.493419105708793 -2.448248307267425 -2.394471375845505 -2.332468130282632 -2.262677720669613 -2.185595348458600 -2.101768566105734 -2.011793184277709 -1.916308817631102 -1.815994102907479 -1.711561625578042 -1.603752593471719 -1.493331297740587 -1.381079403124044 -1.267790110762274 -1.154262237770538 -1.041294258411368 -0.929678351985346 -0.820194502501169 -0.713604694786618 -0.610647250958778 -0.512031350098288 -0.418431772572650 -0.330483908737248 -0.248779069726791 -0.173860135746020 -0.117260525333911 -0.078534301837681 -0.039375635169330 0.000000000000000 0.039375635169323 0.078534301837685 0.117260525333912 0.173860135746030 0.248779069726778 0.330483908737240 0.418431772572657 0.512031350098291 0.610647250958781 0.713604694786591 0.820194502501160 0.929678351985342 1.041294258411393 1.154262237770542 1.267790110762278 1.381079403124017 1.493331297740570 1.603752593471684 1.711561625578076 1.815994102907480 1.916308817631105 2.011793184277746 2.101768566105698 2.185595348458607 2.262677720669616 2.332468130282636 2.394471375845507 2.448248307267421 2.493419105708790 2.529666118160750 2.556736225247840 2.574442724327951 2.582666713640546 2.581357967039635 2.570535292710604 2.550286373186025 2.570535292710604 2.581357967039636 2.582666713640547 2.574442724327950 2.556736225247841 2.529666118160750 2.493419105708790 2.448248307267423 2.394471375845506 2.332468130282635 2.262677720669616 2.185595348458608 2.101768566105698 2.011793184277703 1.916308817631105 1.815994102907480 1.711561625578076 1.603752593471684 1.493331297740570 1.381079403124046 1.267790110762278 1.154262237770541 1.041294258411393 0.929678351985342 0.820194502501160 0.713604694786620 0.610647250958781 0.512031350098291 0.418431772572657 0.330483908737240 0.248779069726778 0.173860135746030 0.117260525333912 0.078534301837684 0.039375635169323 0.000000000000000 +0.000000000000000 -0.036186913647904 -0.072161008041368 -0.120439864320910 -0.189160628816921 -0.265254922560740 -0.348225335746194 -0.437521340389071 -0.532543326128504 -0.632647011365567 -0.737148196457925 -0.845327823081294 -0.956437301534410 -1.069704065720227 -1.184337313796545 -1.299533891071690 -1.414484270630556 -1.528378586425861 -1.640412673162905 -1.749794067245524 -1.855747923339922 -1.957522801746017 -2.054396282738403 -2.145680365349618 -2.230726609694059 -2.308930983877466 -2.379738378769574 -2.442646756438275 -2.497210900816599 -2.543045742193227 -2.579829230344043 -2.607304734551337 -2.625282952338720 -2.633643312482126 -2.632334861689402 -2.621376628258913 -2.600857459998316 -2.621376628258907 -2.632334861689402 -2.633643312482126 -2.625282952338719 -2.607304734551341 -2.579829230344044 -2.543045742193229 -2.497210900816599 -2.442646756438289 -2.379738378769573 -2.308930983877458 -2.230726609694056 -2.145680365349619 -2.054396282738404 -1.957522801746020 -1.855747923339959 -1.749794067245511 -1.640412673162908 -1.528378586425864 -1.414484270630559 -1.299533891071694 -1.184337313796525 -1.069704065720198 -0.956437301534415 -0.845327823081301 -0.737148196457927 -0.632647011365579 -0.532543326128497 -0.437521340389053 -0.348225335746200 -0.265254922560742 -0.189160628816923 -0.120439864320916 -0.072161008041365 -0.036186913647907 0.000000000000000 0.036186913647900 0.072161008041366 0.120439864320927 0.189160628816926 0.265254922560738 0.348225335746184 0.437521340389057 0.532543326128500 0.632647011365582 0.737148196457916 0.845327823081292 0.956437301534408 1.069704065720222 1.184337313796531 1.299533891071696 1.414484270630530 1.528378586425859 1.640412673162904 1.749794067245515 1.855747923339963 1.957522801746029 2.054396282738414 2.145680365349617 2.230726609694057 2.308930983877466 2.379738378769588 2.442646756438291 2.497210900816599 2.543045742193228 2.579829230344044 2.607304734551335 2.625282952338718 2.633643312482150 2.632334861689403 2.621376628258913 2.600857459998316 2.621376628258913 2.632334861689403 2.633643312482150 2.625282952338718 2.607304734551335 2.579829230344044 2.543045742193228 2.497210900816599 2.442646756438291 2.379738378769588 2.308930983877466 2.230726609694057 2.145680365349617 2.054396282738401 1.957522801746028 1.855747923339962 1.749794067245515 1.640412673162904 1.528378586425859 1.414484270630573 1.299533891071696 1.184337313796530 1.069704065720222 0.956437301534408 0.845327823081292 0.737148196457945 0.632647011365582 0.532543326128500 0.437521340389057 0.348225335746184 0.265254922560738 0.189160628816926 0.120439864320927 0.072161008041366 0.036186913647900 0.000000000000000 +0.000000000000000 -0.032820423459162 -0.072908519867030 -0.134593341155764 -0.204166298249028 -0.281182131401287 -0.365138290406833 -0.455478600198014 -0.551597336093117 -0.652843677978680 -0.758526509823569 -0.867919528290220 -0.980266621851239 -1.094787479755452 -1.210683388433057 -1.327143171496421 -1.443349228393258 -1.558483626011583 -1.671734197124366 -1.782300599502032 -1.889400289811135 -1.992274367058731 -2.090193241320558 -2.182462084819135 -2.268426024053876 -2.347475033654421 -2.419048494881961 -2.482639384245185 -2.537798060503896 -2.584135621371988 -2.621326804501833 -2.649112410778415 -2.667301231586742 -2.675771465463242 -2.674471613430433 -2.663420846256092 -2.642708840889979 -2.663420846256092 -2.674471613430433 -2.675771465463233 -2.667301231586742 -2.649112410778419 -2.621326804501837 -2.584135621372006 -2.537798060503895 -2.482639384245185 -2.419048494881961 -2.347475033654412 -2.268426024053868 -2.182462084819137 -2.090193241320561 -1.992274367058735 -1.889400289811138 -1.782300599502019 -1.671734197124369 -1.558483626011589 -1.443349228393261 -1.327143171496423 -1.210683388433051 -1.094787479755424 -0.980266621851240 -0.867919528290242 -0.758526509823578 -0.652843677978683 -0.551597336093108 -0.455478600197995 -0.365138290406838 -0.281182131401289 -0.204166298249033 -0.134593341155767 -0.072908519867019 -0.032820423459164 0.000000000000000 0.032820423459158 0.072908519867024 0.134593341155773 0.204166298249042 0.281182131401285 0.365138290406831 0.455478600198010 0.551597336093114 0.652843677978696 0.758526509823567 0.867919528290213 0.980266621851236 1.094787479755448 1.210683388433055 1.327143171496427 1.443349228393244 1.558483626011552 1.671734197124355 1.782300599502029 1.889400289811147 1.992274367058741 2.090193241320561 2.182462084819130 2.268426024053868 2.347475033654413 2.419048494881961 2.482639384245185 2.537798060503894 2.584135621371987 2.621326804501837 2.649112410778419 2.667301231586742 2.675771465463256 2.674471613430438 2.663420846256092 2.642708840889979 2.663420846256092 2.674471613430438 2.675771465463255 2.667301231586742 2.649112410778419 2.621326804501837 2.584135621371988 2.537798060503894 2.482639384245185 2.419048494881963 2.347475033654413 2.268426024053869 2.182462084819132 2.090193241320550 1.992274367058740 1.889400289811147 1.782300599502029 1.671734197124355 1.558483626011552 1.443349228393286 1.327143171496427 1.210683388433054 1.094787479755448 0.980266621851236 0.867919528290213 0.758526509823580 0.652843677978696 0.551597336093114 0.455478600198010 0.365138290406831 0.281182131401285 0.204166298249042 0.134593341155773 0.072908519867024 0.032820423459158 0.000000000000000 +0.000000000000000 -0.032443116581448 -0.086384579879428 -0.148645531690925 -0.218838600756908 -0.296515552227839 -0.381170535339924 -0.472243770837726 -0.569125650388662 -0.671161217097068 -0.777654993320555 -0.887876119344394 -1.001063764099964 -1.116432767036624 -1.233179468490927 -1.350487684458260 -1.467534780563911 -1.583497799268909 -1.697559593933368 -1.808914923300135 -1.916776460250941 -2.020380669334405 -2.118993508551586 -2.211915912212925 -2.298489013335860 -2.378099066023720 -2.450182030540154 -2.514227786345439 -2.569783941183474 -2.616459207369753 -2.653926319711713 -2.681924472966591 -2.700261260391017 -2.708814098714245 -2.707531128765909 -2.696431584965702 -2.675605630911046 -2.696431584965702 -2.707531128765909 -2.708814098714237 -2.700261260391013 -2.681924472966597 -2.653926319711713 -2.616459207369760 -2.569783941183474 -2.514227786345440 -2.450182030540152 -2.378099066023712 -2.298489013335854 -2.211915912212937 -2.118993508551593 -2.020380669334407 -1.916776460250944 -1.808914923300122 -1.697559593933370 -1.583497799268910 -1.467534780563915 -1.350487684458264 -1.233179468490905 -1.116432767036617 -1.001063764099967 -0.887876119344396 -0.777654993320563 -0.671161217097079 -0.569125650388640 -0.472243770837718 -0.381170535339936 -0.296515552227846 -0.218838600756910 -0.148645531690930 -0.086384579879414 -0.032443116581451 0.000000000000000 0.032443116581444 0.086384579879417 0.148645531690934 0.218838600756913 0.296515552227831 0.381170535339919 0.472243770837724 0.569125650388654 0.671161217097094 0.777654993320535 0.887876119344388 1.001063764099961 1.116432767036623 1.233179468490924 1.350487684458265 1.467534780563895 1.583497799268906 1.697559593933358 1.808914923300132 1.916776460250953 2.020380669334415 2.118993508551596 2.211915912212923 2.298489013335857 2.378099066023720 2.450182030540154 2.514227786345438 2.569783941183474 2.616459207369734 2.653926319711712 2.681924472966596 2.700261260391007 2.708814098714237 2.707531128765916 2.696431584965702 2.675605630911046 2.696431584965702 2.707531128765916 2.708814098714237 2.700261260391007 2.681924472966596 2.653926319711712 2.616459207369734 2.569783941183474 2.514227786345439 2.450182030540154 2.378099066023720 2.298489013335857 2.211915912212923 2.118993508551586 2.020380669334415 1.916776460250953 1.808914923300132 1.697559593933358 1.583497799268906 1.467534780563944 1.350487684458265 1.233179468490924 1.116432767036623 1.001063764099961 0.887876119344388 0.777654993320566 0.671161217097094 0.569125650388654 0.472243770837724 0.381170535339919 0.296515552227831 0.218838600756913 0.148645531690932 0.086384579879417 0.032443116581444 0.000000000000000 +0.000000000000000 -0.045637236847402 -0.099933681812718 -0.162564513653636 -0.233141144513007 -0.311214009659618 -0.396275822260343 -0.487765268730060 -0.585071116850289 -0.687536705703304 -0.794464783558700 -0.905122657197055 -1.018747613780784 -1.134552574301872 -1.251731935868724 -1.369467558649798 -1.486934852184737 -1.603308915008803 -1.717770681123803 -1.829513026787408 -1.937746791385486 -2.041706666797585 -2.140656910655125 -2.233896840223291 -2.320766065295489 -2.400649420464790 -2.472981559413130 -2.537251176419581 -2.593004823113497 -2.639850291567605 -2.677459538111770 -2.705571125732931 -2.723992166575337 -2.732599749848192 -2.731341844348646 -2.720237668795567 -2.699377527202671 -2.720237668795567 -2.731341844348645 -2.732599749848186 -2.723992166575339 -2.705571125732930 -2.677459538111750 -2.639850291567605 -2.593004823113497 -2.537251176419581 -2.472981559413131 -2.400649420464783 -2.320766065295458 -2.233896840223299 -2.140656910655128 -2.041706666797622 -1.937746791385489 -1.829513026787368 -1.717770681123806 -1.603308915008807 -1.486934852184742 -1.369467558649814 -1.251731935868707 -1.134552574301854 -1.018747613780788 -0.905122657197078 -0.794464783558703 -0.687536705703307 -0.585071116850273 -0.487765268730040 -0.396275822260356 -0.311214009659626 -0.233141144513016 -0.162564513653640 -0.099933681812710 -0.045637236847404 0.000000000000000 0.045637236847398 0.099933681812712 0.162564513653648 0.233141144513019 0.311214009659617 0.396275822260338 0.487765268730043 0.585071116850276 0.687536705703309 0.794464783558696 0.905122657197048 1.018747613780779 1.134552574301859 1.251731935868711 1.369467558649818 1.486934852184727 1.603308915008792 1.717770681123802 1.829513026787405 1.937746791385498 2.041706666797625 2.140656910655136 2.233896840223289 2.320766065295458 2.400649420464788 2.472981559413131 2.537251176419581 2.593004823113495 2.639850291567605 2.677459538111750 2.705571125732930 2.723992166575362 2.732599749848190 2.731341844348652 2.720237668795567 2.699377527202671 2.720237668795567 2.731341844348651 2.732599749848189 2.723992166575362 2.705571125732930 2.677459538111750 2.639850291567605 2.593004823113496 2.537251176419581 2.472981559413137 2.400649420464788 2.320766065295459 2.233896840223289 2.140656910655126 2.041706666797625 1.937746791385497 1.829513026787405 1.717770681123802 1.603308915008792 1.486934852184745 1.369467558649818 1.251731935868711 1.134552574301859 1.018747613780779 0.905122657197048 0.794464783558710 0.687536705703309 0.585071116850276 0.487765268730043 0.396275822260338 0.311214009659617 0.233141144513019 0.162564513653648 0.099933681812712 0.045637236847398 0.000000000000000 +0.000000000000000 -0.066660230511820 -0.128727238449641 -0.199082770529595 -0.277324046999021 -0.362987512788179 -0.455552114349375 -0.554443016018814 -0.659035728092102 -0.768660615665624 -0.882607754393267 -1.000132096661248 -1.120458909313820 -1.242789441988250 -1.366306783353750 -1.490181861107847 -1.613579540481080 -1.735664775238146 -1.855608764753349 -1.972595070676980 -2.085825647006832 -2.194526738020086 -2.297954599513408 -2.395401000128512 -2.486198461197376 -2.569725195514374 -2.645409707716989 -2.712735021514693 -2.771242501826206 -2.820535242951839 -2.860280997185965 -2.890214621761799 -2.910140025656379 -2.919931601577212 -2.919535132346125 -2.908968164879127 -2.888319848983475 -2.908968164879127 -2.919535132346125 -2.919931601577204 -2.910140025656374 -2.890214621761781 -2.860280997185964 -2.820535242951839 -2.771242501826208 -2.712735021514694 -2.645409707716993 -2.569725195514368 -2.486198461197345 -2.395401000128512 -2.297954599513410 -2.194526738020122 -2.085825647006836 -1.972595070676968 -1.855608764753355 -1.735664775238150 -1.613579540481084 -1.490181861107853 -1.366306783353745 -1.242789441988228 -1.120458909313822 -1.000132096661250 -0.882607754393289 -0.768660615665634 -0.659035728092095 -0.554443016018803 -0.455552114349377 -0.362987512788181 -0.277324046999026 -0.199082770529599 -0.128727238449633 -0.066660230511824 0.000000000000000 0.066660230511816 0.128727238449635 0.199082770529602 0.277324046999034 0.362987512788173 0.455552114349370 0.554443016018811 0.659035728092098 0.768660615665635 0.882607754393259 1.000132096661246 1.120458909313817 1.242789441988233 1.366306783353749 1.490181861107857 1.613579540481068 1.735664775238136 1.855608764753344 1.972595070676977 2.085825647006844 2.194526738020127 2.297954599513430 2.395401000128487 2.486198461197346 2.569725195514368 2.645409707716995 2.712735021514699 2.771242501826209 2.820535242951838 2.860280997185964 2.890214621761780 2.910140025656368 2.919931601577205 2.919535132346132 2.908968164879127 2.888319848983475 2.908968164879127 2.919535132346132 2.919931601577205 2.910140025656368 2.890214621761780 2.860280997185964 2.820535242951838 2.771242501826209 2.712735021514701 2.645409707716995 2.569725195514373 2.486198461197347 2.395401000128487 2.297954599513407 2.194526738020123 2.085825647006842 1.972595070676977 1.855608764753344 1.735664775238136 1.613579540481086 1.490181861107857 1.366306783353749 1.242789441988233 1.120458909313816 1.000132096661246 0.882607754393296 0.768660615665635 0.659035728092098 0.554443016018811 0.455552114349370 0.362987512788173 0.277324046999034 0.199082770529602 0.128727238449635 0.066660230511816 0.000000000000000 +0.000000000000000 -0.079963384687946 -0.157420401178543 -0.235232778360694 -0.320840898542880 -0.413768978135268 -0.513484177066602 -0.619400322041100 -0.730882038889484 -0.847249263190844 -0.967782095455012 -1.091725964524597 -1.218297060501033 -1.346687996436098 -1.476073656278259 -1.605617185131585 -1.734476076790283 -1.861808312752222 -1.986778506511609 -2.108564006871264 -2.226360914307128 -2.339389965065132 -2.446902238652242 -2.548184645709748 -2.642565154906618 -2.729417719453316 -2.808166866100458 -2.878291912032146 -2.939330777868965 -2.990883368050671 -3.032614493124181 -3.064256311937430 -3.085610275355423 -3.096548556886096 -3.097014959482675 -3.087025291746662 -3.066667210764916 -3.087025291746663 -3.097014959482675 -3.096548556886087 -3.085610275355423 -3.064256311937430 -3.032614493124146 -2.990883368050671 -2.939330777868965 -2.878291912032147 -2.808166866100463 -2.729417719453310 -2.642565154906610 -2.548184645709750 -2.446902238652250 -2.339389965065134 -2.226360914307131 -2.108564006871240 -1.986778506511612 -1.861808312752225 -1.734476076790319 -1.605617185131589 -1.476073656278226 -1.346687996436077 -1.218297060501036 -1.091725964524620 -0.967782095455018 -0.847249263190865 -0.730882038889478 -0.619400322041076 -0.513484177066606 -0.413768978135274 -0.320840898542887 -0.235232778360703 -0.157420401178528 -0.079963384687954 0.000000000000000 0.079963384687941 0.157420401178539 0.235232778360707 0.320840898542890 0.413768978135253 0.513484177066600 0.619400322041087 0.730882038889481 0.847249263190873 0.967782095454988 1.091725964524592 1.218297060501031 1.346687996436094 1.476073656278230 1.605617185131601 1.734476076790280 1.861808312752183 1.986778506511601 2.108564006871255 2.226360914307167 2.339389965065167 2.446902238652252 2.548184645709716 2.642565154906611 2.729417719453310 2.808166866100463 2.878291912032152 2.939330777868940 2.990883368050665 3.032614493124179 3.064256311937432 3.085610275355423 3.096548556886087 3.097014959482681 3.087025291746662 3.066667210764916 3.087025291746662 3.097014959482681 3.096548556886088 3.085610275355423 3.064256311937434 3.032614493124178 2.990883368050665 2.939330777868940 2.878291912032152 2.808166866100464 2.729417719453309 2.642565154906611 2.548184645709716 2.446902238652240 2.339389965065167 2.226360914307166 2.108564006871255 1.986778506511601 1.861808312752183 1.734476076790322 1.605617185131601 1.476073656278230 1.346687996436094 1.218297060501031 1.091725964524592 0.967782095455021 0.847249263190873 0.730882038889481 0.619400322041087 0.513484177066600 0.413768978135253 0.320840898542890 0.235232778360707 0.157420401178538 0.079963384687941 0.000000000000000 +0.000000000000000 -0.091138073790174 -0.181958725669361 -0.270812924464885 -0.363433770461884 -0.463244940964222 -0.569703879742774 -0.682215347069956 -0.800135540632115 -0.922776590790324 -1.049411396747170 -1.179278767573040 -1.311588829713019 -1.445528660553935 -1.580268105896339 -1.714965737759128 -1.848774907861598 -1.980849851376774 -2.110351795151712 -2.236455024531550 -2.358352863218700 -2.475263521235926 -2.586435767041239 -2.691154381155417 -2.788745350298673 -2.878580762979990 -2.960083369726541 -3.032730773662353 -3.096059219930637 -3.149666955472934 -3.193217133919645 -3.226440243773209 -3.249136041663688 -3.261174976184542 -3.262499091668640 -3.253122405174461 -3.233130753945660 -3.253122405174454 -3.262499091668640 -3.261174976184543 -3.249136041663688 -3.226440243773214 -3.193217133919640 -3.149666955472934 -3.096059219930653 -3.032730773662353 -2.960083369726539 -2.878580762979965 -2.788745350298635 -2.691154381155419 -2.586435767041246 -2.475263521235928 -2.358352863218722 -2.236455024531530 -2.110351795151715 -1.980849851376777 -1.848774907861601 -1.714965737759130 -1.580268105896303 -1.445528660553916 -1.311588829713021 -1.179278767573061 -1.049411396747177 -0.922776590790327 -0.800135540632093 -0.682215347069929 -0.569703879742778 -0.463244940964226 -0.363433770461894 -0.270812924464888 -0.181958725669344 -0.091138073790180 0.000000000000000 0.091138073790165 0.181958725669353 0.270812924464901 0.363433770461900 0.463244940964186 0.569703879742770 0.682215347069945 0.800135540632112 0.922776590790334 1.049411396747168 1.179278767573035 1.311588829713014 1.445528660553932 1.580268105896336 1.714965737759133 1.848774907861560 1.980849851376765 2.110351795151673 2.236455024531545 2.358352863218725 2.475263521235936 2.586435767041248 2.691154381155411 2.788745350298671 2.878580762979988 2.960083369726540 3.032730773662358 3.096059219930635 3.149666955472933 3.193217133919645 3.226440243773208 3.249136041663689 3.261174976184543 3.262499091668640 3.253122405174461 3.233130753945660 3.253122405174461 3.262499091668640 3.261174976184543 3.249136041663688 3.226440243773208 3.193217133919645 3.149666955472933 3.096059219930635 3.032730773662358 2.960083369726546 2.878580762979988 2.788745350298671 2.691154381155411 2.586435767041237 2.475263521235936 2.358352863218725 2.236455024531546 2.110351795151673 1.980849851376765 1.848774907861611 1.714965737759133 1.580268105896336 1.445528660553932 1.311588829713014 1.179278767573035 1.049411396747199 0.922776590790334 0.800135540632112 0.682215347069945 0.569703879742770 0.463244940964186 0.363433770461900 0.270812924464896 0.181958725669353 0.091138073790164 0.000000000000000 +0.000000000000000 -0.101892419351610 -0.203448865950340 -0.304335087404450 -0.404850814425109 -0.511110755729987 -0.623854844138374 -0.742481114470121 -0.866339857500102 -0.994738082831556 -1.126944317749684 -1.262193706437561 -1.399693371636879 -1.538627998822304 -1.678165601247392 -1.817463422824120 -1.955673934727952 -2.091950880885905 -2.225455327106709 -2.355361668562087 -2.480863550615433 -2.601179658628784 -2.715559333341836 -2.823287969719979 -2.923692158777875 -3.016144533813046 -3.100068284694818 -3.174941306353409 -3.240299950347266 -3.295742351388621 -3.340931303889599 -3.375596666983314 -3.399537280026395 -3.412622374267746 -3.414792470172324 -3.406059753750612 -3.386507929181617 -3.406059753750613 -3.414792470172316 -3.412622374267746 -3.399537280026395 -3.375596666983290 -3.340931303889602 -3.295742351388621 -3.240299950347266 -3.174941306353415 -3.100068284694819 -3.016144533813041 -2.923692158777849 -2.823287969719980 -2.715559333341838 -2.601179658628786 -2.480863550615435 -2.355361668562061 -2.225455327106717 -2.091950880885911 -1.955673934727955 -1.817463422824122 -1.678165601247388 -1.538627998822285 -1.399693371636896 -1.262193706437566 -1.126944317749687 -0.994738082831558 -0.866339857500072 -0.742481114470109 -0.623854844138386 -0.511110755730003 -0.404850814425114 -0.304335087404458 -0.203448865950329 -0.101892419351616 0.000000000000000 0.101892419351604 0.203448865950331 0.304335087404461 0.404850814425117 0.511110755729980 0.623854844138363 0.742481114470111 0.866339857500081 0.994738082831565 1.126944317749678 1.262193706437559 1.399693371636875 1.538627998822289 1.678165601247391 1.817463422824134 1.955673934727912 2.091950880885902 2.225455327106707 2.355361668562084 2.480863550615436 2.601179658628794 2.715559333341865 2.823287969719978 2.923692158777851 3.016144533813042 3.100068284694819 3.174941306353417 3.240299950347265 3.295742351388620 3.340931303889603 3.375596666983312 3.399537280026395 3.412622374267746 3.414792470172324 3.406059753750605 3.386507929181616 3.406059753750606 3.414792470172324 3.412622374267746 3.399537280026395 3.375596666983314 3.340931303889603 3.295742351388620 3.240299950347265 3.174941306353417 3.100068284694820 3.016144533813040 2.923692158777851 2.823287969719978 2.715559333341829 2.601179658628794 2.480863550615435 2.355361668562084 2.225455327106707 2.091950880885901 1.955673934727965 1.817463422824134 1.678165601247391 1.538627998822289 1.399693371636875 1.262193706437559 1.126944317749698 0.994738082831565 0.866339857500081 0.742481114470111 0.623854844138363 0.511110755729980 0.404850814425117 0.304335087404461 0.203448865950331 0.101892419351604 0.000000000000000 +0.000000000000000 -0.112143398530560 -0.223933755259859 -0.335019762637292 -0.445053570228346 -0.557072777756748 -0.675595020616382 -0.799808472724301 -0.929060085206436 -1.062654471400405 -1.199858650380100 -1.339907085242724 -1.482006978843513 -1.625343787682942 -1.769086912972272 -1.912395526532898 -2.054424488132283 -2.194330310141511 -2.331277125007198 -2.464442610984174 -2.593023831858003 -2.716242947012363 -2.833352749144836 -2.943641988216005 -3.046440441801106 -3.141123693909595 -3.227117586515531 -3.303902310493541 -3.371016105352349 -3.428058540103621 -3.474693350732059 -3.510650813081509 -3.535729633443438 -3.549798342775270 -3.552796184195026 -3.544733487216200 -3.525691526039668 -3.544733487216200 -3.552796184195031 -3.549798342775270 -3.535729633443438 -3.510650813081509 -3.474693350732037 -3.428058540103623 -3.371016105352355 -3.303902310493540 -3.227117586515531 -3.141123693909549 -3.046440441801058 -2.943641988216005 -2.833352749144839 -2.716242947012365 -2.593023831858134 -2.464442610984169 -2.331277125007201 -2.194330310141519 -2.054424488132309 -1.912395526532918 -1.769086912972232 -1.625343787682936 -1.482006978843517 -1.339907085242729 -1.199858650380102 -1.062654471400407 -0.929060085206407 -0.799808472724288 -0.675595020616396 -0.557072777756762 -0.445053570228349 -0.335019762637311 -0.223933755259847 -0.112143398530568 0.000000000000000 0.112143398530550 0.223933755259856 0.335019762637319 0.445053570228360 0.557072777756744 0.675595020616371 0.799808472724291 0.929060085206428 1.062654471400414 1.199858650380095 1.339907085242722 1.482006978843509 1.625343787682939 1.769086912972236 1.912395526532929 2.054424488132265 2.194330310141508 2.331277125007190 2.464442610984173 2.593023831858137 2.716242947012372 2.833352749144864 2.943641988216002 3.046440441801104 3.141123693909594 3.227117586515536 3.303902310493539 3.371016105352350 3.428058540103620 3.474693350732060 3.510650813081510 3.535729633443441 3.549798342775270 3.552796184195009 3.544733487216200 3.525691526039668 3.544733487216200 3.552796184195009 3.549798342775270 3.535729633443441 3.510650813081509 3.474693350732060 3.428058540103620 3.371016105352350 3.303902310493541 3.227117586515536 3.141123693909595 3.046440441801104 2.943641988216002 2.833352749144830 2.716242947012372 2.593023831858137 2.464442610984173 2.331277125007190 2.194330310141508 2.054424488132318 1.912395526532929 1.769086912972236 1.625343787682939 1.482006978843509 1.339907085242722 1.199858650380123 1.062654471400414 0.929060085206428 0.799808472724291 0.675595020616371 0.557072777756744 0.445053570228360 0.335019762637319 0.223933755259856 0.112143398530550 0.000000000000000 +0.000000000000000 -0.121811487311271 -0.243254478342523 -0.363962218037063 -0.483571422557240 -0.601723986905846 -0.724599157960818 -0.853828924799889 -0.987885969629862 -1.126075253611251 -1.267665164128909 -1.411892473493228 -1.557967549167502 -1.705079777006554 -1.852403157348226 -1.999102032460640 -2.144336902818055 -2.287270288975588 -2.427072595434523 -2.562927932840013 -2.694039855137123 -2.819636968920817 -2.938978373149742 -3.051358888645585 -3.156114038355882 -3.252624741214226 -3.340321684566975 -3.418689342534250 -3.487269610319703 -3.545665027365294 -3.593541565317749 -3.630630960039889 -3.656732570321380 -3.671714749489898 -3.675515719778089 -3.668143943038268 -3.649677985167724 -3.668143943038268 -3.675515719778089 -3.671714749489940 -3.656732570321379 -3.630630960039885 -3.593541565317747 -3.545665027365294 -3.487269610319704 -3.418689342534249 -3.340321684566977 -3.252624741214031 -3.156114038355857 -3.051358888645606 -2.938978373149744 -2.819636968920858 -2.694039855137124 -2.562927932839991 -2.427072595434526 -2.287270288975591 -2.144336902818058 -1.999102032460681 -1.852403157348210 -1.705079777006515 -1.557967549167506 -1.411892473493241 -1.267665164128927 -1.126075253611264 -0.987885969629831 -0.853828924799884 -0.724599157960828 -0.601723986905850 -0.483571422557245 -0.363962218037076 -0.243254478342500 -0.121811487311278 0.000000000000000 0.121811487311258 0.243254478342513 0.363962218037083 0.483571422557260 0.601723986905842 0.724599157960800 0.853828924799886 0.987885969629839 1.126075253611310 1.267665164128903 1.411892473493220 1.557967549167499 1.705079777006550 1.852403157348214 1.999102032460684 2.144336902818046 2.287270288975552 2.427072595434515 2.562927932840000 2.694039855137125 2.819636968920859 2.938978373149789 3.051358888645583 3.156114038355859 3.252624741214226 3.340321684566997 3.418689342534269 3.487269610319697 3.545665027365290 3.593541565317747 3.630630960039885 3.656732570321378 3.671714749489941 3.675515719778089 3.668143943038267 3.649677985167724 3.668143943038267 3.675515719778089 3.671714749489941 3.656732570321378 3.630630960039885 3.593541565317748 3.545665027365292 3.487269610319698 3.418689342534268 3.340321684566999 3.252624741214226 3.156114038355859 3.051358888645583 2.938978373149736 2.819636968920858 2.694039855137125 2.562927932840000 2.427072595434515 2.287270288975552 2.144336902818059 1.999102032460684 1.852403157348214 1.705079777006550 1.557967549167499 1.411892473493220 1.267665164128932 1.126075253611310 0.987885969629838 0.853828924799886 0.724599157960800 0.601723986905842 0.483571422557260 0.363962218037083 0.243254478342513 0.121811487311257 0.000000000000000 +0.000000000000000 -0.130821268600047 -0.261260322125857 -0.390936686722680 -0.519473359945908 -0.646498518973064 -0.771647196047376 -0.904197303575089 -1.042434901396887 -1.184581993844292 -1.329911204351565 -1.477664588767540 -1.627058741142223 -1.777290106641928 -1.927540462392924 -2.076982525751494 -2.224785648494251 -2.370121554739049 -2.512170080038823 -2.650124869045617 -2.783198989416342 -2.910630420233410 -3.031687374119679 -3.145673413454760 -3.251932322616327 -3.349852699980025 -3.438872235497125 -3.518481642008763 -3.588228211040591 -3.647718966625142 -3.696623393704833 -3.734675720849403 -3.761676740359227 -3.777495152287547 -3.782068422478509 -3.775403148362885 -3.757574929936248 -3.775403148362876 -3.782068422478500 -3.777495152287544 -3.761676740359227 -3.734675720849414 -3.696623393704783 -3.647718966625142 -3.588228211040609 -3.518481642008763 -3.438872235497127 -3.349852699980020 -3.251932322616304 -3.145673413454766 -3.031687374119681 -2.910630420233412 -2.783198989416344 -2.650124869045607 -2.512170080038830 -2.370121554739050 -2.224785648494265 -2.076982525751534 -1.927540462392916 -1.777290106641887 -1.627058741142256 -1.477664588767544 -1.329911204351583 -1.184581993844313 -1.042434901396856 -0.904197303575059 -0.771647196047380 -0.646498518973076 -0.519473359945913 -0.390936686722690 -0.261260322125831 -0.130821268600057 0.000000000000000 0.130821268600036 0.261260322125851 0.390936686722696 0.519473359945919 0.646498518973044 0.771647196047358 0.904197303575067 1.042434901396863 1.184581993844315 1.329911204351560 1.477664588767512 1.627058741142215 1.777290106641891 1.927540462392919 2.076982525751538 2.224785648494247 2.370121554739046 2.512170080038820 2.650124869045610 2.783198989416350 2.910630420233437 3.031687374119703 3.145673413454758 3.251932322616324 3.349852699980024 3.438872235497127 3.518481642008768 3.588228211040587 3.647718966625146 3.696623393704834 3.734675720849408 3.761676740359227 3.777495152287539 3.782068422478509 3.775403148362893 3.757574929936248 3.775403148362885 3.782068422478509 3.777495152287545 3.761676740359227 3.734675720849409 3.696623393704834 3.647718966625146 3.588228211040587 3.518481642008768 3.438872235497127 3.349852699980024 3.251932322616325 3.145673413454758 3.031687374119673 2.910630420233437 2.783198989416350 2.650124869045610 2.512170080038820 2.370121554739046 2.224785648494268 2.076982525751538 1.927540462392919 1.777290106641891 1.627058741142215 1.477664588767512 1.329911204351588 1.184581993844315 1.042434901396863 0.904197303575067 0.771647196047358 0.646498518973044 0.519473359945919 0.390936686722696 0.261260322125851 0.130821268600036 0.000000000000000 +0.000000000000000 -0.139102009691905 -0.277809929725284 -0.415731404672892 -0.552477536779796 -0.687664587900493 -0.820915649374573 -0.951862269512157 -1.092354703865720 -1.237791386018647 -1.386184016569640 -1.536782870904845 -1.688813786098375 -1.841483344664524 -1.993984220754237 -2.145500649425866 -2.295213978650863 -2.442308263049073 -2.585975857994822 -2.725422972690885 -2.859875141077910 -2.988582570028095 -3.110825325160409 -3.225918315798915 -3.333216042078348 -3.432117068956668 -3.522068193918970 -3.602568277434315 -3.673171707736812 -3.733491474224684 -3.783201826694699 -3.822040500716456 -3.849810492692613 -3.866381371519878 -3.871690117220179 -3.865741480458868 -3.848607860434601 -3.865741480458860 -3.871690117220179 -3.866381371519878 -3.849810492692606 -3.822040500716461 -3.783201826694694 -3.733491474224687 -3.673171707736812 -3.602568277434317 -3.522068193918967 -3.432117068956661 -3.333216042078344 -3.225918315798916 -3.110825325160412 -2.988582570028098 -2.859875141077911 -2.725422972690875 -2.585975857994912 -2.442308263049100 -2.295213978650866 -2.145500649425872 -1.993984220754193 -1.841483344664484 -1.688813786098388 -1.536782870904849 -1.386184016569646 -1.237791386018665 -1.092354703865711 -0.951862269512146 -0.820915649374582 -0.687664587900512 -0.552477536779804 -0.415731404672905 -0.277809929725254 -0.139102009691913 0.000000000000000 0.139102009691893 0.277809929725273 0.415731404672908 0.552477536779813 0.687664587900483 0.820915649374569 0.951862269512154 1.092354703865718 1.237791386018677 1.386184016569624 1.536782870904831 1.688813786098349 1.841483344664521 1.993984220754197 2.145500649425905 2.295213978650845 2.442308263049071 2.585975857994819 2.725422972690883 2.859875141077918 2.988582570028104 3.110825325160416 3.225918315798899 3.333216042078345 3.432117068956662 3.522068193918967 3.602568277434314 3.673171707736810 3.733491474224681 3.783201826694695 3.822040500716455 3.849810492692606 3.866381371519878 3.871690117220179 3.865741480458868 3.848607860434601 3.865741480458868 3.871690117220179 3.866381371519879 3.849810492692606 3.822040500716456 3.783201826694697 3.733491474224681 3.673171707736810 3.602568277434313 3.522068193918967 3.432117068956663 3.333216042078346 3.225918315798915 3.110825325160361 2.988582570028104 2.859875141077918 2.725422972690883 2.585975857994819 2.442308263049070 2.295213978650875 2.145500649425902 1.993984220754196 1.841483344664521 1.688813786098349 1.536782870904830 1.386184016569647 1.237791386018677 1.092354703865718 0.951862269512154 0.820915649374569 0.687664587900483 0.552477536779813 0.415731404672908 0.277809929725273 0.139102009691893 0.000000000000000 +0.000000000000000 -0.146588204706217 -0.292772384481563 -0.438150234698137 -0.582322880820004 -0.724896567239093 -0.865484314868839 -1.003707537429692 -1.139197606654391 -1.285358052828146 -1.436113771711399 -1.588854720710414 -1.742818928136908 -1.897226116812179 -2.051282897236713 -2.204188079095280 -2.355138062055512 -2.503332266181002 -2.647978561931392 -2.788298659689186 -2.923533419009325 -3.052948038356331 -3.175837086948412 -3.291529341481493 -3.399392391935744 -3.498836982366643 -3.589321054546035 -3.670353464515189 -3.741497344545677 -3.802373085634303 -3.852660918487294 -3.892103073937384 -3.920505506869758 -3.937739170992034 -3.943740835128018 -3.938513435142195 -3.922125959060923 -3.938513435142195 -3.943740835128018 -3.937739170992034 -3.920505506869751 -3.892103073937385 -3.852660918487293 -3.802373085634305 -3.741497344545673 -3.670353464515187 -3.589321054546039 -3.498836982366641 -3.399392391935739 -3.291529341481495 -3.175837086948419 -3.052948038356333 -2.923533419009328 -2.788298659689156 -2.647978561931394 -2.503332266181015 -2.355138062055586 -2.204188079095286 -2.051282897236701 -1.897226116812163 -1.742818928136922 -1.588854720710418 -1.436113771711404 -1.285358052828152 -1.139197606654376 -1.003707537429688 -0.865484314868859 -0.724896567239098 -0.582322880820007 -0.438150234698146 -0.292772384481543 -0.146588204706226 0.000000000000000 0.146588204706206 0.292772384481554 0.438150234698163 0.582322880820040 0.724896567239077 0.865484314868836 1.003707537429690 1.139197606654378 1.285358052828170 1.436113771711383 1.588854720710382 1.742818928136904 1.897226116812176 2.051282897236710 2.204188079095324 2.355138062055509 2.503332266180999 2.647978561931385 2.788298659689183 2.923533419009329 3.052948038356334 3.175837086948420 3.291529341481492 3.399392391935740 3.498836982366641 3.589321054546041 3.670353464515187 3.741497344545673 3.802373085634303 3.852660918487293 3.892103073937390 3.920505506869751 3.937739170992034 3.943740835128025 3.938513435142195 3.922125959060923 3.938513435142195 3.943740835128025 3.937739170992034 3.920505506869751 3.892103073937390 3.852660918487294 3.802373085634305 3.741497344545673 3.670353464515187 3.589321054546040 3.498836982366641 3.399392391935741 3.291529341481493 3.175837086948410 3.052948038356334 2.923533419009329 2.788298659689183 2.647978561931385 2.503332266180999 2.355138062055589 2.204188079095324 2.051282897236710 1.897226116812173 1.742818928136904 1.588854720710382 1.436113771711431 1.285358052828170 1.139197606654378 1.003707537429690 0.865484314868836 0.724896567239077 0.582322880820039 0.438150234698163 0.292772384481554 0.146588204706206 0.000000000000000 +0.000000000000000 -0.153220077855301 -0.306028215765261 -0.458014173314803 -0.608771098947859 -0.757897198964651 -0.904997376203447 -1.049684828636069 -1.191582598392517 -1.330325062080083 -1.479376269488637 -1.633538378747975 -1.788716466010354 -1.944146299695724 -2.099051362195187 -2.252647986039223 -2.404150565691994 -2.552776806741217 -2.697752973922352 -2.838319099379488 -2.973734112820425 -3.103280855766217 -3.226270942926282 -3.342049434833916 -3.449999287262500 -3.549545544574136 -3.640159246048269 -3.721361016349794 -3.792724313643294 -3.853878311391870 -3.904510392606502 -3.944368238181915 -3.973261493982600 -3.991063004475331 -3.997709603922751 -3.993202459457998 -3.977606963691198 -3.993202459457998 -3.997709603922751 -3.991063004475332 -3.973261493982600 -3.944368238181913 -3.904510392606497 -3.853878311391920 -3.792724313643294 -3.721361016349826 -3.640159246048269 -3.549545544574129 -3.449999287262497 -3.342049434833918 -3.226270942926281 -3.103280855766223 -2.973734112820427 -2.838319099379480 -2.697752973922356 -2.552776806741248 -2.404150565692027 -2.252647986039240 -2.099051362195175 -1.944146299695680 -1.788716466010356 -1.633538378747980 -1.479376269488665 -1.330325062080093 -1.191582598392507 -1.049684828636034 -0.904997376203468 -0.757897198964656 -0.608771098947871 -0.458014173314810 -0.306028215765229 -0.153220077855313 0.000000000000000 0.153220077855289 0.306028215765245 0.458014173314824 0.608771098947880 0.757897198964648 0.904997376203438 1.049684828636065 1.191582598392510 1.330325062080110 1.479376269488633 1.633538378747962 1.788716466010351 1.944146299695721 2.099051362195184 2.252647986039249 2.404150565691990 2.552776806741214 2.697752973922343 2.838319099379486 2.973734112820460 3.103280855766226 3.226270942926340 3.342049434833910 3.449999287262499 3.549545544574134 3.640159246048271 3.721361016349849 3.792724313643238 3.853878311391871 3.904510392606497 3.944368238181914 3.973261493982621 3.991063004475332 3.997709603922750 3.993202459457997 3.977606963691199 3.993202459457998 3.997709603922750 3.991063004475332 3.973261493982621 3.944368238181914 3.904510392606497 3.853878311391871 3.792724313643238 3.721361016349849 3.640159246048271 3.549545544574134 3.449999287262499 3.342049434833910 3.226270942926278 3.103280855766226 2.973734112820460 2.838319099379486 2.697752973922342 2.552776806741214 2.404150565692031 2.252647986039249 2.099051362195184 1.944146299695721 1.788716466010351 1.633538378747962 1.479376269488669 1.330325062080110 1.191582598392510 1.049684828636065 0.904997376203438 0.757897198964648 0.608771098947880 0.458014173314824 0.306028215765245 0.153220077855289 0.000000000000000 +0.000000000000000 -0.158944043706741 -0.317470318875086 -0.475162729026742 -0.631608511947872 -0.786399882250806 -0.939135644645723 -1.089422768481098 -1.236877914384167 -1.381128904171234 -1.521816125596015 -1.670545422517587 -1.826207373965968 -1.981935753683370 -2.136973725621231 -2.290557962479646 -2.441923662057662 -2.590309598695794 -2.734963172831804 -2.875145421654342 -3.010135954086293 -3.139237773850394 -3.261781955167044 -3.377132136695237 -3.484688800652414 -3.583893305620117 -3.674231643351212 -3.755237891930027 -3.826497339876849 -3.887649258225039 -3.938389300202610 -3.978471510915760 -4.007709932320574 -4.025979791778968 -4.033218265581694 -4.029424811983534 -4.014661071493314 -4.029424811983534 -4.033218265581694 -4.025979791778968 -4.007709932320574 -3.978471510915765 -3.938389300202595 -3.887649258225058 -3.826497339876849 -3.755237891930027 -3.674231643351216 -3.583893305620111 -3.484688800652398 -3.377132136695243 -3.261781955167045 -3.139237773850397 -3.010135954086295 -2.875145421654314 -2.734963172831832 -2.590309598695828 -2.441923662057666 -2.290557962479649 -2.136973725621190 -1.981935753683355 -1.826207373965972 -1.670545422517621 -1.521816125596031 -1.381128904171239 -1.236877914384159 -1.089422768481088 -0.939135644645781 -0.786399882250815 -0.631608511947882 -0.475162729026749 -0.317470318875058 -0.158944043706752 0.000000000000000 0.158944043706728 0.317470318875067 0.475162729026764 0.631608511947902 0.786399882250787 0.939135644645711 1.089422768481090 1.236877914384164 1.381128904171241 1.521816125596013 1.670545422517583 1.826207373965932 1.981935753683359 2.136973725621193 2.290557962479650 2.441923662057656 2.590309598695793 2.734963172831800 2.875145421654316 3.010135954086330 3.139237773850403 3.261781955167052 3.377132136695235 3.484688800652394 3.583893305620112 3.674231643351217 3.755237891930024 3.826497339876848 3.887649258225038 3.938389300202607 3.978471510915760 4.007709932320574 4.025979791778968 4.033218265581694 4.029424811983541 4.014661071493314 4.029424811983541 4.033218265581694 4.025979791778968 4.007709932320574 3.978471510915760 3.938389300202607 3.887649258225038 3.826497339876848 3.755237891930024 3.674231643351217 3.583893305620116 3.484688800652394 3.377132136695236 3.261781955167043 3.139237773850403 3.010135954086320 2.875145421654316 2.734963172831800 2.590309598695792 2.441923662057667 2.290557962479650 2.136973725621193 1.981935753683359 1.826207373965932 1.670545422517583 1.521816125596035 1.381128904171241 1.236877914384164 1.089422768481090 0.939135644645711 0.786399882250787 0.631608511947902 0.475162729026764 0.317470318875067 0.158944043706728 0.000000000000000 +0.000000000000000 -0.163713120926400 -0.327004782009195 -0.489455161493888 -0.650647704325203 -0.810170731864599 -0.967619023435847 -1.122595360614907 -1.274712025442325 -1.423592244058154 -1.568871567642176 -1.710199182978240 -1.855053481796798 -2.010352574847827 -2.164805650539444 -2.317672386971012 -2.468211438113255 -2.615685272479978 -2.759365009229037 -2.898535216366547 -3.032498635962348 -3.160580801784674 -3.282134515523447 -3.396544148784716 -3.503229739302798 -3.601650851318053 -3.691310171791210 -3.771756816072584 -3.842589318775738 -3.903458287937488 -3.954068703021261 -3.994181839969207 -4.023616809257817 -4.042251695779743 -4.050024292335842 -4.046932421515050 -4.033033843806940 -4.046932421515046 -4.050024292335842 -4.042251695779739 -4.023616809257816 -3.994181839969202 -3.954068703021242 -3.903458287937487 -3.842589318775739 -3.771756816072590 -3.691310171791216 -3.601650851318049 -3.503229739302793 -3.396544148784715 -3.282134515523448 -3.160580801784676 -3.032498635962348 -2.898535216366500 -2.759365009229040 -2.615685272479986 -2.468211438113264 -2.317672386971014 -2.164805650539432 -2.010352574847782 -1.855053481796801 -1.710199182978242 -1.568871567642180 -1.423592244058159 -1.274712025442300 -1.122595360614892 -0.967619023435856 -0.810170731864607 -0.650647704325209 -0.489455161493901 -0.327004782009171 -0.163713120926412 0.000000000000000 0.163713120926392 0.327004782009183 0.489455161493909 0.650647704325213 0.810170731864592 0.967619023435826 1.122595360614899 1.274712025442319 1.423592244058175 1.568871567642161 1.710199182978237 1.855053481796760 2.010352574847787 2.164805650539442 2.317672386971026 2.468211438113253 2.615685272479976 2.759365009229036 2.898535216366503 3.032498635962354 3.160580801784677 3.282134515523449 3.396544148784709 3.503229739302795 3.601650851318052 3.691310171791215 3.771756816072591 3.842589318775718 3.903458287937482 3.954068703021242 3.994181839969212 4.023616809257817 4.042251695779739 4.050024292335841 4.046932421515049 4.033033843806940 4.046932421515049 4.050024292335841 4.042251695779739 4.023616809257817 3.994181839969212 3.954068703021242 3.903458287937482 3.842589318775718 3.771756816072591 3.691310171791215 3.601650851318052 3.503229739302795 3.396544148784709 3.282134515523444 3.160580801784677 3.032498635962350 2.898535216366503 2.759365009229036 2.615685272479976 2.468211438113267 2.317672386971026 2.164805650539442 2.010352574847787 1.855053481796760 1.710199182978237 1.568871567642182 1.423592244058175 1.274712025442319 1.122595360614898 0.967619023435826 0.810170731864592 0.650647704325213 0.489455161493909 0.327004782009183 0.163713120926392 0.000000000000000 +0.000000000000000 -0.167487296342072 -0.334551613992923 -0.500771572123703 -0.665728976556050 -0.829010390463732 -0.990208678103603 -1.148924512877166 -1.304767841273343 -1.457359294549533 -1.606331540370791 -1.751330567043099 -1.892016893444001 -2.029222849014935 -2.182376128279655 -2.333824212072424 -2.482851687711479 -2.628747165737083 -2.770807889192837 -2.908344306147793 -3.040684572140469 -3.167178949694969 -3.287204072785259 -3.400167045088363 -3.505509342065553 -3.602710488335127 -3.691291483441693 -3.770817950970472 -3.840902987981166 -3.901209693947803 -3.951453360747867 -3.991403307743784 -4.020884348625685 -4.039777879397731 -4.048022579698092 -4.045614722495093 -4.032608090104901 -4.045614722495093 -4.048022579698092 -4.039777879397733 -4.020884348625685 -3.991403307743779 -3.951453360747867 -3.901209693947804 -3.840902987981167 -3.770817950970485 -3.691291483441694 -3.602710488335108 -3.505509342065531 -3.400167045088384 -3.287204072785260 -3.167178949694992 -3.040684572140475 -2.908344306147765 -2.770807889192840 -2.628747165737099 -2.482851687711484 -2.333824212072425 -2.182376128279640 -2.029222849014905 -1.892016893444011 -1.751330567043111 -1.606331540370821 -1.457359294549535 -1.304767841273317 -1.148924512877140 -0.990208678103610 -0.829010390463735 -0.665728976556052 -0.500771572123734 -0.334551613992895 -0.167487296342083 0.000000000000000 0.167487296342059 0.334551613992899 0.500771572123741 0.665728976556066 0.829010390463705 0.990208678103599 1.148924512877146 1.304767841273323 1.457359294549540 1.606331540370789 1.751330567043096 1.892016893443998 2.029222849014925 2.182376128279647 2.333824212072428 2.482851687711475 2.628747165737082 2.770807889192834 2.908344306147791 3.040684572140479 3.167178949694995 3.287204072785262 3.400167045088361 3.505509342065551 3.602710488335109 3.691291483441695 3.770817950970486 3.840902987981111 3.901209693947802 3.951453360747866 3.991403307743779 4.020884348625681 4.039777879397732 4.048022579698092 4.045614722495096 4.032608090104901 4.045614722495096 4.048022579698092 4.039777879397732 4.020884348625681 3.991403307743778 3.951453360747866 3.901209693947802 3.840902987981111 3.770817950970486 3.691291483441696 3.602710488335109 3.505509342065551 3.400167045088361 3.287204072785258 3.167178949694994 3.040684572140479 2.908344306147791 2.770807889192834 2.628747165737082 2.482851687711487 2.333824212072428 2.182376128279647 2.029222849014925 1.892016893443997 1.751330567043096 1.606331540370826 1.457359294549540 1.304767841273322 1.148924512877146 0.990208678103599 0.829010390463705 0.665728976556063 0.500771572123741 0.334551613992898 0.167487296342059 0.000000000000000 +0.000000000000000 -0.170233836544540 -0.340045367199791 -0.509013837747991 -0.676721588669796 -0.842755580940892 -1.006708896133318 -1.168182202532087 -1.326785179214263 -1.482137890325823 -1.633872102137137 -1.781632535848670 -1.925078049565024 -2.063882743335541 -2.197736981692823 -2.338926160851208 -2.485767074015538 -2.629428446207433 -2.769235853572178 -2.904527779282267 -3.034659881894557 -3.159009165714955 -3.276978022827770 -3.387998117357613 -3.491534083668193 -3.587087011545476 -3.674197692960267 -3.752449606752307 -3.821471619487681 -3.880940382829563 -3.930582409989482 -3.970175816187444 -3.999551710524441 -4.018595229240191 -4.027246202969255 -4.025499453315573 -4.013404716790824 -4.025499453315573 -4.027246202969255 -4.018595229240191 -3.999551710524441 -3.970175816187441 -3.930582409989476 -3.880940382829619 -3.821471619487681 -3.752449606752307 -3.674197692960286 -3.587087011545455 -3.491534083668137 -3.387998117357613 -3.276978022827775 -3.159009165714973 -3.034659881894565 -2.904527779282220 -2.769235853572179 -2.629428446207436 -2.485767074015546 -2.338926160851217 -2.197736981692780 -2.063882743335526 -1.925078049565029 -1.781632535848669 -1.633872102137151 -1.482137890325850 -1.326785179214224 -1.168182202532062 -1.006708896133328 -0.842755580940897 -0.676721588669812 -0.509013837748013 -0.340045367199765 -0.170233836544551 0.000000000000000 0.170233836544526 0.340045367199786 0.509013837748017 0.676721588669816 0.842755580940884 1.006708896133298 1.168182202532068 1.326785179214259 1.482137890325860 1.633872102137129 1.781632535848668 1.925078049565011 2.063882743335538 2.197736981692787 2.338926160851220 2.485767074015536 2.629428446207398 2.769235853572150 2.904527779282222 3.034659881894566 3.159009165714978 3.276978022827777 3.387998117357612 3.491534083668193 3.587087011545468 3.674197692960287 3.752449606752309 3.821471619487681 3.880940382829568 3.930582409989477 3.970175816187440 3.999551710524447 4.018595229240186 4.027246202969254 4.025499453315573 4.013404716790824 4.025499453315573 4.027246202969254 4.018595229240186 3.999551710524447 3.970175816187440 3.930582409989481 3.880940382829563 3.821471619487681 3.752449606752309 3.674197692960287 3.587087011545476 3.491534083668193 3.387998117357611 3.276978022827767 3.159009165714979 3.034659881894566 2.904527779282222 2.769235853572150 2.629428446207398 2.485767074015548 2.338926160851220 2.197736981692787 2.063882743335538 1.925078049565011 1.781632535848668 1.633872102137155 1.482137890325860 1.326785179214259 1.168182202532068 1.006708896133297 0.842755580940884 0.676721588669816 0.509013837748017 0.340045367199786 0.170233836544526 0.000000000000000 +0.000000000000000 -0.171927544641221 -0.343435650898212 -0.514106380239227 -0.683524785644388 -0.851280386934154 -1.016968621742657 -1.180192264277274 -1.340562804227140 -1.497701778456408 -1.651242048440514 -1.800829016774785 -1.946121776499573 -2.086794187445437 -2.222535874294914 -2.353053141592019 -2.478069801487976 -2.617752558349806 -2.754687944614602 -2.887140274897203 -3.014494593835028 -3.136156459716871 -3.251555755086139 -3.360150348389289 -3.461429580087315 -3.554917547918959 -3.640176167457849 -3.716807985736813 -3.784458727519872 -3.842819555751598 -3.891629029811135 -3.930674747414960 -3.959794658332740 -3.978878040495331 -3.987866131555746 -3.986752411498836 -3.975582534460500 -3.986752411498836 -3.987866131555746 -3.978878040495331 -3.959794658332740 -3.930674747414956 -3.891629029811132 -3.842819555751603 -3.784458727519873 -3.716807985736813 -3.640176167457855 -3.554917547918954 -3.461429580087151 -3.360150348389291 -3.251555755086141 -3.136156459716887 -3.014494593835030 -2.887140274897194 -2.754687944614603 -2.617752558349813 -2.478069801487979 -2.353053141592020 -2.222535874294905 -2.086794187445394 -1.946121776499577 -1.800829016774822 -1.651242048440545 -1.497701778456410 -1.340562804227115 -1.180192264277248 -1.016968621742664 -0.851280386934156 -0.683524785644400 -0.514106380239233 -0.343435650898190 -0.171927544641233 0.000000000000000 0.171927544641209 0.343435650898201 0.514106380239245 0.683524785644418 0.851280386934150 1.016968621742654 1.180192264277255 1.340562804227137 1.497701778456440 1.651242048440509 1.800829016774781 1.946121776499562 2.086794187445433 2.222535874294914 2.353053141592043 2.478069801487968 2.617752558349804 2.754687944614600 2.887140274897201 3.014494593835125 3.136156459716889 3.251555755086147 3.360150348389288 3.461429580087314 3.554917547918953 3.640176167457857 3.716807985736815 3.784458727519871 3.842819555751598 3.891629029811135 3.930674747414959 3.959794658332741 3.978878040495331 3.987866131555746 3.986752411498836 3.975582534460500 3.986752411498836 3.987866131555746 3.978878040495331 3.959794658332741 3.930674747414960 3.891629029811135 3.842819555751598 3.784458727519871 3.716807985736815 3.640176167457857 3.554917547918953 3.461429580087314 3.360150348389288 3.251555755086138 3.136156459716887 3.014494593835124 2.887140274897201 2.754687944614600 2.617752558349804 2.478069801487980 2.353053141592043 2.222535874294914 2.086794187445432 1.946121776499562 1.800829016774781 1.651242048440550 1.497701778456440 1.340562804227137 1.180192264277255 1.016968621742654 0.851280386934149 0.683524785644418 0.514106380239245 0.343435650898201 0.171927544641209 0.000000000000000 +0.000000000000000 -0.172550960193711 -0.344687531087728 -0.515996766165512 -0.686068596753456 -0.854497251685849 -1.020882654009684 -1.184831787318377 -1.345960024511719 -1.503892412033202 -1.658264902938861 -1.808725532496996 -1.954935530410315 -2.096570364174456 -2.233320708556816 -2.364893336671726 -2.491011928656310 -2.611417794501079 -2.727297857286494 -2.856335518408759 -2.980362066927589 -3.098813212870344 -3.211147855094735 -3.316851513384290 -3.415439595880250 -3.506460478213599 -3.589498372065592 -3.664175962405424 -3.730156794337041 -3.787147392316129 -3.834899096443667 -3.873209602621896 -3.901924195518121 -3.920936665538724 -3.930189903330045 -3.929676167688312 -3.919437025156506 -3.929676167688312 -3.930189903330045 -3.920936665538724 -3.901924195518115 -3.873209602621877 -3.834899096443646 -3.787147392316130 -3.730156794337042 -3.664175962405424 -3.589498372065592 -3.506460478213589 -3.415439595880242 -3.316851513384292 -3.211147855094756 -3.098813212870347 -2.980362066927591 -2.856335518408731 -2.727297857286497 -2.611417794501097 -2.491011928656317 -2.364893336671727 -2.233320708556778 -2.096570364174429 -1.954935530410319 -1.808725532497000 -1.658264902938865 -1.503892412033234 -1.345960024511692 -1.184831787318368 -1.020882654009690 -0.854497251685857 -0.686068596753470 -0.515996766165527 -0.344687531087698 -0.172550960193719 0.000000000000000 0.172550960193696 0.344687531087714 0.515996766165539 0.686068596753481 0.854497251685843 1.020882654009681 1.184831787318370 1.345960024511715 1.503892412033237 1.658264902938789 1.808725532496984 1.954935530410313 2.096570364174450 2.233320708556814 2.364893336671735 2.491011928656307 2.611417794501077 2.727297857286489 2.856335518408733 2.980362066927615 3.098813212870499 3.211147855094759 3.316851513384290 3.415439595880244 3.506460478213597 3.589498372065593 3.664175962405430 3.730156794337022 3.787147392316128 3.834899096443646 3.873209602621877 3.901924195518115 3.920936665538725 3.930189903330045 3.929676167688313 3.919437025156506 3.929676167688313 3.930189903330045 3.920936665538725 3.901924195518115 3.873209602621877 3.834899096443646 3.787147392316128 3.730156794337022 3.664175962405430 3.589498372065593 3.506460478213597 3.415439595880245 3.316851513384290 3.211147855094733 3.098813212870497 2.980362066927615 2.856335518408733 2.727297857286490 2.611417794501076 2.491011928656320 2.364893336671735 2.233320708556814 2.096570364174450 1.954935530410313 1.808725532496984 1.658264902938868 1.503892412033237 1.345960024511715 1.184831787318371 1.020882654009681 0.854497251685843 0.686068596753481 0.515996766165539 0.344687531087714 0.172550960193696 0.000000000000000 +0.000000000000000 -0.172094500802082 -0.343781813751013 -0.514656131873889 -0.684314402719596 -0.852357687571024 -1.018392499136173 -1.182032110769741 -1.342897830470359 -1.500620233134490 -1.654840344829915 -1.805210773172294 -1.951396778252133 -2.093077278954983 -2.229945789950787 -2.361711285087483 -2.488098983417786 -2.608851054593270 -2.723727240898007 -2.832505393737544 -2.934981922959911 -3.047277678370490 -3.156074469240570 -3.258442416293176 -3.353924161100703 -3.442093444745171 -3.522557780049350 -3.594960908435974 -3.658985023723770 -3.714352746867700 -3.760828837455834 -3.798221629700520 -3.826384182667812 -3.845215136580622 -3.854659269173782 -3.854707748279962 -3.845398079041372 -3.854707748279981 -3.854659269173782 -3.845215136580622 -3.826384182667811 -3.798221629700521 -3.760828837455832 -3.714352746867700 -3.658985023723770 -3.594960908435976 -3.522557780049356 -3.442093444745169 -3.353924161100694 -3.258442416293178 -3.156074469240572 -3.047277678370492 -2.934981922959913 -2.832505393737516 -2.723727240898014 -2.608851054593272 -2.488098983417785 -2.361711285087506 -2.229945789950745 -2.093077278954968 -1.951396778252140 -1.805210773172307 -1.654840344829929 -1.500620233134494 -1.342897830470317 -1.182032110769684 -1.018392499136176 -0.852357687571060 -0.684314402719605 -0.514656131873894 -0.343781813750987 -0.172094500802099 0.000000000000000 0.172094500802070 0.343781813751004 0.514656131873921 0.684314402719611 0.852357687571020 1.018392499136161 1.182032110769738 1.342897830470354 1.500620233134523 1.654840344829912 1.805210773172289 1.951396778252131 2.093077278954979 2.229945789950781 2.361711285087508 2.488098983417759 2.608851054593241 2.723727240898005 2.832505393737542 2.934981922959915 3.047277678370494 3.156074469240578 3.258442416293155 3.353924161100700 3.442093444745169 3.522557780049356 3.594960908435975 3.658985023723774 3.714352746867698 3.760828837455833 3.798221629700521 3.826384182667812 3.845215136580622 3.854659269173790 3.854707748279941 3.845398079041372 3.854707748279941 3.854659269173789 3.845215136580622 3.826384182667812 3.798221629700521 3.760828837455833 3.714352746867698 3.658985023723770 3.594960908435975 3.522557780049356 3.442093444745169 3.353924161100700 3.258442416293154 3.156074469240551 3.047277678370494 2.934981922959915 2.832505393737542 2.723727240898005 2.608851054593240 2.488098983417788 2.361711285087508 2.229945789950781 2.093077278954979 1.951396778252131 1.805210773172289 1.654840344829935 1.500620233134523 1.342897830470354 1.182032110769738 1.018392499136161 0.852357687571020 0.684314402719611 0.514656131873921 0.343781813751002 0.172094500802070 0.000000000000000 +0.000000000000000 -0.170556544241845 -0.340715209332535 -0.510079430717380 -0.678255266291743 -0.844852690812988 -1.009486870263674 -1.171779409691236 -1.331359568227125 -1.487865435207809 -1.640945061578825 -1.790257541059912 -1.935474035884273 -2.076278742292075 -2.212369791354925 -2.343460081137178 -2.469278036649250 -2.589568294522180 -2.704092309824067 -2.812628882943360 -2.914974604983546 -3.010944220635325 -3.100370908019919 -3.185374274633372 -3.277356812182245 -3.362310460446202 -3.439866863421535 -3.509691579395655 -3.571486139302107 -3.624989874837960 -3.669981503272524 -3.706280457646481 -3.733747952911817 -3.752287780483381 -3.761846825656685 -3.762415304357965 -3.754026717747831 -3.762415304357965 -3.761846825656685 -3.752287780483379 -3.733747952911816 -3.706280457646475 -3.669981503272472 -3.624989874837961 -3.571486139302107 -3.509691579395655 -3.439866863421535 -3.362310460446197 -3.277356812182247 -3.185374274633373 -3.100370908019920 -3.010944220635329 -2.914974604983589 -2.812628882943358 -2.704092309824074 -2.589568294522183 -2.469278036649253 -2.343460081137179 -2.212369791354911 -2.076278742292061 -1.935474035884283 -1.790257541059916 -1.640945061578829 -1.487865435207812 -1.331359568227096 -1.171779409691195 -1.009486870263716 -0.844852690812999 -0.678255266291762 -0.510079430717401 -0.340715209332508 -0.170556544241855 0.000000000000000 0.170556544241826 0.340715209332523 0.510079430717410 0.678255266291780 0.844852690812980 1.009486870263671 1.171779409691234 1.331359568227101 1.487865435207814 1.640945061578819 1.790257541059877 1.935474035884270 2.076278742292072 2.212369791354914 2.343460081137182 2.469278036649242 2.589568294522173 2.704092309824066 2.812628882943359 2.914974604983592 3.010944220635332 3.100370908019922 3.185374274633370 3.277356812182247 3.362310460446202 3.439866863421588 3.509691579395656 3.571486139302104 3.624989874837959 3.669981503272524 3.706280457646475 3.733747952911809 3.752287780483379 3.761846825656685 3.762415304357965 3.754026717747831 3.762415304357965 3.761846825656685 3.752287780483379 3.733747952911809 3.706280457646479 3.669981503272524 3.624989874837959 3.571486139302106 3.509691579395656 3.439866863421588 3.362310460446202 3.277356812182247 3.185374274633370 3.100370908019913 3.010944220635331 2.914974604983592 2.812628882943359 2.704092309824066 2.589568294522173 2.469278036649253 2.343460081137182 2.212369791354914 2.076278742292072 1.935474035884270 1.790257541059877 1.640945061578861 1.487865435207814 1.331359568227101 1.171779409691233 1.009486870263671 0.844852690812980 0.678255266291780 0.510079430717410 0.340715209332522 0.170556544241826 0.000000000000000 +0.000000000000000 -0.167943450510831 -0.335500377157215 -0.502285500491627 -0.667916023660615 -0.832012858143040 -0.994201830934093 -1.154114867180787 -1.311391142438462 -1.465678198917712 -1.616633020328909 -1.763923060204049 -1.907227218882299 -2.046236764680817 -2.180656195139177 -2.310204034615926 -2.434613564929232 -2.553633486169589 -2.667028505258935 -2.774579850299581 -2.876085709227219 -2.971361591763581 -3.060240614148831 -3.142573706618342 -3.218229744067229 -3.287095600817154 -3.349076130867567 -3.409014086808821 -3.468322252052535 -3.519734214062417 -3.563043081392247 -3.598079763384713 -3.624713951501415 -3.642854851516319 -3.652451661490344 -3.653493792298286 -3.646010829344823 -3.653493792298286 -3.652451661490345 -3.642854851516319 -3.624713951501415 -3.598079763384708 -3.563043081392245 -3.519734214062417 -3.468322252052535 -3.409014086808821 -3.349076130867569 -3.287095600817152 -3.218229744067226 -3.142573706618390 -3.060240614148833 -2.971361591763585 -2.876085709227221 -2.774579850299552 -2.667028505258936 -2.553633486169590 -2.434613564929257 -2.310204034615943 -2.180656195139160 -2.046236764680809 -1.907227218882304 -1.763923060204062 -1.616633020328912 -1.465678198917718 -1.311391142438435 -1.154114867180750 -0.994201830934104 -0.832012858143075 -0.667916023660625 -0.502285500491640 -0.335500377157193 -0.167943450510844 0.000000000000000 0.167943450510817 0.335500377157210 0.502285500491665 0.667916023660629 0.832012858143032 0.994201830934071 1.154114867180785 1.311391142438441 1.465678198917720 1.616633020328907 1.763923060204044 1.907227218882288 2.046236764680815 2.180656195139169 2.310204034615945 2.434613564929229 2.553633486169581 2.667028505258928 2.774579850299579 2.876085709227223 2.971361591763588 3.060240614148833 3.142573706618341 3.218229744067225 3.287095600817153 3.349076130867569 3.409014086808821 3.468322252052533 3.519734214062417 3.563043081392247 3.598079763384712 3.624713951501416 3.642854851516324 3.652451661490344 3.653493792298286 3.646010829344823 3.653493792298286 3.652451661490344 3.642854851516324 3.624713951501416 3.598079763384713 3.563043081392247 3.519734214062417 3.468322252052533 3.409014086808821 3.349076130867569 3.287095600817154 3.218229744067227 3.142573706618342 3.060240614148807 2.971361591763588 2.876085709227223 2.774579850299579 2.667028505258928 2.553633486169581 2.434613564929257 2.310204034615945 2.180656195139169 2.046236764680815 1.907227218882288 1.763923060204044 1.616633020328919 1.465678198917720 1.311391142438441 1.154114867180785 0.994201830934071 0.832012858143032 0.667916023660629 0.502285500491665 0.335500377157208 0.167943450510816 0.000000000000000 +0.000000000000000 -0.164269523599913 -0.328165849414214 -0.491316950512730 -0.653353135943205 -0.813908204424796 -0.972620580992743 -1.129134431084418 -1.283100746705981 -1.434178399500315 -1.582035155753791 -1.726348648626147 -1.866807303167873 -2.003111209993104 -2.134972943810988 -2.262118323371684 -2.384287109761093 -2.501233640373540 -2.612727396298915 -2.718553501287334 -2.818513150881786 -2.912423970750123 -3.000120303686620 -3.081453425194512 -3.156291687999463 -3.224520596271941 -3.286042810760794 -3.340778086447918 -3.388663144725939 -3.429651482479821 -3.463713120803263 -3.490834296416601 -3.511017099153702 -3.524279059169006 -3.530652687759747 -3.530184975920749 -3.522494988758530 -3.530184975920749 -3.530652687759751 -3.524279059169007 -3.511017099153702 -3.490834296416588 -3.463713120803258 -3.429651482479827 -3.388663144725941 -3.340778086447919 -3.286042810760795 -3.224520596271929 -3.156291687999460 -3.081453425194514 -3.000120303686622 -2.912423970750123 -2.818513150881787 -2.718553501287324 -2.612727396298923 -2.501233640373555 -2.384287109761094 -2.262118323371687 -2.134972943810984 -2.003111209993083 -1.866807303167884 -1.726348648626159 -1.582035155753818 -1.434178399500356 -1.283100746705956 -1.129134431084400 -0.972620580992766 -0.813908204424803 -0.653353135943210 -0.491316950512744 -0.328165849414192 -0.164269523599922 0.000000000000000 0.164269523599903 0.328165849414202 0.491316950512751 0.653353135943223 0.813908204424784 0.972620580992736 1.129134431084415 1.283100746705973 1.434178399500358 1.582035155753740 1.726348648626143 1.866807303167869 2.003111209993103 2.134972943810985 2.262118323371689 2.384287109761091 2.501233640373537 2.612727396298914 2.718553501287332 2.818513150881813 2.912423970750221 3.000120303686623 3.081453425194510 3.156291687999462 3.224520596271940 3.286042810760796 3.340778086447919 3.388663144725935 3.429651482479823 3.463713120803258 3.490834296416607 3.511017099153702 3.524279059169006 3.530652687759755 3.530184975920749 3.522339607248859 3.530184975920749 3.530652687759755 3.524279059169006 3.511017099153702 3.490834296416607 3.463713120803258 3.429651482479824 3.388663144725935 3.340778086447919 3.286042810760796 3.224520596271940 3.156291687999462 3.081453425194510 3.000120303686620 2.912423970750221 2.818513150881813 2.718553501287332 2.612727396298914 2.501233640373537 2.384287109761102 2.262118323371689 2.134972943810986 2.003111209993103 1.866807303167869 1.726348648626143 1.582035155753822 1.434178399500357 1.283100746705973 1.129134431084415 0.972620580992736 0.813908204424778 0.653353135943223 0.491316950512751 0.328165849414202 0.164269523599903 0.000000000000000 +0.000000000000000 -0.159556913258962 -0.318755835245426 -0.477239869137715 -0.634654301789531 -0.790647682534965 -0.944872886449724 -1.096988157043528 -1.246658123492136 -1.393554787682416 -1.537358476537810 -1.677758755315553 -1.814455297817138 -1.947158709731370 -2.075591301625090 -2.199487808422531 -2.318596052548841 -2.432677548272344 -2.541508045149369 -2.644878008855553 -2.742593038077674 -2.834474216536738 -2.920358399606515 -3.000098435395633 -3.073563320551357 -3.140638291435156 -3.201224851701454 -3.255240737676632 -3.302619823299973 -3.343311966716354 -3.377282800943071 -3.404513471327292 -3.425000322789490 -3.438754540101517 -3.445801744675334 -3.446181551536724 -3.439947090327111 -3.446181551536724 -3.445801744675334 -3.438754540101517 -3.425000322789490 -3.404513471327292 -3.377282800943069 -3.343311966716353 -3.302619823299994 -3.255240737676621 -3.201224851701477 -3.140638291435153 -3.073563320551250 -3.000098435395635 -2.920358399606515 -2.834474216536754 -2.742593038077675 -2.644878008855549 -2.541508045149370 -2.432677548272344 -2.318596052548849 -2.199487808422532 -2.075591301625088 -1.947158709731365 -1.814455297817142 -1.677758755315586 -1.537358476537823 -1.393554787682431 -1.246658123492114 -1.096988157043498 -0.944872886449750 -0.790647682534969 -0.634654301789541 -0.477239869137730 -0.318755835245409 -0.159556913258975 0.000000000000000 0.159556913258954 0.318755835245416 0.477239869137742 0.634654301789561 0.790647682534957 0.944872886449703 1.096988157043518 1.246658123492130 1.393554787682472 1.537358476537807 1.677758755315549 1.814455297817135 1.947158709731369 2.075591301625090 2.199487808422583 2.318596052548839 2.432677548272340 2.541508045149361 2.644878008855552 2.742593038077731 2.834474216536780 2.920358399606522 3.000098435395610 3.073563320551357 3.140638291435153 3.201224851701478 3.255240737676613 3.302619823299972 3.343311966716348 3.377282800943069 3.404513471327292 3.425000322789491 3.438754540101517 3.445801744675333 3.446181551536724 3.439947090327111 3.446181551536724 3.445801744675333 3.438754540101517 3.425000322789491 3.404513471327292 3.377282800943069 3.343311966716349 3.302619823299972 3.255240737676613 3.201224851701478 3.140638291435154 3.073563320551357 3.000098435395610 2.920358399606513 2.834474216536779 2.742593038077730 2.644878008855552 2.541508045149361 2.432677548272340 2.318596052548852 2.199487808422583 2.075591301625090 1.947158709731368 1.814455297817135 1.677758755315550 1.537358476537827 1.393554787682472 1.246658123492130 1.096988157043518 0.944872886449703 0.790647682534957 0.634654301789561 0.477239869137742 0.318755835245416 0.159556913258954 0.000000000000000 +0.000000000000000 -0.153835457485557 -0.307329906389538 -0.460143353893138 -0.611937833979339 -0.762378409054147 -0.911134157517308 -1.057879142738084 -1.202293359012271 -1.344063650221053 -1.482884597088922 -1.618459369134465 -1.750500537634231 -1.878730846164641 -2.002883935555162 -2.122705020371591 -2.237951514353480 -2.348393602544264 -2.453814758186864 -2.554012202795481 -2.648797308163672 -2.737995939421213 -2.821448738609001 -2.899011348596138 -2.970554577517713 -3.035964504261893 -3.095142525869850 -3.148005348053230 -3.194484920344522 -3.234528317704674 -3.268097570700960 -3.295169446636937 -3.315735184266674 -3.329800184955079 -3.337383663347405 -3.338518260796207 -3.333249624941604 -3.338518260796207 -3.337383663347405 -3.329800184955079 -3.315735184266674 -3.295169446636937 -3.268097570700960 -3.234528317704674 -3.194484920344522 -3.148005348053230 -3.095142525869851 -3.035964504261887 -2.970554577517706 -2.899011348596141 -2.821448738609002 -2.737995939421215 -2.648797308163690 -2.554012202795477 -2.453814758186866 -2.348393602544266 -2.237951514353489 -2.122705020371592 -2.002883935555155 -1.878730846164602 -1.750500537634242 -1.618459369134472 -1.482884597088926 -1.344063650221059 -1.202293359012232 -1.057879142738069 -0.911134157517317 -0.762378409054176 -0.611937833979349 -0.460143353893147 -0.307329906389514 -0.153835457485563 0.000000000000000 0.153835457485541 0.307329906389526 0.460143353893152 0.611937833979355 0.762378409054145 0.911134157517305 1.057879142738073 1.202293359012268 1.344063650221081 1.482884597088914 1.618459369134453 1.750500537634226 1.878730846164638 2.002883935555161 2.122705020371602 2.237951514353480 2.348393602544256 2.453814758186862 2.554012202795479 2.648797308163692 2.737995939421216 2.821448738609040 2.899011348596136 2.970554577517712 3.035964504261888 3.095142525869851 3.148005348053236 3.194484920344520 3.234528317704674 3.268097570700959 3.295169446636937 3.315735184266674 3.329800184955080 3.337383663347405 3.338518260796207 3.333249624941604 3.338518260796207 3.337383663347405 3.329800184955080 3.315735184266674 3.295169446636937 3.268097570700959 3.234528317704674 3.194484920344520 3.148005348053236 3.095142525869851 3.035964504261888 2.970554577517712 2.899011348596136 2.821448738608999 2.737995939421216 2.648797308163692 2.554012202795480 2.453814758186862 2.348393602544256 2.237951514353492 2.122705020371602 2.002883935555160 1.878730846164638 1.750500537634226 1.618459369134453 1.482884597088940 1.344063650221081 1.202293359012268 1.057879142738073 0.911134157517305 0.762378409054145 0.611937833979355 0.460143353893152 0.307329906389526 0.153835457485541 0.000000000000000 +0.000000000000000 -0.147142466914074 -0.293962566731853 -0.440138867724506 -0.585351804669315 -0.729284601556448 -0.871624181715820 -1.012062061292943 -1.150295222109553 -1.286026960073339 -1.418967705454445 -1.548835811523290 -1.675358308241268 -1.798271617914393 -1.917322229954736 -2.032267332149164 -2.142875396101856 -2.248926714797730 -2.350213890527478 -2.446542271714210 -2.537730337490481 -2.623610029186911 -2.704027028208109 -2.778840980086457 -2.847925664819284 -2.911169113899644 -2.968473674758046 -3.019756023623493 -3.064947128095082 -3.103992160989018 -3.136850367280242 -3.163494886197825 -3.183912530759438 -3.198103527228731 -3.206081217168349 -3.207871724917755 -3.203513593467840 -3.207871724917755 -3.206081217168349 -3.198103527228731 -3.183912530759438 -3.163494886197825 -3.136850367280240 -3.103992160989018 -3.064947128095082 -3.019756023623494 -2.968473674758047 -2.911169113899643 -2.847925664819276 -2.778840980086458 -2.704027028208116 -2.623610029186914 -2.537730337490482 -2.446542271714205 -2.350213890527500 -2.248926714797754 -2.142875396101857 -2.032267332149167 -1.917322229954714 -1.798271617914369 -1.675358308241280 -1.548835811523291 -1.418967705454458 -1.286026960073354 -1.150295222109546 -1.012062061292933 -0.871624181715839 -0.729284601556471 -0.585351804669319 -0.440138867724524 -0.293962566731829 -0.147142466914084 0.000000000000000 0.147142466914064 0.293962566731837 0.440138867724540 0.585351804669329 0.729284601556445 0.871624181715811 1.012062061292937 1.150295222109551 1.286026960073388 1.418967705454442 1.548835811523289 1.675358308241258 1.798271617914390 1.917322229954729 2.032267332149168 2.142875396101846 2.248926714797729 2.350213890527454 2.446542271714208 2.537730337490498 2.623610029186922 2.704027028208120 2.778840980086455 2.847925664819283 2.911169113899644 2.968473674758047 3.019756023623494 3.064947128095082 3.103992160989018 3.136850367280241 3.163494886197825 3.183912530759438 3.198103527228729 3.206081217168349 3.207871724917755 3.203513593467840 3.207871724917755 3.206081217168348 3.198103527228729 3.183912530759438 3.163494886197825 3.136850367280242 3.103992160989018 3.064947128095082 3.019756023623494 2.968473674758047 2.911169113899644 2.847925664819283 2.778840980086455 2.704027028208108 2.623610029186916 2.537730337490486 2.446542271714208 2.350213890527454 2.248926714797729 2.142875396101861 2.032267332149168 1.917322229954729 1.798271617914390 1.675358308241258 1.548835811523289 1.418967705454460 1.286026960073388 1.150295222109551 1.012062061292937 0.871624181715810 0.729284601556445 0.585351804669329 0.440138867724540 0.293962566731837 0.147142466914064 0.000000000000000 +0.000000000000000 -0.139522452724321 -0.278742708992252 -0.417359426200963 -0.555072965709195 -0.691586235476809 -0.826605521560375 -0.959841304857352 -1.091009059583894 -1.219830030082827 -1.346031982694404 -1.469349929573403 -1.589526821511290 -1.706314207009566 -1.819472855058680 -1.928773339296221 -2.033996581451938 -2.134934352234238 -2.231389728064852 -2.323177502334005 -2.410124550116236 -2.492070145558840 -2.568866231433401 -2.640377640611568 -2.706482269506043 -2.767071203782095 -2.822048796913900 -2.871332702416001 -2.914853860828533 -2.952556442773915 -2.984397749625278 -3.010348073542803 -3.030390518827975 -3.044520786722315 -3.052746925948155 -3.055089051423953 -3.051579033712569 -3.055089051423953 -3.052746925948155 -3.044520786722313 -3.030390518827974 -3.010348073542803 -2.984397749625276 -2.952556442773915 -2.914853860828535 -2.871332702416002 -2.822048796913901 -2.767071203782082 -2.706482269506016 -2.640377640611568 -2.568866231433402 -2.492070145558841 -2.410124550116244 -2.323177502334002 -2.231389728064859 -2.134934352234251 -2.033996581451941 -1.928773339296223 -1.819472855058675 -1.706314207009509 -1.589526821511291 -1.469349929573427 -1.346031982694405 -1.219830030082831 -1.091009059583878 -0.959841304857318 -0.826605521560378 -0.691586235476819 -0.555072965709205 -0.417359426200966 -0.278742708992227 -0.139522452724331 0.000000000000000 0.139522452724314 0.278742708992243 0.417359426200972 0.555072965709209 0.691586235476803 0.826605521560337 0.959841304857348 1.091009059583883 1.219830030082862 1.346031982694389 1.469349929573400 1.589526821511278 1.706314207009514 1.819472855058677 1.928773339296238 2.033996581451936 2.134934352234235 2.231389728064846 2.323177502334005 2.410124550116245 2.492070145558842 2.568866231433410 2.640377640611566 2.706482269506042 2.767071203782083 2.822048796913901 2.871332702416008 2.914853860828533 2.952556442773914 2.984397749625276 3.010348073542803 3.030390518827974 3.044520786722305 3.052746925948155 3.055089051423952 3.051579033712569 3.055089051423952 3.052746925948155 3.044520786722305 3.030390518827974 3.010348073542803 2.984397749625276 2.952556442773915 2.914853860828533 2.871332702416008 2.822048796913901 2.767071203782083 2.706482269506042 2.640377640611566 2.568866231433399 2.492070145558842 2.410124550116245 2.323177502334005 2.231389728064846 2.134934352234235 2.033996581451953 1.928773339296238 1.819472855058677 1.706314207009514 1.589526821511278 1.469349929573400 1.346031982694412 1.219830030082862 1.091009059583883 0.959841304857348 0.826605521560337 0.691586235476803 0.555072965709209 0.417359426200972 0.278742708992243 0.139522452724314 0.000000000000000 +0.000000000000000 -0.131026800117794 -0.261772962641128 -0.391958621792996 -0.521305452153890 -0.649537430666572 -0.776381588888162 -0.901568752331423 -1.024834263815067 -1.145918687841211 -1.264568493132179 -1.380536710591447 -1.493583564101846 -1.603477071737321 -1.709993615141969 -1.812918475020081 -1.912046330881326 -2.007181723398623 -2.098139477952453 -2.184745088165052 -2.266835058457215 -2.344257204897699 -2.416870913849645 -2.484547358160716 -2.547169670874013 -2.604633076676147 -2.656844981523596 -2.703725021111759 -2.745205069069375 -2.781229205962380 -2.811753650389200 -2.836746653635799 -2.856188359522543 -2.870070631240716 -2.878396847111246 -2.881181667327060 -2.878450773850159 -2.881181667327060 -2.878396847111246 -2.870070631240719 -2.856188359522544 -2.836746653635799 -2.811753650389199 -2.781229205962382 -2.745205069069375 -2.703725021111759 -2.656844981523618 -2.604633076676141 -2.547169670874004 -2.484547358160717 -2.416870913849675 -2.344257204897699 -2.266835058457216 -2.184745088165048 -2.098139477952454 -2.007181723398624 -1.912046330881326 -1.812918475020089 -1.709993615141954 -1.603477071737289 -1.493583564101847 -1.380536710591463 -1.264568493132183 -1.145918687841213 -1.024834263815042 -0.901568752331413 -0.776381588888182 -0.649537430666581 -0.521305452153900 -0.391958621793003 -0.261772962641101 -0.131026800117802 0.000000000000000 0.131026800117781 0.261772962641111 0.391958621793008 0.521305452153929 0.649537430666562 0.776381588888158 0.901568752331419 1.024834263815044 1.145918687841219 1.264568493132177 1.380536710591445 1.493583564101842 1.603477071737320 1.709993615141967 1.812918475020090 1.912046330881323 2.007181723398621 2.098139477952439 2.184745088165049 2.266835058457217 2.344257204897720 2.416870913849676 2.484547358160715 2.547169670874013 2.604633076676147 2.656844981523624 2.703725021111760 2.745205069069375 2.781229205962380 2.811753650389200 2.836746653635799 2.856188359522544 2.870070631240719 2.878396847111246 2.881181667327062 2.878450773850159 2.881181667327062 2.878396847111246 2.870070631240719 2.856188359522544 2.836746653635799 2.811753650389200 2.781229205962380 2.745205069069375 2.703725021111760 2.656844981523624 2.604633076676147 2.547169670874013 2.484547358160716 2.416870913849644 2.344257204897720 2.266835058457217 2.184745088165049 2.098139477952439 2.007181723398621 1.912046330881328 1.812918475020091 1.709993615141967 1.603477071737320 1.493583564101842 1.380536710591445 1.264568493132186 1.145918687841219 1.024834263815044 0.901568752331419 0.776381588888157 0.649537430666562 0.521305452153929 0.391958621793008 0.261772962641110 0.131026800117781 0.000000000000000 +0.000000000000000 -0.121713389823425 -0.243168937959506 -0.364109492579805 -0.484279278745877 -0.603424579800889 -0.721294410345005 -0.837641178066932 -0.952221331771231 -1.064795993022448 -1.175131568925724 -1.283000343673186 -1.388181046613685 -1.490459394738641 -1.589628607629544 -1.685489893071562 -1.777852901708444 -1.866536149293698 -1.951367405278114 -2.032184046665424 -2.108833376264411 -2.181172904666929 -2.249070595478867 -2.312405073537676 -2.371065796046643 -2.424953186755984 -2.473978733517220 -2.518065049723086 -2.557145900333263 -2.591166193356115 -2.620081937830965 -2.643860169504992 -2.662478845552237 -2.675926709812450 -2.684203130150145 -2.687317909647942 -2.685291073435525 -2.687317909647942 -2.684203130150146 -2.675926709812450 -2.662478845552238 -2.643860169504992 -2.620081937830936 -2.591166193356115 -2.557145900333263 -2.518065049723087 -2.473978733517220 -2.424953186755982 -2.371065796046633 -2.312405073537676 -2.249070595478868 -2.181172904666935 -2.108833376264420 -2.032184046665421 -1.951367405278115 -1.866536149293699 -1.777852901708445 -1.685489893071584 -1.589628607629540 -1.490459394738635 -1.388181046613686 -1.283000343673188 -1.175131568925728 -1.064795993022463 -0.952221331771220 -0.837641178066912 -0.721294410345012 -0.603424579800901 -0.484279278745894 -0.364109492579820 -0.243168937959485 -0.121713389823437 0.000000000000000 0.121713389823417 0.243168937959490 0.364109492579823 0.484279278745900 0.603424579800886 0.721294410344994 0.837641178066925 0.952221331771225 1.064795993022465 1.175131568925721 1.283000343673182 1.388181046613681 1.490459394738639 1.589628607629541 1.685489893071617 1.777852901708409 1.866536149293698 1.951367405278111 2.032184046665422 2.108833376264429 2.181172904666936 2.249070595478868 2.312405073537675 2.371065796046642 2.424953186755983 2.473978733517225 2.518065049723086 2.557145900333262 2.591166193356115 2.620081937830965 2.643860169504992 2.662478845552238 2.675926709812450 2.684203130150145 2.687317909647942 2.685291073435525 2.687317909647942 2.684203130150145 2.675926709812450 2.662478845552238 2.643860169504992 2.620081937830965 2.591166193356115 2.557145900333262 2.518065049723086 2.473978733517225 2.424953186755983 2.371065796046642 2.312405073537675 2.249070595478858 2.181172904666935 2.108833376264420 2.032184046665422 1.951367405278111 1.866536149293698 1.777852901708449 1.685489893071617 1.589628607629541 1.490459394738639 1.388181046613681 1.283000343673182 1.175131568925729 1.064795993022465 0.952221331771225 0.837641178066925 0.721294410344994 0.603424579800886 0.484279278745900 0.364109492579822 0.243168937959490 0.121713389823417 0.000000000000000 +0.000000000000000 -0.111646170489411 -0.223058371948643 -0.334003243924151 -0.444248640715219 -0.553564232762907 -0.661722100893537 -0.768497321099672 -0.873668537596783 -0.977018521961805 -1.078334716241275 -1.177409758007983 -1.274041985450876 -1.368035920696147 -1.459202729683334 -1.547360657052191 -1.632335434639015 -1.713960662329156 -1.792078160166132 -1.866538290778955 -1.937200251350941 -2.003932334520144 -2.066612157769531 -2.125126861031237 -2.179373272399783 -2.229258042010217 -2.274697744305204 -2.315618949066635 -2.351958261748442 -2.383662333787802 -2.410687843716409 -2.433001450024343 -2.450579716852010 -2.463409013700478 -2.471485390454226 -2.474814429102190 -2.473411073626072 -2.474814429102203 -2.471485390454226 -2.463409013700478 -2.450579716852010 -2.433001450024342 -2.410687843716403 -2.383662333787802 -2.351958261748442 -2.315618949066636 -2.274697744305204 -2.229258042010215 -2.179373272399782 -2.125126861031259 -2.066612157769533 -2.003932334520147 -1.937200251350942 -1.866538290778950 -1.792078160166134 -1.713960662329178 -1.632335434639104 -1.547360657052198 -1.459202729683319 -1.368035920696130 -1.274041985450880 -1.177409758007984 -1.078334716241281 -0.977018521961814 -0.873668537596754 -0.768497321099651 -0.661722100893538 -0.553564232762918 -0.444248640715223 -0.334003243924162 -0.223058371948631 -0.111646170489416 0.000000000000000 0.111646170489401 0.223058371948634 0.334003243924171 0.444248640715237 0.553564232762881 0.661722100893534 0.768497321099668 0.873668537596755 0.977018521961815 1.078334716241273 1.177409758007967 1.274041985450871 1.368035920696146 1.459202729683332 1.547360657052199 1.632335434639015 1.713960662329153 1.792078160166123 1.866538290778950 1.937200251350946 2.003932334520147 2.066612157769534 2.125126861031234 2.179373272399783 2.229258042010215 2.274697744305205 2.315618949066636 2.351958261748408 2.383662333787801 2.410687843716403 2.433001450024344 2.450579716852041 2.463409013700478 2.471485390454236 2.474814429102181 2.473411073626072 2.474814429102181 2.471485390454234 2.463409013700478 2.450579716852041 2.433001450024344 2.410687843716403 2.383662333787801 2.351958261748408 2.315618949066636 2.274697744305205 2.229258042010216 2.179373272399783 2.125126861031234 2.066612157769530 2.003932334520147 1.937200251350945 1.866538290778950 1.792078160166123 1.713960662329153 1.632335434639116 1.547360657052199 1.459202729683332 1.368035920696146 1.274041985450871 1.177409758007967 1.078334716241282 0.977018521961815 0.873668537596755 0.768497321099666 0.661722100893534 0.553564232762881 0.444248640715237 0.334003243924170 0.223058371948634 0.111646170489401 0.000000000000000 +0.000000000000000 -0.100894685190857 -0.201580182540241 -0.301847832770183 -0.401490031731603 -0.500300752984144 -0.598076064426818 -0.694614637048329 -0.789718243911544 -0.883192247541196 -0.974846073949455 -1.064493671609323 -1.151953953769868 -1.237051222600416 -1.319615573752110 -1.399483280032187 -1.476497153003498 -1.550506881439580 -1.621369345693107 -1.688948907164327 -1.753117672188470 -1.813755729796966 -1.870751362942882 -1.924001232918011 -1.973410536825882 -2.018893138109467 -2.060371670264626 -2.097777614001658 -2.131051348239621 -2.160142175443664 -2.185008321924866 -2.205616913837414 -2.221943929704091 -2.233974130399309 -2.241700967603484 -2.245126471821033 -2.244261121121030 -2.245126471821033 -2.241700967603484 -2.233974130399310 -2.221943929704108 -2.205616913837417 -2.185008321924864 -2.160142175443666 -2.131051348239621 -2.097777614001658 -2.060371670264628 -2.018893138109464 -1.973410536825882 -1.924001232918012 -1.870751362942886 -1.813755729796975 -1.753117672188470 -1.688948907164314 -1.621369345693135 -1.550506881439581 -1.476497153003499 -1.399483280032189 -1.319615573752085 -1.237051222600400 -1.151953953769872 -1.064493671609325 -0.974846073949458 -0.883192247541197 -0.789718243911535 -0.694614637048317 -0.598076064426829 -0.500300752984169 -0.401490031731615 -0.301847832770204 -0.201580182540220 -0.100894685190863 0.000000000000000 0.100894685190850 0.201580182540237 0.301847832770210 0.401490031731623 0.500300752984142 0.598076064426798 0.694614637048327 0.789718243911543 0.883192247541208 0.974846073949451 1.064493671609318 1.151953953769839 1.237051222600402 1.319615573752108 1.399483280032194 1.476497153003497 1.550506881439577 1.621369345693095 1.688948907164314 1.753117672188470 1.813755729796978 1.870751362942886 1.924001232918009 1.973410536825881 2.018893138109466 2.060371670264628 2.097777614001659 2.131051348239619 2.160142175443663 2.185008321924864 2.205616913837414 2.221943929704112 2.233974130399310 2.241700967603484 2.245126471821033 2.244261121121030 2.245126471821033 2.241700967603484 2.233974130399310 2.221943929704112 2.205616913837414 2.185008321924864 2.160142175443663 2.131051348239619 2.097777614001659 2.060371670264628 2.018893138109466 1.973410536825881 1.924001232918009 1.870751362942881 1.813755729796975 1.753117672188470 1.688948907164314 1.621369345693095 1.550506881439577 1.476497153003500 1.399483280032194 1.319615573752105 1.237051222600402 1.151953953769839 1.064493671609318 0.974846073949485 0.883192247541208 0.789718243911543 0.694614637048327 0.598076064426798 0.500300752984142 0.401490031731623 0.301847832770210 0.201580182540237 0.100894685190850 0.000000000000000 +0.000000000000000 -0.089533555631814 -0.178883438255018 -0.267866425263445 -0.356300193231643 -0.444003763453281 -0.530797942642512 -0.616505757227030 -0.700952879696987 -0.783968045517188 -0.865383459161641 -0.945035187888450 -1.022763541939375 -1.098413439922186 -1.171834758212273 -1.242882663296385 -1.311417926071653 -1.377307217206773 -1.440423382774054 -1.500645699459233 -1.557860108765473 -1.611959429730055 -1.662843549783809 -1.710419593489803 -1.754602069005541 -1.795312992221932 -1.832481988635258 -1.866046373113844 -1.895951207818778 -1.922149338637027 -1.944601410575656 -1.963275862653021 -1.978148902907333 -1.989204464216370 -1.996434141693565 -1.999837112489219 -1.999420038881172 -1.999837112489219 -1.996434141693565 -1.989204464216370 -1.978148902907334 -1.963275862653013 -1.944601410575635 -1.922149338637027 -1.895951207818778 -1.866046373113844 -1.832481988635258 -1.795312992221893 -1.754602069005539 -1.710419593489806 -1.662843549783809 -1.611959429730056 -1.557860108765473 -1.500645699459224 -1.440423382774054 -1.377307217206773 -1.311417926071653 -1.242882663296385 -1.171834758212262 -1.098413439922184 -1.022763541939377 -0.945035187888452 -0.865383459161646 -0.783968045517195 -0.700952879696977 -0.616505757227027 -0.530797942642515 -0.444003763453294 -0.356300193231653 -0.267866425263448 -0.178883438254999 -0.089533555631819 0.000000000000000 0.089533555631805 0.178883438255011 0.267866425263459 0.356300193231659 0.444003763453271 0.530797942642508 0.616505757227028 0.700952879696980 0.783968045517197 0.865383459161639 0.945035187888419 1.022763541939345 1.098413439922185 1.171834758212263 1.242882663296391 1.311417926071650 1.377307217206772 1.440423382774051 1.500645699459230 1.557860108765512 1.611959429730058 1.662843549783810 1.710419593489803 1.754602069005541 1.795312992221932 1.832481988635258 1.866046373113845 1.895951207818777 1.922149338637027 1.944601410575635 1.963275862653020 1.978148902907334 1.989204464216366 1.996434141693565 1.999837112489219 1.999420038881172 1.999837112489219 1.996434141693565 1.989204464216366 1.978148902907334 1.963275862653020 1.944601410575635 1.922149338637027 1.895951207818777 1.866046373113845 1.832481988635258 1.795312992221932 1.754602069005541 1.710419593489803 1.662843549783808 1.611959429730058 1.557860108765511 1.500645699459230 1.440423382774051 1.377307217206772 1.311417926071657 1.242882663296391 1.171834758212263 1.098413439922185 1.022763541939345 0.945035187888419 0.865383459161651 0.783968045517197 0.700952879696980 0.616505757227028 0.530797942642506 0.444003763453271 0.356300193231659 0.267866425263459 0.178883438255010 0.089533555631805 0.000000000000000 +0.000000000000000 -0.077641927941477 -0.155126251100079 -0.232295739354677 -0.308993910626420 -0.385065401703096 -0.460356335246784 -0.534714681743331 -0.607990615179425 -0.680036861266002 -0.750709037065025 -0.819865980922400 -0.887370071659438 -0.953087536031353 -1.016888743520771 -1.078648487600440 -1.138246252666041 -1.195566465914226 -1.250498733515341 -1.302938060507426 -1.352785053919366 -1.399946108712220 -1.444333576207865 -1.485865914760376 -1.524467822505275 -1.560070352106102 -1.592611007495567 -1.622033822692112 -1.648289422845341 -1.671335067742022 -1.691134678072205 -1.707658844826742 -1.720884822258115 -1.730796504897461 -1.737384389177491 -1.740645520258008 -1.740583424698721 -1.740645520258008 -1.737384389177491 -1.730796504897461 -1.720884822258115 -1.707658844826742 -1.691134678072203 -1.671335067742028 -1.648289422845341 -1.622033822692113 -1.592611007495567 -1.560070352106101 -1.524467822505272 -1.485865914760377 -1.444333576207865 -1.399946108712221 -1.352785053919368 -1.302938060507387 -1.250498733515356 -1.195566465914230 -1.138246252666044 -1.078648487600443 -1.016888743520764 -0.953087536031304 -0.887370071659443 -0.819865980922406 -0.750709037065027 -0.680036861266005 -0.607990615179421 -0.534714681743309 -0.460356335246787 -0.385065401703100 -0.308993910626422 -0.232295739354685 -0.155126251100068 -0.077641927941485 0.000000000000000 0.077641927941474 0.155126251100073 0.232295739354693 0.308993910626431 0.385065401703092 0.460356335246773 0.534714681743320 0.607990615179423 0.680036861266029 0.750709037065023 0.819865980922388 0.887370071659437 0.953087536031352 1.016888743520767 1.078648487600443 1.138246252666041 1.195566465914223 1.250498733515341 1.302938060507400 1.352785053919368 1.399946108712249 1.444333576207865 1.485865914760375 1.524467822505273 1.560070352106101 1.592611007495567 1.622033822692113 1.648289422845340 1.671335067742021 1.691134678072203 1.707658844826742 1.720884822258115 1.730796504897461 1.737384389177491 1.740645520258008 1.740583424698721 1.740645520258008 1.737384389177491 1.730796504897461 1.720884822258115 1.707658844826742 1.691134678072203 1.671335067742021 1.648289422845340 1.622033822692113 1.592611007495567 1.560070352106102 1.524467822505273 1.485865914760375 1.444333576207864 1.399946108712249 1.352785053919368 1.302938060507400 1.250498733515341 1.195566465914223 1.138246252666044 1.078648487600443 1.016888743520767 0.953087536031352 0.887370071659437 0.819865980922388 0.750709037065034 0.680036861266029 0.607990615179423 0.534714681743320 0.460356335246773 0.385065401703092 0.308993910626431 0.232295739354693 0.155126251100073 0.077641927941474 0.000000000000000 +0.000000000000000 -0.065302884256355 -0.130474601078518 -0.195384284923282 -0.259901673057457 -0.323897404537737 -0.387243316294083 -0.449812735373795 -0.511480766422276 -0.572124573500806 -0.631623655369272 -0.689860113394281 -0.746718911279619 -0.802088125855859 -0.855859188209688 -0.907927114480009 -0.958190725698396 -1.006552856102641 -1.052920549407591 -1.097205242573384 -1.139322936669873 -1.179194354493772 -1.216745084656528 -1.251905711920511 -1.284611933620992 -1.314804662072527 -1.342430112916475 -1.367439879425420 -1.389790992836699 -1.409445968842189 -1.426372840414527 -1.440545177200794 -1.451942091761784 -1.460548232980728 -1.466353767006706 -1.469354346136521 -1.469551066073434 -1.469354346136521 -1.466353767006707 -1.460548232980728 -1.451942091761784 -1.440545177200792 -1.426372840414520 -1.409445968842189 -1.389790992836699 -1.367439879425421 -1.342430112916476 -1.314804662072523 -1.284611933620988 -1.251905711920523 -1.216745084656530 -1.179194354493773 -1.139322936669874 -1.097205242573371 -1.052920549407592 -1.006552856102644 -0.958190725698396 -0.907927114480021 -0.855859188209682 -0.802088125855856 -0.746718911279621 -0.689860113394287 -0.631623655369285 -0.572124573500812 -0.511480766422272 -0.449812735373788 -0.387243316294094 -0.323897404537741 -0.259901673057464 -0.195384284923285 -0.130474601078509 -0.065302884256360 0.000000000000000 0.065302884256349 0.130474601078514 0.195384284923286 0.259901673057470 0.323897404537724 0.387243316294081 0.449812735373792 0.511480766422274 0.572124573500814 0.631623655369270 0.689860113394275 0.746718911279619 0.802088125855857 0.855859188209687 0.907927114480022 0.958190725698396 1.006552856102640 1.052920549407587 1.097205242573373 1.139322936669874 1.179194354493773 1.216745084656531 1.251905711920506 1.284611933620992 1.314804662072527 1.342430112916476 1.367439879425421 1.389790992836695 1.409445968842189 1.426372840414520 1.440545177200793 1.451942091761792 1.460548232980728 1.466353767006706 1.469354346136521 1.469551066073434 1.469354346136521 1.466353767006706 1.460548232980728 1.451942091761792 1.440545177200793 1.426372840414520 1.409445968842189 1.389790992836695 1.367439879425421 1.342430112916477 1.314804662072527 1.284611933620992 1.251905711920506 1.216745084656528 1.179194354493773 1.139322936669874 1.097205242573373 1.052920549407587 1.006552856102640 0.958190725698397 0.907927114480022 0.855859188209687 0.802088125855857 0.746718911279619 0.689860113394275 0.631623655369291 0.572124573500814 0.511480766422274 0.449812735373792 0.387243316294081 0.323897404537724 0.259901673057470 0.195384284923286 0.130474601078514 0.065302884256349 0.000000000000000 +0.000000000000000 -0.052602824540058 -0.105101101204539 -0.157390514734610 -0.209367214406433 -0.260928044555500 -0.311970773018490 -0.362394316813620 -0.412098964393201 -0.460986593818559 -0.508960886225952 -0.555927533973921 -0.601794442887424 -0.646471928040619 -0.689872902549715 -0.731913058879243 -0.772511042198147 -0.811588615357758 -0.849070815100965 -0.884886099149205 -0.918966483854676 -0.951247672143714 -0.981669171519567 -1.010174401933277 -1.036710793372335 -1.061229873058900 -1.083687342189058 -1.104043142185536 -1.122261510475283 -1.138311025841348 -1.152164643436005 -1.163799719576987 -1.173198026482581 -1.180345757134091 -1.185233520482449 -1.187856327245643 -1.188213566567188 -1.187856327245643 -1.185233520482449 -1.180345757134091 -1.173198026482581 -1.163799719576987 -1.152164643436004 -1.138311025841355 -1.122261510475283 -1.104043142185537 -1.083687342189058 -1.061229873058899 -1.036710793372330 -1.010174401933278 -0.981669171519592 -0.951247672143714 -0.918966483854677 -0.884886099149204 -0.849070815100965 -0.811588615357758 -0.772511042198147 -0.731913058879244 -0.689872902549713 -0.646471928040610 -0.601794442887426 -0.555927533973923 -0.508960886225955 -0.460986593818564 -0.412098964393189 -0.362394316813614 -0.311970773018493 -0.260928044555501 -0.209367214406434 -0.157390514734612 -0.105101101204528 -0.052602824540062 0.000000000000000 0.052602824540054 0.105101101204534 0.157390514734619 0.209367214406439 0.260928044555491 0.311970773018489 0.362394316813617 0.412098964393196 0.460986593818578 0.508960886225948 0.555927533973919 0.601794442887424 0.646471928040617 0.689872902549715 0.731913058879244 0.772511042198146 0.811588615357758 0.849070815100963 0.884886099149204 0.918966483854677 0.951247672143714 0.981669171519598 1.010174401933277 1.036710793372334 1.061229873058899 1.083687342189058 1.104043142185541 1.122261510475283 1.138311025841341 1.152164643436004 1.163799719576987 1.173198026482582 1.180345757134091 1.185233520482449 1.187856327245643 1.188213566567188 1.187856327245643 1.185233520482449 1.180345757134091 1.173198026482582 1.163799719576987 1.152164643436004 1.138311025841341 1.122261510475283 1.104043142185541 1.083687342189058 1.061229873058899 1.036710793372334 1.010174401933277 0.981669171519566 0.951247672143714 0.918966483854677 0.884886099149204 0.849070815100963 0.811588615357758 0.772511042198147 0.731913058879244 0.689872902549715 0.646471928040617 0.601794442887424 0.555927533973919 0.508960886225956 0.460986593818578 0.412098964393194 0.362394316813617 0.311970773018489 0.260928044555491 0.209367214406439 0.157390514734619 0.105101101204534 0.052602824540053 0.000000000000000 +0.000000000000000 -0.039630823318576 -0.079183712369299 -0.118580900223122 -0.157744954165596 -0.196598941648515 -0.235066594860431 -0.273072473464686 -0.310542125061678 -0.347402242941532 -0.383580820704994 -0.419007303343245 -0.453612734382815 -0.487329898717330 -0.520093460766449 -0.551840097621245 -0.582508626855704 -0.612040128705613 -0.640378062339253 -0.667468375966447 -0.693259610558306 -0.717702996973530 -0.740752546312442 -0.762365133346223 -0.782500572893573 -0.801121689042490 -0.818194377141538 -0.833687658508942 -0.847573727832716 -0.859827993260595 -0.870429109200301 -0.879359001874627 -0.886602887697789 -0.892149284559346 -0.895990016123178 -0.898120209266721 -0.898538284802905 -0.898120209266721 -0.895990016123178 -0.892149284559346 -0.886602887697789 -0.879359001874627 -0.870429109200300 -0.859827993260596 -0.847573727832716 -0.833687658508942 -0.818194377141538 -0.801121689042489 -0.782500572893567 -0.762365133346223 -0.740752546312442 -0.717702996973531 -0.693259610558307 -0.667468375966438 -0.640378062339253 -0.612040128705616 -0.582508626855704 -0.551840097621246 -0.520093460766438 -0.487329898717314 -0.453612734382829 -0.419007303343245 -0.383580820704999 -0.347402242941544 -0.310542125061677 -0.273072473464681 -0.235066594860439 -0.196598941648522 -0.157744954165598 -0.118580900223123 -0.079183712369296 -0.039630823318580 0.000000000000000 0.039630823318574 0.079183712369296 0.118580900223127 0.157744954165602 0.196598941648514 0.235066594860427 0.273072473464685 0.310542125061677 0.347402242941546 0.383580820704994 0.419007303343244 0.453612734382814 0.487329898717330 0.520093460766438 0.551840097621256 0.582508626855695 0.612040128705613 0.640378062339252 0.667468375966441 0.693259610558308 0.717702996973531 0.740752546312442 0.762365133346223 0.782500572893567 0.801121689042489 0.818194377141541 0.833687658508943 0.847573727832715 0.859827993260595 0.870429109200301 0.879359001874627 0.886602887697789 0.892149284559346 0.895990016123178 0.898120209266721 0.898538284802905 0.898120209266721 0.895990016123178 0.892149284559346 0.886602887697789 0.879359001874627 0.870429109200301 0.859827993260595 0.847573727832715 0.833687658508943 0.818194377141543 0.801121689042490 0.782500572893568 0.762365133346223 0.740752546312441 0.717702996973531 0.693259610558308 0.667468375966440 0.640378062339252 0.612040128705613 0.582508626855704 0.551840097621256 0.520093460766438 0.487329898717330 0.453612734382814 0.419007303343244 0.383580820705000 0.347402242941546 0.310542125061677 0.273072473464685 0.235066594860427 0.196598941648514 0.157744954165602 0.118580900223127 0.079183712369296 0.039630823318574 0.000000000000000 +0.000000000000000 -0.026477966199444 -0.052904417783808 -0.079227946664294 -0.105397357537482 -0.131361773610964 -0.157070741531420 -0.182474335253771 -0.207523258594238 -0.232168946214719 -0.256363662792128 -0.280060600132378 -0.303213971997064 -0.325779106418367 -0.347712535287423 -0.368972081010861 -0.389516940040936 -0.409307763095334 -0.428306731894724 -0.446477632258037 -0.463785923407792 -0.480198803350852 -0.495685270212867 -0.510216179418114 -0.523764296619960 -0.536304346300218 -0.547813055970131 -0.558269195918075 -0.567653614463329 -0.575949268687703 -0.583141250630763 -0.589216808945394 -0.594165366024460 -0.597978530619893 -0.600650105987594 -0.602176093602131 -0.602554692495523 -0.602176093602131 -0.600650105987594 -0.597978530619893 -0.594165366024460 -0.589216808945394 -0.583141250630755 -0.575949268687703 -0.567653614463329 -0.558269195918075 -0.547813055970131 -0.536304346300207 -0.523764296619960 -0.510216179418114 -0.495685270212867 -0.480198803350852 -0.463785923407792 -0.446477632258035 -0.428306731894725 -0.409307763095334 -0.389516940040942 -0.368972081010864 -0.347712535287422 -0.325779106418366 -0.303213971997074 -0.280060600132379 -0.256363662792128 -0.232168946214722 -0.207523258594230 -0.182474335253766 -0.157070741531422 -0.131361773610967 -0.105397357537483 -0.079227946664298 -0.052904417783805 -0.026477966199445 0.000000000000000 0.026477966199442 0.052904417783806 0.079227946664299 0.105397357537486 0.131361773610961 0.157070741531416 0.182474335253771 0.207523258594232 0.232168946214730 0.256363662792124 0.280060600132378 0.303213971997064 0.325779106418367 0.347712535287422 0.368972081010867 0.389516940040936 0.409307763095334 0.428306731894722 0.446477632258037 0.463785923407794 0.480198803350859 0.495685270212867 0.510216179418113 0.523764296619960 0.536304346300215 0.547813055970131 0.558269195918075 0.567653614463329 0.575949268687703 0.583141250630763 0.589216808945394 0.594165366024460 0.597978530619893 0.600650105987594 0.602176093602131 0.602554692495523 0.602176093602131 0.600650105987594 0.597978530619893 0.594165366024460 0.589216808945394 0.583141250630763 0.575949268687703 0.567653614463329 0.558269195918075 0.547813055970131 0.536304346300215 0.523764296619960 0.510216179418113 0.495685270212867 0.480198803350859 0.463785923407793 0.446477632258037 0.428306731894722 0.409307763095334 0.389516940040942 0.368972081010867 0.347712535287422 0.325779106418367 0.303213971997064 0.280060600132378 0.256363662792129 0.232168946214730 0.207523258594230 0.182474335253771 0.157070741531416 0.131361773610961 0.105397357537486 0.079227946664299 0.052904417783806 0.026477966199442 0.000000000000000 +0.000000000000000 -0.013236671196831 -0.026447867032250 -0.039608162758996 -0.052692234745640 -0.065674910753607 -0.078531219878123 -0.091236442042567 -0.103766156937103 -0.116096292294142 -0.128203171395043 -0.140063559704886 -0.151654710534579 -0.162954409632504 -0.173941018610950 -0.184593517116004 -0.194891543653247 -0.204815434985132 -0.214346264020527 -0.223465876120485 -0.232156923749235 -0.240402899403596 -0.248188166758945 -0.255497989974475 -0.262318561105525 -0.268637025575514 -0.274441505665436 -0.279721121983365 -0.284466012882016 -0.288667351797067 -0.292317362484270 -0.295409332138124 -0.297937622380178 -0.299897678109356 -0.301286034212067 -0.302100320134099 -0.302339262321034 -0.302100320134099 -0.301286034212067 -0.299897678109356 -0.297937622380178 -0.295409332138124 -0.292317362484265 -0.288667351797067 -0.284466012882016 -0.279721121983365 -0.274441505665436 -0.268637025575514 -0.262318561105524 -0.255497989974476 -0.248188166758945 -0.240402899403596 -0.232156923749235 -0.223465876120483 -0.214346264020527 -0.204815434985135 -0.194891543653247 -0.184593517116004 -0.173941018610949 -0.162954409632498 -0.151654710534579 -0.140063559704887 -0.128203171395043 -0.116096292294145 -0.103766156937102 -0.091236442042564 -0.078531219878125 -0.065674910753607 -0.052692234745640 -0.039608162758996 -0.026447867032248 -0.013236671196832 0.000000000000000 0.013236671196830 0.026447867032249 0.039608162758997 0.052692234745641 0.065674910753606 0.078531219878123 0.091236442042566 0.103766156937102 0.116096292294146 0.128203171395043 0.140063559704886 0.151654710534579 0.162954409632501 0.173941018610949 0.184593517116006 0.194891543653247 0.204815434985130 0.214346264020527 0.223465876120483 0.232156923749235 0.240402899403596 0.248188166758945 0.255497989974475 0.262318561105524 0.268637025575514 0.274441505665436 0.279721121983365 0.284466012882016 0.288667351797067 0.292317362484266 0.295409332138124 0.297937622380178 0.299897678109356 0.301286034212067 0.302100320134099 0.302339262321034 0.302100320134099 0.301286034212067 0.299897678109356 0.297937622380178 0.295409332138124 0.292317362484267 0.288667351797067 0.284466012882016 0.279721121983365 0.274441505665436 0.268637025575514 0.262318561105524 0.255497989974475 0.248188166758944 0.240402899403596 0.232156923749235 0.223465876120483 0.214346264020527 0.204815434985130 0.194891543653247 0.184593517116006 0.173941018610949 0.162954409632501 0.151654710534579 0.140063559704886 0.128203171395044 0.116096292294146 0.103766156937102 0.091236442042566 0.078531219878123 0.065674910753606 0.052692234745641 0.039608162758997 0.026447867032249 0.013236671196830 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 \ No newline at end of file diff --git a/simulations/Tutorial/xhps_integration/surface_tables/force_FZ.txt b/simulations/Tutorial/xhps_integration/surface_tables/force_FZ.txt new file mode 100644 index 0000000000000000000000000000000000000000..dcdd23ac40a2021a28bc64df7c877975e1e403c6 --- /dev/null +++ b/simulations/Tutorial/xhps_integration/surface_tables/force_FZ.txt @@ -0,0 +1,73 @@ +-11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 -11.008819200000055 +-11.014300743446427 -11.014276322925923 -11.014203107850561 -11.014081237589291 -11.013910944129007 -11.013692551633115 -11.013426475824032 -11.013113223192260 -11.012753390031872 -11.012347661306013 -11.011896809342067 -11.011401692362540 -11.010863252850653 -11.010282515756678 -11.009660586546840 -11.008998649098286 -11.008297963446868 -11.007559863387751 -11.006785753935970 -11.005977108653049 -11.005135466841262 -11.004262430613563 -11.003359661844030 -11.002428879004370 -11.001471853892660 -11.000490408260447 -10.999486410345421 -10.998461771314624 -10.997418441626671 -10.996358407318928 -10.995283686226950 -10.994196324143438 -10.993098390923898 -10.991991976546579 -10.990879187134269 -10.989762140944720 -10.988642964338894 -10.989762140944720 -10.990879187134269 -10.991991976546579 -10.993098390923898 -10.994196324143438 -10.995283686226950 -10.996358407318928 -10.997418441626671 -10.998461771314624 -10.999486410345421 -11.000490408260447 -11.001471853892660 -11.002428879004370 -11.003359661844030 -11.004262430613563 -11.005135466841262 -11.005977108653049 -11.006785753935970 -11.007559863387751 -11.008297963446868 -11.008998649098286 -11.009660586546840 -11.010282515756678 -11.010863252850653 -11.011401692362540 -11.011896809342067 -11.012347661306013 -11.012753390031872 -11.013113223192260 -11.013426475824032 -11.013692551633115 -11.013910944129007 -11.014081237589291 -11.014203107850561 -11.014276322925923 -11.014300743446427 -11.014276322925923 -11.014203107850561 -11.014081237589291 -11.013910944129007 -11.013692551633115 -11.013426475824032 -11.013113223192260 -11.012753390031872 -11.012347661306013 -11.011896809342067 -11.011401692362540 -11.010863252850653 -11.010282515756678 -11.009660586546840 -11.008998649098286 -11.008297963446868 -11.007559863387751 -11.006785753935970 -11.005977108653049 -11.005135466841262 -11.004262430613563 -11.003359661844030 -11.002428879004370 -11.001471853892660 -11.000490408260447 -10.999486410345421 -10.998461771314624 -10.997418441626671 -10.996358407318928 -10.995283686226950 -10.994196324143438 -10.993098390923898 -10.991991976546579 -10.990879187134269 -10.989762140944720 -10.988642964338894 -10.989762140944720 -10.990879187134269 -10.991991976546579 -10.993098390923898 -10.994196324143438 -10.995283686226950 -10.996358407318928 -10.997418441626671 -10.998461771314624 -10.999486410345421 -11.000490408260447 -11.001471853892660 -11.002428879004370 -11.003359661844030 -11.004262430613563 -11.005135466841262 -11.005977108653049 -11.006785753935970 -11.007559863387751 -11.008297963446868 -11.008998649098286 -11.009660586546840 -11.010282515756678 -11.010863252850653 -11.011401692362540 -11.011896809342067 -11.012347661306013 -11.012753390031872 -11.013113223192260 -11.013426475824032 -11.013692551633115 -11.013910944129007 -11.014081237589291 -11.014203107850561 -11.014276322925923 -11.014300743446427 +-10.979383700788727 -10.979335045602896 -10.979189172662991 -10.978946359646667 -10.978607068762216 -10.978171945869111 -10.977641819248573 -10.977017698026696 -10.976300770253708 -10.975492400642377 -10.974594127970221 -10.973607662150318 -10.972534880976379 -10.971377826548434 -10.970138701385217 -10.968819864232046 -10.967423825570290 -10.965953242838928 -10.964410915375842 -10.962799779088890 -10.961122900867608 -10.959383472745053 -10.957584805821496 -10.955730323961625 -10.953823557277056 -10.951868135406601 -10.949867780606910 -10.947826300666978 -10.945747581659912 -10.943635580545672 -10.941494317638146 -10.939327868953152 -10.937140358448788 -10.934935950175765 -10.932718840350399 -10.930493249367258 -10.928263413765395 -10.930493249367258 -10.932718840350399 -10.934935950175765 -10.937140358448788 -10.939327868953152 -10.941494317638146 -10.943635580545672 -10.945747581659912 -10.947826300666978 -10.949867780606910 -10.951868135406601 -10.953823557277056 -10.955730323961625 -10.957584805821496 -10.959383472745053 -10.961122900867608 -10.962799779088890 -10.964410915375842 -10.965953242838928 -10.967423825570290 -10.968819864232046 -10.970138701385217 -10.971377826548434 -10.972534880976379 -10.973607662150318 -10.974594127970221 -10.975492400642377 -10.976300770253708 -10.977017698026696 -10.977641819248573 -10.978171945869111 -10.978607068762216 -10.978946359646667 -10.979189172662991 -10.979335045602896 -10.979383700788727 -10.979335045602896 -10.979189172662991 -10.978946359646667 -10.978607068762216 -10.978171945869111 -10.977641819248573 -10.977017698026696 -10.976300770253708 -10.975492400642377 -10.974594127970221 -10.973607662150318 -10.972534880976379 -10.971377826548434 -10.970138701385217 -10.968819864232046 -10.967423825570290 -10.965953242838928 -10.964410915375842 -10.962799779088890 -10.961122900867608 -10.959383472745017 -10.957584805821496 -10.955730323961625 -10.953823557277056 -10.951868135406601 -10.949867780606910 -10.947826300666978 -10.945747581659912 -10.943635580545672 -10.941494317638146 -10.939327868953152 -10.937140358448788 -10.934935950175765 -10.932718840350399 -10.930493249367258 -10.928263413765395 -10.930493249367258 -10.932718840350399 -10.934935950175765 -10.937140358448788 -10.939327868953152 -10.941494317638146 -10.943635580545672 -10.945747581659912 -10.947826300666978 -10.949867780606910 -10.951868135406601 -10.953823557277056 -10.955730323961625 -10.957584805821496 -10.959383472745040 -10.961122900867608 -10.962799779088890 -10.964410915375842 -10.965953242838928 -10.967423825570290 -10.968819864232046 -10.970138701385217 -10.971377826548434 -10.972534880976379 -10.973607662150318 -10.974594127970221 -10.975492400642377 -10.976300770253708 -10.977017698026696 -10.977641819248573 -10.978171945869111 -10.978607068762216 -10.978946359646667 -10.979189172662991 -10.979335045602896 -10.979383700788727 +-10.904320629398155 -10.904248109842102 -10.904030689218901 -10.903668781401240 -10.903163075301078 -10.902514533558769 -10.901724390710418 -10.900794150837815 -10.899725584705374 -10.898520726389517 -10.897181869406506 -10.895711562346776 -10.894112604023304 -10.892388038144135 -10.890541147518491 -10.888575447807591 -10.886494680832614 -10.884302807451769 -10.882004000020460 -10.879602634449489 -10.877103281874565 -10.874510699955509 -10.871829823819203 -10.869065756665815 -10.866223760054268 -10.863309243886691 -10.860327756110143 -10.857284972156126 -10.854186684136938 -10.851038789819734 -10.847847281400352 -10.844618234096485 -10.841357794583171 -10.838072169292319 -10.834767612598480 -10.831450414913068 -10.828126890710422 -10.831450414913068 -10.834767612598480 -10.838072169292319 -10.841357794583171 -10.844618234096485 -10.847847281400352 -10.851038789819734 -10.854186684136938 -10.857284972156126 -10.860327756110143 -10.863309243886691 -10.866223760054268 -10.869065756665815 -10.871829823819203 -10.874510699955509 -10.877103281874565 -10.879602634449489 -10.882004000020460 -10.884302807451769 -10.886494680832614 -10.888575447807591 -10.890541147518491 -10.892388038144135 -10.894112604023304 -10.895711562346776 -10.897181869406506 -10.898520726389517 -10.899725584705374 -10.900794150837815 -10.901724390710418 -10.902514533558769 -10.903163075301078 -10.903668781401240 -10.904030689218901 -10.904248109842102 -10.904320629398155 -10.904248109842102 -10.904030689218901 -10.903668781401240 -10.903163075301078 -10.902514533558769 -10.901724390710418 -10.900794150837815 -10.899725584705374 -10.898520726389517 -10.897181869406506 -10.895711562346776 -10.894112604023304 -10.892388038144135 -10.890541147518491 -10.888575447807591 -10.886494680832614 -10.884302807451769 -10.882004000020460 -10.879602634449489 -10.877103281874565 -10.874510699955509 -10.871829823819203 -10.869065756665815 -10.866223760054268 -10.863309243886691 -10.860327756110143 -10.857284972156126 -10.854186684136938 -10.851038789819734 -10.847847281400352 -10.844618234096485 -10.841357794583171 -10.838072169292319 -10.834767612598480 -10.831450414913068 -10.828126890710422 -10.831450414913068 -10.834767612598480 -10.838072169292319 -10.841357794583171 -10.844618234096485 -10.847847281400352 -10.851038789819734 -10.854186684136938 -10.857284972156126 -10.860327756110143 -10.863309243886691 -10.866223760054268 -10.869065756665815 -10.871829823819203 -10.874510699955509 -10.877103281874565 -10.879602634449489 -10.882004000020460 -10.884302807451769 -10.886494680832614 -10.888575447807591 -10.890541147518491 -10.892388038144135 -10.894112604023304 -10.895711562346776 -10.897181869406506 -10.898520726389517 -10.899725584705374 -10.900794150837815 -10.901724390710418 -10.902514533558769 -10.903163075301078 -10.903668781401240 -10.904030689218901 -10.904248109842102 -10.904320629398155 +-10.789660861776563 -10.789565029767951 -10.789277716163735 -10.788799467881642 -10.788131195294614 -10.787274170497364 -10.786230024885382 -10.785000746049123 -10.783588673990721 -10.781996496669692 -10.780227244885928 -10.778284286510884 -10.776171320076145 -10.773892367733485 -10.771451767598206 -10.768854165491410 -10.766104506096168 -10.763208023545586 -10.760170231458863 -10.756996912445800 -10.753694107099490 -10.750268102497687 -10.746725420234863 -10.743072804008001 -10.739317206779752 -10.735465777542840 -10.731525847711783 -10.727504917166888 -10.723410639978027 -10.719250809834435 -10.715033345209440 -10.710766274286415 -10.706457719677447 -10.702115882961266 -10.697749029070705 -10.693365470560346 -10.688973551782928 -10.693365470560346 -10.697749029070705 -10.702115882961266 -10.706457719677447 -10.710766274286415 -10.715033345209440 -10.719250809834435 -10.723410639978027 -10.727504917166888 -10.731525847711776 -10.735465777542840 -10.739317206779752 -10.743072804008001 -10.746725420234863 -10.750268102497687 -10.753694107099490 -10.756996912445800 -10.760170231458863 -10.763208023545586 -10.766104506096168 -10.768854165491410 -10.771451767598206 -10.773892367733485 -10.776171320076145 -10.778284286510884 -10.780227244885927 -10.781996496669692 -10.783588673990721 -10.785000746049123 -10.786230024885382 -10.787274170497364 -10.788131195294614 -10.788799467881642 -10.789277716163735 -10.789565029767951 -10.789660861776563 -10.789565029767951 -10.789277716163735 -10.788799467881642 -10.788131195294614 -10.787274170497364 -10.786230024885382 -10.785000746049123 -10.783588673990721 -10.781996496669692 -10.780227244885928 -10.778284286510885 -10.776171320076145 -10.773892367733485 -10.771451767598206 -10.768854165491410 -10.766104506096168 -10.763208023545586 -10.760170231458863 -10.756996912445800 -10.753694107099490 -10.750268102497687 -10.746725420234863 -10.743072804008001 -10.739317206779752 -10.735465777542840 -10.731525847711776 -10.727504917166888 -10.723410639978027 -10.719250809834435 -10.715033345209440 -10.710766274286415 -10.706457719677447 -10.702115882961266 -10.697749029070705 -10.693365470560346 -10.688973551782928 -10.693365470560346 -10.697749029070705 -10.702115882961266 -10.706457719677447 -10.710766274286415 -10.715033345209440 -10.719250809834435 -10.723410639978027 -10.727504917166888 -10.731525847711776 -10.735465777542840 -10.739317206779752 -10.743072804008001 -10.746725420234863 -10.750268102497687 -10.753694107099490 -10.756996912445800 -10.760170231458863 -10.763208023545586 -10.766104506096164 -10.768854165491410 -10.771451767598206 -10.773892367733485 -10.776171320076145 -10.778284286510885 -10.780227244885927 -10.781996496669692 -10.783588673990721 -10.785000746049123 -10.786230024885382 -10.787274170497364 -10.788131195294614 -10.788799467881642 -10.789277716163735 -10.789565029767951 -10.789660861776563 +-10.636246366574399 -10.636127951452661 -10.635772931497355 -10.635181982509186 -10.634356229393093 -10.633297244017076 -10.632007042220035 -10.630488079974342 -10.628743248711013 -10.626775869815562 -10.624589688305413 -10.622188865701490 -10.619577972105899 -10.616761977503089 -10.613746242298893 -10.610536507116576 -10.607138881869524 -10.603559834130477 -10.599806176820321 -10.595885055238943 -10.591803933464247 -10.587570580143433 -10.583193053705170 -10.578679687019850 -10.574039071537481 -10.569280040933384 -10.564411654292741 -10.559443178866323 -10.554384072429396 -10.549243965278739 -10.544032641900262 -10.538760022344382 -10.533436143342044 -10.528071139199552 -10.522675222507056 -10.517258664698847 -10.511831776500539 -10.517258664698847 -10.522675222507056 -10.528071139199552 -10.533436143342044 -10.538760022344386 -10.544032641900262 -10.549243965278739 -10.554384072429396 -10.559443178866287 -10.564411654292741 -10.569280040933384 -10.574039071537481 -10.578679687019850 -10.583193053705170 -10.587570580143431 -10.591803933464247 -10.595885055238943 -10.599806176820321 -10.603559834130477 -10.607138881869524 -10.610536507116576 -10.613746242298893 -10.616761977503089 -10.619577972105899 -10.622188865701490 -10.624589688305413 -10.626775869815562 -10.628743248711013 -10.630488079974342 -10.632007042220035 -10.633297244017076 -10.634356229393093 -10.635181982509186 -10.635772931497355 -10.636127951452661 -10.636246366574399 -10.636127951452661 -10.635772931497355 -10.635181982509186 -10.634356229393093 -10.633297244017076 -10.632007042220035 -10.630488079974342 -10.628743248711013 -10.626775869815555 -10.624589688305413 -10.622188865701490 -10.619577972105899 -10.616761977503089 -10.613746242298893 -10.610536507116576 -10.607138881869524 -10.603559834130479 -10.599806176820321 -10.595885055238943 -10.591803933464247 -10.587570580143431 -10.583193053705170 -10.578679687019850 -10.574039071537481 -10.569280040933384 -10.564411654292741 -10.559443178866287 -10.554384072429396 -10.549243965278739 -10.544032641900262 -10.538760022344382 -10.533436143342044 -10.528071139199552 -10.522675222507056 -10.517258664698847 -10.511831776500539 -10.517258664698847 -10.522675222507056 -10.528071139199552 -10.533436143342044 -10.538760022344382 -10.544032641900262 -10.549243965278739 -10.554384072429396 -10.559443178866287 -10.564411654292741 -10.569280040933384 -10.574039071537481 -10.578679687019850 -10.583193053705170 -10.587570580143431 -10.591803933464247 -10.595885055238943 -10.599806176820321 -10.603559834130479 -10.607138881869524 -10.610536507116576 -10.613746242298893 -10.616761977503089 -10.619577972105899 -10.622188865701490 -10.624589688305413 -10.626775869815555 -10.628743248711013 -10.630488079974342 -10.632007042220035 -10.633297244017076 -10.634356229393093 -10.635181982509186 -10.635772931497355 -10.636127951452661 -10.636246366574399 +-10.445205399066749 -10.445065302042494 -10.444645277652366 -10.443946125436671 -10.442969176271360 -10.441716289834773 -10.440189851067387 -10.438392765632130 -10.436328454383352 -10.434000846854747 -10.431414373779623 -10.428573958656411 -10.425485008376810 -10.422153402933189 -10.418585484225876 -10.414788043990885 -10.410768310871619 -10.406533936658532 -10.402092981723529 -10.397453899676732 -10.392625521274542 -10.387617037609688 -10.382437982615414 -10.377098214917382 -10.371607899066747 -10.365977486191873 -10.360217694103682 -10.354339486893705 -10.348354054063565 -10.342272789224770 -10.336107268410585 -10.329869228040357 -10.323570542578405 -10.317223201930595 -10.310839288620503 -10.304430954789911 -10.298010399066737 -10.304430954789911 -10.310839288620503 -10.317223201930595 -10.323570542578405 -10.329869228040357 -10.336107268410593 -10.342272789224770 -10.348354054063561 -10.354339486893705 -10.360217694103682 -10.365977486191873 -10.371607899066747 -10.377098214917382 -10.382437982615414 -10.387617037609688 -10.392625521274542 -10.397453899676732 -10.402092981723529 -10.406533936658532 -10.410768310871619 -10.414788043990885 -10.418585484225876 -10.422153402933189 -10.425485008376810 -10.428573958656411 -10.431414373779623 -10.434000846854747 -10.436328454383352 -10.438392765632130 -10.440189851067387 -10.441716289834773 -10.442969176271360 -10.443946125436671 -10.444645277652366 -10.445065302042494 -10.445205399066749 -10.445065302042494 -10.444645277652366 -10.443946125436671 -10.442969176271360 -10.441716289834773 -10.440189851067387 -10.438392765632130 -10.436328454383352 -10.434000846854747 -10.431414373779623 -10.428573958656411 -10.425485008376810 -10.422153402933189 -10.418585484225876 -10.414788043990885 -10.410768310871619 -10.406533936658532 -10.402092981723529 -10.397453899676732 -10.392625521274542 -10.387617037609688 -10.382437982615414 -10.377098214917382 -10.371607899066747 -10.365977486191873 -10.360217694103682 -10.354339486893705 -10.348354054063565 -10.342272789224806 -10.336107268410593 -10.329869228040357 -10.323570542578405 -10.317223201930595 -10.310839288620503 -10.304430954789911 -10.298010399066737 -10.304430954789911 -10.310839288620503 -10.317223201930595 -10.323570542578405 -10.329869228040357 -10.336107268410593 -10.342272789224806 -10.348354054063565 -10.354339486893705 -10.360217694103682 -10.365977486191873 -10.371607899066747 -10.377098214917382 -10.382437982615414 -10.387617037609688 -10.392625521274542 -10.397453899676732 -10.402092981723529 -10.406533936658532 -10.410768310871619 -10.414788043990885 -10.418585484225876 -10.422153402933189 -10.425485008376810 -10.428573958656411 -10.431414373779623 -10.434000846854747 -10.436328454383352 -10.438392765632130 -10.440189851067387 -10.441716289834773 -10.442969176271360 -10.443946125436671 -10.444645277652366 -10.445065302042494 -10.445205399066749 +-10.217943989300130 -10.217783276596302 -10.217301444410579 -10.216499409937899 -10.215378699896426 -10.213941447621506 -10.212190389004480 -10.210128857284952 -10.207760776705767 -10.205090655042797 -10.202123575024487 -10.198865184656258 -10.195321686469365 -10.191499825713988 -10.187406877519360 -10.183050633044886 -10.178439384649625 -10.173581910106961 -10.168487455895701 -10.163165719599061 -10.157626831444542 -10.151881335020459 -10.145940167205932 -10.139814637351515 -10.133516405751429 -10.127057461447516 -10.120450099407376 -10.113706897120139 -10.106840690654693 -10.099864550225128 -10.092791755311536 -10.085635769380804 -10.078410214258852 -10.071128844200677 -10.063805519707898 -10.056454181145021 -10.049088822202751 -10.056454181145021 -10.063805519707898 -10.071128844200677 -10.078410214258852 -10.085635769380804 -10.092791755311545 -10.099864550225128 -10.106840690654693 -10.113706897120139 -10.120450099407376 -10.127057461447517 -10.133516405751429 -10.139814637351515 -10.145940167205930 -10.151881335020459 -10.157626831444540 -10.163165719599061 -10.168487455895701 -10.173581910106961 -10.178439384649625 -10.183050633044886 -10.187406877519360 -10.191499825713990 -10.195321686469365 -10.198865184656258 -10.202123575024487 -10.205090655042797 -10.207760776705767 -10.210128857284952 -10.212190389004480 -10.213941447621506 -10.215378699896426 -10.216499409937899 -10.217301444410579 -10.217783276596302 -10.217943989300130 -10.217783276596302 -10.217301444410579 -10.216499409937899 -10.215378699896426 -10.213941447621506 -10.212190389004480 -10.210128857284952 -10.207760776705767 -10.205090655042797 -10.202123575024487 -10.198865184656258 -10.195321686469365 -10.191499825713988 -10.187406877519360 -10.183050633044886 -10.178439384649625 -10.173581910106961 -10.168487455895701 -10.163165719599061 -10.157626831444540 -10.151881335020459 -10.145940167205929 -10.139814637351515 -10.133516405751429 -10.127057461447516 -10.120450099407376 -10.113706897120133 -10.106840690654694 -10.099864550225128 -10.092791755311536 -10.085635769380804 -10.078410214258852 -10.071128844200677 -10.063805519707898 -10.056454181145021 -10.049088822202751 -10.056454181145021 -10.063805519707898 -10.071128844200677 -10.078410214258852 -10.085635769380804 -10.092791755311536 -10.099864550225128 -10.106840690654694 -10.113706897120133 -10.120450099407376 -10.127057461447516 -10.133516405751429 -10.139814637351515 -10.145940167205932 -10.151881335020459 -10.157626831444540 -10.163165719599061 -10.168487455895701 -10.173581910106961 -10.178439384649625 -10.183050633044886 -10.187406877519360 -10.191499825713988 -10.195321686469365 -10.198865184656258 -10.202123575024487 -10.205090655042797 -10.207760776705767 -10.210128857284952 -10.212190389004480 -10.213941447621506 -10.215378699896426 -10.216499409937899 -10.217301444410579 -10.217783276596302 -10.217943989300130 +-9.956135332548904 -9.955955227286230 -9.955415254338735 -9.954516441575665 -9.953260499938196 -9.951649820182574 -9.949687468329339 -9.947377179826683 -9.944723352440150 -9.941731037881013 -9.938405932190005 -9.934754364894916 -9.930783286961567 -9.926500257562507 -9.921913429687637 -9.917031534624536 -9.911863865337910 -9.906420258779985 -9.900711077165161 -9.894747188245201 -9.888539944621602 -9.882101162135404 -9.875443097375056 -9.868578424345177 -9.861520210341089 -9.854281891074303 -9.846877245096996 -9.839320367573544 -9.831625643449847 -9.823807720070659 -9.815881479297422 -9.807862009180015 -9.799764575235505 -9.791604591389715 -9.783397590635651 -9.775159195465678 -9.766905088133276 -9.775159195465678 -9.783397590635651 -9.791604591389715 -9.799764575235505 -9.807862009180015 -9.815881479297424 -9.823807720070659 -9.831625643449847 -9.839320367573544 -9.846877245096996 -9.854281891074303 -9.861520210341089 -9.868578424345177 -9.875443097375054 -9.882101162135404 -9.888539944621602 -9.894747188245201 -9.900711077165161 -9.906420258779985 -9.911863865337910 -9.917031534624536 -9.921913429687637 -9.926500257562507 -9.930783286961567 -9.934754364894916 -9.938405932190005 -9.941731037881013 -9.944723352440150 -9.947377179826683 -9.949687468329339 -9.951649820182569 -9.953260499938196 -9.954516441575665 -9.955415254338737 -9.955955227286230 -9.956135332548904 -9.955955227286230 -9.955415254338735 -9.954516441575665 -9.953260499938196 -9.951649820182576 -9.949687468329339 -9.947377179826683 -9.944723352440150 -9.941731037881013 -9.938405932190006 -9.934754364894916 -9.930783286961567 -9.926500257562507 -9.921913429687637 -9.917031534624536 -9.911863865337910 -9.906420258779985 -9.900711077165163 -9.894747188245201 -9.888539944621602 -9.882101162135404 -9.875443097375054 -9.868578424345177 -9.861520210341089 -9.854281891074303 -9.846877245096996 -9.839320367573540 -9.831625643449859 -9.823807720070659 -9.815881479297424 -9.807862009180015 -9.799764575235505 -9.791604591389715 -9.783397590635651 -9.775159195465678 -9.766905088133276 -9.775159195465678 -9.783397590635651 -9.791604591389715 -9.799764575235505 -9.807862009180015 -9.815881479297422 -9.823807720070659 -9.831625643449859 -9.839320367573540 -9.846877245096996 -9.854281891074303 -9.861520210341089 -9.868578424345177 -9.875443097375056 -9.882101162135404 -9.888539944621602 -9.894747188245201 -9.900711077165163 -9.906420258779985 -9.911863865337908 -9.917031534624536 -9.921913429687637 -9.926500257562507 -9.930783286961567 -9.934754364894916 -9.938405932190005 -9.941731037881013 -9.944723352440150 -9.947377179826683 -9.949687468329339 -9.951649820182576 -9.953260499938196 -9.954516441575665 -9.955415254338735 -9.955955227286230 -9.956135332548904 +-9.661707162652515 -9.661509035540762 -9.660915031351699 -9.659926280806102 -9.658544666046808 -9.656772817056043 -9.654614106649049 -9.652072644053799 -9.649153267088794 -9.645861532953989 -9.642203707652417 -9.638186754062421 -9.633818318683495 -9.629106717080640 -9.624060918055322 -9.618690526572758 -9.613005765478366 -9.607017456037983 -9.600736997339009 -9.594176344591503 -9.587347986370890 -9.580264920845099 -9.572940631031949 -9.565389059133413 -9.557624579995773 -9.549661973746355 -9.541516397658794 -9.533203357300044 -9.524738677014961 -9.516138469803547 -9.507419106649053 -9.498597185354807 -9.489689498949454 -9.480713003720227 -9.471684786936093 -9.462622034320761 -9.453541997339014 -9.462622034320761 -9.471684786936093 -9.480713003720227 -9.489689498949454 -9.498597185354807 -9.507419106649053 -9.516138469803547 -9.524738677014961 -9.533203357300044 -9.541516397658791 -9.549661973746355 -9.557624579995773 -9.565389059133413 -9.572940631031949 -9.580264920845099 -9.587347986370890 -9.594176344591505 -9.600736997339009 -9.607017456037983 -9.613005765478366 -9.618690526572758 -9.624060918055322 -9.629106717080640 -9.633818318683495 -9.638186754062421 -9.642203707652417 -9.645861532953989 -9.649153267088794 -9.652072644053799 -9.654614106649047 -9.656772817056043 -9.658544666046808 -9.659926280806102 -9.660915031351699 -9.661509035540762 -9.661707162652515 -9.661509035540762 -9.660915031351699 -9.659926280806102 -9.658544666046808 -9.656772817056043 -9.654614106649049 -9.652072644053799 -9.649153267088794 -9.645861532953989 -9.642203707652417 -9.638186754062421 -9.633818318683495 -9.629106717080640 -9.624060918055322 -9.618690526572758 -9.613005765478366 -9.607017456037983 -9.600736997339009 -9.594176344591505 -9.587347986370890 -9.580264920845099 -9.572940631031949 -9.565389059133413 -9.557624579995773 -9.549661973746355 -9.541516397658791 -9.533203357300044 -9.524738677014961 -9.516138469803547 -9.507419106649053 -9.498597185354807 -9.489689498949454 -9.480713003720227 -9.471684786936093 -9.462622034320761 -9.453541997339014 -9.462622034320761 -9.471684786936093 -9.480713003720227 -9.489689498949454 -9.498597185354807 -9.507419106649053 -9.516138469803547 -9.524738677014961 -9.533203357300044 -9.541516397658791 -9.549661973746355 -9.557624579995773 -9.565389059133413 -9.572940631031949 -9.580264920845099 -9.587347986370890 -9.594176344591505 -9.600736997339009 -9.607017456037983 -9.613005765478364 -9.618690526572758 -9.624060918055322 -9.629106717080640 -9.633818318683495 -9.638186754062421 -9.642203707652417 -9.645861532953989 -9.649153267088794 -9.652072644053799 -9.654614106649049 -9.656772817056043 -9.658544666046808 -9.659926280806102 -9.660915031351699 -9.661509035540762 -9.661707162652515 +-9.336827204123422 -9.336612563029558 -9.335969048329492 -9.334897884990031 -9.333401112031483 -9.331481578646224 -9.329142938775167 -9.326389644152224 -9.323226935830192 -9.319660834204143 -9.315698127551167 -9.311346359108613 -9.306613812715076 -9.301509497041573 -9.296043128443090 -9.290225112462981 -9.284066524025308 -9.277579086353191 -9.270775148652984 -9.263667662606794 -9.256270157718257 -9.248596715558413 -9.240661942960507 -9.232480944215189 -9.224069292318521 -9.215442999327998 -9.206618485882611 -9.197612549945269 -9.188442334826837 -9.179125296553092 -9.169679170635801 -9.160121938312635 -9.150471792318516 -9.140747102254783 -9.130966379621640 -9.121148242580684 -9.111311380513625 -9.121148242580684 -9.130966379621640 -9.140747102254783 -9.150471792318516 -9.160121938312638 -9.169679170635812 -9.179125296553092 -9.188442334826835 -9.197612549945269 -9.206618485882611 -9.215442999327998 -9.224069292318521 -9.232480944215189 -9.240661942960507 -9.248596715558413 -9.256270157718257 -9.263667662606794 -9.270775148652984 -9.277579086353191 -9.284066524025308 -9.290225112462981 -9.296043128443092 -9.301509497041573 -9.306613812715076 -9.311346359108613 -9.315698127551167 -9.319660834204143 -9.323226935830194 -9.326389644152224 -9.329142938775167 -9.331481578646224 -9.333401112031483 -9.334897884990031 -9.335969048329492 -9.336612563029558 -9.336827204123422 -9.336612563029558 -9.335969048329492 -9.334897884990031 -9.333401112031483 -9.331481578646224 -9.329142938775167 -9.326389644152224 -9.323226935830194 -9.319660834204143 -9.315698127551167 -9.311346359108613 -9.306613812715076 -9.301509497041573 -9.296043128443092 -9.290225112462981 -9.284066524025308 -9.277579086353191 -9.270775148652984 -9.263667662606794 -9.256270157718257 -9.248596715558413 -9.240661942960507 -9.232480944215189 -9.224069292318521 -9.215442999327998 -9.206618485882611 -9.197612549945269 -9.188442334826840 -9.179125296553092 -9.169679170635801 -9.160121938312638 -9.150471792318516 -9.140747102254783 -9.130966379621640 -9.121148242580684 -9.111311380513625 -9.121148242580684 -9.130966379621640 -9.140747102254783 -9.150471792318516 -9.160121938312638 -9.169679170635801 -9.179125296553092 -9.188442334826840 -9.197612549945269 -9.206618485882611 -9.215442999327998 -9.224069292318521 -9.232480944215189 -9.240661942960507 -9.248596715558413 -9.256270157718257 -9.263667662606794 -9.270775148652984 -9.277579086353191 -9.284066524025308 -9.290225112462981 -9.296043128443092 -9.301509497041573 -9.306613812715076 -9.311346359108613 -9.315698127551167 -9.319660834204143 -9.323226935830194 -9.326389644152224 -9.329142938775167 -9.331481578646224 -9.333401112031483 -9.334897884990031 -9.335969048329492 -9.336612563029558 -9.336827204123422 +-8.983886813514300 -8.983657291986681 -8.982969164311021 -8.981823740377495 -8.980223200565671 -8.978170591594056 -8.975669820720467 -8.972725648304392 -8.969343678745377 -8.965530349814689 -8.961292920400714 -8.956639456691109 -8.951578816818614 -8.946120633998781 -8.940275298192889 -8.934053936329848 -8.927468391125540 -8.920531198539607 -8.913255563912378 -8.905655336827909 -8.897744984750421 -8.889539565484702 -8.881054698512640 -8.872306535260833 -8.863311728355184 -8.854087399921891 -8.844651108994432 -8.835020818088877 -8.825214859011304 -8.815251897962204 -8.805150900004143 -8.794931092960841 -8.784611930815887 -8.774213056680928 -8.763754265403922 -8.753255465888401 -8.742736643196061 -8.753255465888401 -8.763754265403922 -8.774213056680919 -8.784611930815885 -8.794931092960841 -8.805150900004143 -8.815251897962204 -8.825214859011304 -8.835020818088877 -8.844651108994432 -8.854087399921891 -8.863311728355184 -8.872306535260833 -8.881054698512640 -8.889539565484702 -8.897744984750419 -8.905655336827909 -8.913255563912378 -8.920531198539607 -8.927468391125535 -8.934053936329846 -8.940275298192889 -8.946120633998781 -8.951578816818614 -8.956639456691109 -8.961292920400712 -8.965530349814689 -8.969343678745377 -8.972725648304392 -8.975669820720467 -8.978170591594056 -8.980223200565671 -8.981823740377495 -8.982969164311021 -8.983657291986681 -8.983886813514300 -8.983657291986681 -8.982969164311021 -8.981823740377495 -8.980223200565671 -8.978170591594056 -8.975669820720467 -8.972725648304392 -8.969343678745377 -8.965530349814689 -8.961292920400714 -8.956639456691109 -8.951578816818614 -8.946120633998781 -8.940275298192889 -8.934053936329846 -8.927468391125540 -8.920531198539607 -8.913255563912378 -8.905655336827909 -8.897744984750419 -8.889539565484696 -8.881054698512640 -8.872306535260833 -8.863311728355184 -8.854087399921891 -8.844651108994432 -8.835020818088877 -8.825214859011306 -8.815251897962206 -8.805150900004143 -8.794931092960841 -8.784611930815885 -8.774213056680919 -8.763754265403922 -8.753255465888403 -8.742736643196061 -8.753255465888403 -8.763754265403922 -8.774213056680919 -8.784611930815885 -8.794931092960841 -8.805150900004143 -8.815251897962206 -8.825214859011306 -8.835020818088877 -8.844651108994432 -8.854087399921891 -8.863311728355184 -8.872306535260833 -8.881054698512640 -8.889539565484702 -8.897744984750419 -8.905655336827909 -8.913255563912378 -8.920531198539607 -8.927468391125535 -8.934053936329846 -8.940275298192889 -8.946120633998781 -8.951578816818614 -8.956639456691109 -8.961292920400712 -8.965530349814689 -8.969343678745377 -8.972725648304392 -8.975669820720467 -8.978170591594056 -8.980223200565671 -8.981823740377495 -8.982969164311021 -8.983657291986681 -8.983886813514300 +-8.605482934272199 -8.605240279108202 -8.604512775524094 -8.603301808364288 -8.601609682773603 -8.599439619809276 -8.596795750309486 -8.593683107030124 -8.590107615064563 -8.586076080564975 -8.581596177786425 -8.576676434478461 -8.571326215652112 -8.565555705752979 -8.559375889274664 -8.552798529849023 -8.545836147853572 -8.538501996578159 -8.530810036996607 -8.522774911191119 -8.514411914480402 -8.505736966303953 -8.496766579918718 -8.487517830965027 -8.478008324962175 -8.468256163795303 -8.458279911257488 -8.448098557712457 -8.437731483945345 -8.427198424270262 -8.416519428965003 -8.405714826104079 -8.394805182863097 -8.383811266368086 -8.372754004163877 -8.361654444377598 -8.350533715652119 -8.361654444377598 -8.372754004163877 -8.383811266368086 -8.394805182863090 -8.405714826104079 -8.416519428965003 -8.427198424270262 -8.437731483945345 -8.448098557712457 -8.458279911257488 -8.468256163795303 -8.478008324962177 -8.487517830965025 -8.496766579918718 -8.505736966303953 -8.514411914480400 -8.522774911191124 -8.530810036996606 -8.538501996578159 -8.545836147853571 -8.552798529849023 -8.559375889274664 -8.565555705752981 -8.571326215652112 -8.576676434478458 -8.581596177786425 -8.586076080564975 -8.590107615064563 -8.593683107030124 -8.596795750309482 -8.599439619809276 -8.601609682773603 -8.603301808364288 -8.604512775524096 -8.605240279108202 -8.605482934272199 -8.605240279108202 -8.604512775524096 -8.603301808364288 -8.601609682773603 -8.599439619809276 -8.596795750309486 -8.593683107030124 -8.590107615064563 -8.586076080564974 -8.581596177786425 -8.576676434478461 -8.571326215652112 -8.565555705752979 -8.559375889274664 -8.552798529849019 -8.545836147853572 -8.538501996578161 -8.530810036996607 -8.522774911191119 -8.514411914480400 -8.505736966303953 -8.496766579918718 -8.487517830965027 -8.478008324962175 -8.468256163795303 -8.458279911257485 -8.448098557712457 -8.437731483945345 -8.427198424270262 -8.416519428965003 -8.405714826104079 -8.394805182863090 -8.383811266368086 -8.372754004163877 -8.361654444377598 -8.350533715652119 -8.361654444377598 -8.372754004163877 -8.383811266368086 -8.394805182863090 -8.405714826104079 -8.416519428965003 -8.427198424270262 -8.437731483945345 -8.448098557712457 -8.458279911257485 -8.468256163795303 -8.478008324962175 -8.487517830965027 -8.496766579918718 -8.505736966303953 -8.514411914480400 -8.522774911191119 -8.530810036996607 -8.538501996578161 -8.545836147853571 -8.552798529849019 -8.559375889274664 -8.565555705752979 -8.571326215652112 -8.576676434478461 -8.581596177786425 -8.586076080564974 -8.590107615064563 -8.593683107030124 -8.596795750309486 -8.599439619809276 -8.601609682773603 -8.603301808364288 -8.604512775524096 -8.605240279108202 -8.605482934272199 +-8.204398502127619 -8.204144560079564 -8.203383217328538 -8.202115923133723 -8.200345089861644 -8.198074088394087 -8.195307241711440 -8.192049816663582 -8.188308013944274 -8.184088956287633 -8.179400674909715 -8.174252094220593 -8.168653014836211 -8.162614094922429 -8.156146829906545 -8.149263530595032 -8.141977299739443 -8.134302007094268 -8.126252263015303 -8.117843390647927 -8.109091396758624 -8.100012941265202 -8.090625305523623 -8.080946359432163 -8.070994527414751 -8.060788753349309 -8.050348464506795 -8.039693534570416 -8.028844245804896 -8.017821250448073 -8.006645531398014 -7.995338362271244 -7.983921266906711 -7.972415978394468 -7.960844397705080 -7.949228552000042 -7.937590552701892 -7.949228552000042 -7.960844397705080 -7.972415978394468 -7.983921266906711 -7.995338362271244 -8.006645531398016 -8.017821250448073 -8.028844245804896 -8.039693534570416 -8.050348464506795 -8.060788753349309 -8.070994527414753 -8.080946359432163 -8.090625305523623 -8.100012941265200 -8.109091396758624 -8.117843390647932 -8.126252263015303 -8.134302007094263 -8.141977299739443 -8.149263530595032 -8.156146829906545 -8.162614094922430 -8.168653014836211 -8.174252094220593 -8.179400674909715 -8.184088956287631 -8.188308013944274 -8.192049816663582 -8.195307241711440 -8.198074088394087 -8.200345089861644 -8.202115923133723 -8.203383217328538 -8.204144560079564 -8.204398502127619 -8.204144560079564 -8.203383217328538 -8.202115923133723 -8.200345089861644 -8.198074088394087 -8.195307241711440 -8.192049816663582 -8.188308013944274 -8.184088956287631 -8.179400674909715 -8.174252094220593 -8.168653014836211 -8.162614094922430 -8.156146829906545 -8.149263530595032 -8.141977299739443 -8.134302007094268 -8.126252263015303 -8.117843390647932 -8.109091396758624 -8.100012941265200 -8.090625305523622 -8.080946359432163 -8.070994527414753 -8.060788753349309 -8.050348464506795 -8.039693534570416 -8.028844245804896 -8.017821250448073 -8.006645531398016 -7.995338362271244 -7.983921266906711 -7.972415978394466 -7.960844397705080 -7.949228552000042 -7.937590552701892 -7.949228552000042 -7.960844397705080 -7.972415978394466 -7.983921266906711 -7.995338362271244 -8.006645531398016 -8.017821250448073 -8.028844245804896 -8.039693534570416 -8.050348464506795 -8.060788753349309 -8.070994527414753 -8.080946359432163 -8.090625305523623 -8.100012941265200 -8.109091396758624 -8.117843390647932 -8.126252263015303 -8.134302007094268 -8.141977299739443 -8.149263530595032 -8.156146829906545 -8.162614094922430 -8.168653014836211 -8.174252094220593 -8.179400674909715 -8.184088956287631 -8.188308013944274 -8.192049816663582 -8.195307241711440 -8.198074088394087 -8.200345089861644 -8.202115923133723 -8.203383217328538 -8.204144560079564 -8.204398502127619 +-7.783581449813950 -7.783318153534178 -7.782528765894270 -7.781214789538477 -7.779378725695474 -7.777024069417122 -7.774155302925519 -7.770777887080698 -7.766898250985686 -7.762523779748300 -7.757662800423160 -7.752324566160689 -7.746519238593233 -7.740257868491753 -7.733552374730094 -7.726415521596786 -7.718860894497376 -7.710902874093918 -7.702556608930568 -7.693837986597440 -7.684763603487664 -7.675350733205239 -7.665617293683779 -7.655581813078576 -7.645263394497364 -7.634681679636386 -7.623856811391265 -7.612809395514008 -7.601560461388591 -7.590131422000483 -7.578544033175736 -7.566820352167570 -7.554982695669118 -7.543053597332312 -7.531055764873853 -7.519012036849745 -7.506945339180787 -7.519012036849733 -7.531055764873853 -7.543053597332312 -7.554982695669118 -7.566820352167570 -7.578544033175739 -7.590131422000483 -7.601560461388591 -7.612809395514005 -7.623856811391265 -7.634681679636386 -7.645263394497364 -7.655581813078576 -7.665617293683776 -7.675350733205238 -7.684763603487664 -7.693837986597444 -7.702556608930568 -7.710902874093918 -7.718860894497376 -7.726415521596786 -7.733552374730094 -7.740257868491757 -7.746519238593233 -7.752324566160689 -7.757662800423160 -7.762523779748300 -7.766898250985686 -7.770777887080698 -7.774155302925519 -7.777024069417122 -7.779378725695474 -7.781214789538477 -7.782528765894271 -7.783318153534178 -7.783581449813950 -7.783318153534178 -7.782528765894270 -7.781214789538477 -7.779378725695474 -7.777024069417122 -7.774155302925519 -7.770777887080698 -7.766898250985686 -7.762523779748300 -7.757662800423160 -7.752324566160689 -7.746519238593234 -7.740257868491756 -7.733552374730094 -7.726415521596786 -7.718860894497376 -7.710902874093922 -7.702556608930569 -7.693837986597444 -7.684763603487664 -7.675350733205238 -7.665617293683776 -7.655581813078576 -7.645263394497364 -7.634681679636386 -7.623856811391264 -7.612809395514005 -7.601560461388592 -7.590131422000484 -7.578544033175736 -7.566820352167570 -7.554982695669118 -7.543053597332312 -7.531055764873853 -7.519012036849745 -7.506945339180787 -7.519012036849745 -7.531055764873853 -7.543053597332312 -7.554982695669118 -7.566820352167570 -7.578544033175736 -7.590131422000484 -7.601560461388592 -7.612809395514005 -7.623856811391264 -7.634681679636386 -7.645263394497364 -7.655581813078576 -7.665617293683779 -7.675350733205238 -7.684763603487664 -7.693837986597444 -7.702556608930569 -7.710902874093922 -7.718860894497374 -7.726415521596786 -7.733552374730094 -7.740257868491756 -7.746519238593234 -7.752324566160689 -7.757662800423160 -7.762523779748300 -7.766898250985686 -7.770777887080698 -7.774155302925519 -7.777024069417122 -7.779378725695474 -7.781214789538477 -7.782528765894270 -7.783318153534178 -7.783581449813950 +-7.346122470559982 -7.345851823892150 -7.345040399079958 -7.343689740716657 -7.341802419857211 -7.339382029124152 -7.336433175868808 -7.332961473400915 -7.328973530303477 -7.324476937852833 -7.319480255568279 -7.313992994918535 -7.308025601216114 -7.301589433734116 -7.294696744083140 -7.287360652889689 -7.279595124820298 -7.271414941999027 -7.262835675868788 -7.253873657550306 -7.244545946754788 -7.234870299309895 -7.224865133360467 -7.214549494308537 -7.203943018559371 -7.193065896142346 -7.181938832278242 -7.170583007965504 -7.159020039661187 -7.147271938132595 -7.135361066558742 -7.123310097960643 -7.111141972041935 -7.098879851521909 -7.086547078043888 -7.074167127743161 -7.061763566558748 -7.074167127743161 -7.086547078043887 -7.098879851521909 -7.111141972041935 -7.123310097960643 -7.135361066558742 -7.147271938132595 -7.159020039661187 -7.170583007965503 -7.181938832278242 -7.193065896142349 -7.203943018559372 -7.214549494308535 -7.224865133360466 -7.234870299309895 -7.244545946754784 -7.253873657550307 -7.262835675868788 -7.271414941999026 -7.279595124820297 -7.287360652889685 -7.294696744083140 -7.301589433734116 -7.308025601216114 -7.313992994918535 -7.319480255568279 -7.324476937852833 -7.328973530303477 -7.332961473400915 -7.336433175868806 -7.339382029124152 -7.341802419857211 -7.343689740716657 -7.345040399079958 -7.345851823892150 -7.346122470559982 -7.345851823892150 -7.345040399079958 -7.343689740716657 -7.341802419857211 -7.339382029124152 -7.336433175868808 -7.332961473400915 -7.328973530303477 -7.324476937852832 -7.319480255568280 -7.313992994918535 -7.308025601216116 -7.301589433734116 -7.294696744083140 -7.287360652889685 -7.279595124820298 -7.271414941999027 -7.262835675868796 -7.253873657550307 -7.244545946754783 -7.234870299309894 -7.224865133360462 -7.214549494308542 -7.203943018559372 -7.193065896142349 -7.181938832278242 -7.170583007965499 -7.159020039661187 -7.147271938132595 -7.135361066558742 -7.123310097960643 -7.111141972041935 -7.098879851521909 -7.086547078043888 -7.074167127743172 -7.061763566558748 -7.074167127743172 -7.086547078043888 -7.098879851521909 -7.111141972041935 -7.123310097960643 -7.135361066558742 -7.147271938132595 -7.159020039661187 -7.170583007965499 -7.181938832278242 -7.193065896142349 -7.203943018559372 -7.214549494308542 -7.224865133360468 -7.234870299309894 -7.244545946754783 -7.253873657550307 -7.262835675868796 -7.271414941999027 -7.279595124820297 -7.287360652889685 -7.294696744083140 -7.301589433734116 -7.308025601216116 -7.313992994918535 -7.319480255568279 -7.324476937852832 -7.328973530303477 -7.332961473400915 -7.336433175868808 -7.339382029124152 -7.341802419857211 -7.343689740716657 -7.345040399079958 -7.345851823892150 -7.346122470559982 +-6.895231709205927 -6.894955771934596 -6.894128485382897 -6.892751424337791 -6.890827210113242 -6.888359505560400 -6.885353008095132 -6.881813440756253 -6.877747541311345 -6.873163049431108 -6.868068691956403 -6.862474166286223 -6.856390121918143 -6.849828140176422 -6.842800712166272 -6.835321214996316 -6.827403886314524 -6.819063797206028 -6.810316823504469 -6.801179615571437 -6.791669566601555 -6.781804779513554 -6.771604032490334 -6.761086743233628 -6.750272932001288 -6.739183183497627 -6.727838607689226 -6.716260799620888 -6.704471798308348 -6.692494044785604 -6.680350339387322 -6.668063798346869 -6.655657809793475 -6.643155989231435 -6.630582134586762 -6.617960180906442 -6.605314154796652 -6.617960180906442 -6.630582134586762 -6.643155989231429 -6.655657809793471 -6.668063798346869 -6.680350339387322 -6.692494044785604 -6.704471798308347 -6.716260799620887 -6.727838607689226 -6.739183183497629 -6.750272932001289 -6.761086743233627 -6.771604032490334 -6.781804779513553 -6.791669566601555 -6.801179615571438 -6.810316823504468 -6.819063797206028 -6.827403886314524 -6.835321214996312 -6.842800712166272 -6.849828140176427 -6.856390121918142 -6.862474166286219 -6.868068691956403 -6.873163049431108 -6.877747541311346 -6.881813440756253 -6.885353008095132 -6.888359505560400 -6.890827210113242 -6.892751424337791 -6.894128485382898 -6.894955771934596 -6.895231709205927 -6.894955771934596 -6.894128485382897 -6.892751424337791 -6.890827210113242 -6.888359505560400 -6.885353008095132 -6.881813440756253 -6.877747541311346 -6.873163049431108 -6.868068691956404 -6.862474166286224 -6.856390121918144 -6.849828140176424 -6.842800712166272 -6.835321214996310 -6.827403886314526 -6.819063797206028 -6.810316823504469 -6.801179615571438 -6.791669566601555 -6.781804779513553 -6.771604032490334 -6.761086743233628 -6.750272932001288 -6.739183183497628 -6.727838607689226 -6.716260799620885 -6.704471798308349 -6.692494044785605 -6.680350339387322 -6.668063798346869 -6.655657809793471 -6.643155989231429 -6.630582134586762 -6.617960180906442 -6.605314154796652 -6.617960180906442 -6.630582134586762 -6.643155989231429 -6.655657809793471 -6.668063798346869 -6.680350339387322 -6.692494044785605 -6.704471798308349 -6.716260799620885 -6.727838607689226 -6.739183183497628 -6.750272932001288 -6.761086743233628 -6.771604032490335 -6.781804779513553 -6.791669566601555 -6.801179615571438 -6.810316823504469 -6.819063797206028 -6.827403886314523 -6.835321214996310 -6.842800712166272 -6.849828140176424 -6.856390121918144 -6.862474166286224 -6.868068691956402 -6.873163049431108 -6.877747541311346 -6.881813440756253 -6.885353008095132 -6.888359505560400 -6.890827210113242 -6.892751424337791 -6.894128485382897 -6.894955771934596 -6.895231709205927 +-6.434214557932277 -6.433935430106708 -6.433098577965681 -6.431705594504810 -6.429759131347285 -6.427262893696353 -6.424221633282262 -6.420641139317066 -6.416528227474529 -6.411890726916102 -6.406737465387679 -6.401078252415476 -6.394923860633026 -6.388286005274884 -6.381177321875994 -6.373611342219239 -6.365602468576920 -6.357165946295205 -6.348317834773751 -6.339074976895751 -6.329454966966496 -6.319476117221633 -6.309157422968855 -6.298518526429116 -6.287579679346661 -6.276361704438634 -6.264885955757872 -6.259563608284220 -6.261806242795387 -6.262233425161036 -6.260852257332783 -6.257672354412676 -6.252705773183126 -6.245966943464524 -6.237472602779739 -6.227241734737444 -6.215295511478155 -6.227241734737444 -6.237472602779739 -6.245966943464521 -6.252705773183126 -6.257672354412676 -6.260852257332784 -6.262233425161036 -6.261806242795387 -6.259563608284214 -6.264885955757868 -6.276361704438634 -6.287579679346663 -6.298518526429115 -6.309157422968855 -6.319476117221633 -6.329454966966496 -6.339074976895752 -6.348317834773749 -6.357165946295204 -6.365602468576919 -6.373611342219239 -6.381177321875995 -6.388286005274884 -6.394923860633026 -6.401078252415475 -6.406737465387679 -6.411890726916102 -6.416528227474529 -6.420641139317066 -6.424221633282262 -6.427262893696353 -6.429759131347284 -6.431705594504810 -6.433098577965681 -6.433935430106708 -6.434214557932277 -6.433935430106708 -6.433098577965681 -6.431705594504810 -6.429759131347279 -6.427262893696353 -6.424221633282262 -6.420641139317066 -6.416528227474529 -6.411890726916102 -6.406737465387679 -6.401078252415476 -6.394923860633027 -6.388286005274884 -6.381177321875994 -6.373611342219238 -6.365602468576920 -6.357165946295205 -6.348317834773753 -6.339074976895752 -6.329454966966496 -6.319476117221631 -6.309157422968855 -6.298518526429118 -6.287579679346663 -6.276361704438634 -6.264885955757866 -6.259563608284213 -6.261806242795387 -6.262233425161036 -6.260852257332783 -6.257672354412677 -6.252705773183126 -6.245966943464520 -6.237472602779739 -6.227241734737445 -6.215295511478155 -6.227241734737444 -6.237472602779739 -6.245966943464520 -6.252705773183126 -6.257672354412677 -6.260852257332784 -6.262233425161036 -6.261806242795387 -6.259563608284214 -6.264885955757866 -6.276361704438634 -6.287579679346663 -6.298518526429118 -6.309157422968855 -6.319476117221631 -6.329454966966496 -6.339074976895752 -6.348317834773753 -6.357165946295205 -6.365602468576919 -6.373611342219238 -6.381177321875994 -6.388286005274884 -6.394923860633027 -6.401078252415476 -6.406737465387679 -6.411890726916102 -6.416528227474529 -6.420641139317066 -6.424221633282262 -6.427262893696353 -6.429759131347279 -6.431705594504810 -6.433098577965681 -6.433935430106708 -6.434214557932277 +-5.966446740380640 -5.966166546332126 -5.965326497551865 -5.963928193120473 -5.961974294789901 -5.959468521916677 -5.956415644381875 -5.952821473511403 -5.948692851013802 -5.944037635956636 -5.938864689806358 -5.933183859559976 -5.927005959000739 -5.920342748113493 -5.913206910698877 -5.905612030228975 -5.897572563990434 -5.889103815564171 -5.880221905694145 -5.870943741600610 -5.861286984796259 -5.851270017466515 -5.840911907478027 -5.833209990514734 -5.842387966598376 -5.849765135955809 -5.855339468484106 -5.859111653170278 -5.861085010779271 -5.861265407611486 -5.859661171101389 -5.856283007975325 -5.851143925627096 -5.844259157303672 -5.835646091624661 -5.825324206885137 -5.813315010515642 -5.825324206885137 -5.835646091624661 -5.844259157303668 -5.851143925627093 -5.856283007975325 -5.859661171101394 -5.861265407611485 -5.861085010779271 -5.859111653170278 -5.855339468484106 -5.849765135955807 -5.842387966598373 -5.833209990514732 -5.840911907478027 -5.851270017466511 -5.861286984796258 -5.870943741600613 -5.880221905694145 -5.889103815564171 -5.897572563990434 -5.905612030228975 -5.913206910698880 -5.920342748113496 -5.927005959000738 -5.933183859559975 -5.938864689806358 -5.944037635956636 -5.948692851013802 -5.952821473511404 -5.956415644381875 -5.959468521916677 -5.961974294789901 -5.963928193120473 -5.965326497551865 -5.966166546332126 -5.966446740380640 -5.966166546332126 -5.965326497551865 -5.963928193120473 -5.961974294789901 -5.959468521916678 -5.956415644381875 -5.952821473511403 -5.948692851013802 -5.944037635956636 -5.938864689806358 -5.933183859559977 -5.927005959000739 -5.920342748113493 -5.913206910698877 -5.905612030228975 -5.897572563990434 -5.889103815564171 -5.880221905694146 -5.870943741600611 -5.861286984796258 -5.851270017466510 -5.840911907478025 -5.833209990514734 -5.842387966598372 -5.849765135955809 -5.855339468484105 -5.859111653170278 -5.861085010779274 -5.861265407611486 -5.859661171101389 -5.856283007975326 -5.851143925627093 -5.844259157303668 -5.835646091624661 -5.825324206885137 -5.813315010515642 -5.825324206885137 -5.835646091624661 -5.844259157303668 -5.851143925627093 -5.856283007975326 -5.859661171101389 -5.861265407611486 -5.861085010779272 -5.859111653170278 -5.855339468484105 -5.849765135955809 -5.842387966598372 -5.833209990514734 -5.840911907478028 -5.851270017466510 -5.861286984796258 -5.870943741600611 -5.880221905694146 -5.889103815564171 -5.897572563990433 -5.905612030228975 -5.913206910698877 -5.920342748113493 -5.927005959000739 -5.933183859559977 -5.938864689806358 -5.944037635956636 -5.948692851013802 -5.952821473511403 -5.956415644381875 -5.959468521916678 -5.961974294789901 -5.963928193120473 -5.965326497551865 -5.966166546332126 -5.966446740380640 +-5.495348873331549 -5.495069745505983 -5.494232893364954 -5.492839909904085 -5.490893446746559 -5.488397209095628 -5.485355948681537 -5.481775454716341 -5.477662542873802 -5.473025042315378 -5.467871780786956 -5.462212567814751 -5.456058176032304 -5.449420320674163 -5.442311637275273 -5.434745657618519 -5.426736783976201 -5.418300261694488 -5.409452150173037 -5.400209292295032 -5.390589282365778 -5.401310057431543 -5.413553764482744 -5.424038126376706 -5.432757491614816 -5.439708997566021 -5.444892471382627 -5.448310330937278 -5.449967486724463 -5.449871245626195 -5.448031217385561 -5.444459224572234 -5.439169216757742 -5.432177189545020 -5.423501109021340 -5.413160842120964 -5.401178093300305 -5.413160842120964 -5.423501109021340 -5.432177189545016 -5.439169216757742 -5.444459224572233 -5.448031217385562 -5.449871245626195 -5.449967486724465 -5.448310330937269 -5.444892471382625 -5.439708997566020 -5.432757491614818 -5.424038126376705 -5.413553764482744 -5.401310057431543 -5.390589282365777 -5.400209292295033 -5.409452150173036 -5.418300261694487 -5.426736783976200 -5.434745657618519 -5.442311637275274 -5.449420320674163 -5.456058176032304 -5.462212567814750 -5.467871780786956 -5.473025042315378 -5.477662542873803 -5.481775454716341 -5.485355948681537 -5.488397209095628 -5.490893446746556 -5.492839909904085 -5.494232893364954 -5.495069745505983 -5.495348873331549 -5.495069745505983 -5.494232893364954 -5.492839909904085 -5.490893446746556 -5.488397209095628 -5.485355948681537 -5.481775454716341 -5.477662542873802 -5.473025042315378 -5.467871780786956 -5.462212567814751 -5.456058176032305 -5.449420320674163 -5.442311637275273 -5.434745657618518 -5.426736783976201 -5.418300261694488 -5.409452150173037 -5.400209292295032 -5.390589282365777 -5.401310057431541 -5.413553764482743 -5.424038126376654 -5.432757491614818 -5.439708997566021 -5.444892471382623 -5.448310330937268 -5.449967486724464 -5.449871245626195 -5.448031217385561 -5.444459224572234 -5.439169216757742 -5.432177189545015 -5.423501109021341 -5.413160842120965 -5.401178093300305 -5.413160842120964 -5.423501109021341 -5.432177189545015 -5.439169216757742 -5.444459224572234 -5.448031217385561 -5.449871245626195 -5.449967486724464 -5.448310330937269 -5.444892471382623 -5.439708997566021 -5.432757491614818 -5.424038126376654 -5.413553764482744 -5.401310057431541 -5.390589282365777 -5.400209292295032 -5.409452150173038 -5.418300261694488 -5.426736783976200 -5.434745657618518 -5.442311637275273 -5.449420320674163 -5.456058176032305 -5.462212567814751 -5.467871780786955 -5.473025042315378 -5.477662542873802 -5.481775454716341 -5.485355948681537 -5.488397209095628 -5.490893446746556 -5.492839909904085 -5.494232893364954 -5.495069745505983 -5.495348873331549 +-5.024360699061377 -5.024084761790047 -5.023257475238345 -5.021880414193236 -5.019956199968689 -5.017488495415851 -5.014481997950587 -5.010942430611697 -5.006876531166791 -5.002292039286557 -4.997197681811847 -4.991603156141663 -4.985519111773590 -4.978957130031875 -4.971929702021724 -4.964450204851765 -4.956532876169971 -4.948192787061474 -4.941348349807657 -4.958025210111589 -4.973014577264800 -4.986304491876562 -4.997885976321317 -5.007752927619324 -5.015902007717747 -5.022332532305191 -5.027046359264371 -5.030047777835712 -5.031343399518845 -5.030942051686950 -5.028854674832479 -5.025094224291297 -5.019675577224225 -5.012615445551728 -5.003932295455050 -4.993646273967772 -4.981779143088207 -4.993646273967772 -5.003932295455050 -5.012615445551726 -5.019675577224225 -5.025094224291297 -5.028854674832479 -5.030942051686950 -5.031343399518843 -5.030047777835710 -5.027046359264371 -5.022332532305193 -5.015902007717749 -5.007752927619324 -4.997885976321319 -4.986304491876561 -4.973014577264799 -4.958025210111591 -4.941348349807659 -4.948192787061474 -4.956532876169971 -4.964450204851764 -4.971929702021724 -4.978957130031876 -4.985519111773590 -4.991603156141663 -4.997197681811847 -5.002292039286556 -5.006876531166791 -5.010942430611697 -5.014481997950587 -5.017488495415851 -5.019956199968689 -5.021880414193236 -5.023257475238345 -5.024084761790047 -5.024360699061377 -5.024084761790047 -5.023257475238345 -5.021880414193236 -5.019956199968689 -5.017488495415851 -5.014481997950587 -5.010942430611697 -5.006876531166791 -5.002292039286556 -4.997197681811848 -4.991603156141664 -4.985519111773590 -4.978957130031875 -4.971929702021724 -4.964450204851764 -4.956532876169971 -4.948192787061475 -4.941348349807657 -4.958025210111589 -4.973014577264800 -4.986304491876560 -4.997885976321319 -5.007752927619317 -5.015902007717747 -5.022332532305191 -5.027046359264371 -5.030047777835710 -5.031343399518845 -5.030942051686951 -5.028854674832479 -5.025094224291297 -5.019675577224222 -5.012615445551726 -5.003932295455050 -4.993646273967772 -4.981779143088207 -4.993646273967772 -5.003932295455050 -5.012615445551726 -5.019675577224222 -5.025094224291297 -5.028854674832479 -5.030942051686951 -5.031343399518845 -5.030047777835710 -5.027046359264371 -5.022332532305191 -5.015902007717747 -5.007752927619321 -4.997885976321315 -4.986304491876561 -4.973014577264800 -4.958025210111589 -4.941348349807657 -4.948192787061475 -4.956532876169971 -4.964450204851764 -4.971929702021724 -4.978957130031875 -4.985519111773590 -4.991603156141664 -4.997197681811847 -5.002292039286556 -5.006876531166791 -5.010942430611697 -5.014481997950587 -5.017488495415851 -5.019956199968689 -5.021880414193236 -5.023257475238345 -5.024084761790047 -5.024360699061377 +-4.556915183977281 -4.556644537309446 -4.555833112497257 -4.554482454133961 -4.552595133274516 -4.550174742541452 -4.547225889286091 -4.543754186818211 -4.539766243720773 -4.535269651270128 -4.530272968985568 -4.524785708335825 -4.518818314633410 -4.512382147151410 -4.505489457500429 -4.498153366306976 -4.490387838237590 -4.507830444442479 -4.525163842045673 -4.540873753698909 -4.554948187485262 -4.567378128385589 -4.578157420149759 -4.587282643792717 -4.594752993961399 -4.600570154397960 -4.604738173695766 -4.607263342505879 -4.608154073303919 -4.607420783769729 -4.605075784767484 -4.601133173841782 -4.595608735063665 -4.588519845975958 -4.579885392294253 -4.569725690923344 -4.558062421748375 -4.569725690923344 -4.579885392294252 -4.588519845975958 -4.595608735063664 -4.601133173841782 -4.605075784767485 -4.607420783769729 -4.608154073303932 -4.607263342505878 -4.604738173695766 -4.600570154397960 -4.594752993961398 -4.587282643792717 -4.578157420149758 -4.567378128385588 -4.554948187485262 -4.540873753698910 -4.525163842045673 -4.507830444442483 -4.490387838237590 -4.498153366306975 -4.505489457500429 -4.512382147151410 -4.518818314633410 -4.524785708335825 -4.530272968985568 -4.535269651270126 -4.539766243720774 -4.543754186818211 -4.547225889286091 -4.550174742541452 -4.552595133274516 -4.554482454133961 -4.555833112497257 -4.556644537309446 -4.556915183977281 -4.556644537309446 -4.555833112497257 -4.554482454133961 -4.552595133274516 -4.550174742541452 -4.547225889286091 -4.543754186818211 -4.539766243720774 -4.535269651270126 -4.530272968985568 -4.524785708335825 -4.518818314633410 -4.512382147151410 -4.505489457500429 -4.498153366306973 -4.490387838237591 -4.507830444442479 -4.525163842045676 -4.540873753698909 -4.554948187485263 -4.567378128385589 -4.578157420149761 -4.587282643792713 -4.594752993961398 -4.600570154397960 -4.604738173695766 -4.607263342505876 -4.608154073303919 -4.607420783769729 -4.605075784767484 -4.601133173841782 -4.595608735063664 -4.588519845975958 -4.579885392294253 -4.569725690923346 -4.558062421748375 -4.569725690923346 -4.579885392294253 -4.588519845975958 -4.595608735063664 -4.601133173841782 -4.605075784767484 -4.607420783769729 -4.608154073303919 -4.607263342505876 -4.604738173695766 -4.600570154397960 -4.594752993961399 -4.587282643792713 -4.578157420149759 -4.567378128385588 -4.554948187485263 -4.540873753698909 -4.525163842045676 -4.507830444442479 -4.490387838237590 -4.498153366306973 -4.505489457500429 -4.512382147151410 -4.518818314633410 -4.524785708335825 -4.530272968985568 -4.535269651270126 -4.539766243720774 -4.543754186818211 -4.547225889286091 -4.550174742541452 -4.552595133274516 -4.554482454133961 -4.555833112497257 -4.556644537309446 -4.556915183977281 +-4.096412680132935 -4.096149383853156 -4.095359996213252 -4.094046019857460 -4.092209956014455 -4.089855299736119 -4.086986533244505 -4.083609117399684 -4.079729481304670 -4.075355010067281 -4.070494030742142 -4.065155796479679 -4.059350468912217 -4.053089098810729 -4.046383605049084 -4.055494881259828 -4.074701630850754 -4.092374320189997 -4.108498259702139 -4.123061853282991 -4.136056475035453 -4.147476340351695 -4.157318372693267 -4.165582067419363 -4.172269354004622 -4.177384457963720 -4.180933763769159 -4.182925680004529 -4.183370507944410 -4.182280314689167 -4.179668811912138 -4.175551241198569 -4.169944266868113 -4.162865877079848 -4.154335293919569 -4.144372893064020 -4.133000133507704 -4.144372893064019 -4.154335293919569 -4.162865877079848 -4.169944266868113 -4.175551241198569 -4.179668811912141 -4.182280314689167 -4.183370507944409 -4.182925680004529 -4.180933763769159 -4.177384457963721 -4.172269354004617 -4.165582067419363 -4.157318372693267 -4.147476340351695 -4.136056475035453 -4.123061853282987 -4.108498259702138 -4.092374320189997 -4.074701630850758 -4.055494881259827 -4.046383605049085 -4.053089098810730 -4.059350468912217 -4.065155796479679 -4.070494030742142 -4.075355010067281 -4.079729481304671 -4.083609117399685 -4.086986533244505 -4.089855299736119 -4.092209956014455 -4.094046019857460 -4.095359996213252 -4.096149383853156 -4.096412680132935 -4.096149383853156 -4.095359996213252 -4.094046019857460 -4.092209956014455 -4.089855299736120 -4.086986533244505 -4.083609117399684 -4.079729481304671 -4.075355010067281 -4.070494030742142 -4.065155796479680 -4.059350468912218 -4.053089098810729 -4.046383605049085 -4.055494881259830 -4.074701630850754 -4.092374320189997 -4.108498259702134 -4.123061853282987 -4.136056475035458 -4.147476340351695 -4.157318372693267 -4.165582067419364 -4.172269354004623 -4.177384457963720 -4.180933763769158 -4.182925680004529 -4.183370507944410 -4.182280314689167 -4.179668811912138 -4.175551241198569 -4.169944266868112 -4.162865877079848 -4.154335293919571 -4.144372893064020 -4.133000133507704 -4.144372893064020 -4.154335293919571 -4.162865877079848 -4.169944266868112 -4.175551241198569 -4.179668811912138 -4.182280314689167 -4.183370507944410 -4.182925680004529 -4.180933763769158 -4.177384457963720 -4.172269354004623 -4.165582067419364 -4.157318372693267 -4.147476340351695 -4.136056475035458 -4.123061853282987 -4.108498259702134 -4.092374320189997 -4.074701630850757 -4.055494881259830 -4.046383605049085 -4.053089098810729 -4.059350468912218 -4.065155796479680 -4.070494030742141 -4.075355010067281 -4.079729481304671 -4.083609117399684 -4.086986533244505 -4.089855299736120 -4.092209956014455 -4.094046019857460 -4.095359996213252 -4.096149383853156 -4.096412680132935 +-3.646195345716456 -3.645941403668403 -3.645180060917368 -3.643912766722550 -3.642141933450475 -3.639870931982927 -3.637104085300268 -3.633846660252421 -3.630104857533104 -3.625885799876466 -3.621197518498548 -3.616048937809418 -3.610449858425046 -3.606001435342751 -3.626555768786633 -3.645676125734592 -3.663345434586124 -3.679549843410605 -3.694278595757825 -3.707523898239967 -3.719280781300061 -3.729546954606160 -3.738322658516873 -3.745610513066643 -3.751415365902596 -3.755744140582687 -3.758605686607480 -3.760010632512862 -3.759971243292481 -3.758501283353001 -3.755615886127828 -3.751331431390929 -3.745665431218334 -3.738636425445283 -3.730263887359881 -3.720568140261749 -3.709570285397683 -3.720568140261749 -3.730263887359881 -3.738636425445283 -3.745665431218334 -3.751331431390930 -3.755615886127827 -3.758501283353001 -3.759971243292481 -3.760010632512862 -3.758605686607480 -3.755744140582685 -3.751415365902599 -3.745610513066643 -3.738322658516872 -3.729546954606160 -3.719280781300066 -3.707523898239968 -3.694278595757823 -3.679549843410604 -3.663345434586124 -3.645676125734592 -3.626555768786633 -3.606001435342750 -3.610449858425046 -3.616048937809418 -3.621197518498548 -3.625885799876466 -3.630104857533106 -3.633846660252421 -3.637104085300268 -3.639870931982927 -3.642141933450474 -3.643912766722550 -3.645180060917368 -3.645941403668403 -3.646195345716456 -3.645941403668403 -3.645180060917368 -3.643912766722550 -3.642141933450474 -3.639870931982928 -3.637104085300268 -3.633846660252421 -3.630104857533105 -3.625885799876466 -3.621197518498549 -3.616048937809419 -3.610449858425046 -3.606001435342751 -3.626555768786634 -3.645676125734593 -3.663345434586125 -3.679549843410603 -3.694278595757825 -3.707523898239967 -3.719280781300065 -3.729546954606159 -3.738322658516871 -3.745610513066643 -3.751415365902598 -3.755744140582686 -3.758605686607479 -3.760010632512868 -3.759971243292481 -3.758501283353001 -3.755615886127827 -3.751331431390930 -3.745665431218334 -3.738636425445279 -3.730263887359881 -3.720568140261749 -3.709570285397683 -3.720568140261749 -3.730263887359881 -3.738636425445279 -3.745665431218334 -3.751331431390930 -3.755615886127823 -3.758501283353001 -3.759971243292481 -3.760010632512868 -3.758605686607479 -3.755744140582686 -3.751415365902598 -3.745610513066643 -3.738322658516872 -3.729546954606159 -3.719280781300065 -3.707523898239967 -3.694278595757825 -3.679549843410603 -3.663345434586125 -3.645676125734593 -3.626555768786634 -3.606001435342751 -3.610449858425046 -3.616048937809419 -3.621197518498548 -3.625885799876466 -3.630104857533105 -3.633846660252421 -3.637104085300268 -3.639870931982928 -3.642141933450474 -3.643912766722550 -3.645180060917368 -3.645941403668403 -3.646195345716456 +-3.209522018620053 -3.209279363456049 -3.208551859871927 -3.207340892712118 -3.205648767121432 -3.203478704157102 -3.200834834657326 -3.197722191377957 -3.194146699412394 -3.190115164912807 -3.185635262134259 -3.180715518826303 -3.185796541760487 -3.205806484220962 -3.224471125571310 -3.241774675378734 -3.257704571604924 -3.272251349442743 -3.285408500586278 -3.297172324409466 -3.307541772564053 -3.316518288528589 -3.324105643650533 -3.330309771220237 -3.335138600101196 -3.338601889412820 -3.340711065724411 -3.341479064167542 -3.340920174812972 -3.339049895586562 -3.335884792916102 -3.331442371210972 -3.325740952175840 -3.318799564853315 -3.310637847176285 -3.301275959690869 -3.290734511986345 -3.301275959690869 -3.310637847176284 -3.318799564853314 -3.325740952175840 -3.331442371210972 -3.335884792916105 -3.339049895586562 -3.340920174812972 -3.341479064167544 -3.340711065724411 -3.338601889412821 -3.335138600101197 -3.330309771220237 -3.324105643650535 -3.316518288528588 -3.307541772564052 -3.297172324409467 -3.285408500586277 -3.272251349442743 -3.257704571604924 -3.241774675378734 -3.224471125571310 -3.205806484220957 -3.185796541760486 -3.180715518826303 -3.185635262134259 -3.190115164912807 -3.194146699412394 -3.197722191377958 -3.200834834657326 -3.203478704157101 -3.205648767121432 -3.207340892712118 -3.208551859871927 -3.209279363456049 -3.209522018620053 -3.209279363456049 -3.208551859871927 -3.207340892712118 -3.205648767121432 -3.203478704157102 -3.200834834657326 -3.197722191377957 -3.194146699412394 -3.190115164912806 -3.185635262134259 -3.180715518826304 -3.185796541760487 -3.205806484220961 -3.224471125571310 -3.241774675378734 -3.257704571604924 -3.272251349442743 -3.285408500586279 -3.297172324409465 -3.307541772564053 -3.316518288528588 -3.324105643650534 -3.330309771220238 -3.335138600101197 -3.338601889412820 -3.340711065724411 -3.341479064167543 -3.340920174812973 -3.339049895586562 -3.335884792916104 -3.331442371210972 -3.325740952175839 -3.318799564853314 -3.310637847176285 -3.301275959690869 -3.290734511986345 -3.301275959690869 -3.310637847176285 -3.318799564853314 -3.325740952175839 -3.331442371210972 -3.335884792916103 -3.339049895586562 -3.340920174812973 -3.341479064167543 -3.340711065724411 -3.338601889412820 -3.335138600101197 -3.330309771220238 -3.324105643650534 -3.316518288528588 -3.307541772564052 -3.297172324409465 -3.285408500586279 -3.272251349442743 -3.257704571604929 -3.241774675378734 -3.224471125571310 -3.205806484220961 -3.185796541760487 -3.180715518826304 -3.185635262134258 -3.190115164912806 -3.194146699412394 -3.197722191377957 -3.200834834657326 -3.203478704157102 -3.205648767121432 -3.207340892712118 -3.208551859871927 -3.209279363456049 -3.209522018620053 +-2.789543733729300 -2.789314212201658 -2.788626084526012 -2.787480660592497 -2.785880120780678 -2.783827511809049 -2.781326740935456 -2.778382568519387 -2.775000598960376 -2.771187270029694 -2.766949840615696 -2.777861069072959 -2.796940737473094 -2.814768479017244 -2.831330238223824 -2.846615195821517 -2.860615631751588 -2.873326777181345 -2.884746657048153 -2.894875924701489 -2.903717690244497 -2.911277344199156 -2.917562378127247 -2.922582203836313 -2.926347972781395 -2.928872397245051 -2.930169574835127 -2.930254817786012 -2.929144488482983 -2.926855842553074 -2.923406880777655 -2.918816210986406 -2.913102920985136 -2.906286463457446 -2.898386553658451 -2.889423080592124 -2.879416032231876 -2.889423080592124 -2.898386553658451 -2.906286463457446 -2.913102920985134 -2.918816210986406 -2.923406880777658 -2.926855842553074 -2.929144488482983 -2.930254817786012 -2.930169574835126 -2.928872397245052 -2.926347972781397 -2.922582203836315 -2.917562378127247 -2.911277344199156 -2.903717690244497 -2.894875924701489 -2.884746657048157 -2.873326777181344 -2.860615631751587 -2.846615195821518 -2.831330238223825 -2.814768479017245 -2.796940737473093 -2.777861069072965 -2.766949840615696 -2.771187270029693 -2.775000598960376 -2.778382568519388 -2.781326740935456 -2.783827511809049 -2.785880120780678 -2.787480660592497 -2.788626084526013 -2.789314212201658 -2.789543733729300 -2.789314212201658 -2.788626084526013 -2.787480660592497 -2.785880120780678 -2.783827511809049 -2.781326740935456 -2.778382568519387 -2.775000598960376 -2.771187270029693 -2.766949840615696 -2.777861069072959 -2.796940737473094 -2.814768479017244 -2.831330238223824 -2.846615195821518 -2.860615631751588 -2.873326777181345 -2.884746657048154 -2.894875924701489 -2.903717690244497 -2.911277344199155 -2.917562378127246 -2.922582203836313 -2.926347972781396 -2.928872397245052 -2.930169574835125 -2.930254817786009 -2.929144488482986 -2.926855842553079 -2.923406880777656 -2.918816210986406 -2.913102920985133 -2.906286463457446 -2.898386553658452 -2.889423080592130 -2.879416032231876 -2.889423080592130 -2.898386553658452 -2.906286463457446 -2.913102920985133 -2.918816210986406 -2.923406880777656 -2.926855842553079 -2.929144488482986 -2.930254817786009 -2.930169574835125 -2.928872397245052 -2.926347972781395 -2.922582203836313 -2.917562378127245 -2.911277344199155 -2.903717690244497 -2.894875924701489 -2.884746657048154 -2.873326777181345 -2.860615631751587 -2.846615195821518 -2.831330238223824 -2.814768479017244 -2.796940737473094 -2.777861069072959 -2.766949840615696 -2.771187270029693 -2.775000598960376 -2.778382568519387 -2.781326740935456 -2.783827511809049 -2.785880120780678 -2.787480660592497 -2.788626084526013 -2.789314212201658 -2.789543733729300 +-2.389280069652025 -2.389065428558166 -2.388421913858101 -2.387350750518645 -2.385853977560090 -2.383934444174836 -2.381595804303781 -2.378842509680838 -2.375679801358811 -2.372113699732746 -2.385812190615128 -2.403571996150311 -2.420176122134895 -2.435612696081704 -2.449873088649835 -2.462951772112543 -2.474846166355537 -2.485556473950843 -2.495085505912874 -2.503438499791389 -2.510622931791542 -2.516648324632311 -2.521526052863468 -2.525269147355130 -2.527892100655189 -2.529410674877910 -2.529841713741325 -2.529202960313551 -2.527512881957725 -2.524790503884382 -2.521055252627008 -2.516326810654702 -2.510624983223228 -2.503969578446661 -2.496380301443498 -2.487876663277125 -2.478477905272099 -2.487876663277125 -2.496380301443497 -2.503969578446661 -2.510624983223228 -2.516326810654702 -2.521055252627011 -2.524790503884382 -2.527512881957725 -2.529202960313551 -2.529841713741325 -2.529410674877911 -2.527892100655190 -2.525269147355130 -2.521526052863467 -2.516648324632310 -2.510622931791542 -2.503438499791389 -2.495085505912873 -2.485556473950842 -2.474846166355537 -2.462951772112542 -2.449873088649837 -2.435612696081705 -2.420176122134894 -2.403571996150312 -2.385812190615128 -2.372113699732745 -2.375679801358811 -2.378842509680839 -2.381595804303781 -2.383934444174835 -2.385853977560090 -2.387350750518645 -2.388421913858101 -2.389065428558166 -2.389280069652025 -2.389065428558166 -2.388421913858101 -2.387350750518645 -2.385853977560090 -2.383934444174836 -2.381595804303781 -2.378842509680838 -2.375679801358811 -2.372113699732745 -2.385812190615128 -2.403571996150312 -2.420176122134895 -2.435612696081704 -2.449873088649836 -2.462951772112558 -2.474846166355537 -2.485556473950843 -2.495085505912867 -2.503438499791387 -2.510622931791542 -2.516648324632310 -2.521526052863467 -2.525269147355132 -2.527892100655190 -2.529410674877911 -2.529841713741324 -2.529202960313550 -2.527512881957725 -2.524790503884382 -2.521055252627008 -2.516326810654702 -2.510624983223228 -2.503969578446660 -2.496380301443498 -2.487876663277124 -2.478477905272098 -2.487876663277124 -2.496380301443498 -2.503969578446661 -2.510624983223228 -2.516326810654702 -2.521055252627008 -2.524790503884382 -2.527512881957725 -2.529202960313550 -2.529841713741324 -2.529410674877911 -2.527892100655190 -2.525269147355132 -2.521526052863468 -2.516648324632310 -2.510622931791542 -2.503438499791387 -2.495085505912867 -2.485556473950843 -2.474846166355538 -2.462951772112558 -2.449873088649836 -2.435612696081704 -2.420176122134895 -2.403571996150312 -2.385812190615127 -2.372113699732745 -2.375679801358811 -2.378842509680838 -2.381595804303781 -2.383934444174836 -2.385853977560090 -2.387350750518645 -2.388421913858101 -2.389065428558166 -2.389280069652025 +-2.011596504278935 -2.011398377167180 -2.010804372978135 -2.009815622432533 -2.008434007673237 -2.006662158682465 -2.004503448275477 -2.001961985680225 -1.999042608715209 -2.013141941757421 -2.029195036595420 -2.044189739729882 -2.058116798275845 -2.070970208346844 -2.082747070412593 -2.093447430675504 -2.103074110017126 -2.111632522141272 -2.119130482603599 -2.125578010465403 -2.130987124346106 -2.135371634669530 -2.138746933906197 -2.141129786607684 -2.142538121007063 -2.142990823926167 -2.142507540680274 -2.141108481611154 -2.138814236804006 -2.135645600458549 -2.131623406286872 -2.126768375202960 -2.121100976450857 -2.114641303192966 -2.107408963445321 -2.099422987106386 -2.090701749680080 -2.099422987106386 -2.107408963445321 -2.114641303192964 -2.121100976450857 -2.126768375202960 -2.131623406286874 -2.135645600458549 -2.138814236804005 -2.141108481611154 -2.142507540680274 -2.142990823926169 -2.142538121007065 -2.141129786607684 -2.138746933906219 -2.135371634669530 -2.130987124346106 -2.125578010465401 -2.119130482603599 -2.111632522141271 -2.103074110017126 -2.093447430675504 -2.082747070412594 -2.070970208346845 -2.058116798275845 -2.044189739729882 -2.029195036595420 -2.013141941757421 -1.999042608715209 -2.001961985680226 -2.004503448275477 -2.006662158682465 -2.008434007673237 -2.009815622432533 -2.010804372978135 -2.011398377167180 -2.011596504278935 -2.011398377167180 -2.010804372978135 -2.009815622432533 -2.008434007673237 -2.006662158682465 -2.004503448275477 -2.001961985680225 -1.999042608715209 -2.013141941757423 -2.029195036595420 -2.044189739729882 -2.058116798275845 -2.070970208346845 -2.082747070412593 -2.093447430675504 -2.103074110017126 -2.111632522141271 -2.119130482603601 -2.125578010465403 -2.130987124346109 -2.135371634669530 -2.138746933906222 -2.141129786607684 -2.142538121007064 -2.142990823926168 -2.142507540680272 -2.141108481611154 -2.138814236804007 -2.135645600458550 -2.131623406286874 -2.126768375202960 -2.121100976450859 -2.114641303192964 -2.107408963445320 -2.099422987106387 -2.090701749680080 -2.099422987106387 -2.107408963445320 -2.114641303192964 -2.121100976450859 -2.126768375202960 -2.131623406286874 -2.135645600458550 -2.138814236804007 -2.141108481611154 -2.142507540680272 -2.142990823926168 -2.142538121007064 -2.141129786607684 -2.138746933906197 -2.135371634669530 -2.130987124346109 -2.125578010465403 -2.119130482603601 -2.111632522141271 -2.103074110017126 -2.093447430675504 -2.082747070412593 -2.070970208346845 -2.058116798275845 -2.044189739729882 -2.029195036595420 -2.013141941757423 -1.999042608715209 -2.001961985680226 -2.004503448275477 -2.006662158682465 -2.008434007673237 -2.009815622432533 -2.010804372978135 -2.011398377167180 -2.011596504278935 +-1.659182950873195 -1.659002845610499 -1.658462872663019 -1.657564059899951 -1.656308118262470 -1.654697438506872 -1.652735086653613 -1.650424798150980 -1.663179577371004 -1.677148285595388 -1.690155117910134 -1.702193860891416 -1.713261554490663 -1.723358345788994 -1.732487327257775 -1.740654361062087 -1.747867891033426 -1.754138744016283 -1.759479922355704 -1.763906389343816 -1.767434849477780 -1.770083525403338 -1.771871933424101 -1.772820659448262 -1.772951137222065 -1.772285430661137 -1.770846022040697 -1.768655607739765 -1.765736903157208 -1.762112458326798 -1.757804485656432 -1.752834701103906 -1.747224179978276 -1.740993228424359 -1.734161271507635 -1.726746758670200 -1.718767087175842 -1.726746758670198 -1.734161271507635 -1.740993228424358 -1.747224179978276 -1.752834701103908 -1.757804485656433 -1.762112458326798 -1.765736903157207 -1.768655607739765 -1.770846022040696 -1.772285430661137 -1.772951137222066 -1.772820659448261 -1.771871933424101 -1.770083525403338 -1.767434849477789 -1.763906389343817 -1.759479922355703 -1.754138744016283 -1.747867891033426 -1.740654361062087 -1.732487327257775 -1.723358345788983 -1.713261554490664 -1.702193860891416 -1.690155117910134 -1.677148285595388 -1.663179577371004 -1.650424798150980 -1.652735086653613 -1.654697438506872 -1.656308118262470 -1.657564059899951 -1.658462872663019 -1.659002845610499 -1.659182950873195 -1.659002845610499 -1.658462872663019 -1.657564059899950 -1.656308118262470 -1.654697438506872 -1.652735086653613 -1.650424798150980 -1.663179577371004 -1.677148285595388 -1.690155117910132 -1.702193860891416 -1.713261554490664 -1.723358345788983 -1.732487327257774 -1.740654361062087 -1.747867891033426 -1.754138744016282 -1.759479922355704 -1.763906389343816 -1.767434849477789 -1.770083525403337 -1.771871933424100 -1.772820659448263 -1.772951137222065 -1.772285430661137 -1.770846022040696 -1.768655607739765 -1.765736903157209 -1.762112458326795 -1.757804485656433 -1.752834701103908 -1.747224179978276 -1.740993228424358 -1.734161271507638 -1.726746758670200 -1.718767087175842 -1.726746758670200 -1.734161271507638 -1.740993228424358 -1.747224179978275 -1.752834701103908 -1.757804485656433 -1.762112458326795 -1.765736903157209 -1.768655607739765 -1.770846022040696 -1.772285430661137 -1.772951137222065 -1.772820659448263 -1.771871933424098 -1.770083525403337 -1.767434849477789 -1.763906389343816 -1.759479922355704 -1.754138744016282 -1.747867891033426 -1.740654361062087 -1.732487327257774 -1.723358345788983 -1.713261554490664 -1.702193860891416 -1.690155117910134 -1.677148285595388 -1.663179577371004 -1.650424798150980 -1.652735086653613 -1.654697438506872 -1.656308118262470 -1.657564059899950 -1.658462872663019 -1.659002845610499 -1.659182950873195 +-1.334533637387122 -1.334372924683287 -1.333891092497547 -1.333089058024856 -1.331968347983414 -1.330531095708483 -1.328780037091457 -1.339055278568212 -1.350577413182300 -1.361231648859263 -1.371015209808074 -1.379928575985766 -1.387975336794436 -1.395162027801258 -1.401497951982836 -1.406994987100082 -1.411667380901330 -1.415531535930315 -1.418605785779640 -1.420910164681305 -1.422466172360372 -1.423296536099131 -1.423424971963891 -1.422875947136801 -1.421674445270539 -1.419845736743586 -1.417415155640288 -1.414407885211132 -1.410848753487661 -1.406762040631542 -1.402171299491130 -1.397099190721012 -1.391567333691898 -1.385596174281251 -1.379204870489086 -1.372411196671229 -1.365231467023391 -1.372411196671227 -1.379204870489085 -1.385596174281250 -1.391567333691897 -1.397099190721013 -1.402171299491132 -1.406762040631542 -1.410848753487661 -1.414407885211132 -1.417415155640288 -1.419845736743587 -1.421674445270540 -1.422875947136800 -1.423424971963891 -1.423296536099131 -1.422466172360372 -1.420910164681306 -1.418605785779640 -1.415531535930314 -1.411667380901329 -1.406994987100081 -1.401497951982837 -1.395162027801258 -1.387975336794435 -1.379928575985766 -1.371015209808074 -1.361231648859263 -1.350577413182300 -1.339055278568211 -1.328780037091457 -1.330531095708483 -1.331968347983414 -1.333089058024856 -1.333891092497548 -1.334372924683287 -1.334533637387122 -1.334372924683287 -1.333891092497548 -1.333089058024856 -1.331968347983414 -1.330531095708483 -1.328780037091458 -1.339055278568211 -1.350577413182300 -1.361231648859263 -1.371015209808071 -1.379928575985766 -1.387975336794436 -1.395162027801258 -1.401497951982837 -1.406994987100081 -1.411667380901331 -1.415531535930314 -1.418605785779640 -1.420910164681306 -1.422466172360374 -1.423296536099131 -1.423424971963890 -1.422875947136801 -1.421674445270540 -1.419845736743587 -1.417415155640288 -1.414407885211132 -1.410848753487660 -1.406762040631543 -1.402171299491132 -1.397099190721013 -1.391567333691897 -1.385596174281250 -1.379204870489086 -1.372411196671229 -1.365231467023391 -1.372411196671229 -1.379204870489086 -1.385596174281250 -1.391567333691897 -1.397099190721013 -1.402171299491132 -1.406762040631543 -1.410848753487660 -1.414407885211132 -1.417415155640288 -1.419845736743586 -1.421674445270540 -1.422875947136801 -1.423424971963891 -1.423296536099131 -1.422466172360375 -1.420910164681306 -1.418605785779640 -1.415531535930314 -1.411667380901329 -1.406994987100081 -1.401497951982837 -1.395162027801258 -1.387975336794436 -1.379928575985766 -1.371015209808074 -1.361231648859263 -1.350577413182300 -1.339055278568211 -1.328780037091458 -1.330531095708483 -1.331968347983414 -1.333089058024856 -1.333891092497548 -1.334372924683287 -1.334533637387122 +-1.039928481468379 -1.039788384444120 -1.039368360053994 -1.038669207838297 -1.037692258673012 -1.036439372236398 -1.043665655796930 -1.052400625679770 -1.060357438821401 -1.067537128964861 -1.073943985362276 -1.079585407952445 -1.084471744139180 -1.088616108615838 -1.092034187800733 -1.094744030553593 -1.096765826937480 -1.098121676869093 -1.098835350566491 -1.098932042752874 -1.098438122610842 -1.097380881500909 -1.095788280462656 -1.093688699505405 -1.091110690668613 -1.088082736790222 -1.084633017864593 -1.080789186800096 -1.076578156301730 -1.072025898505764 -1.067157258882745 -1.061995785803258 -1.056563577027980 -1.050881144241413 -1.044967296598023 -1.038839044091530 -1.032511521394321 -1.038839044091530 -1.044967296598019 -1.050881144241413 -1.056563577027980 -1.061995785803260 -1.067157258882746 -1.072025898505764 -1.076578156301730 -1.080789186800095 -1.084633017864593 -1.088082736790222 -1.091110690668615 -1.093688699505405 -1.095788280462656 -1.097380881500909 -1.098438122610843 -1.098932042752875 -1.098835350566491 -1.098121676869094 -1.096765826937479 -1.094744030553592 -1.092034187800733 -1.088616108615838 -1.084471744139180 -1.079585407952445 -1.073943985362276 -1.067537128964861 -1.060357438821396 -1.052400625679770 -1.043665655796930 -1.036439372236397 -1.037692258673012 -1.038669207838297 -1.039368360053994 -1.039788384444120 -1.039928481468379 -1.039788384444120 -1.039368360053994 -1.038669207838297 -1.037692258673012 -1.036439372236398 -1.043665655796925 -1.052400625679770 -1.060357438821396 -1.067537128964861 -1.073943985362276 -1.079585407952445 -1.084471744139180 -1.088616108615837 -1.092034187800733 -1.094744030553592 -1.096765826937478 -1.098121676869093 -1.098835350566491 -1.098932042752875 -1.098438122610843 -1.097380881500909 -1.095788280462656 -1.093688699505405 -1.091110690668614 -1.088082736790221 -1.084633017864592 -1.080789186800093 -1.076578156301730 -1.072025898505765 -1.067157258882746 -1.061995785803259 -1.056563577027979 -1.050881144241413 -1.044967296598018 -1.038839044091530 -1.032511521394321 -1.038839044091530 -1.044967296598018 -1.050881144241413 -1.056563577027979 -1.061995785803259 -1.067157258882746 -1.072025898505765 -1.076578156301730 -1.080789186800093 -1.084633017864592 -1.088082736790221 -1.091110690668614 -1.093688699505405 -1.095788280462657 -1.097380881500909 -1.098438122610843 -1.098932042752875 -1.098835350566491 -1.098121676869093 -1.096765826937479 -1.094744030553592 -1.092034187800733 -1.088616108615837 -1.084471744139180 -1.079585407952445 -1.073943985362277 -1.067537128964861 -1.060357438821396 -1.052400625679771 -1.043665655796925 -1.036439372236398 -1.037692258673012 -1.038669207838297 -1.039368360053994 -1.039788384444120 -1.039928481468379 +-0.777416102222284 -0.777297687100549 -0.776942667145261 -0.776351718157081 -0.775525965040997 -0.779641477202373 -0.785276091190340 -0.790216454561162 -0.794467751970640 -0.798038420103332 -0.800940005815110 -0.803187004545474 -0.804796680369729 -0.805788869193038 -0.806185766708707 -0.806011702850705 -0.805292904564870 -0.804057248803235 -0.802334007711577 -0.800153588030746 -0.797547266767038 -0.794546925205911 -0.791184783346682 -0.787493136822881 -0.783504098344430 -0.779249345653918 -0.774759877929497 -0.770065782493236 -0.765196013595417 -0.760178184943537 -0.755038377530422 -0.749800964189864 -0.744488452171083 -0.739121344876647 -0.733718023753367 -0.728294651162658 -0.722865094888370 -0.728294651162657 -0.733718023753367 -0.739121344876647 -0.744488452171081 -0.749800964189864 -0.755038377530423 -0.760178184943536 -0.765196013595416 -0.770065782493235 -0.774759877929496 -0.779249345653919 -0.783504098344430 -0.787493136822881 -0.791184783346682 -0.794546925205910 -0.797547266767037 -0.800153588030747 -0.802334007711577 -0.804057248803234 -0.805292904564870 -0.806011702850705 -0.806185766708708 -0.805788869193038 -0.804796680369728 -0.803187004545474 -0.800940005815109 -0.798038420103332 -0.794467751970641 -0.790216454561163 -0.785276091190340 -0.779641477202373 -0.775525965040997 -0.776351718157081 -0.776942667145261 -0.777297687100549 -0.777416102222284 -0.777297687100549 -0.776942667145261 -0.776351718157081 -0.775525965040997 -0.779641477202373 -0.785276091190340 -0.790216454561162 -0.794467751970641 -0.798038420103332 -0.800940005815110 -0.803187004545474 -0.804796680369729 -0.805788869193038 -0.806185766708707 -0.806011702850705 -0.805292904564870 -0.804057248803235 -0.802334007711578 -0.800153588030746 -0.797547266767037 -0.794546925205910 -0.791184783346682 -0.787493136822880 -0.783504098344430 -0.779249345653919 -0.774759877929496 -0.770065782493235 -0.765196013595417 -0.760178184943537 -0.755038377530423 -0.749800964189864 -0.744488452171081 -0.739121344876647 -0.733718023753367 -0.728294651162659 -0.722865094888370 -0.728294651162659 -0.733718023753367 -0.739121344876647 -0.744488452171081 -0.749800964189864 -0.755038377530423 -0.760178184943537 -0.765196013595417 -0.770065782493235 -0.774759877929496 -0.779249345653919 -0.783504098344430 -0.787493136822881 -0.791184783346683 -0.794546925205910 -0.797547266767037 -0.800153588030746 -0.802334007711578 -0.804057248803235 -0.805292904564870 -0.806011702850705 -0.806185766708707 -0.805788869193038 -0.804796680369729 -0.803187004545474 -0.800940005815109 -0.798038420103332 -0.794467751970641 -0.790216454561162 -0.785276091190340 -0.779641477202373 -0.775525965040997 -0.776351718157081 -0.776942667145261 -0.777297687100549 -0.777416102222284 +-0.548798597329352 -0.548702765320720 -0.548415451716497 -0.547937203434459 -0.549318027575458 -0.551571907279419 -0.553208122294570 -0.554236315095542 -0.554669372870306 -0.554523290013794 -0.553817009680837 -0.552572245674280 -0.550813286088393 -0.548566780261243 -0.545861510710997 -0.542728151840082 -0.539199017285773 -0.535307797876736 -0.531089292220420 -0.526579131996415 -0.521813504065373 -0.516828871521045 -0.511661695815244 -0.506348162071203 -0.500923909670472 -0.495423770152441 -0.489881514403805 -0.484329611038626 -0.478798997778595 -0.473318867538197 -0.467916470801832 -0.462616935750166 -0.457443107452270 -0.452415407289478 -0.447551713617463 -0.442867264506065 -0.438374583223239 -0.442867264506064 -0.447551713617462 -0.452415407289478 -0.457443107452270 -0.462616935750167 -0.467916470801833 -0.473318867538196 -0.478798997778594 -0.484329611038626 -0.489881514403805 -0.495423770152442 -0.500923909670473 -0.506348162071203 -0.511661695815243 -0.516828871521045 -0.521813504065373 -0.526579131996416 -0.531089292220420 -0.535307797876736 -0.539199017285772 -0.542728151840082 -0.545861510710997 -0.548566780261244 -0.550813286088393 -0.552572245674280 -0.553817009680837 -0.554523290013794 -0.554669372870306 -0.554236315095540 -0.553208122294570 -0.551571907279419 -0.549318027575458 -0.547937203434459 -0.548415451716497 -0.548702765320720 -0.548798597329352 -0.548702765320720 -0.548415451716497 -0.547937203434459 -0.549318027575458 -0.551571907279419 -0.553208122294570 -0.554236315095540 -0.554669372870306 -0.554523290013794 -0.553817009680837 -0.552572245674280 -0.550813286088394 -0.548566780261243 -0.545861510710997 -0.542728151840081 -0.539199017285773 -0.535307797876736 -0.531089292220421 -0.526579131996416 -0.521813504065373 -0.516828871521045 -0.511661695815243 -0.506348162071204 -0.500923909670472 -0.495423770152442 -0.489881514403805 -0.484329611038625 -0.478798997778595 -0.473318867538197 -0.467916470801833 -0.462616935750166 -0.457443107452270 -0.452415407289478 -0.447551713617463 -0.442867264506065 -0.438374583223239 -0.442867264506065 -0.447551713617463 -0.452415407289478 -0.457443107452270 -0.462616935750166 -0.467916470801833 -0.473318867538197 -0.478798997778595 -0.484329611038625 -0.489881514403805 -0.495423770152442 -0.500923909670472 -0.506348162071204 -0.511661695815244 -0.516828871521045 -0.521813504065373 -0.526579131996416 -0.531089292220421 -0.535307797876736 -0.539199017285772 -0.542728151840081 -0.545861510710997 -0.548566780261243 -0.550813286088394 -0.552572245674280 -0.553817009680837 -0.554523290013794 -0.554669372870306 -0.554236315095540 -0.553208122294570 -0.551571907279419 -0.549318027575458 -0.547937203434459 -0.548415451716497 -0.548702765320720 -0.548798597329352 +-0.355618200671941 -0.355545681115860 -0.355328260492715 -0.354708474453262 -0.353338992955378 -0.351419766540284 -0.348965164259308 -0.345992788222620 -0.342523341690342 -0.338580475159817 -0.334190611613625 -0.329382752248231 -0.324188264148882 -0.318640651510564 -0.312775312127440 -0.306629280981972 -0.300240962860629 -0.293649856003435 -0.286896268860344 -0.280021032076944 -0.273065207865839 -0.266069798937185 -0.259075459162869 -0.252122208133044 -0.245249151731835 -0.238494210810929 -0.231893859975962 -0.225482878421554 -0.219294114657182 -0.213358266858458 -0.207703680457722 -0.202356164454958 -0.197338827786044 -0.192671936931243 -0.188372795783903 -0.184455648628695 -0.180931606901789 -0.184455648628694 -0.188372795783903 -0.192671936931243 -0.197338827786044 -0.202356164454959 -0.207703680457722 -0.213358266858457 -0.219294114657181 -0.225482878421554 -0.231893859975962 -0.238494210810930 -0.245249151731836 -0.252122208133044 -0.259075459162868 -0.266069798937185 -0.273065207865839 -0.280021032076945 -0.286896268860344 -0.293649856003435 -0.300240962860625 -0.306629280981971 -0.312775312127441 -0.318640651510564 -0.324188264148882 -0.329382752248231 -0.334190611613624 -0.338580475159817 -0.342523341690343 -0.345992788222620 -0.348965164259308 -0.351419766540284 -0.353338992955378 -0.354708474453262 -0.355328260492715 -0.355545681115860 -0.355618200671941 -0.355545681115860 -0.355328260492715 -0.354708474453262 -0.353338992955377 -0.351419766540284 -0.348965164259308 -0.345992788222620 -0.342523341690342 -0.338580475159816 -0.334190611613625 -0.329382752248232 -0.324188264148882 -0.318640651510564 -0.312775312127440 -0.306629280981971 -0.300240962860629 -0.293649856003436 -0.286896268860344 -0.280021032076944 -0.273065207865838 -0.266069798937184 -0.259075459162868 -0.252122208133045 -0.245249151731836 -0.238494210810929 -0.231893859975961 -0.225482878421553 -0.219294114657183 -0.213358266858458 -0.207703680457722 -0.202356164454958 -0.197338827786044 -0.192671936931242 -0.188372795783903 -0.184455648628695 -0.180931606901789 -0.184455648628695 -0.188372795783903 -0.192671936931242 -0.197338827786044 -0.202356164454958 -0.207703680457722 -0.213358266858458 -0.219294114657182 -0.225482878421553 -0.231893859975961 -0.238494210810929 -0.245249151731836 -0.252122208133045 -0.259075459162869 -0.266069798937184 -0.273065207865838 -0.280021032076944 -0.286896268860344 -0.293649856003436 -0.300240962860624 -0.306629280981971 -0.312775312127440 -0.318640651510564 -0.324188264148882 -0.329382752248232 -0.334190611613620 -0.338580475159816 -0.342523341690342 -0.345992788222620 -0.348965164259308 -0.351419766540284 -0.353338992955377 -0.354708474453262 -0.355328260492715 -0.355545681115860 -0.355618200671941 +-0.199145921305120 -0.199097266119202 -0.197480584353836 -0.192287254496210 -0.186602244834950 -0.180444878183061 -0.173837694052619 -0.166806323413322 -0.159379340555036 -0.151588093092422 -0.143466511314979 -0.135050898242333 -0.126379701890580 -0.117493271390503 -0.108433598720962 -0.099244047930101 -0.089969073812271 -0.080653932089005 -0.071344383207353 -0.062086391918135 -0.052925824829362 -0.043908148146481 -0.035078127810730 -0.026479534229809 -0.018154853761613 -0.010145009061885 -0.002489090340951 0.004775900506473 0.011615291030281 0.017996962854751 0.023891558174196 0.029272666615171 0.034116991112742 0.038404491605212 0.042118505517697 0.045245844178612 0.047776864493072 0.045245844178613 0.042118505517698 0.038404491605212 0.034116991112743 0.029272666615171 0.023891558174195 0.017996962854751 0.011615291030282 0.004775900506473 -0.002489090340951 -0.010145009061887 -0.018154853761614 -0.026479534229808 -0.035078127810729 -0.043908148146480 -0.052925824829361 -0.062086391918137 -0.071344383207353 -0.080653932089005 -0.089969073812271 -0.099244047930099 -0.108433598720963 -0.117493271390504 -0.126379701890580 -0.135050898242332 -0.143466511314978 -0.151588093092422 -0.159379340555037 -0.166806323413322 -0.173837694052619 -0.180444878183061 -0.186602244834948 -0.192287254496210 -0.197480584353838 -0.199097266119202 -0.199145921305120 -0.199097266119202 -0.197480584353836 -0.192287254496210 -0.186602244834947 -0.180444878183061 -0.173837694052619 -0.166806323413322 -0.159379340555037 -0.151588093092421 -0.143466511314979 -0.135050898242333 -0.126379701890580 -0.117493271390504 -0.108433598720962 -0.099244047930099 -0.089969073812273 -0.080653932089005 -0.071344383207354 -0.062086391918136 -0.052925824829360 -0.043908148146479 -0.035078127810729 -0.026479534229810 -0.018154853761613 -0.010145009061886 -0.002489090340949 0.004775900506474 0.011615291030281 0.017996962854751 0.023891558174195 0.029272666615171 0.034116991112743 0.038404491605212 0.042118505517697 0.045245844178612 0.047776864493072 0.045245844178612 0.042118505517697 0.038404491605212 0.034116991112743 0.029272666615171 0.023891558174195 0.017996962854751 0.011615291030281 0.004775900506474 -0.002489090340949 -0.010145009061886 -0.018154853761613 -0.026479534229810 -0.035078127810731 -0.043908148146479 -0.052925824829360 -0.062086391918136 -0.071344383207354 -0.080653932089005 -0.089969073812271 -0.099244047930099 -0.108433598720962 -0.117493271390504 -0.126379701890580 -0.135050898242333 -0.143466511314978 -0.151588093092421 -0.159379340555037 -0.166806323413322 -0.173837694052619 -0.180444878183061 -0.186602244834947 -0.192287254496210 -0.197480584353836 -0.199097266119202 -0.199145921305120 +-0.080372249518428 -0.078937094084925 -0.069765337597313 -0.060149098152736 -0.050112834748616 -0.039684201827876 -0.028893931567644 -0.017775692570253 -0.006365925855739 0.005296340771540 0.017169698743947 0.029210583744531 0.041373518173031 0.053611369388161 0.065875621928055 0.078116661801766 0.090284070849863 0.102326929092287 0.114194122917337 0.125834656917279 0.137197967144238 0.148234233544789 0.158894689333191 0.169131925081648 0.178900185340889 0.188155655655791 0.196856737908257 0.204964312002382 0.212441982004866 0.219256304965574 0.225377000768527 0.230777141501199 0.235433318979167 0.239325789222328 0.242438592847227 0.244759650516155 0.246280832766045 0.244759650516155 0.242438592847228 0.239325789222328 0.235433318979167 0.230777141501199 0.225377000768526 0.219256304965579 0.212441982004866 0.204964312002383 0.196856737908257 0.188155655655789 0.178900185340887 0.169131925081650 0.158894689333192 0.148234233544790 0.137197967144240 0.125834656917278 0.114194122917337 0.102326929092288 0.090284070849864 0.078116661801766 0.065875621928053 0.053611369388159 0.041373518173032 0.029210583744532 0.017169698743948 0.005296340771541 -0.006365925855740 -0.017775692570255 -0.028893931567643 -0.039684201827876 -0.050112834748616 -0.060149098152735 -0.069765337597313 -0.078937094084924 -0.080372249518428 -0.078937094084925 -0.069765337597313 -0.060149098152735 -0.050112834748616 -0.039684201827877 -0.028893931567645 -0.017775692570254 -0.006365925855739 0.005296340771542 0.017169698743947 0.029210583744530 0.041373518173030 0.053611369388159 0.065875621928054 0.078116661801768 0.090284070849862 0.102326929092286 0.114194122917334 0.125834656917278 0.137197967144241 0.148234233544790 0.158894689333195 0.169131925081648 0.178900185340888 0.188155655655789 0.196856737908257 0.204964312002383 0.212441982004866 0.219256304965574 0.225377000768527 0.230777141501199 0.235433318979167 0.239325789222328 0.242438592847226 0.244759650516155 0.246280832766045 0.244759650516155 0.242438592847226 0.239325789222328 0.235433318979167 0.230777141501199 0.225377000768527 0.219256304965574 0.212441982004866 0.204964312002383 0.196856737908257 0.188155655655789 0.178900185340888 0.169131925081648 0.158894689333191 0.148234233544790 0.137197967144241 0.125834656917278 0.114194122917334 0.102326929092286 0.090284070849865 0.078116661801768 0.065875621928053 0.053611369388159 0.041373518173030 0.029210583744530 0.017169698743949 0.005296340771542 -0.006365925855739 -0.017775692570254 -0.028893931567645 -0.039684201827878 -0.050112834748616 -0.060149098152735 -0.069765337597313 -0.078937094084925 -0.080372249518428 +0.000000000000000 0.013255762859769 0.026920503409475 0.040964491766369 0.055354828730205 0.070055555333186 0.085027786483448 0.100229867951444 0.115617555769020 0.131144216937784 0.146761050178178 0.162417325294566 0.178060639586037 0.193637189598246 0.209092056390056 0.224369502380277 0.239413277746008 0.254166934264754 0.268574144429507 0.282579023618220 0.296126453068742 0.309162401395841 0.321634242389912 0.333491066856617 0.344683986292834 0.355166426247375 0.364894407283528 0.373826811545096 0.381925633026926 0.389156209764483 0.395487436283924 0.400891954793678 0.405346323749002 0.408831162582186 0.411331271560953 0.412835725915551 0.413337943559164 0.412835725915551 0.411331271560953 0.408831162582186 0.405346323749002 0.400891954793677 0.395487436283921 0.389156209764483 0.381925633026932 0.373826811545097 0.364894407283528 0.355166426247374 0.344683986292830 0.333491066856617 0.321634242389913 0.309162401395841 0.296126453068746 0.282579023618218 0.268574144429507 0.254166934264757 0.239413277746008 0.224369502380278 0.209092056390052 0.193637189598244 0.178060639586039 0.162417325294567 0.146761050178178 0.131144216937784 0.115617555769019 0.100229867951440 0.085027786483449 0.070055555333187 0.055354828730205 0.040964491766370 0.026920503409473 0.013255762859770 0.000000000000000 0.013255762859768 0.026920503409474 0.040964491766371 0.055354828730207 0.070055555333184 0.085027786483446 0.100229867951442 0.115617555769019 0.131144216937787 0.146761050178176 0.162417325294566 0.178060639586036 0.193637189598246 0.209092056390053 0.224369502380279 0.239413277746003 0.254166934264754 0.268574144429506 0.282579023618219 0.296126453068746 0.309162401395842 0.321634242389913 0.333491066856613 0.344683986292833 0.355166426247375 0.364894407283529 0.373826811545097 0.381925633026926 0.389156209764483 0.395487436283924 0.400891954793677 0.405346323749002 0.408831162582186 0.411331271560953 0.412835725915551 0.413337943559164 0.412835725915551 0.411331271560953 0.408831162582186 0.405346323749002 0.400891954793677 0.395487436283924 0.389156209764483 0.381925633026926 0.373826811545097 0.364894407283529 0.355166426247375 0.344683986292833 0.333491066856613 0.321634242389912 0.309162401395842 0.296126453068746 0.282579023618219 0.268574144429506 0.254166934264754 0.239413277746010 0.224369502380279 0.209092056390053 0.193637189598246 0.178060639586036 0.162417325294566 0.146761050178180 0.131144216937785 0.115617555769019 0.100229867951442 0.085027786483446 0.070055555333184 0.055354828730207 0.040964491766371 0.026920503409474 0.013255762859768 0.000000000000000 +0.078167618726004 0.081313039135655 0.099443513106482 0.117886462274699 0.136600625499254 0.155541829461696 0.174663137822095 0.193915023373590 0.213245562237637 0.232600648969911 0.251924231282468 0.271158562932890 0.290244473186365 0.309121651123645 0.327728942947099 0.346004660329984 0.363886897761245 0.381313856760192 0.398224174773305 0.414557256519338 0.430253605519077 0.445255153533508 0.459505585637974 0.472950658680724 0.485538510911861 0.497219960622706 0.507948791705493 0.517682024129171 0.526380167427397 0.534007455409764 0.540532060435170 0.545926285726922 0.550166734360980 0.553234453720714 0.555115054382856 0.555798802578073 0.555280685554939 0.555798802578073 0.555115054382856 0.553234453720714 0.550166734360980 0.545926285726920 0.540532060435169 0.534007455409764 0.526380167427397 0.517682024129172 0.507948791705493 0.497219960622706 0.485538510911860 0.472950658680724 0.459505585637975 0.445255153533508 0.430253605519077 0.414557256519337 0.398224174773305 0.381313856760192 0.363886897761249 0.346004660329985 0.327728942947094 0.309121651123640 0.290244473186365 0.271158562932890 0.251924231282473 0.232600648969911 0.213245562237635 0.193915023373588 0.174663137822097 0.155541829461698 0.136600625499255 0.117886462274699 0.099443513106477 0.081313039135656 0.078167618726004 0.081313039135653 0.099443513106481 0.117886462274700 0.136600625499258 0.155541829461695 0.174663137822095 0.193915023373588 0.213245562237636 0.232600648969912 0.251924231282468 0.271158562932890 0.290244473186364 0.309121651123641 0.327728942947095 0.346004660329985 0.363886897761245 0.381313856760189 0.398224174773305 0.414557256519338 0.430253605519077 0.445255153533509 0.459505585637976 0.472950658680724 0.485538510911861 0.497219960622705 0.507948791705495 0.517682024129172 0.526380167427395 0.534007455409763 0.540532060435169 0.545926285726920 0.550166734360981 0.553234453720714 0.555115054382857 0.555798802578073 0.555280685554939 0.555798802578073 0.555115054382857 0.553234453720714 0.550166734360981 0.545926285726920 0.540532060435169 0.534007455409763 0.526380167427395 0.517682024129172 0.507948791705495 0.497219960622706 0.485538510911861 0.472950658680724 0.459505585637974 0.445255153533509 0.430253605519077 0.414557256519338 0.398224174773305 0.381313856760189 0.363886897761249 0.346004660329985 0.327728942947095 0.309121651123641 0.290244473186364 0.271158562932890 0.251924231282475 0.232600648969912 0.213245562237636 0.193915023373588 0.174663137822095 0.155541829461695 0.136600625499258 0.117886462274700 0.099443513106481 0.081313039135653 0.078167618726004 +0.179361197164663 0.179744687585568 0.187556487958594 0.210336060672798 0.233310825917442 0.256428548847078 0.279634404947492 0.302871166733489 0.326079412032093 0.349197752698641 0.372163082450596 0.394910842350395 0.417375302325858 0.439489856984951 0.461187333862630 0.482400312132159 0.503061449721610 0.523103816700155 0.542461232737749 0.561068606397367 0.578862273990267 0.595780335713534 0.611762986793965 0.626752841384708 0.640695246999286 0.653538587322846 0.665234571311426 0.675738506576445 0.685009555153018 0.693010969866108 0.699710309637370 0.705079632216576 0.709095662973833 0.711739938551664 0.712998924347201 0.712864104974434 0.711332047041657 0.712864104974434 0.712998924347201 0.711739938551669 0.709095662973834 0.705079632216569 0.699710309637370 0.693010969866108 0.685009555153018 0.675738506576446 0.665234571311426 0.653538587322846 0.640695246999285 0.626752841384708 0.611762986793965 0.595780335713535 0.578862273990267 0.561068606397364 0.542461232737749 0.523103816700155 0.503061449721619 0.482400312132159 0.461187333862627 0.439489856984942 0.417375302325858 0.394910842350395 0.372163082450602 0.349197752698645 0.326079412032092 0.302871166733488 0.279634404947493 0.256428548847079 0.233310825917443 0.210336060672800 0.187556487958592 0.179744687585570 0.179361197164663 0.179744687585568 0.187556487958592 0.210336060672800 0.233310825917449 0.256428548847073 0.279634404947491 0.302871166733488 0.326079412032093 0.349197752698646 0.372163082450595 0.394910842350391 0.417375302325857 0.439489856984943 0.461187333862630 0.482400312132159 0.503061449721610 0.523103816700146 0.542461232737748 0.561068606397365 0.578862273990275 0.595780335713540 0.611762986793965 0.626752841384708 0.640695246999285 0.653538587322846 0.665234571311426 0.675738506576446 0.685009555153018 0.693010969866108 0.699710309637370 0.705079632216575 0.709095662973834 0.711739938551671 0.712998924347201 0.712864104974434 0.711332047041657 0.712864104974434 0.712998924347201 0.711739938551671 0.709095662973834 0.705079632216576 0.699710309637370 0.693010969866108 0.685009555153018 0.675738506576446 0.665234571311426 0.653538587322846 0.640695246999286 0.626752841384708 0.611762986793963 0.595780335713536 0.578862273990275 0.561068606397365 0.542461232737748 0.523103816700146 0.503061449721620 0.482400312132159 0.461187333862630 0.439489856984943 0.417375302325857 0.394910842350391 0.372163082450603 0.349197752698646 0.326079412032093 0.302871166733488 0.279634404947491 0.256428548847073 0.233310825917449 0.210336060672800 0.187556487958592 0.179744687585568 0.179361197164663 +0.303043085800814 0.303398600752290 0.304462026050773 0.317779160738826 0.344918668103212 0.372116957479876 0.399311539684391 0.426437718648660 0.453428812975893 0.480216397375265 0.506730562645336 0.532900192723836 0.558653257180868 0.583917117402839 0.608618844597750 0.632685547648320 0.656044708750582 0.678624524700325 0.700354251631113 0.721164550964067 0.740987834303013 0.759758604998012 0.777413794106770 0.793893088506530 0.809139248948152 0.823098415900544 0.835720401104333 0.846958962841641 0.856772063029745 0.865122104362629 0.871976145853375 0.877306095271039 0.881088877118742 0.883306574961506 0.883946547084069 0.883001514637980 0.880469621622277 0.883001514637980 0.883946547084069 0.883306574961506 0.881088877118744 0.877306095271037 0.871976145853374 0.865122104362630 0.856772063029745 0.846958962841641 0.835720401104334 0.823098415900544 0.809139248948146 0.793893088506529 0.777413794106781 0.759758604998013 0.740987834303013 0.721164550964061 0.700354251631116 0.678624524700326 0.656044708750583 0.632685547648320 0.608618844597744 0.583917117402837 0.558653257180868 0.532900192723838 0.506730562645339 0.480216397375265 0.453428812975890 0.426437718648659 0.399311539684395 0.372116957479878 0.344918668103213 0.317779160738827 0.304462026050778 0.303398600752290 0.303043085800814 0.303398600752294 0.304462026050777 0.317779160738832 0.344918668103219 0.372116957479876 0.399311539684391 0.426437718648659 0.453428812975890 0.480216397375268 0.506730562645336 0.532900192723836 0.558653257180859 0.583917117402837 0.608618844597749 0.632685547648320 0.656044708750581 0.678624524700325 0.700354251631109 0.721164550964061 0.740987834303015 0.759758604998018 0.777413794106782 0.793893088506518 0.809139248948152 0.823098415900544 0.835720401104333 0.846958962841641 0.856772063029745 0.865122104362629 0.871976145853374 0.877306095271038 0.881088877118746 0.883306574961506 0.883946547084065 0.883001514637980 0.880469621622277 0.883001514637980 0.883946547084064 0.883306574961506 0.881088877118745 0.877306095271038 0.871976145853375 0.865122104362629 0.856772063029745 0.846958962841641 0.835720401104333 0.823098415900544 0.809139248948152 0.793893088506518 0.777413794106770 0.759758604998018 0.740987834303015 0.721164550964061 0.700354251631109 0.678624524700325 0.656044708750584 0.632685547648320 0.608618844597749 0.583917117402837 0.558653257180859 0.532900192723836 0.506730562645339 0.480216397375268 0.453428812975890 0.426437718648659 0.399311539684391 0.372116957479876 0.344918668103219 0.317779160738832 0.304462026050777 0.303398600752294 0.303043085800814 +0.448503599521969 0.448830090352113 0.449806531132372 0.451423850846605 0.470742800167935 0.501894301176326 0.532951087852641 0.563841284735409 0.594491246167738 0.624825809461008 0.654768565972074 0.684242148604005 0.713168534101840 0.741469358388197 0.769066243068899 0.795881131137362 0.821836629819519 0.846856358427947 0.870865299037094 0.893790147749585 0.915559664298632 0.936105017722073 0.955360125851462 0.973261986383504 0.989750997341120 1.004771264788153 1.018270895733300 1.030202274246525 1.040522318912626 1.049192719862222 1.056180153749285 1.061456475184854 1.064998883288288 1.066790062179333 1.066818294404486 1.065077546469595 1.061567525834517 1.065077546469595 1.066818294404486 1.066790062179333 1.064998883288288 1.061456475184854 1.056180153749286 1.049192719862221 1.040522318912630 1.030202274246525 1.018270895733300 1.004771264788152 0.989750997341119 0.973261986383504 0.955360125851463 0.936105017722072 0.915559664298632 0.893790147749585 0.870865299037093 0.846856358427947 0.821836629819519 0.795881131137362 0.769066243068898 0.741469358388197 0.713168534101842 0.684242148604006 0.654768565972074 0.624825809461008 0.594491246167738 0.563841284735406 0.532951087852643 0.501894301176326 0.470742800167943 0.451423850846605 0.449806531132365 0.448830090352113 0.448503599521969 0.448830090352113 0.449806531132372 0.451423850846602 0.470742800167946 0.501894301176323 0.532951087852641 0.563841284735406 0.594491246167738 0.624825809461010 0.654768565972066 0.684242148604005 0.713168534101840 0.741469358388197 0.769066243068898 0.795881131137362 0.821836629819519 0.846856358427947 0.870865299037078 0.893790147749585 0.915559664298637 0.936105017722072 0.955360125851463 0.973261986383504 0.989750997341120 1.004771264788153 1.018270895733300 1.030202274246526 1.040522318912626 1.049192719862222 1.056180153749285 1.061456475184854 1.064998883288288 1.066790062179332 1.066818294404485 1.065077546469595 1.061567525834517 1.065077546469595 1.066818294404485 1.066790062179332 1.064998883288288 1.061456475184854 1.056180153749285 1.049192719862222 1.040522318912626 1.030202274246526 1.018270895733300 1.004771264788153 0.989750997341120 0.973261986383504 0.955360125851458 0.936105017722072 0.915559664298637 0.893790147749585 0.870865299037078 0.846856358427947 0.821836629819520 0.795881131137362 0.769066243068898 0.741469358388197 0.713168534101840 0.684242148604005 0.654768565972076 0.624825809461010 0.594491246167738 0.563841284735406 0.532951087852641 0.501894301176323 0.470742800167946 0.451423850846602 0.449806531132372 0.448830090352113 0.448503599521969 +0.614865977870247 0.615162616818200 0.616049600259858 0.617518151600097 0.619553721702859 0.644938932833064 0.679701528821059 0.714201223671761 0.748357756336910 0.782089578644462 0.815314136327845 0.847948165780347 0.879908004906966 0.911109916322914 0.941470421035269 0.970906640646753 0.999336646034935 1.026679810390054 1.052857164439894 1.077791751649661 1.101408981161918 1.123636976233205 1.144406915932876 1.163653367894871 1.181314609952979 1.197332938548065 1.211654961866624 1.224231875758172 1.235019720579455 1.243979617229139 1.251077980763850 1.256286710126940 1.259583352670764 1.260951242314857 1.260379610350543 1.257863668079171 1.253404660653982 1.257863668079171 1.260379610350542 1.260951242314857 1.259583352670764 1.256286710126934 1.251077980763852 1.243979617229138 1.235019720579455 1.224231875758172 1.211654961866624 1.197332938548065 1.181314609952977 1.163653367894872 1.144406915932889 1.123636976233209 1.101408981161922 1.077791751649660 1.052857164439894 1.026679810390073 0.999336646034935 0.970906640646754 0.941470421035263 0.911109916322909 0.879908004906966 0.847948165780347 0.815314136327861 0.782089578644464 0.748357756336902 0.714201223671752 0.679701528821059 0.644938932833065 0.619553721702859 0.617518151600105 0.616049600259858 0.615162616818200 0.614865977870247 0.615162616818200 0.616049600259858 0.617518151600106 0.619553721702867 0.644938932833063 0.679701528821058 0.714201223671753 0.748357756336909 0.782089578644469 0.815314136327844 0.847948165780341 0.879908004906965 0.911109916322909 0.941470421035264 0.970906640646755 0.999336646034934 1.026679810390054 1.052857164439893 1.077791751649661 1.101408981161922 1.123636976233209 1.144406915932888 1.163653367894871 1.181314609952980 1.197332938548065 1.211654961866625 1.224231875758176 1.235019720579456 1.243979617229125 1.251077980763851 1.256286710126937 1.259583352670764 1.260951242314857 1.260379610350543 1.257863668079171 1.253404660653982 1.257863668079171 1.260379610350543 1.260951242314858 1.259583352670764 1.256286710126938 1.251077980763851 1.243979617229129 1.235019720579456 1.224231875758176 1.211654961866625 1.197332938548065 1.181314609952980 1.163653367894871 1.144406915932873 1.123636976233209 1.101408981161922 1.077791751649661 1.052857164439893 1.026679810390054 0.999336646034939 0.970906640646755 0.941470421035264 0.911109916322909 0.879908004906965 0.847948165780341 0.815314136327861 0.782089578644469 0.748357756336909 0.714201223671753 0.679701528821058 0.644938932833063 0.619553721702867 0.617518151600106 0.616049600259858 0.615162616818200 0.614865977870247 +0.801092619364054 0.801358805859807 0.802154539966834 0.803471368569180 0.805295279711499 0.807606816833906 0.838609440946323 0.876536035165171 0.914019556187578 0.950972472011720 0.987306484461713 1.022932833925659 1.057762617450175 1.091707118450636 1.124678146188542 1.156588383070866 1.187351737745310 1.216883701896730 1.245101708597429 1.271925490026190 1.297277432348821 1.321082925546775 1.343270705989669 1.363773189573636 1.382526793288120 1.399472243130984 1.414554866363241 1.427724866182050 1.438937576990067 1.448153698554661 1.455339507475496 1.460467044518531 1.463514276522261 1.464465231741033 1.463310107656856 1.460045350465442 1.454673705622250 1.460045350465442 1.463310107656856 1.464465231741030 1.463514276522260 1.460467044518531 1.455339507475498 1.448153698554667 1.438937576990067 1.427724866182050 1.414554866363240 1.399472243130971 1.382526793288120 1.363773189573636 1.343270705989669 1.321082925546775 1.297277432348821 1.271925490026189 1.245101708597429 1.216883701896731 1.187351737745309 1.156588383070866 1.124678146188538 1.091707118450635 1.057762617450175 1.022932833925679 0.987306484461714 0.950972472011725 0.914019556187559 0.876536035165164 0.838609440946328 0.807606816833912 0.805295279711501 0.803471368569180 0.802154539966835 0.801358805859807 0.801092619364054 0.801358805859807 0.802154539966834 0.803471368569187 0.805295279711505 0.807606816833924 0.838609440946322 0.876536035165165 0.914019556187565 0.950972472011726 0.987306484461713 1.022932833925659 1.057762617450172 1.091707118450636 1.124678146188538 1.156588383070870 1.187351737745307 1.216883701896730 1.245101708597426 1.271925490026190 1.297277432348835 1.321082925546775 1.343270705989669 1.363773189573635 1.382526793288120 1.399472243130971 1.414554866363241 1.427724866182053 1.438937576990068 1.448153698554653 1.455339507475498 1.460467044518531 1.463514276522258 1.464465231741030 1.463310107656857 1.460045350465442 1.454673705622250 1.460045350465442 1.463310107656857 1.464465231741030 1.463514276522258 1.460467044518531 1.455339507475498 1.448153698554653 1.438937576990067 1.427724866182053 1.414554866363241 1.399472243130971 1.382526793288120 1.363773189573636 1.343270705989669 1.321082925546775 1.297277432348835 1.271925490026190 1.245101708597426 1.216883701896730 1.187351737745310 1.156588383070870 1.124678146188538 1.091707118450636 1.057762617450172 1.022932833925659 0.987306484461733 0.950972472011726 0.914019556187561 0.876536035165165 0.838609440946322 0.807606816833924 0.805295279711505 0.803471368569187 0.802154539966834 0.801358805859807 0.801092619364054 +1.005992543277431 1.006227908512550 1.006931295751482 1.008094601953659 1.009704396408026 1.011742031661952 1.014183797614524 1.049770519806984 1.090375395065696 1.130348005104306 1.169594754635589 1.208021831719806 1.245535531730444 1.282042592173696 1.317450536533672 1.351668025223100 1.384605211640384 1.416174101268250 1.446288911699681 1.474866431440151 1.501826375315248 1.527091734308201 1.550589117661302 1.572249085102699 1.592006467100567 1.609800671103970 1.625575971800512 1.639281783507461 1.650872912911928 1.660309790488119 1.667558679045045 1.672591857993460 1.675387782067771 1.675931213394418 1.674213325962222 1.670231781721812 1.663990777717457 1.670231781721812 1.674213325962222 1.675931213394418 1.675387782067771 1.672591857993462 1.667558679045049 1.660309790488119 1.650872912911927 1.639281783507461 1.625575971800511 1.609800671103969 1.592006467100565 1.572249085102699 1.550589117661302 1.527091734308212 1.501826375315248 1.474866431440139 1.446288911699694 1.416174101268251 1.384605211640385 1.351668025223101 1.317450536533669 1.282042592173692 1.245535531730443 1.208021831719809 1.169594754635589 1.130348005104307 1.090375395065692 1.049770519806978 1.014183797614524 1.011742031661948 1.009704396408029 1.008094601953660 1.006931295751487 1.006227908512549 1.005992543277431 1.006227908512555 1.006931295751482 1.008094601953665 1.009704396408042 1.011742031661952 1.014183797614519 1.049770519806979 1.090375395065692 1.130348005104306 1.169594754635589 1.208021831719805 1.245535531730443 1.282042592173696 1.317450536533669 1.351668025223101 1.384605211640384 1.416174101268248 1.446288911699681 1.474866431440151 1.501826375315248 1.527091734308212 1.550589117661302 1.572249085102696 1.592006467100567 1.609800671103970 1.625575971800512 1.639281783507461 1.650872912911928 1.660309790488119 1.667558679045048 1.672591857993463 1.675387782067771 1.675931213394418 1.674213325962222 1.670231781721812 1.663990777717457 1.670231781721812 1.674213325962222 1.675931213394418 1.675387782067771 1.672591857993463 1.667558679045048 1.660309790488119 1.650872912911928 1.639281783507460 1.625575971800512 1.609800671103970 1.592006467100567 1.572249085102696 1.550589117661302 1.527091734308212 1.501826375315248 1.474866431440151 1.446288911699681 1.416174101268248 1.384605211640388 1.351668025223101 1.317450536533669 1.282042592173696 1.245535531730443 1.208021831719805 1.169594754635590 1.130348005104306 1.090375395065692 1.049770519806979 1.014183797614519 1.011742031661952 1.009704396408042 1.008094601953665 1.006931295751482 1.006227908512555 1.005992543277431 +1.228230022916474 1.228434432650950 1.229045078303692 1.230054230841571 1.231449080437798 1.233211843726750 1.235319912790369 1.237746044716029 1.276239636456372 1.319006712830317 1.360946482360285 1.401960564490528 1.441950930201691 1.480820240494817 1.518472193141082 1.554811875808475 1.589746123601119 1.623183878984061 1.655036552019234 1.685218378804552 1.713646775988584 1.740242689231431 1.764930933491826 1.787640523049115 1.808304989208692 1.826862683697270 1.843257065823646 1.857436971566816 1.869356862849454 1.878977055367360 1.886263923466081 1.891190080691094 1.893734534780452 1.893882816022191 1.891627078059511 1.886966170393986 1.879905682011100 1.886966170393982 1.891627078059511 1.893882816022191 1.893734534780452 1.891190080691093 1.886263923466081 1.878977055367360 1.869356862849454 1.857436971566817 1.843257065823646 1.826862683697270 1.808304989208692 1.787640523049115 1.764930933491824 1.740242689231430 1.713646775988586 1.685218378804550 1.655036552019262 1.623183878984063 1.589746123601130 1.554811875808475 1.518472193141081 1.480820240494803 1.441950930201691 1.401960564490529 1.360946482360288 1.319006712830319 1.276239636456371 1.237746044716026 1.235319912790373 1.233211843726750 1.231449080437798 1.230054230841571 1.229045078303679 1.228434432650951 1.228230022916474 1.228434432650951 1.229045078303692 1.230054230841571 1.231449080437798 1.233211843726747 1.235319912790372 1.237746044716026 1.276239636456371 1.319006712830320 1.360946482360285 1.401960564490507 1.441950930201688 1.480820240494804 1.518472193141081 1.554811875808475 1.589746123601118 1.623183878984061 1.655036552019234 1.685218378804552 1.713646775988587 1.740242689231431 1.764930933491825 1.787640523049113 1.808304989208692 1.826862683697270 1.843257065823646 1.857436971566816 1.869356862849454 1.878977055367356 1.886263923466081 1.891190080691091 1.893734534780452 1.893882816022191 1.891627078059515 1.886966170393986 1.879905682011100 1.886966170393986 1.891627078059515 1.893882816022191 1.893734534780452 1.891190080691091 1.886263923466081 1.878977055367357 1.869356862849454 1.857436971566817 1.843257065823646 1.826862683697270 1.808304989208691 1.787640523049113 1.764930933491823 1.740242689231431 1.713646775988587 1.685218378804552 1.655036552019235 1.623183878984061 1.589746123601131 1.554811875808475 1.518472193141081 1.480820240494804 1.441950930201688 1.401960564490507 1.360946482360288 1.319006712830320 1.276239636456371 1.237746044716026 1.235319912790372 1.233211843726743 1.231449080437798 1.230054230841571 1.229045078303692 1.228434432650951 1.228230022916474 +1.466334325507726 1.466507881091601 1.467026096259565 1.467881637071534 1.469062349499533 1.470551362668651 1.472327232264247 1.474364122984592 1.476632028615004 1.515665057857148 1.560056679410799 1.603423419204171 1.645663435798664 1.686675815860871 1.726360922327967 1.764620748215557 1.801359274145109 1.836482827609248 1.869900441948150 1.901524212978390 1.931269651199276 1.959056027499021 1.984806710295878 2.008449492076132 2.029916903332254 2.049146511960374 2.066081206246504 2.080669459652930 2.092865575713407 2.102629911453523 2.109929077872471 2.114736116153412 2.117030648409259 2.116799001920684 2.114034305979185 2.108736560611832 2.100912676634018 2.108736560611832 2.114034305979185 2.116799001920684 2.117030648409258 2.114736116153411 2.109929077872473 2.102629911453523 2.092865575713407 2.080669459652930 2.066081206246503 2.049146511960372 2.029916903332247 2.008449492076135 1.984806710295880 1.959056027499021 1.931269651199277 1.901524212978387 1.869900441948150 1.836482827609247 1.801359274145109 1.764620748215556 1.726360922327968 1.686675815860870 1.645663435798665 1.603423419204172 1.560056679410799 1.515665057857148 1.476632028615016 1.474364122984589 1.472327232264247 1.470551362668649 1.469062349499533 1.467881637071534 1.467026096259551 1.466507881091601 1.466334325507729 1.466507881091597 1.467026096259565 1.467881637071534 1.469062349499536 1.470551362668651 1.472327232264247 1.474364122984591 1.476632028615016 1.515665057857150 1.560056679410799 1.603423419204169 1.645663435798664 1.686675815860871 1.726360922327967 1.764620748215588 1.801359274145109 1.836482827609248 1.869900441948150 1.901524212978388 1.931269651199275 1.959056027499023 1.984806710295880 2.008449492076133 2.029916903332255 2.049146511960371 2.066081206246502 2.080669459652930 2.092865575713409 2.102629911453525 2.109929077872473 2.114736116153411 2.117030648409258 2.116799001920684 2.114034305979187 2.108736560611832 2.100912676634018 2.108736560611832 2.114034305979186 2.116799001920684 2.117030648409258 2.114736116153412 2.109929077872473 2.102629911453525 2.092865575713409 2.080669459652931 2.066081206246501 2.049146511960373 2.029916903332255 2.008449492076133 1.984806710295878 1.959056027499022 1.931269651199277 1.901524212978388 1.869900441948150 1.836482827609248 1.801359274145109 1.764620748215588 1.726360922327967 1.686675815860871 1.645663435798664 1.603423419204169 1.560056679410799 1.515665057857150 1.476632028615016 1.474364122984591 1.472327232264247 1.470551362668651 1.469062349499536 1.467881637071534 1.467026096259565 1.466507881091597 1.466334325507726 +1.718710485383824 1.718853522985740 1.719280322222186 1.719983962324589 1.720952974987431 1.722171443285620 1.723619139072512 1.725271697781373 1.727100829260823 1.729074562990920 1.765557477540025 1.811023566928768 1.855268066558277 1.898187020098416 1.939677973826798 1.979640329613826 2.017975700940938 2.054588270022450 2.089385144058553 2.122276708618071 2.153176976134676 2.182003927499310 2.208679844744077 2.233131632841338 2.255291128681709 2.275095395350402 2.292486999889838 2.307414272817262 2.319831547760549 2.329699379680741 2.336984740266825 2.341661189214859 2.343709020240723 2.343115380820183 2.339874364802406 2.333987077202300 2.325461670640439 2.333987077202300 2.339874364802406 2.343115380820183 2.343709020240723 2.341661189214863 2.336984740266827 2.329699379680741 2.319831547760550 2.307414272817267 2.292486999889838 2.275095395350401 2.255291128681709 2.233131632841338 2.208679844744076 2.182003927499309 2.153176976134675 2.122276708618071 2.089385144058579 2.054588270022450 2.017975700940946 1.979640329613828 1.939677973826795 1.898187020098415 1.855268066558287 1.811023566928768 1.765557477540025 1.729074562990920 1.727100829260823 1.725271697781372 1.723619139072512 1.722171443285619 1.720952974987430 1.719983962324579 1.719280322222186 1.718853522985743 1.718710485383824 1.718853522985742 1.719280322222186 1.719983962324579 1.720952974987441 1.722171443285618 1.723619139072513 1.725271697781373 1.727100829260825 1.729074562990920 1.765557477540025 1.811023566928768 1.855268066558276 1.898187020098416 1.939677973826797 1.979640329613827 2.017975700940937 2.054588270022450 2.089385144058544 2.122276708618071 2.153176976134683 2.182003927499317 2.208679844744077 2.233131632841338 2.255291128681710 2.275095395350401 2.292486999889846 2.307414272817292 2.319831547760551 2.329699379680741 2.336984740266825 2.341661189214859 2.343709020240723 2.343115380820183 2.339874364802406 2.333987077202300 2.325461670640439 2.333987077202300 2.339874364802406 2.343115380820183 2.343709020240723 2.341661189214859 2.336984740266825 2.329699379680741 2.319831547760549 2.307414272817292 2.292486999889846 2.275095395350401 2.255291128681709 2.233131632841338 2.208679844744075 2.182003927499317 2.153176976134677 2.122276708618071 2.089385144058544 2.054588270022450 2.017975700940945 1.979640329613827 1.939677973826797 1.898187020098415 1.855268066558276 1.811023566928768 1.765557477540027 1.729074562990920 1.727100829260825 1.725271697781373 1.723619139072513 1.722171443285618 1.720952974987441 1.719983962324579 1.719280322222186 1.718853522985742 1.718710485383824 +1.983651029274028 1.983764117323052 1.984101210911544 1.984655817376854 1.985417178840682 1.986370366526657 1.987496411765086 1.988772472654944 1.990172035072046 1.991665146442156 1.993218680438848 2.023323238710950 2.069310651616174 2.113884054112523 2.156938717557248 2.198371977972765 2.238083589066217 2.275976075735953 2.311955086154765 2.345929740491568 2.377812974320996 2.407521874770155 2.434978007465674 2.460107732371659 2.482842506649896 2.503119172727589 2.520880229825103 2.536074087275154 2.548655298056409 2.558584771067058 2.565829960776980 2.570365033020967 2.572171005826272 2.571235864309614 2.567554648825243 2.561129515699433 2.551969770045317 2.561129515699433 2.567554648825244 2.571235864309614 2.572171005826267 2.570365033020967 2.565829960776981 2.558584771067051 2.548655298056435 2.536074087275170 2.520880229825103 2.503119172727589 2.482842506649892 2.460107732371660 2.434978007465673 2.407521874770155 2.377812974320998 2.345929740491566 2.311955086154767 2.275976075735953 2.238083589066217 2.198371977972765 2.156938717557245 2.113884054112521 2.069310651616174 2.023323238710951 1.993218680438850 1.991665146442156 1.990172035072045 1.988772472654944 1.987496411765038 1.986370366526659 1.985417178840681 1.984655817376854 1.984101210911544 1.983764117323052 1.983651029274028 1.983764117323050 1.984101210911544 1.984655817376853 1.985417178840681 1.986370366526657 1.987496411765086 1.988772472654944 1.990172035072046 1.991665146442158 1.993218680438848 2.023323238710948 2.069310651616165 2.113884054112523 2.156938717557246 2.198371977972773 2.238083589066216 2.275976075735947 2.311955086154765 2.345929740491568 2.377812974320997 2.407521874770162 2.434978007465673 2.460107732371658 2.482842506649890 2.503119172727589 2.520880229825103 2.536074087275170 2.548655298056409 2.558584771067050 2.565829960776981 2.570365033020968 2.572171005826267 2.571235864309615 2.567554648825243 2.561129515699441 2.551969770045317 2.561129515699441 2.567554648825243 2.571235864309615 2.572171005826267 2.570365033020968 2.565829960776981 2.558584771067050 2.548655298056409 2.536074087275170 2.520880229825103 2.503119172727589 2.482842506649890 2.460107732371658 2.434978007465674 2.407521874770159 2.377812974320996 2.345929740491568 2.311955086154765 2.275976075735947 2.238083589066219 2.198371977972773 2.156938717557246 2.113884054112523 2.069310651616165 2.023323238710948 1.993218680438850 1.991665146442158 1.990172035072046 1.988772472654944 1.987496411765086 1.986370366526657 1.985417178840681 1.984655817376853 1.984101210911544 1.983764117323050 1.983651029274028 +2.259348565251317 2.259432500110592 2.259682281048980 2.260091855185619 2.260651194367527 2.261346384645589 2.262159750550686 2.263070013189763 2.264052480913001 2.265079271047232 2.266119560942737 2.267139866349660 2.286298629834303 2.332260537582894 2.376623678264906 2.419283865347670 2.460139516488338 2.499092001977074 2.536045991231384 2.570909795473463 2.603595704711336 2.634020317146633 2.662104859144560 2.687775493931046 2.710963617220921 2.731606138033888 2.749645743020970 2.765031142700255 2.777717298089527 2.787665626322787 2.794844183946810 2.799227826712589 2.800798344804543 2.799544572584792 2.795462472072435 2.788555189525080 2.778833084643324 2.788555189525079 2.795462472072435 2.799544572584792 2.800798344804543 2.799227826712589 2.794844183946811 2.787665626322787 2.777717298089527 2.765031142700255 2.749645743020970 2.731606138033889 2.710963617220923 2.687775493931051 2.662104859144562 2.634020317146633 2.603595704711336 2.570909795473434 2.536045991231389 2.499092001977074 2.460139516488337 2.419283865347670 2.376623678264905 2.332260537582894 2.286298629834304 2.267139866349661 2.266119560942738 2.265079271047234 2.264052480913020 2.263070013189763 2.262159750550687 2.261346384645589 2.260651194367553 2.260091855185619 2.259682281049007 2.259432500110557 2.259348565251317 2.259432500110591 2.259682281048971 2.260091855185620 2.260651194367553 2.261346384645573 2.262159750550686 2.263070013189763 2.264052480913021 2.265079271047234 2.266119560942737 2.267139866349659 2.286298629834302 2.332260537582894 2.376623678264906 2.419283865347672 2.460139516488338 2.499092001977074 2.536045991231385 2.570909795473434 2.603595704711336 2.634020317146634 2.662104859144561 2.687775493931046 2.710963617220921 2.731606138033889 2.749645743020978 2.765031142700255 2.777717298089527 2.787665626322787 2.794844183946811 2.799227826712589 2.800798344804543 2.799544572584794 2.795462472072430 2.788555189525080 2.778833084643324 2.788555189525080 2.795462472072430 2.799544572584794 2.800798344804543 2.799227826712589 2.794844183946811 2.787665626322787 2.777717298089527 2.765031142700255 2.749645743020992 2.731606138033889 2.710963617220921 2.687775493931046 2.662104859144562 2.634020317146634 2.603595704711336 2.570909795473434 2.536045991231385 2.499092001977074 2.460139516488339 2.419283865347672 2.376623678264906 2.332260537582895 2.286298629834303 2.267139866349659 2.266119560942739 2.265079271047234 2.264052480913021 2.263070013189763 2.262159750550686 2.261346384645573 2.260651194367553 2.260091855185620 2.259682281048971 2.259432500110591 2.259348565251317 +2.543909140298398 2.543964940204496 2.544130465992552 2.544400112892578 2.544764596221271 2.545211035811828 2.545723073277230 2.546281021179245 2.546862042919661 2.547440361928264 2.547987498488031 2.548472532317095 2.548862388823483 2.551784716058636 2.597189844549635 2.640822383124021 2.682579949679182 2.722363273710721 2.760076535837168 2.795627703091280 2.828928858176394 2.859896520888008 2.888451959916966 2.914521493276532 2.938036775635788 2.958935070892994 2.977159508386099 2.992659321211220 3.005390065205598 3.015313817247414 3.022399351629564 3.026622293378297 3.027965247511001 3.026417903356276 3.021977113195582 3.014646944627880 3.004438706204490 3.014646944627880 3.021977113195582 3.026417903356277 3.027965247511001 3.026622293378297 3.022399351629568 3.015313817247414 3.005390065205598 2.992659321211220 2.977159508386099 2.958935070892990 2.938036775635789 2.914521493276531 2.888451959916965 2.859896520888008 2.828928858176393 2.795627703091280 2.760076535837174 2.722363273710720 2.682579949679183 2.640822383124021 2.597189844549636 2.551784716058605 2.548862388823483 2.548472532317095 2.547987498488032 2.547440361928264 2.546862042919662 2.546281021179244 2.545723073277200 2.545211035811829 2.544764596221271 2.544400112892578 2.544130465992553 2.543964940204496 2.543909140298398 2.543964940204503 2.544130465992551 2.544400112892572 2.544764596221301 2.545211035811828 2.545723073277229 2.546281021179244 2.546862042919661 2.547440361928263 2.547987498488031 2.548472532317156 2.548862388823483 2.551784716058606 2.597189844549635 2.640822383124027 2.682579949679182 2.722363273710722 2.760076535837169 2.795627703091280 2.828928858176394 2.859896520888008 2.888451959916966 2.914521493276531 2.938036775635787 2.958935070892990 2.977159508386099 2.992659321211220 3.005390065205598 3.015313817247414 3.022399351629565 3.026622293378297 3.027965247511001 3.026417903356272 3.021977113195582 3.014646944627880 3.004438706204490 3.014646944627880 3.021977113195582 3.026417903356272 3.027965247511001 3.026622293378297 3.022399351629565 3.015313817247414 3.005390065205598 2.992659321211220 2.977159508386099 2.958935070892994 2.938036775635788 2.914521493276531 2.888451959916968 2.859896520888008 2.828928858176394 2.795627703091280 2.760076535837169 2.722363273710721 2.682579949679183 2.640822383124027 2.597189844549635 2.551784716058606 2.548862388823483 2.548472532317156 2.547987498487974 2.547440361928263 2.546862042919661 2.546281021179244 2.545723073277229 2.545211035811828 2.544764596221296 2.544400112892573 2.544130465992551 2.543964940204503 2.543909140298398 +2.835366265590986 2.835395162904353 2.835480132274451 2.835616021960631 2.835794298835525 2.836003127601834 2.836227480812628 2.836449278819259 2.836647558534124 2.836798669663435 2.836876496847398 2.836852705936790 2.836697012440906 2.836377470004262 2.835860776604432 2.861423722900970 2.903832902351716 2.944210314944566 2.982460148586470 3.018490495814048 3.052213674082485 3.083546538011993 3.112410781891047 3.138733230763710 3.162446118465226 3.183487351021361 3.201800753886421 3.217336301568328 3.230050328268657 3.239905718259348 3.246872074816920 3.250925866644414 3.252050550828955 3.250236671505493 3.245481933527866 3.237791250583228 3.227176767325426 3.237791250583228 3.245481933527867 3.250236671505515 3.252050550828961 3.250925866644414 3.246872074816923 3.239905718259347 3.230050328268656 3.217336301568328 3.201800753886421 3.183487351021362 3.162446118465220 3.138733230763710 3.112410781891046 3.083546538011998 3.052213674082485 3.018490495814047 2.982460148586469 2.944210314944610 2.903832902351716 2.861423722900969 2.835860776604405 2.836377470004340 2.836697012440912 2.836852705936768 2.836876496847395 2.836798669663438 2.836647558534145 2.836449278819286 2.836227480812633 2.836003127601833 2.835794298835525 2.835616021960638 2.835480132274451 2.835395162904354 2.835366265590986 2.835395162904406 2.835480132274445 2.835616021960632 2.835794298835501 2.836003127601816 2.836227480812628 2.836449278819286 2.836647558534148 2.836798669663463 2.836876496847392 2.836852705936789 2.836697012440907 2.836377470004340 2.835860776604405 2.861423722900969 2.903832902351715 2.944210314944565 2.982460148586470 3.018490495814047 3.052213674082487 3.083546538011997 3.112410781891052 3.138733230763709 3.162446118465226 3.183487351021361 3.201800753886421 3.217336301568328 3.230050328268657 3.239905718259347 3.246872074816920 3.250925866644414 3.252050550828963 3.250236671505519 3.245481933527866 3.237791250583228 3.227176767325426 3.237791250583228 3.245481933527866 3.250236671505519 3.252050550828963 3.250925866644414 3.246872074816920 3.239905718259347 3.230050328268657 3.217336301568328 3.201800753886421 3.183487351021361 3.162446118465226 3.138733230763709 3.112410781891046 3.083546538011997 3.052213674082487 3.018490495814047 2.982460148586470 2.944210314944566 2.903832902351714 2.861423722900971 2.835860776604405 2.836377470004340 2.836697012440907 2.836852705936789 2.836876496847395 2.836798669663463 2.836647558534149 2.836449278819286 2.836227480812628 2.836003127601816 2.835794298835521 2.835616021960632 2.835480132274445 2.835395162904406 2.835366265590986 +3.131695503497472 3.131698935323769 3.131707660091182 3.131716980559503 3.131719117523473 3.131703283690683 3.131655786282760 3.131560157539396 3.131397312083996 3.131145729890303 3.130781663386255 3.130279367037163 3.129611347567464 3.128748632812201 3.127661057041654 3.126317560460195 3.124686500471149 3.163058542489909 3.201616859475646 3.237913309263995 3.271860886707087 3.303377194196222 3.332384733800091 3.358811188008812 3.382589687536043 3.403659064678179 3.421964090789436 3.437455696499523 3.450091173378569 3.459834355841584 3.466655782181133 3.470532833718760 3.471449851179389 3.469398227508623 3.464376476476402 3.456390276539751 3.445452489568006 3.456390276539751 3.464376476476403 3.469398227508624 3.471449851179390 3.470532833718745 3.466655782181126 3.459834355841584 3.450091173378569 3.437455696499523 3.421964090789435 3.403659064678179 3.382589687536043 3.358811188008811 3.332384733800092 3.303377194196222 3.271860886707092 3.237913309263992 3.201616859475647 3.163058542489909 3.124686500471149 3.126317560460194 3.127661057041602 3.128748632812200 3.129611347567463 3.130279367037164 3.130781663386257 3.131145729890303 3.131397312083974 3.131560157539420 3.131655786282764 3.131703283690739 3.131719117523470 3.131716980559497 3.131707660091182 3.131698935323753 3.131695503497472 3.131698935323815 3.131707660091182 3.131716980559498 3.131719117523405 3.131703283690709 3.131655786282763 3.131560157539421 3.131397312083974 3.131145729890304 3.130781663386255 3.130279367037164 3.129611347567464 3.128748632812201 3.127661057041612 3.126317560460198 3.124686500471149 3.163058542489887 3.201616859475646 3.237913309263995 3.271860886707090 3.303377194196222 3.332384733800092 3.358811188008812 3.382589687536043 3.403659064678178 3.421964090789435 3.437455696499520 3.450091173378554 3.459834355841583 3.466655782181128 3.470532833718760 3.471449851179390 3.469398227508624 3.464376476476403 3.456390276539752 3.445452489568006 3.456390276539752 3.464376476476403 3.469398227508624 3.471449851179390 3.470532833718760 3.466655782181128 3.459834355841584 3.450091173378553 3.437455696499521 3.421964090789435 3.403659064678179 3.382589687536043 3.358811188008812 3.332384733800092 3.303377194196222 3.271860886707092 3.237913309263995 3.201616859475646 3.163058542489887 3.124686500471149 3.126317560460198 3.127661057041603 3.128748632812201 3.129611347567464 3.130279367037164 3.130781663386258 3.131145729890304 3.131397312083974 3.131560157539421 3.131655786282763 3.131703283690709 3.131719117523405 3.131716980559498 3.131707660091182 3.131698935323815 3.131695503497472 +3.430829506001192 3.430809103253614 3.430746475501192 3.430637378015686 3.430474782142809 3.430248943754277 3.429947498310814 3.429555581771942 3.429055976382164 3.428429280160980 3.427654098734432 3.426707257963862 3.425564035658421 3.424198410503158 3.422583326191896 3.420690968629781 3.418493053958629 3.415961125069533 3.415985110251264 3.452331232209237 3.486302610992055 3.517818006427815 3.546801106687788 3.573180797759258 3.596891420151028 3.617873011420274 3.636071533163582 3.651439081182466 3.663934077605508 3.673521443834024 3.680172753267619 3.683866362865222 3.684587522701542 3.682328462790076 3.677088456560460 3.668873860498544 3.657698129582958 3.668873860498544 3.677088456560460 3.682328462790076 3.684587522701535 3.683866362865220 3.680172753267619 3.673521443834025 3.663934077605526 3.651439081182465 3.636071533163582 3.617873011420275 3.596891420151026 3.573180797759258 3.546801106687789 3.517818006427814 3.486302610992057 3.452331232209233 3.415985110251262 3.415961125069533 3.418493053958629 3.420690968629781 3.422583326191896 3.424198410503137 3.425564035658420 3.426707257963860 3.427654098734433 3.428429280160980 3.429055976382164 3.429555581771944 3.429947498310816 3.430248943754294 3.430474782142814 3.430637378015664 3.430746475501170 3.430809103253614 3.430829506001192 3.430809103253614 3.430746475501192 3.430637378015664 3.430474782142814 3.430248943754274 3.429947498310834 3.429555581771944 3.429055976382164 3.428429280160984 3.427654098734432 3.426707257963857 3.425564035658417 3.424198410503159 3.422583326191895 3.420690968629782 3.418493053958625 3.415961125069532 3.415985110251248 3.452331232209237 3.486302610992057 3.517818006427814 3.546801106687794 3.573180797759258 3.596891420151025 3.617873011420274 3.636071533163582 3.651439081182466 3.663934077605509 3.673521443834025 3.680172753267619 3.683866362865220 3.684587522701535 3.682328462790076 3.677088456560460 3.668873860498545 3.657698129582958 3.668873860498545 3.677088456560460 3.682328462790076 3.684587522701535 3.683866362865220 3.680172753267619 3.673521443834025 3.663934077605509 3.651439081182466 3.636071533163582 3.617873011420274 3.596891420151025 3.573180797759258 3.546801106687789 3.517818006427814 3.486302610992057 3.452331232209237 3.415985110251248 3.415961125069532 3.418493053958619 3.420690968629782 3.422583326191895 3.424198410503159 3.425564035658417 3.426707257963857 3.427654098734431 3.428429280160984 3.429055976382164 3.429555581771944 3.429947498310834 3.430248943754274 3.430474782142814 3.430637378015664 3.430746475501192 3.430809103253614 3.430829506001192 +3.730673390795810 3.730630965783170 3.730502420629440 3.730283957686422 3.729969289767003 3.729549703127344 3.729014144929523 3.728349334478865 3.727539897336876 3.726568521228062 3.725416132477359 3.724062091553592 3.722484406131271 3.720659959946157 3.718564755582906 3.716174169221846 3.713463215267107 3.710406818697324 3.706980092906589 3.703158620759397 3.698918736542073 3.725332940097238 3.754122850104346 3.780304236262853 3.803812954736024 3.824590520165849 3.842584321536619 3.857747821715020 3.870040739532297 3.879429213348432 3.885885945127228 3.889390324141365 3.889928529526110 3.887493611004503 3.882085547216234 3.873711281196251 3.862384732665217 3.873711281196251 3.882085547216234 3.887493611004496 3.889928529526110 3.889390324141364 3.885885945127229 3.879429213348432 3.870040739532298 3.857747821715019 3.842584321536615 3.824590520165849 3.803812954736025 3.780304236262855 3.754122850104346 3.725332940097238 3.698918736542071 3.703158620759393 3.706980092906587 3.710406818697324 3.713463215267107 3.716174169221847 3.718564755582920 3.720659959946156 3.722484406131268 3.724062091553592 3.725416132477361 3.726568521228060 3.727539897336962 3.728349334478864 3.729014144929523 3.729549703127323 3.729969289767003 3.730283957686439 3.730502420629457 3.730630965783167 3.730673390795810 3.730630965783169 3.730502420629436 3.730283957686439 3.729969289766983 3.729549703127344 3.729014144929526 3.728349334478864 3.727539897336871 3.726568521228060 3.725416132477361 3.724062091553588 3.722484406131272 3.720659959946156 3.718564755582905 3.716174169221782 3.713463215267106 3.710406818697323 3.706980092906591 3.703158620759397 3.698918736542071 3.725332940097236 3.754122850104346 3.780304236262855 3.803812954736025 3.824590520165850 3.842584321536614 3.857747821715019 3.870040739532297 3.879429213348432 3.885885945127228 3.889390324141364 3.889928529526110 3.887493611004496 3.882085547216234 3.873711281196251 3.862384732665217 3.873711281196251 3.882085547216234 3.887493611004496 3.889928529526110 3.889390324141364 3.885885945127228 3.879429213348433 3.870040739532297 3.857747821715020 3.842584321536614 3.824590520165850 3.803812954736026 3.780304236262853 3.754122850104347 3.725332940097236 3.698918736542071 3.703158620759397 3.706980092906591 3.710406818697323 3.713463215267106 3.716174169221781 3.718564755582906 3.720659959946156 3.722484406131272 3.724062091553588 3.725416132477360 3.726568521228060 3.727539897336871 3.728349334478864 3.729014144929526 3.729549703127344 3.729969289766983 3.730283957686439 3.730502420629436 3.730630965783169 3.730673390795810 +4.029120338713049 4.029057871346708 4.028869345581432 4.028551402014311 4.028098480198823 4.027502876153846 4.026754822222357 4.025842588630742 4.024752605925687 4.023469607291148 4.021976789590199 4.020255991820390 4.018287889526706 4.016052203587104 4.013527921664101 4.010693530507832 4.007527257206879 4.004007317401459 4.000112168413622 3.995820765202206 3.991112817018744 3.985969042626543 3.980371421951818 3.978691948750761 4.001865162422559 4.022322984994010 4.040014461078952 4.054894613901411 4.066924616911781 4.076071947616768 4.082310522722547 4.085620813775708 4.085989942580896 4.083411755768680 4.077886877992563 4.069422743336270 4.058033604624995 4.069422743336270 4.077886877992563 4.083411755768677 4.085989942580893 4.085620813775708 4.082310522722551 4.076071947616767 4.066924616911781 4.054894613901416 4.040014461078951 4.022322984994008 4.001865162422554 3.978691948750759 3.980371421951817 3.985969042626551 3.991112817018761 3.995820765202205 4.000112168413623 4.004007317401459 4.007527257206931 4.010693530507832 4.013527921664100 4.016052203587116 4.018287889526691 4.020255991820391 4.021976789590201 4.023469607291149 4.024752605925684 4.025842588630742 4.026754822222356 4.027502876153847 4.028098480198823 4.028551402014304 4.028869345581473 4.029057871346708 4.029120338713049 4.029057871346710 4.028869345581472 4.028551402014304 4.028098480198822 4.027502876153846 4.026754822222357 4.025842588630724 4.024752605925683 4.023469607291148 4.021976789590200 4.020255991820391 4.018287889526634 4.016052203587115 4.013527921664101 4.010693530507833 4.007527257206861 4.004007317401459 4.000112168413624 3.995820765202205 3.991112817018762 3.985969042626559 3.980371421951816 3.978691948750761 4.001865162422559 4.022322984994009 4.040014461078951 4.054894613901416 4.066924616911786 4.076071947616769 4.082310522722547 4.085620813775708 4.085989942580893 4.083411755768677 4.077886877992563 4.069422743336269 4.058033604624995 4.069422743336270 4.077886877992563 4.083411755768677 4.085989942580893 4.085620813775708 4.082310522722547 4.076071947616769 4.066924616911785 4.054894613901416 4.040014461078951 4.022322984994009 4.001865162422559 3.978691948750761 3.980371421951818 3.985969042626559 3.991112817018762 3.995820765202205 4.000112168413625 4.004007317401459 4.007527257206931 4.010693530507833 4.013527921664101 4.016052203587115 4.018287889526634 4.020255991820391 4.021976789590203 4.023469607291148 4.024752605925683 4.025842588630724 4.026754822222357 4.027502876153846 4.028098480198822 4.028551402014304 4.028869345581472 4.029057871346710 4.029120338713049 +4.324067294434730 4.323986917160659 4.323744804062290 4.323338021812170 4.322761716446695 4.322009165441020 4.321071850017145 4.319939547095375 4.318600440137362 4.317041247974442 4.315247370566923 4.313203050499550 4.310891548887888 4.308295334252140 4.305396282800702 4.302175888475572 4.298615481020888 4.294696450268965 4.290400474781114 4.285709752936644 4.280607234537231 4.275076850979904 4.269103742058755 4.262674477466693 4.255777271106335 4.248402186369189 4.240541330593332 4.241454644863774 4.253162083957103 4.262027134309275 4.268025005675672 4.271137294796616 4.271352073596416 4.268663957580667 4.263074153953482 4.254590489075455 4.243227414983039 4.254590489075455 4.263074153953482 4.268663957580665 4.271352073596417 4.271137294796616 4.268025005675673 4.262027134309275 4.253162083957103 4.241454644863773 4.240541330593327 4.248402186369189 4.255777271106533 4.262674477466692 4.269103742058755 4.275076850979903 4.280607234537226 4.285709752936658 4.290400474781112 4.294696450268964 4.298615481020887 4.302175888475642 4.305396282800686 4.308295334252139 4.310891548887887 4.313203050499562 4.315247370566928 4.317041247974426 4.318600440137341 4.319939547095375 4.321071850017145 4.322009165441036 4.322761716446712 4.323338021812173 4.323744804062359 4.323986917160646 4.324067294434730 4.323986917160660 4.323744804062311 4.323338021812171 4.322761716446712 4.322009165441020 4.321071850017145 4.319939547095375 4.318600440137341 4.317041247974427 4.315247370566923 4.313203050499550 4.310891548887874 4.308295334252140 4.305396282800686 4.302175888475642 4.298615481020893 4.294696450268948 4.290400474781116 4.285709752936643 4.280607234537226 4.275076850979902 4.269103742058755 4.262674477466697 4.255777271106533 4.248402186369189 4.240541330593325 4.241454644863777 4.253162083957085 4.262027134309275 4.268025005675673 4.271137294796616 4.271352073596418 4.268663957580664 4.263074153953482 4.254590489075455 4.243227414983039 4.254590489075455 4.263074153953482 4.268663957580664 4.271352073596418 4.271137294796616 4.268025005675673 4.262027134309275 4.253162083957087 4.241454644863776 4.240541330593325 4.248402186369189 4.255777271106534 4.262674477466694 4.269103742058746 4.275076850979902 4.280607234537226 4.285709752936643 4.290400474781116 4.294696450268948 4.298615481020888 4.302175888475642 4.305396282800686 4.308295334252140 4.310891548887874 4.313203050499550 4.315247370566926 4.317041247974427 4.318600440137341 4.319939547095375 4.321071850017145 4.322009165441020 4.322761716446712 4.323338021812171 4.323744804062311 4.323986917160660 4.324067294434730 +4.613430651634070 4.613334633203229 4.613045733882301 4.612561431006133 4.611877551460155 4.610988318399502 4.609886416118883 4.608563072537853 4.607008158622944 4.605210303928808 4.603157027304646 4.600834881687971 4.598229611788264 4.595326323355445 4.592109662629548 4.588564004479200 4.584673647661965 4.580423015575674 4.575796860816598 4.570780471826101 4.565359879878501 4.559522064655065 4.553255156651373 4.546548634678903 4.539393516755511 4.531782542720282 4.523710346965277 4.515173619747546 4.506171255620951 4.496704487628257 4.486777005987832 4.476395060132174 4.465567543070819 4.454306057187313 4.442624960711701 4.430541394262128 4.417248074402072 4.430541394262128 4.442624960711701 4.454306057187300 4.465567543070819 4.476395060132174 4.486777005987828 4.496704487628257 4.506171255620950 4.515173619747546 4.523710346965277 4.531782542720283 4.539393516755496 4.546548634678901 4.553255156651373 4.559522064655064 4.565359879878501 4.570780471826093 4.575796860816597 4.580423015575677 4.584673647661965 4.588564004479265 4.592109662629662 4.595326323355444 4.598229611788265 4.600834881687970 4.603157027304644 4.605210303928811 4.607008158622953 4.608563072537852 4.609886416118947 4.610988318399504 4.611877551460153 4.612561431006133 4.613045733882299 4.613334633203229 4.613430651634070 4.613334633203230 4.613045733882300 4.612561431006136 4.611877551460153 4.610988318399502 4.609886416118883 4.608563072537852 4.607008158622955 4.605210303928811 4.603157027304645 4.600834881687970 4.598229611788264 4.595326323355445 4.592109662629558 4.588564004479265 4.584673647661965 4.580423015575674 4.575796860816598 4.570780471826102 4.565359879878504 4.559522064655064 4.553255156651377 4.546548634678903 4.539393516755495 4.531782542720282 4.523710346965277 4.515173619747545 4.506171255620951 4.496704487628258 4.486777005987832 4.476395060132174 4.465567543070819 4.454306057187299 4.442624960711701 4.430541394262128 4.416957186458068 4.430541394262128 4.442624960711701 4.454306057187299 4.465567543070819 4.476395060132174 4.486777005987832 4.496704487628258 4.506171255620951 4.515173619747546 4.523710346965277 4.531782542720282 4.539393516755498 4.546548634678903 4.553255156651373 4.559522064655064 4.565359879878501 4.570780471826102 4.575796860816598 4.580423015575674 4.584673647661965 4.588564004479265 4.592109662629559 4.595326323355445 4.598229611788264 4.600834881687970 4.603157027304644 4.605210303928811 4.607008158622955 4.608563072537852 4.609886416118883 4.610988318399502 4.611877551460153 4.612561431006136 4.613045733882300 4.613334633203230 4.613430651634070 +4.895161803779403 4.895052531981778 4.894724003619968 4.894174088153695 4.893399262500976 4.892394652524044 4.891154090627821 4.889670188993347 4.887934427838969 4.885937257976482 4.883668216810220 4.881116056812859 4.878268885408812 4.875114315095350 4.871639622547181 4.867831915369056 4.863678305094502 4.859166084972397 4.854282911034668 4.849016984908746 4.843357236812395 4.837293507162451 4.830816725228311 4.823919083279122 4.816594204698499 4.808837304579866 4.800645341368091 4.792017158173651 4.782953612457463 4.773457692871914 4.763534622131584 4.753191944892625 4.742439599729885 4.731289974416574 4.719757943835559 4.707860889985320 4.695618703671284 4.707860889985321 4.719757943835559 4.731289974416574 4.742439599729887 4.753191944892625 4.763534622131584 4.773457692871914 4.782953612457463 4.792017158173651 4.800645341368096 4.808837304579866 4.816594204698485 4.823919083279121 4.830816725228310 4.837293507162450 4.843357236812393 4.849016984908751 4.854282911034667 4.859166084972396 4.863678305094502 4.867831915369053 4.871639622547181 4.875114315095349 4.878268885408809 4.881116056812799 4.883668216810217 4.885937257976482 4.887934427839030 4.889670188993347 4.891154090627821 4.892394652524041 4.893399262500975 4.894174088153707 4.894724003619969 4.895052531981778 4.895161803779403 4.895052531981780 4.894724003619970 4.894174088153707 4.893399262500976 4.892394652524040 4.891154090627912 4.889670188993347 4.887934427838992 4.885937257976482 4.883668216810230 4.881116056812859 4.878268885408799 4.875114315095350 4.871639622547181 4.867831915369053 4.863678305094500 4.859166084972397 4.854282911034670 4.849016984908746 4.843357236812391 4.837293507162448 4.830816725228307 4.823919083279122 4.816594204698490 4.808837304579865 4.800645341368096 4.792017158173648 4.782953612457463 4.773457692871914 4.763534622131585 4.753191944892625 4.742439599729889 4.731289974416574 4.719757943835559 4.707860889985336 4.695618703671284 4.707860889985336 4.719757943835559 4.731289974416574 4.742439599729889 4.753191944892625 4.763534622131585 4.773457692871914 4.782953612457463 4.792017158173648 4.800645341368096 4.808837304579865 4.816594204698499 4.823919083279122 4.830816725228311 4.837293507162447 4.843357236812393 4.849016984908746 4.854282911034670 4.859166084972397 4.863678305094502 4.867831915369053 4.871639622547181 4.875114315095350 4.878268885408799 4.881116056812859 4.883668216810218 4.885937257976482 4.887934427838994 4.889670188993347 4.891154090627912 4.892394652524041 4.893399262500976 4.894174088153707 4.894724003619970 4.895052531981780 4.895161803779403 +5.167262442837749 5.167142406329127 5.166781707709238 5.166178587040077 5.165330135509311 5.164232331842862 5.162880092855355 5.161267337717033 5.159387065397111 5.157231444638091 5.154791915702590 5.152059303041508 5.149023937933442 5.145675790062452 5.142004606922140 5.138000059865224 5.133651895556478 5.128950091540029 5.123885014587163 5.118447580464627 5.112629413741849 5.106423006250030 5.099821872804918 5.092820702821168 5.085415506470432 5.077603754068770 5.069384507424921 5.060758541937402 5.051728458290278 5.042298782677435 5.032476054559075 5.022268901055054 5.011688097168546 5.000746611143923 4.989459634372214 4.977844595367973 4.965921157470074 4.977844595367957 4.989459634372214 5.000746611143923 5.011688097168549 5.022268901055054 5.032476054559078 5.042298782677435 5.051728458290278 5.060758541937393 5.069384507424978 5.077603754068767 5.085415506470429 5.092820702821168 5.099821872804976 5.106423006250033 5.112629413741850 5.118447580464628 5.123885014587166 5.128950091540029 5.133651895556477 5.138000059865223 5.142004606922137 5.145675790062454 5.149023937933442 5.152059303041505 5.154791915702590 5.157231444638091 5.159387065397108 5.161267337717033 5.162880092855355 5.164232331842861 5.165330135509310 5.166178587040091 5.166781707709238 5.167142406329125 5.167262442837749 5.167142406329127 5.166781707709238 5.166178587040091 5.165330135509322 5.164232331842864 5.162880092855351 5.161267337717033 5.159387065397109 5.157231444638092 5.154791915702641 5.152059303041507 5.149023937933442 5.145675790062453 5.142004606922137 5.138000059865223 5.133651895556478 5.128950091540028 5.123885014587153 5.118447580464626 5.112629413741844 5.106423006250028 5.099821872804976 5.092820702821165 5.085415506470429 5.077603754068770 5.069384507424966 5.060758541937397 5.051728458290278 5.042298782677435 5.032476054559075 5.022268901055054 5.011688097168550 5.000746611143922 4.989459634372214 4.977844595367973 4.965921157470074 4.977844595367973 4.989459634372214 5.000746611143922 5.011688097168538 5.022268901055054 5.032476054559075 5.042298782677435 5.051728458290278 5.060758541937397 5.069384507424966 5.077603754068770 5.085415506470429 5.092820702821166 5.099821872804919 5.106423006250028 5.112629413741844 5.118447580464626 5.123885014587153 5.128950091540028 5.133651895556476 5.138000059865223 5.142004606922137 5.145675790062453 5.149023937933442 5.152059303041507 5.154791915702588 5.157231444638092 5.159387065397109 5.161267337717033 5.162880092855351 5.164232331842864 5.165330135509319 5.166178587040091 5.166781707709238 5.167142406329126 5.167262442837749 +5.427799489996417 5.427671259358674 5.427286094098577 5.426642580537380 5.425738383694741 5.424570278825520 5.423134195201449 5.421425271761522 5.419437924167580 5.417165922690876 5.414602480273994 5.411740350019749 5.408571931275544 5.405089383412313 5.401284746322302 5.397150066605638 5.392677528359187 5.387859587437786 5.382689108025314 5.377159500324350 5.371264858158979 5.365000095274628 5.358361079127961 5.351344760962399 5.343949300995499 5.336174187570179 5.328020349162545 5.319490258187292 5.310588025601626 5.301319485370215 5.291692267928262 5.281715861859912 5.271401663093774 5.260763011010859 5.249815210955329 5.238575542741007 5.227063254853048 5.238575542741008 5.249815210955329 5.260763011010859 5.271401663093774 5.281715861859908 5.291692267928266 5.301319485370215 5.310588025601626 5.319490258187293 5.328020349162545 5.336174187570180 5.343949300995499 5.351344760962399 5.358361079127962 5.365000095274631 5.371264858158978 5.377159500324342 5.382689108025313 5.387859587437786 5.392677528359187 5.397150066605628 5.401284746322303 5.405089383412284 5.408571931275554 5.411740350019754 5.414602480273994 5.417165922690875 5.419437924167582 5.421425271761522 5.423134195201395 5.424570278825560 5.425738383694780 5.426642580537380 5.427286094098523 5.427671259358673 5.427799489996417 5.427671259358673 5.427286094098523 5.426642580537383 5.425738383694831 5.424570278825574 5.423134195201448 5.421425271761523 5.419437924167580 5.417165922690822 5.414602480273993 5.411740350019749 5.408571931275546 5.405089383412313 5.401284746322303 5.397150066605630 5.392677528359187 5.387859587437872 5.382689108025318 5.377159500324339 5.371264858158979 5.365000095274643 5.358361079127976 5.351344760962398 5.343949300995499 5.336174187570180 5.328020349162545 5.319490258187293 5.310588025601625 5.301319485370215 5.291692267928263 5.281715861859911 5.271401663093774 5.260763011010857 5.249815210955329 5.238575542741007 5.227063254853048 5.238575542741007 5.249815210955329 5.260763011010857 5.271401663093774 5.281715861859911 5.291692267928263 5.301319485370215 5.310588025601625 5.319490258187293 5.328020349162545 5.336174187570180 5.343949300995499 5.351344760962398 5.358361079127963 5.365000095274643 5.371264858158979 5.377159500324339 5.382689108025318 5.387859587437872 5.392677528359187 5.397150066605630 5.401284746322303 5.405089383412313 5.408571931275546 5.411740350019749 5.414602480273994 5.417165922690822 5.419437924167580 5.421425271761522 5.423134195201447 5.424570278825574 5.425738383694831 5.426642580537383 5.427286094098523 5.427671259358673 5.427799489996417 +5.674919545305335 5.674785753482430 5.674384011405890 5.673713224678162 5.672771587345101 5.671556608794777 5.670065151096733 5.668293476456751 5.666237304387529 5.663891878099145 5.661252039545380 5.658312312475616 5.655066992782006 5.651510245356802 5.647636206624206 5.643439091855443 5.638913306328706 5.634053559363731 5.628854980223247 5.623313234858937 5.617424642458556 5.611186290751050 5.604596149022605 5.597653177814585 5.590357434285639 5.582710172251629 5.574713935951967 5.566372646631553 5.557691681075802 5.548677941297078 5.539339914631094 5.529687723571958 5.519733164745202 5.509489736507670 5.498972654735620 5.488198856456846 5.477186991072430 5.488198856456847 5.498972654735620 5.509489736507670 5.519733164745186 5.529687723571958 5.539339914631096 5.548677941297081 5.557691681075802 5.566372646631553 5.574713935951967 5.582710172251630 5.590357434285642 5.597653177814585 5.604596149022605 5.611186290751050 5.617424642458555 5.623313234858936 5.628854980223246 5.634053559363728 5.638913306328695 5.643439091855443 5.647636206624203 5.651510245356801 5.655066992782004 5.658312312475615 5.661252039545377 5.663891878099145 5.666237304387529 5.668293476456748 5.670065151096733 5.671556608794737 5.672771587345048 5.673713224678162 5.674384011405881 5.674785753482429 5.674919545305336 5.674785753482430 5.674384011405892 5.673713224678161 5.672771587345049 5.671556608794777 5.670065151096733 5.668293476456751 5.666237304387529 5.663891878099146 5.661252039545380 5.658312312475613 5.655066992782007 5.651510245356802 5.647636206624206 5.643439091855443 5.638913306328735 5.634053559363741 5.628854980223244 5.623313234858936 5.617424642458556 5.611186290751028 5.604596149022607 5.597653177814573 5.590357434285639 5.582710172251630 5.574713935951963 5.566372646631553 5.557691681075802 5.548677941297077 5.539339914631096 5.529687723571958 5.519733164745186 5.509489736507670 5.498972654735620 5.488198856456846 5.477186991072430 5.488198856456846 5.498972654735620 5.509489736507670 5.519733164745186 5.529687723571958 5.539339914631096 5.548677941297077 5.557691681075802 5.566372646631553 5.574713935951963 5.582710172251630 5.590357434285639 5.597653177814581 5.604596149022606 5.611186290751029 5.617424642458556 5.623313234858936 5.628854980223244 5.634053559363743 5.638913306328692 5.643439091855443 5.647636206624206 5.651510245356802 5.655066992782007 5.658312312475613 5.661252039545376 5.663891878099146 5.666237304387529 5.668293476456751 5.670065151096733 5.671556608794777 5.672771587345049 5.673713224678161 5.674384011405892 5.674785753482430 5.674919545305335 +5.906862746765473 5.906726069025406 5.906315766115667 5.905631033511956 5.904670545454583 5.903432477481951 5.901914537702797 5.900114006538728 5.898027784588719 5.895652448202257 5.892984312276321 5.890019499727544 5.886754017033786 5.883183835180192 5.879304975301085 5.875113598255742 5.870606097350293 5.865779193372215 5.860630031091532 5.855156276353622 5.849356212883947 5.843228837917116 5.836773955762864 5.829992268437622 5.822885462498451 5.815456291243721 5.807708651477139 5.799647654059637 5.791279687526366 5.782612474086301 5.773655117380161 5.764418141431215 5.754913520285340 5.745154697904862 5.735156597957622 5.724935623207890 5.714509644303288 5.724935623207890 5.735156597957622 5.745154697904845 5.754913520285339 5.764418141431215 5.773655117380150 5.782612474086298 5.791279687526371 5.799647654059637 5.807708651477138 5.815456291243709 5.822885462498451 5.829992268437622 5.836773955762867 5.843228837917115 5.849356212883947 5.855156276353592 5.860630031091534 5.865779193372215 5.870606097350298 5.875113598255742 5.879304975301085 5.883183835180192 5.886754017033788 5.890019499727545 5.892984312276332 5.895652448202256 5.898027784588736 5.900114006538728 5.901914537702838 5.903432477481992 5.904670545454581 5.905631033511956 5.906315766115658 5.906726069025406 5.906862746765473 5.906726069025406 5.906315766115669 5.905631033511954 5.904670545454581 5.903432477481933 5.901914537702798 5.900114006538728 5.898027784588719 5.895652448202258 5.892984312276322 5.890019499727544 5.886754017033786 5.883183835180192 5.879304975301085 5.875113598255749 5.870606097350210 5.865779193372216 5.860630031091534 5.855156276353592 5.849356212883945 5.843228837917116 5.836773955762848 5.829992268437622 5.822885462498451 5.815456291243709 5.807708651477138 5.799647654059637 5.791279687526360 5.782612474086301 5.773655117380152 5.764418141431215 5.754913520285339 5.745154697904845 5.735156597957622 5.724935623207891 5.714509644303288 5.724935623207891 5.735156597957622 5.745154697904845 5.754913520285339 5.764418141431215 5.773655117380152 5.782612474086301 5.791279687526361 5.799647654059637 5.807708651477138 5.815456291243711 5.822885462498451 5.829992268437622 5.836773955762864 5.843228837917116 5.849356212883946 5.855156276353592 5.860630031091534 5.865779193372216 5.870606097350298 5.875113598255749 5.879304975301085 5.883183835180192 5.886754017033786 5.890019499727544 5.892984312276332 5.895652448202258 5.898027784588719 5.900114006538729 5.901914537702798 5.903432477481933 5.904670545454581 5.905631033511954 5.906315766115669 5.906726069025406 5.906862746765473 +6.121975933855508 6.121839067430139 6.121428284823668 6.120743039770881 6.119782434221133 6.118545236808893 6.117029908486360 6.115234635089583 6.113157366551080 6.110795862414020 6.108147743241136 6.105210547465152 6.101981793172904 6.098459044269109 6.094639980430751 6.090522470217503 6.086104646677485 6.081384984761997 6.076362379836434 6.071036226565002 6.065406497433091 6.059473820170941 6.053239553339868 6.046705859354623 6.039875774227765 6.032753273338362 6.025343332559632 6.017651984102404 6.009686366472804 6.001454767982726 5.992966663291416 5.984232742517041 5.975264932495818 5.966076409840861 5.956681605494547 5.947096200547062 5.937337113148652 5.947096200547065 5.956681605494547 5.966076409840861 5.975264932495818 5.984232742517043 5.992966663291421 6.001454767982726 6.009686366472803 6.017651984102431 6.025343332559632 6.032753273338316 6.039875774227765 6.046705859354623 6.053239553339868 6.059473820170942 6.065406497433089 6.071036226564999 6.076362379836434 6.081384984761996 6.086104646677481 6.090522470217513 6.094639980430750 6.098459044269109 6.101981793172904 6.105210547465151 6.108147743241036 6.110795862414021 6.113157366551031 6.115234635089582 6.117029908486352 6.118545236808893 6.119782434221133 6.120743039770873 6.121428284823659 6.121839067430139 6.121975933855508 6.121839067430140 6.121428284823668 6.120743039770871 6.119782434221134 6.118545236808894 6.117029908486397 6.115234635089582 6.113157366551031 6.110795862414021 6.108147743241157 6.105210547465153 6.101981793172907 6.098459044269109 6.094639980430751 6.090522470217513 6.086104646677484 6.081384984762000 6.076362379836435 6.071036226564999 6.065406497433090 6.059473820170941 6.053239553339868 6.046705859354623 6.039875774227765 6.032753273338335 6.025343332559632 6.017651984102453 6.009686366472807 6.001454767982726 5.992966663291421 5.984232742517041 5.975264932495818 5.966076409840861 5.956681605494547 5.947096200547048 5.937337113148652 5.947096200547046 5.956681605494547 5.966076409840861 5.975264932495818 5.984232742517041 5.992966663291421 6.001454767982726 6.009686366472804 6.017651984102453 6.025343332559632 6.032753273338342 6.039875774227765 6.046705859354623 6.053239553339868 6.059473820170941 6.065406497433090 6.071036226564999 6.076362379836435 6.081384984762000 6.086104646677481 6.090522470217513 6.094639980430751 6.098459044269109 6.101981793172907 6.105210547465153 6.108147743241036 6.110795862414021 6.113157366551031 6.115234635089582 6.117029908486397 6.118545236808894 6.119782434221134 6.120743039770871 6.121428284823668 6.121839067430140 6.121975933855508 +6.318725015756465 6.318590659313652 6.318187481797523 6.317515161622995 6.316573172706389 6.315360799212391 6.313877156009227 6.312121214656401 6.310091834680964 6.307787799868642 6.305207859234224 6.302350772303051 6.299215358288616 6.295800548719039 6.292105443025354 6.288129366580981 6.283871930652109 6.279333093697989 6.274513223445229 6.269413159143824 6.264034273409594 6.258378533049022 6.252448558274251 6.246247679707301 6.239779992603004 6.233050407718121 6.226064698289099 6.218829542597545 6.211352561635104 6.203642351413316 6.195708509501062 6.187561655410991 6.179213444502022 6.170676575115818 6.161964788702572 6.153092862760195 6.144076596447195 6.153092862760195 6.161964788702572 6.170676575115818 6.179213444502022 6.187561655410990 6.195708509501062 6.203642351413316 6.211352561635104 6.218829542597545 6.226064698289099 6.233050407718124 6.239779992603004 6.246247679707301 6.252448558274251 6.258378533049022 6.264034273409594 6.269413159144017 6.274513223445230 6.279333093697989 6.283871930652110 6.288129366580982 6.292105443025244 6.295800548719039 6.299215358288616 6.302350772303051 6.305207859234264 6.307787799868642 6.310091834680963 6.312121214656402 6.313877156009228 6.315360799212391 6.316573172706389 6.317515161622997 6.318187481797522 6.318590659313573 6.318725015756465 6.318590659313652 6.318187481797523 6.317515161622996 6.316573172706388 6.315360799212391 6.313877156009227 6.312121214656402 6.310091834680963 6.307787799868641 6.305207859234217 6.302350772303051 6.299215358288616 6.295800548719039 6.292105443025348 6.288129366580982 6.283871930652109 6.279333093697990 6.274513223445229 6.269413159144018 6.264034273409594 6.258378533049024 6.252448558274251 6.246247679707306 6.239779992603004 6.233050407718121 6.226064698289102 6.218829542597545 6.211352561635102 6.203642351413317 6.195708509501062 6.187561655410990 6.179213444502022 6.170676575115818 6.161964788702574 6.153092862760195 6.144076596447195 6.153092862760195 6.161964788702574 6.170676575115818 6.179213444502022 6.187561655410990 6.195708509501062 6.203642351413317 6.211352561635105 6.218829542597545 6.226064698289103 6.233050407718121 6.239779992603004 6.246247679707306 6.252448558274253 6.258378533049023 6.264034273409594 6.269413159144018 6.274513223445229 6.279333093697990 6.283871930652110 6.288129366580982 6.292105443025352 6.295800548719039 6.299215358288616 6.302350772303051 6.305207859234264 6.307787799868641 6.310091834680963 6.312121214656402 6.313877156009227 6.315360799212391 6.316573172706388 6.317515161622996 6.318187481797523 6.318590659313652 6.318725015756465 +6.495706450546871 6.495577283651448 6.495189738133678 6.494543681798251 6.493638901957199 6.492475116813554 6.491051991249877 6.489369156876779 6.487426236155233 6.485222870367020 6.482758751176851 6.480033655485034 6.477047483249303 6.473800297915040 6.470292369073185 6.466524216938615 6.462496658219470 6.458210852938334 6.453668351742583 6.448871143242034 6.443821700895120 6.438523028976466 6.432978707144430 6.427192933147870 6.421170563208415 6.414917149639212 6.408438975265180 6.401743084242423 6.394837308889812 6.387730292175541 6.380431505532040 6.372951261704139 6.365300722371506 6.357491900322164 6.349537655995879 6.341451688255573 6.333248519290423 6.341451688255573 6.349537655995880 6.357491900322164 6.365300722371506 6.372951261704140 6.380431505532041 6.387730292175541 6.394837308889792 6.401743084242423 6.408438975265180 6.414917149639212 6.421170563208416 6.427192933147870 6.432978707144430 6.438523028976467 6.443821700895120 6.448871143242032 6.453668351742583 6.458210852938333 6.462496658219471 6.466524216938615 6.470292369073185 6.473800297915038 6.477047483249303 6.480033655485034 6.482758751176879 6.485222870367021 6.487426236155270 6.489369156876772 6.491051991249877 6.492475116813554 6.493638901957199 6.494543681798250 6.495189738133678 6.495577283651448 6.495706450546871 6.495577283651325 6.495189738133678 6.494543681798251 6.493638901957192 6.492475116813554 6.491051991249877 6.489369156876780 6.487426236155270 6.485222870367021 6.482758751176851 6.480033655485034 6.477047483249303 6.473800297915040 6.470292369073185 6.466524216938615 6.462496658219470 6.458210852938334 6.453668351742580 6.448871143242034 6.443821700895120 6.438523028976467 6.432978707144430 6.427192933147870 6.421170563208416 6.414917149639212 6.408438975265180 6.401743084242424 6.394837308889833 6.387730292175541 6.380431505532041 6.372951261704139 6.365300722371506 6.357491900322164 6.349537655995879 6.341451688255573 6.333248519290423 6.341451688255573 6.349537655995878 6.357491900322165 6.365300722371506 6.372951261704139 6.380431505532041 6.387730292175541 6.394837308889828 6.401743084242424 6.408438975265180 6.414917149639212 6.421170563208416 6.427192933147870 6.432978707144430 6.438523028976467 6.443821700895120 6.448871143242034 6.453668351742581 6.458210852938334 6.462496658219470 6.466524216938615 6.470292369073185 6.473800297915040 6.477047483249303 6.480033655485034 6.482758751176899 6.485222870367021 6.487426236155270 6.489369156876780 6.491051991249877 6.492475116813554 6.493638901957192 6.494543681798251 6.495189738133678 6.495577283651317 6.495706450546871 +6.651657748377779 6.651536411099496 6.651172405519082 6.650565752100015 6.649716490592998 6.648624688445691 6.647290452465574 6.645713943620304 6.643895394835629 6.641835131619009 6.639533595307466 6.636991368717209 6.634209203940544 6.631188052020930 6.627929094209629 6.624433774495620 6.620703833080998 6.616741340460595 6.612548731760466 6.608128840974846 6.603484934742643 6.598620745299324 6.593540502245264 6.588248962774095 6.582751440009740 6.577053829116021 6.571162630854008 6.565084972273559 6.558828624254276 6.552402015619274 6.545814243579906 6.539075080285949 6.532194975291965 6.525185053768162 6.518057110329106 6.510823598371508 6.503497614854639 6.510823598371508 6.518057110329106 6.525185053768158 6.532194975291965 6.539075080285944 6.545814243579906 6.552402015619273 6.558828624254275 6.565084972273559 6.571162630854008 6.577053829116022 6.582751440009742 6.588248962774097 6.593540502245265 6.598620745299323 6.603484934742643 6.608128840974844 6.612548731760466 6.616741340460594 6.620703833080998 6.624433774495620 6.627929094209629 6.631188052020908 6.634209203940545 6.636991368717210 6.639533595307465 6.641835131619009 6.643895394835628 6.645713943620179 6.647290452465581 6.648624688445692 6.649716490592998 6.650565752099989 6.651172405519082 6.651536411099499 6.651657748377779 6.651536411099491 6.651172405519082 6.650565752099990 6.649716490592978 6.648624688445692 6.647290452465572 6.645713943620304 6.643895394835630 6.641835131619009 6.639533595307466 6.636991368717178 6.634209203940544 6.631188052020930 6.627929094209629 6.624433774495620 6.620703833080998 6.616741340460593 6.612548731760466 6.608128840974845 6.603484934742643 6.598620745299323 6.593540502245265 6.588248962774095 6.582751440009742 6.577053829116022 6.571162630854008 6.565084972273563 6.558828624254275 6.552402015619292 6.545814243579906 6.539075080285947 6.532194975291965 6.525185053768158 6.518057110329106 6.510823598371508 6.503497614854639 6.510823598371508 6.518057110329106 6.525185053768158 6.532194975291965 6.539075080285947 6.545814243579906 6.552402015619292 6.558828624254275 6.565084972273561 6.571162630854008 6.577053829116022 6.582751440009742 6.588248962774095 6.593540502245266 6.598620745299323 6.603484934742643 6.608128840974845 6.612548731760466 6.616741340460593 6.620703833080998 6.624433774495620 6.627929094209629 6.631188052020930 6.634209203940544 6.636991368717176 6.639533595307467 6.641835131619009 6.643895394835630 6.645713943620304 6.647290452465572 6.648624688445692 6.649716490592978 6.650565752099990 6.651172405519082 6.651536411099491 6.651657748377779 +6.785466919037586 6.785355991857704 6.785023255000529 6.784468843695310 6.783692987252516 6.782696014913563 6.781478363957773 6.780040589986434 6.778383379276899 6.776507563081895 6.774414133729898 6.772104262358679 6.769579318101923 6.766840888525350 6.763890801103025 6.760731145501653 6.757364296438411 6.753792936861971 6.750020081202556 6.746049098431334 6.741883734665886 6.737528135057106 6.732986864696635 6.728264928283160 6.723367788299821 6.718301381447753 6.713072133111616 6.707686969624527 6.702153328128013 6.696479163828531 6.690672954478414 6.684743701919556 6.678700930555335 6.672554682629925 6.666315510230318 6.659994463932722 6.653603078053734 6.659994463932722 6.666315510230318 6.672554682629925 6.678700930555335 6.684743701919556 6.690672954478421 6.696479163828531 6.702153328128013 6.707686969624527 6.713072133111615 6.718301381447759 6.723367788299819 6.728264928283159 6.732986864696635 6.737528135057107 6.741883734665886 6.746049098431333 6.750020081202553 6.753792936861972 6.757364296438477 6.760731145501652 6.763890801103025 6.766840888525355 6.769579318101923 6.772104262358679 6.774414133729898 6.776507563081893 6.778383379276926 6.780040589986429 6.781478363957773 6.782696014913563 6.783692987252516 6.784468843695310 6.785023255000530 6.785355991857705 6.785466919037586 6.785355991857706 6.785023255000530 6.784468843695324 6.783692987252519 6.782696014913564 6.781478363957773 6.780040589986430 6.778383379276926 6.776507563081893 6.774414133729898 6.772104262358679 6.769579318101917 6.766840888525351 6.763890801103025 6.760731145501652 6.757364296438334 6.753792936861970 6.750020081202556 6.746049098431334 6.741883734665886 6.737528135057107 6.732986864696635 6.728264928283160 6.723367788299821 6.718301381447761 6.713072133111615 6.707686969624527 6.702153328128015 6.696479163828531 6.690672954478415 6.684743701919556 6.678700930555335 6.672554682629925 6.666315510230318 6.659994463932722 6.653603078053734 6.659994463932722 6.666315510230318 6.672554682629925 6.678700930555335 6.684743701919556 6.690672954478415 6.696479163828531 6.702153328128013 6.707686969624527 6.713072133111615 6.718301381447761 6.723367788299821 6.728264928283160 6.732986864696634 6.737528135057107 6.741883734665886 6.746049098431334 6.750020081202556 6.753792936861970 6.757364296438458 6.760731145501652 6.763890801103025 6.766840888525351 6.769579318101917 6.772104262358679 6.774414133729898 6.776507563081893 6.778383379276925 6.780040589986430 6.781478363957773 6.782696014913564 6.783692987252516 6.784468843695324 6.785023255000530 6.785355991857706 6.785466919037586 +6.896180792304195 6.896082776477254 6.895788799154913 6.895299071566948 6.894613948262243 6.893733930830925 6.892659673057620 6.891391987450595 6.889931853073841 6.888280424597751 6.886439042465766 6.884409244068039 6.882192775788202 6.879791605795552 6.877207937430721 6.874444223027003 6.871503178010258 6.868387795102537 6.865101358455084 6.861647457536097 6.858030000592727 6.854253227502400 6.850321721842660 6.846240421996665 6.842014631124354 6.837650025835917 6.833152663401561 6.828528987353642 6.823785831335771 6.818930421071595 6.813970374331989 6.808913698799863 6.803768787742220 6.798544413411080 6.793249718118841 6.787894202943633 6.782487714040084 6.787894202943633 6.793249718118841 6.798544413411080 6.803768787742220 6.808913698799881 6.813970374331989 6.818930421071595 6.823785831335771 6.828528987353642 6.833152663401561 6.837650025835917 6.842014631124378 6.846240421996665 6.850321721842660 6.854253227502400 6.858030000592742 6.861647457536098 6.865101358455084 6.868387795102537 6.871503178010258 6.874444223027003 6.877207937430721 6.879791605795515 6.882192775788202 6.884409244068039 6.886439042465765 6.888280424597751 6.889931853073841 6.891391987450595 6.892659673057620 6.893733930830924 6.894613948262242 6.895299071566948 6.895788799154912 6.896082776477255 6.896180792304195 6.896082776477254 6.895788799154918 6.895299071566948 6.894613948262243 6.893733930830925 6.892659673057620 6.891391987450595 6.889931853073841 6.888280424597748 6.886439042465766 6.884409244068039 6.882192775788202 6.879791605795521 6.877207937430721 6.874444223026985 6.871503178010258 6.868387795102537 6.865101358455084 6.861647457536097 6.858030000592743 6.854253227502397 6.850321721842660 6.846240421996652 6.842014631124363 6.837650025835917 6.833152663401561 6.828528987353642 6.823785831335772 6.818930421071596 6.813970374331989 6.808913698799881 6.803768787742221 6.798544413411080 6.793249718118841 6.787894202943633 6.782487714040084 6.787894202943633 6.793249718118841 6.798544413411080 6.803768787742220 6.808913698799881 6.813970374331989 6.818930421071596 6.823785831335772 6.828528987353642 6.833152663401561 6.837650025835917 6.842014631124361 6.846240421996650 6.850321721842660 6.854253227502400 6.858030000592743 6.861647457536097 6.865101358455084 6.868387795102537 6.871503178010258 6.874444223026985 6.877207937430721 6.879791605795520 6.882192775788202 6.884409244068039 6.886439042465765 6.888280424597748 6.889931853073841 6.891391987450595 6.892659673057620 6.893733930830925 6.894613948262243 6.895299071566948 6.895788799154918 6.896082776477254 6.896180792304195 +6.983012148036902 6.982929446553880 6.982681424595270 6.982268330045518 6.981690577418528 6.980948749897025 6.980043602155990 6.978976063928379 6.977747244272131 6.976358436485756 6.974811123604020 6.973106984409214 6.971247899874894 6.969235959958201 6.967073470648559 6.964762961176224 6.962307191275398 6.959709158402928 6.956972104795807 6.954099524262384 6.951095168594109 6.947963053486895 6.944707463858365 6.941332958457356 6.937844373654899 6.934246826318601 6.930545715667824 6.926746724024925 6.922855816370529 6.918879238629260 6.914823514612510 6.910695441560633 6.906502084227703 6.902250767471345 6.897949067313228 6.893604800448254 6.889226012196525 6.893604800448254 6.897949067313228 6.902250767471346 6.906502084227703 6.910695441560633 6.914823514612513 6.918879238629260 6.922855816370529 6.926746724024925 6.930545715667824 6.934246826318600 6.937844373654899 6.941332958457356 6.944707463858365 6.947963053486895 6.951095168594109 6.954099524262384 6.956972104795807 6.959709158402927 6.962307191275395 6.964762961176224 6.967073470648565 6.969235959958201 6.971247899874894 6.973106984409214 6.974811123604020 6.976358436485756 6.977747244272131 6.978976063928378 6.980043602155990 6.980948749897025 6.981690577418528 6.982268330045518 6.982681424595269 6.982929446553880 6.983012148036902 6.982929446553879 6.982681424595269 6.982268330045522 6.981690577418528 6.980948749897024 6.980043602155990 6.978976063928379 6.977747244272131 6.976358436485756 6.974811123604020 6.973106984409215 6.971247899874894 6.969235959958201 6.967073470648559 6.964762961176224 6.962307191275398 6.959709158402928 6.956972104795807 6.954099524262384 6.951095168594109 6.947963053486895 6.944707463858365 6.941332958457356 6.937844373654899 6.934246826318600 6.930545715667824 6.926746724024925 6.922855816370529 6.918879238629260 6.914823514612513 6.910695441560633 6.906502084227703 6.902250767471346 6.897949067313228 6.893604800448254 6.889226012196525 6.893604800448254 6.897949067313228 6.902250767471345 6.906502084227703 6.910695441560633 6.914823514612513 6.918879238629260 6.922855816370529 6.926746724024925 6.930545715667825 6.934246826318600 6.937844373654899 6.941332958457356 6.944707463858365 6.947963053486895 6.951095168594109 6.954099524262384 6.956972104795807 6.959709158402928 6.962307191275395 6.964762961176224 6.967073470648559 6.969235959958201 6.971247899874895 6.973106984409215 6.974811123604020 6.976358436485756 6.977747244272131 6.978976063928379 6.980043602155990 6.980948749897024 6.981690577418528 6.982268330045521 6.982681424595269 6.982929446553879 6.983012148036902 +7.045345601980773 7.045280501281367 7.045085280766533 7.044760185352502 7.044305623786861 7.043722169469206 7.043010561580479 7.042171706504782 7.041206679512442 7.040116726684727 7.038903267037835 7.037567894812475 7.036112381886630 7.034538680261601 7.032848924578662 7.031045434607746 7.029130717655339 7.027107470839220 7.024978583164316 7.022747137349899 7.020416411339720 7.017989879443239 7.015471213046940 7.012864280836294 7.010173148479035 7.007402077708875 7.004555524766777 7.001638138148866 6.998654755617736 6.995610400440849 6.992510276818146 6.989359764473937 6.986164412385115 6.982929931628935 6.979662187338583 6.976367189761674 6.973051084415854 6.976367189761674 6.979662187338583 6.982929931628935 6.986164412385115 6.989359764473937 6.992510276818146 6.995610400440849 6.998654755617741 7.001638138148866 7.004555524766777 7.007402077708875 7.010173148479052 7.012864280836294 7.015471213046940 7.017989879443239 7.020416411339720 7.022747137349899 7.024978583164316 7.027107470839220 7.029130717655339 7.031045434607746 7.032848924578662 7.034538680261601 7.036112381886630 7.037567894812475 7.038903267037835 7.040116726684727 7.041206679512442 7.042171706504781 7.043010561580479 7.043722169469206 7.044305623786861 7.044760185352502 7.045085280766685 7.045280501281367 7.045345601980773 7.045280501281367 7.045085280766620 7.044760185352502 7.044305623786861 7.043722169469206 7.043010561580479 7.042171706504781 7.041206679512442 7.040116726684727 7.038903267037835 7.037567894812475 7.036112381886630 7.034538680261601 7.032848924578662 7.031045434607746 7.029130717655339 7.027107470839220 7.024978583164316 7.022747137349899 7.020416411339720 7.017989879443239 7.015471213046940 7.012864280836294 7.010173148479035 7.007402077708875 7.004555524766777 7.001638138148866 6.998654755617737 6.995610400440849 6.992510276818146 6.989359764473937 6.986164412385115 6.982929931628936 6.979662187338583 6.976367189761674 6.973051084415854 6.976367189761674 6.979662187338583 6.982929931628935 6.986164412385115 6.989359764473937 6.992510276818146 6.995610400440849 6.998654755617737 7.001638138148866 7.004555524766777 7.007402077708875 7.010173148479035 7.012864280836294 7.015471213046940 7.017989879443239 7.020416411339720 7.022747137349899 7.024978583164316 7.027107470839220 7.029130717655339 7.031045434607746 7.032848924578662 7.034538680261601 7.036112381886630 7.037567894812475 7.038903267037835 7.040116726684727 7.041206679512442 7.042171706504781 7.043010561580479 7.043722169469206 7.044305623786861 7.044760185352502 7.045085280766623 7.045280501281367 7.045345601980773 +7.082742202684379 7.082696855255886 7.082560880414599 7.082334480507418 7.082017992828848 7.081611889692476 7.081116778521114 7.080533401952940 7.079862637946244 7.079105499879648 7.078263136627841 7.077336832599247 7.076328007720328 7.075238217345039 7.074069152071893 7.072822637448018 7.071500633537086 7.070105234328517 7.068638666968342 7.067103290784492 7.065501596086057 7.063836202714288 7.062109858320139 7.060325436350385 7.058485933718314 7.056594468142839 7.054654275134679 7.052668704615110 7.050641217152823 7.048575379804796 7.046474861550807 7.044343428315408 7.042184937567605 7.040003332500513 7.037802635784215 7.035586942899641 7.033360415055184 7.035586942899641 7.037802635784215 7.040003332500513 7.042184937567605 7.044343428315408 7.046474861550802 7.048575379804796 7.050641217152823 7.052668704615110 7.054654275134679 7.056594468142839 7.058485933718314 7.060325436350385 7.062109858320107 7.063836202714288 7.065501596086057 7.067103290784492 7.068638666968383 7.070105234328517 7.071500633537086 7.072822637448018 7.074069152071894 7.075238217345039 7.076328007720328 7.077336832599247 7.078263136627841 7.079105499879648 7.079862637946244 7.080533401952940 7.081116778521114 7.081611889692476 7.082017992828848 7.082334480507418 7.082560880414599 7.082696855255886 7.082742202684379 7.082696855255886 7.082560880414599 7.082334480507418 7.082017992828848 7.081611889692476 7.081116778521113 7.080533401952940 7.079862637946244 7.079105499879648 7.078263136627841 7.077336832599246 7.076328007720328 7.075238217345039 7.074069152071894 7.072822637448018 7.071500633537086 7.070105234328517 7.068638666968342 7.067103290784492 7.065501596086057 7.063836202714288 7.062109858320070 7.060325436350385 7.058485933718314 7.056594468142839 7.054654275134679 7.052668704615110 7.050641217152823 7.048575379804796 7.046474861550802 7.044343428315408 7.042184937567605 7.040003332500513 7.037802635784215 7.035586942899641 7.033360415055184 7.035586942899641 7.037802635784215 7.040003332500513 7.042184937567605 7.044343428315408 7.046474861550802 7.048575379804796 7.050641217152823 7.052668704615110 7.054654275134679 7.056594468142839 7.058485933718314 7.060325436350385 7.062109858320242 7.063836202714288 7.065501596086057 7.067103290784492 7.068638666968341 7.070105234328517 7.071500633537086 7.072822637448018 7.074069152071894 7.075238217345039 7.076328007720328 7.077336832599246 7.078263136627841 7.079105499879648 7.079862637946244 7.080533401952940 7.081116778521113 7.081611889692476 7.082017992828848 7.082334480507418 7.082560880414599 7.082696855255886 7.082742202684379 +7.094942704718703 7.094919112713959 7.094848376880417 7.094730617718263 7.094566035927037 7.094354912199845 7.094097606940601 7.093794559890012 7.093446289671215 7.093053393246938 7.092616545282817 7.092136497422517 7.091614077463921 7.091050188439188 7.090445807590105 7.089801985240634 7.089119843559826 7.088400575211445 7.087645441890353 7.086855772738236 7.086032962637074 7.085178470379845 7.084293816709517 7.083380582230784 7.082440405188096 7.081474979109147 7.080486050313538 7.079475415282313 7.078444917896116 7.077396446530226 7.076331931019081 7.075253339485386 7.074162675035007 7.073061972326328 7.071953294013289 7.070838727065415 7.069720378975407 7.070838727065415 7.071953294013289 7.073061972326328 7.074162675035007 7.075253339485386 7.076331931019081 7.077396446530226 7.078444917896116 7.079475415282313 7.080486050313538 7.081474979109147 7.082440405188096 7.083380582230784 7.084293816709517 7.085178470379845 7.086032962637074 7.086855772738236 7.087645441890353 7.088400575211445 7.089119843559826 7.089801985240634 7.090445807590105 7.091050188439188 7.091614077463921 7.092136497422517 7.092616545282817 7.093053393246938 7.093446289671215 7.093794559890012 7.094097606940601 7.094354912199845 7.094566035927037 7.094730617718263 7.094848376880417 7.094919112713959 7.094942704718703 7.094919112713959 7.094848376880417 7.094730617718263 7.094566035927037 7.094354912199845 7.094097606940601 7.093794559890012 7.093446289671215 7.093053393246938 7.092616545282817 7.092136497422517 7.091614077463921 7.091050188439188 7.090445807590105 7.089801985240634 7.089119843559826 7.088400575211445 7.087645441890353 7.086855772738236 7.086032962637074 7.085178470379845 7.084293816709517 7.083380582230784 7.082440405188096 7.081474979109147 7.080486050313538 7.079475415282313 7.078444917896134 7.077396446530226 7.076331931019081 7.075253339485386 7.074162675035007 7.073061972326328 7.071953294013289 7.070838727065415 7.069720378975407 7.070838727065415 7.071953294013289 7.073061972326328 7.074162675035007 7.075253339485386 7.076331931019081 7.077396446530226 7.078444917896134 7.079475415282313 7.080486050313538 7.081474979109147 7.082440405188096 7.083380582230784 7.084293816709517 7.085178470379845 7.086032962637074 7.086855772738236 7.087645441890353 7.088400575211445 7.089119843559826 7.089801985240634 7.090445807590105 7.091050188439188 7.091614077463921 7.092136497422517 7.092616545282817 7.093053393246938 7.093446289671215 7.093794559890012 7.094097606940601 7.094354912199845 7.094566035927037 7.094730617718263 7.094848376880417 7.094919112713959 7.094942704718703 +7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 7.081869493404803 \ No newline at end of file diff --git a/simulations/Tutorial/xhps_integration/surface_tables/nt.txt b/simulations/Tutorial/xhps_integration/surface_tables/nt.txt new file mode 100644 index 0000000000000000000000000000000000000000..ecac0f63b54c1907381b35d972a33a93b95d35b4 --- /dev/null +++ b/simulations/Tutorial/xhps_integration/surface_tables/nt.txt @@ -0,0 +1,20 @@ + 0.0000 1.9440 0.0000 + 0.0000 0.0000 0.0000 + 0.0000 0.9720 0.0000 + 0.0000 1.3190 -0.7440 + 0.0000 1.6315 -0.3720 + 0.0000 0.6250 -0.7440 + 0.0000 0.9720 -0.7440 + 0.0000 0.3125 -0.3720 + 3.1230 0.0000 0.0000 + 3.1230 0.6250 -0.7440 + 3.1230 0.3125 -0.3720 + 3.1230 1.3190 -0.7440 + 3.1230 0.9720 -0.7440 + 3.1230 1.9440 0.0000 + 3.1230 1.6315 -0.3720 + 3.1230 0.9720 0.0000 + 1.5615 0.6250 -0.7440 + 1.5615 0.0000 0.0000 + 1.5615 1.3190 -0.7440 + 1.5615 1.9440 0.0000 diff --git a/simulations/Tutorial/xhps_integration/surface_tables/prespoint_X.txt b/simulations/Tutorial/xhps_integration/surface_tables/prespoint_X.txt new file mode 100644 index 0000000000000000000000000000000000000000..50eef4721636f1bc49a4fb925f03279c50abb18f --- /dev/null +++ b/simulations/Tutorial/xhps_integration/surface_tables/prespoint_X.txt @@ -0,0 +1,73 @@ +-0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 +0.010942578457063 0.010932236463001 0.010901229340535 0.010849613639054 0.010777483508310 0.010684970549622 0.010572243607647 0.010439508502813 0.010287007704554 0.010115019945474 0.009923859776646 0.009713877064278 0.009485456428009 0.009239016621146 0.008975009853224 0.008693921055290 0.008396267088417 0.008082595895967 0.007753485600254 0.007409543544270 0.007051405279277 0.006679733499122 0.006295216922226 0.005898569122336 0.005490527309175 0.005071851060291 0.004643321005489 0.004205737465371 0.003759919045614 0.003306701188776 0.002846934685517 0.002381484147297 0.001911226442718 0.001437049099844 0.000959848676959 0.000480529104368 -0.000000000000000 -0.000480529104368 -0.000959848676959 -0.001437049099844 -0.001911226442718 -0.002381484147297 -0.002846934685517 -0.003306701188776 -0.003759919045615 -0.004205737465371 -0.004643321005490 -0.005071851060292 -0.005490527309175 -0.005898569122336 -0.006295216922226 -0.006679733499122 -0.007051405279277 -0.007409543544270 -0.007753485600254 -0.008082595895967 -0.008396267088417 -0.008693921055291 -0.008975009853225 -0.009239016621146 -0.009485456428009 -0.009713877064278 -0.009923859776646 -0.010115019945474 -0.010287007704554 -0.010439508502813 -0.010572243607647 -0.010684970549622 -0.010777483508310 -0.010849613639054 -0.010901229340535 -0.010932236463001 -0.010942578457063 -0.010932236463001 -0.010901229340535 -0.010849613639054 -0.010777483508310 -0.010684970549622 -0.010572243607647 -0.010439508502813 -0.010287007704554 -0.010115019945474 -0.009923859776646 -0.009713877064278 -0.009485456428009 -0.009239016621146 -0.008975009853225 -0.008693921055291 -0.008396267088417 -0.008082595895967 -0.007753485600254 -0.007409543544270 -0.007051405279277 -0.006679733499121 -0.006295216922226 -0.005898569122336 -0.005490527309175 -0.005071851060292 -0.004643321005490 -0.004205737465371 -0.003759919045615 -0.003306701188776 -0.002846934685517 -0.002381484147297 -0.001911226442718 -0.001437049099844 -0.000959848676959 -0.000480529104368 -0.000000000000000 0.000480529104368 0.000959848676959 0.001437049099844 0.001911226442718 0.002381484147297 0.002846934685517 0.003306701188776 0.003759919045614 0.004205737465371 0.004643321005489 0.005071851060292 0.005490527309175 0.005898569122336 0.006295216922226 0.006679733499121 0.007051405279277 0.007409543544270 0.007753485600254 0.008082595895967 0.008396267088416 0.008693921055290 0.008975009853224 0.009239016621146 0.009485456428009 0.009713877064278 0.009923859776646 0.010115019945474 0.010287007704554 0.010439508502813 0.010572243607647 0.010684970549622 0.010777483508310 0.010849613639054 0.010901229340535 0.010932236463001 0.010942578457063 +0.021773787996678 0.021753352880018 0.021692083178372 0.021590085792324 0.021447538741433 0.021264690941828 0.021041861894355 0.020779441282768 0.020477888481328 0.020137731971084 0.019759568663953 0.019344063133686 0.018891946752623 0.018404016733208 0.017881135073040 0.017324227402346 0.016734281732627 0.016112347105355 0.015459532139563 0.014777003477247 0.014065984125627 0.013327751695380 0.012563636534136 0.011775019754694 0.010963331157597 0.010130047047973 0.009276687946768 0.008404816196819 0.007516033464501 0.006611978138052 0.005694322624026 0.004764770543736 0.003825053831957 0.002876929740600 0.001922177750528 0.000962596395159 -0.000000000000000 -0.000962596395159 -0.001922177750528 -0.002876929740601 -0.003825053831957 -0.004764770543736 -0.005694322624026 -0.006611978138052 -0.007516033464501 -0.008404816196819 -0.009276687946768 -0.010130047047973 -0.010963331157598 -0.011775019754694 -0.012563636534137 -0.013327751695380 -0.014065984125628 -0.014777003477248 -0.015459532139564 -0.016112347105356 -0.016734281732627 -0.017324227402346 -0.017881135073041 -0.018404016733208 -0.018891946752623 -0.019344063133686 -0.019759568663953 -0.020137731971084 -0.020477888481329 -0.020779441282768 -0.021041861894355 -0.021264690941828 -0.021447538741433 -0.021590085792324 -0.021692083178372 -0.021753352880019 -0.021773787996678 -0.021753352880019 -0.021692083178372 -0.021590085792324 -0.021447538741433 -0.021264690941828 -0.021041861894355 -0.020779441282768 -0.020477888481329 -0.020137731971084 -0.019759568663953 -0.019344063133686 -0.018891946752623 -0.018404016733208 -0.017881135073041 -0.017324227402346 -0.016734281732627 -0.016112347105356 -0.015459532139564 -0.014777003477248 -0.014065984125628 -0.013327751695380 -0.012563636534137 -0.011775019754695 -0.010963331157598 -0.010130047047973 -0.009276687946768 -0.008404816196819 -0.007516033464501 -0.006611978138052 -0.005694322624026 -0.004764770543736 -0.003825053831957 -0.002876929740600 -0.001922177750528 -0.000962596395159 -0.000000000000000 0.000962596395159 0.001922177750528 0.002876929740600 0.003825053831957 0.004764770543736 0.005694322624026 0.006611978138052 0.007516033464501 0.008404816196819 0.009276687946768 0.010130047047973 0.010963331157597 0.011775019754694 0.012563636534136 0.013327751695380 0.014065984125627 0.014777003477247 0.015459532139564 0.016112347105355 0.016734281732627 0.017324227402346 0.017881135073040 0.018404016733208 0.018891946752623 0.019344063133686 0.019759568663953 0.020137731971084 0.020477888481328 0.020779441282768 0.021041861894355 0.021264690941828 0.021447538741433 0.021590085792324 0.021692083178372 0.021753352880018 0.021773787996678 +0.032536066578637 0.032505744095289 0.032414827157119 0.032263467254169 0.032051916717739 0.031780528491413 0.031449755808903 0.031060151777123 0.030612368862489 0.030107158277981 0.029545369268201 0.028927948289175 0.028255938079399 0.027530476618266 0.026752795967736 0.025924220992895 0.025046167956808 0.024120142984969 0.023147740394482 0.022130640883110 0.021070609573269 0.019969493906155 0.018829221381251 0.017651797136682 0.016439301366089 0.015193886568017 0.013917774624185 0.012613253703416 0.011282674988564 0.009928449224287 0.008553043084219 0.007158975356754 0.005748812949467 0.004325166713009 0.002890687086232 0.001448059565228 -0.000000000000000 -0.001448059565228 -0.002890687086232 -0.004325166713009 -0.005748812949467 -0.007158975356754 -0.008553043084219 -0.009928449224288 -0.011282674988564 -0.012613253703416 -0.013917774624185 -0.015193886568018 -0.016439301366089 -0.017651797136682 -0.018829221381251 -0.019969493906155 -0.021070609573270 -0.022130640883110 -0.023147740394482 -0.024120142984969 -0.025046167956808 -0.025924220992895 -0.026752795967736 -0.027530476618266 -0.028255938079399 -0.028927948289175 -0.029545369268201 -0.030107158277981 -0.030612368862489 -0.031060151777123 -0.031449755808903 -0.031780528491413 -0.032051916717739 -0.032263467254169 -0.032414827157119 -0.032505744095289 -0.032536066578637 -0.032505744095289 -0.032414827157119 -0.032263467254169 -0.032051916717739 -0.031780528491413 -0.031449755808903 -0.031060151777123 -0.030612368862489 -0.030107158277981 -0.029545369268201 -0.028927948289175 -0.028255938079399 -0.027530476618266 -0.026752795967736 -0.025924220992895 -0.025046167956808 -0.024120142984969 -0.023147740394482 -0.022130640883110 -0.021070609573270 -0.019969493906155 -0.018829221381251 -0.017651797136682 -0.016439301366089 -0.015193886568018 -0.013917774624185 -0.012613253703416 -0.011282674988564 -0.009928449224288 -0.008553043084219 -0.007158975356754 -0.005748812949467 -0.004325166713009 -0.002890687086232 -0.001448059565228 -0.000000000000000 0.001448059565228 0.002890687086232 0.004325166713009 0.005748812949467 0.007158975356754 0.008553043084219 0.009928449224287 0.011282674988564 0.012613253703416 0.013917774624184 0.015193886568017 0.016439301366089 0.017651797136682 0.018829221381251 0.019969493906155 0.021070609573269 0.022130640883110 0.023147740394482 0.024120142984969 0.025046167956807 0.025924220992895 0.026752795967736 0.027530476618266 0.028255938079399 0.028927948289175 0.029545369268201 0.030107158277981 0.030612368862489 0.031060151777123 0.031449755808903 0.031780528491413 0.032051916717739 0.032263467254169 0.032414827157119 0.032505744095289 0.032536066578637 +0.043270789431951 0.043230745429404 0.043110676986721 0.042910774764132 0.042631356412833 0.042272866399676 0.041835875758713 0.041321081766559 0.040729307537749 0.040061501535424 0.039318736991909 0.038502211232974 0.037613244898925 0.036653281054867 0.035623884182017 0.034526739041243 0.033363649399566 0.032136536609895 0.030847438033892 0.029498505297568 0.028092002368985 0.026630303447333 0.025115890652612 0.023551351505203 0.021939376184806 0.020282754558493 0.018584372968040 0.016847210767200 0.015074336600229 0.013268904413747 0.011434149194910 0.009573382429868 0.007689987277676 0.005787413456048 0.003869171836804 0.001938828750324 -0.000000000000000 -0.001938828750324 -0.003869171836805 -0.005787413456048 -0.007689987277676 -0.009573382429868 -0.011434149194910 -0.013268904413747 -0.015074336600229 -0.016847210767200 -0.018584372968040 -0.020282754558493 -0.021939376184806 -0.023551351505203 -0.025115890652612 -0.026630303447333 -0.028092002368985 -0.029498505297569 -0.030847438033892 -0.032136536609894 -0.033363649399565 -0.034526739041243 -0.035623884182017 -0.036653281054867 -0.037613244898925 -0.038502211232974 -0.039318736991909 -0.040061501535425 -0.040729307537749 -0.041321081766559 -0.041835875758713 -0.042272866399676 -0.042631356412833 -0.042910774764132 -0.043110676986721 -0.043230745429404 -0.043270789431951 -0.043230745429404 -0.043110676986721 -0.042910774764132 -0.042631356412833 -0.042272866399676 -0.041835875758713 -0.041321081766559 -0.040729307537749 -0.040061501535424 -0.039318736991909 -0.038502211232975 -0.037613244898925 -0.036653281054867 -0.035623884182017 -0.034526739041243 -0.033363649399566 -0.032136536609895 -0.030847438033892 -0.029498505297569 -0.028092002368985 -0.026630303447333 -0.025115890652612 -0.023551351505204 -0.021939376184806 -0.020282754558493 -0.018584372968040 -0.016847210767200 -0.015074336600229 -0.013268904413747 -0.011434149194910 -0.009573382429868 -0.007689987277676 -0.005787413456048 -0.003869171836805 -0.001938828750324 -0.000000000000000 0.001938828750324 0.003869171836805 0.005787413456048 0.007689987277676 0.009573382429868 0.011434149194910 0.013268904413747 0.015074336600229 0.016847210767200 0.018584372968040 0.020282754558493 0.021939376184806 0.023551351505204 0.025115890652612 0.026630303447333 0.028092002368985 0.029498505297569 0.030847438033892 0.032136536609895 0.033363649399565 0.034526739041243 0.035623884182017 0.036653281054867 0.037613244898925 0.038502211232975 0.039318736991909 0.040061501535424 0.040729307537749 0.041321081766559 0.041835875758713 0.042272866399676 0.042631356412833 0.042910774764132 0.043110676986721 0.043230745429404 0.043270789431951 +0.054018909801735 0.053969272764375 0.053820436546192 0.053572625816119 0.053226214979249 0.052781728109764 0.052239838852404 0.051601370287790 0.050867294755643 0.050038733628732 0.049116957029017 0.048103383476376 0.046999579459002 0.045807258913558 0.044528282602033 0.043164657371259 0.041718535280115 0.040192212578601 0.038588128522198 0.036908864004242 0.035157139988507 0.033335815723723 0.031447886721473 0.029496482478681 0.027484863925948 0.025416420583028 0.023294667403122 0.021123241288074 0.018905897257255 0.016646504253738 0.014349040572465 0.012017588896332 0.009656330927610 0.007269541603826 0.004861582889099 0.002436897134086 -0.000000000000000 -0.002436897134086 -0.004861582889099 -0.007269541603826 -0.009656330927610 -0.012017588896332 -0.014349040572466 -0.016646504253738 -0.018905897257255 -0.021123241288075 -0.023294667403123 -0.025416420583029 -0.027484863925950 -0.029496482478682 -0.031447886721474 -0.033335815723723 -0.035157139988508 -0.036908864004243 -0.038588128522199 -0.040192212578602 -0.041718535280115 -0.043164657371259 -0.044528282602034 -0.045807258913559 -0.046999579459003 -0.048103383476377 -0.049116957029019 -0.050038733628733 -0.050867294755644 -0.051601370287791 -0.052239838852406 -0.052781728109765 -0.053226214979250 -0.053572625816120 -0.053820436546193 -0.053969272764377 -0.054018909801737 -0.053969272764377 -0.053820436546193 -0.053572625816120 -0.053226214979250 -0.052781728109765 -0.052239838852406 -0.051601370287791 -0.050867294755644 -0.050038733628733 -0.049116957029019 -0.048103383476378 -0.046999579459003 -0.045807258913559 -0.044528282602034 -0.043164657371259 -0.041718535280115 -0.040192212578602 -0.038588128522199 -0.036908864004243 -0.035157139988508 -0.033335815723723 -0.031447886721474 -0.029496482478682 -0.027484863925950 -0.025416420583029 -0.023294667403122 -0.021123241288075 -0.018905897257255 -0.016646504253738 -0.014349040572465 -0.012017588896332 -0.009656330927610 -0.007269541603826 -0.004861582889099 -0.002436897134086 -0.000000000000000 0.002436897134086 0.004861582889099 0.007269541603826 0.009656330927610 0.012017588896332 0.014349040572465 0.016646504253738 0.018905897257255 0.021123241288074 0.023294667403121 0.025416420583028 0.027484863925948 0.029496482478681 0.031447886721473 0.033335815723723 0.035157139988507 0.036908864004242 0.038588128522198 0.040192212578601 0.041718535280115 0.043164657371258 0.044528282602033 0.045807258913557 0.046999579459002 0.048103383476377 0.049116957029017 0.050038733628731 0.050867294755643 0.051601370287790 0.052239838852404 0.052781728109764 0.053226214979249 0.053572625816119 0.053820436546192 0.053969272764375 0.054018909801735 +0.064821585897034 0.064762448913121 0.064585122520249 0.064289860414142 0.063877085483833 0.063347389902732 0.062701535249727 0.061940452653956 0.061065242955090 0.060077176869192 0.058977695148477 0.057768408721532 0.056451098798906 0.055027716927380 0.053500384974522 0.051871395023725 0.050143209158401 0.048318459112643 0.046399945764409 0.044390638446071 0.042293674046159 0.040112355875183 0.037850152267680 0.035510694892017 0.033097776739067 0.030615349760702 0.028067522129008 0.025458555087424 0.022792859365488 0.020074991129650 0.017309647443691 0.014501661213644 0.011655995593808 0.008777737832433 0.005872092538049 0.002944374350015 -0.000000000000000 -0.002944374350015 -0.005872092538049 -0.008777737832434 -0.011655995593808 -0.014501661213645 -0.017309647443691 -0.020074991129650 -0.022792859365488 -0.025458555087424 -0.028067522129009 -0.030615349760703 -0.033097776739069 -0.035510694892018 -0.037850152267681 -0.040112355875183 -0.042293674046160 -0.044390638446072 -0.046399945764410 -0.048318459112644 -0.050143209158401 -0.051871395023726 -0.053500384974522 -0.055027716927381 -0.056451098798906 -0.057768408721533 -0.058977695148478 -0.060077176869193 -0.061065242955091 -0.061940452653957 -0.062701535249728 -0.063347389902733 -0.063877085483834 -0.064289860414143 -0.064585122520250 -0.064762448913122 -0.064821585897035 -0.064762448913122 -0.064585122520250 -0.064289860414143 -0.063877085483834 -0.063347389902733 -0.062701535249728 -0.061940452653957 -0.061065242955091 -0.060077176869193 -0.058977695148480 -0.057768408721533 -0.056451098798906 -0.055027716927381 -0.053500384974522 -0.051871395023726 -0.050143209158401 -0.048318459112644 -0.046399945764410 -0.044390638446072 -0.042293674046160 -0.040112355875183 -0.037850152267681 -0.035510694892018 -0.033097776739069 -0.030615349760703 -0.028067522129008 -0.025458555087424 -0.022792859365488 -0.020074991129651 -0.017309647443691 -0.014501661213644 -0.011655995593808 -0.008777737832434 -0.005872092538049 -0.002944374350016 -0.000000000000000 0.002944374350015 0.005872092538049 0.008777737832433 0.011655995593807 0.014501661213644 0.017309647443691 0.020074991129651 0.022792859365488 0.025458555087423 0.028067522129008 0.030615349760702 0.033097776739067 0.035510694892017 0.037850152267680 0.040112355875182 0.042293674046159 0.044390638446071 0.046399945764409 0.048318459112643 0.050143209158401 0.051871395023725 0.053500384974522 0.055027716927380 0.056451098798906 0.057768408721532 0.058977695148477 0.060077176869192 0.061065242955090 0.061940452653956 0.062701535249727 0.063347389902732 0.063877085483833 0.064289860414142 0.064585122520249 0.064762448913121 0.064821585897034 +0.075720814531993 0.075652236746613 0.075446595985678 0.075104170095023 0.074625422350378 0.074011001752412 0.073261743431689 0.072378669155516 0.071362987926350 0.070216096659089 0.068939580922391 0.067535215726810 0.066004966340376 0.064350989110004 0.062575632264931 0.060681436676309 0.058671136544915 0.056547659987061 0.054314129486755 0.051973862180411 0.049530369938718 0.046987359208682 0.044348730577477 0.041618578018557 0.038801187779434 0.035901036869825 0.032922791108317 0.029871302685539 0.026751607201948 0.023568920138773 0.020328632721568 0.017036307137041 0.013697671065563 0.010318611493864 0.006905167775138 0.003463523906817 -0.000000000000000 -0.003463523906817 -0.006905167775138 -0.010318611493864 -0.013697671065563 -0.017036307137042 -0.020328632721568 -0.023568920138773 -0.026751607201948 -0.029871302685539 -0.032922791108317 -0.035901036869826 -0.038801187779435 -0.041618578018557 -0.044348730577476 -0.046987359208682 -0.049530369938718 -0.051973862180412 -0.054314129486755 -0.056547659987062 -0.058671136544915 -0.060681436676309 -0.062575632264931 -0.064350989110004 -0.066004966340376 -0.067535215726810 -0.068939580922391 -0.070216096659089 -0.071362987926350 -0.072378669155517 -0.073261743431689 -0.074011001752412 -0.074625422350378 -0.075104170095023 -0.075446595985678 -0.075652236746613 -0.075720814531993 -0.075652236746613 -0.075446595985678 -0.075104170095023 -0.074625422350378 -0.074011001752412 -0.073261743431689 -0.072378669155517 -0.071362987926350 -0.070216096659089 -0.068939580922391 -0.067535215726810 -0.066004966340376 -0.064350989110004 -0.062575632264931 -0.060681436676308 -0.058671136544915 -0.056547659987062 -0.054314129486756 -0.051973862180411 -0.049530369938717 -0.046987359208682 -0.044348730577476 -0.041618578018558 -0.038801187779434 -0.035901036869826 -0.032922791108316 -0.029871302685539 -0.026751607201949 -0.023568920138773 -0.020328632721568 -0.017036307137042 -0.013697671065563 -0.010318611493864 -0.006905167775139 -0.003463523906818 -0.000000000000000 0.003463523906817 0.006905167775139 0.010318611493864 0.013697671065562 0.017036307137042 0.020328632721568 0.023568920138773 0.026751607201948 0.029871302685539 0.032922791108316 0.035901036869826 0.038801187779434 0.041618578018558 0.044348730577477 0.046987359208682 0.049530369938717 0.051973862180411 0.054314129486756 0.056547659987062 0.058671136544915 0.060681436676308 0.062575632264931 0.064350989110004 0.066004966340376 0.067535215726810 0.068939580922391 0.070216096659089 0.071362987926350 0.072378669155517 0.073261743431689 0.074011001752412 0.074625422350378 0.075104170095023 0.075446595985678 0.075652236746613 0.075720814531993 +0.086760092330359 0.086682099933039 0.086448221755117 0.086058754948353 0.085514195129788 0.084815236923108 0.083962774706983 0.082957903560703 0.081801920394859 0.080496325251778 0.079042822757900 0.077443323707339 0.075699946753087 0.073815020179552 0.071791083727304 0.069630890438127 0.067337408485668 0.064913822954341 0.062363537526381 0.059690176034372 0.056897583834146 0.053989828950466 0.050971202945763 0.047846221460112 0.044619624368824 0.041296375502480 0.037881661872908 0.034380892347734 0.030799695715530 0.027143918083488 0.023419619549869 0.019633070094367 0.015790744630937 0.011899317169671 0.007965654037019 0.003996806106978 -0.000000000000000 -0.003996806106978 -0.007965654037019 -0.011899317169671 -0.015790744630936 -0.019633070094368 -0.023419619549870 -0.027143918083489 -0.030799695715531 -0.034380892347734 -0.037881661872908 -0.041296375502480 -0.044619624368825 -0.047846221460111 -0.050971202945763 -0.053989828950465 -0.056897583834146 -0.059690176034373 -0.062363537526381 -0.064913822954341 -0.067337408485668 -0.069630890438127 -0.071791083727304 -0.073815020179552 -0.075699946753087 -0.077443323707339 -0.079042822757900 -0.080496325251777 -0.081801920394859 -0.082957903560703 -0.083962774706983 -0.084815236923108 -0.085514195129788 -0.086058754948353 -0.086448221755117 -0.086682099933039 -0.086760092330359 -0.086682099933039 -0.086448221755117 -0.086058754948353 -0.085514195129788 -0.084815236923108 -0.083962774706983 -0.082957903560703 -0.081801920394859 -0.080496325251777 -0.079042822757900 -0.077443323707339 -0.075699946753087 -0.073815020179552 -0.071791083727304 -0.069630890438125 -0.067337408485668 -0.064913822954342 -0.062363537526381 -0.059690176034373 -0.056897583834145 -0.053989828950465 -0.050971202945763 -0.047846221460112 -0.044619624368824 -0.041296375502480 -0.037881661872908 -0.034380892347733 -0.030799695715531 -0.027143918083489 -0.023419619549870 -0.019633070094368 -0.015790744630936 -0.011899317169670 -0.007965654037020 -0.003996806106979 -0.000000000000000 0.003996806106979 0.007965654037019 0.011899317169670 0.015790744630936 0.019633070094367 0.023419619549869 0.027143918083489 0.030799695715530 0.034380892347733 0.037881661872907 0.041296375502480 0.044619624368824 0.047846221460111 0.050971202945763 0.053989828950465 0.056897583834145 0.059690176034373 0.062363537526381 0.064913822954342 0.067337408485667 0.069630890438125 0.071791083727304 0.073815020179552 0.075699946753087 0.077443323707339 0.079042822757900 0.080496325251777 0.081801920394859 0.082957903560703 0.083962774706983 0.084815236923108 0.085514195129788 0.086058754948353 0.086448221755117 0.086682099933039 0.086760092330359 +0.097985126930297 0.097897713713398 0.097635577864585 0.097199030956472 0.096588592831737 0.095804992430207 0.094849168935858 0.093722273232841 0.092425669656467 0.090960938021795 0.089329875909261 0.087534501183578 0.085577054718539 0.083460003297232 0.081186042653573 0.078758100617570 0.076179340323308 0.073453163435050 0.070583213343340 0.067573378279458 0.064427794293193 0.061150848035412 0.057747179283760 0.054221683146588 0.050579511877373 0.046826076229211 0.042967046276585 0.039008351629575 0.034956180964168 0.030816980791151 0.026597453385564 0.022304553798785 0.017945485876072 0.013527697203937 0.009058872914156 0.004546928274428 -0.000000000000000 -0.004546928274428 -0.009058872914156 -0.013527697203936 -0.017945485876072 -0.022304553798786 -0.026597453385564 -0.030816980791150 -0.034956180964168 -0.039008351629575 -0.042967046276585 -0.046826076229212 -0.050579511877373 -0.054221683146588 -0.057747179283760 -0.061150848035411 -0.064427794293192 -0.067573378279460 -0.070583213343339 -0.073453163435050 -0.076179340323306 -0.078758100617570 -0.081186042653573 -0.083460003297233 -0.085577054718539 -0.087534501183578 -0.089329875909261 -0.090960938021795 -0.092425669656467 -0.093722273232841 -0.094849168935857 -0.095804992430207 -0.096588592831737 -0.097199030956472 -0.097635577864585 -0.097897713713398 -0.097985126930297 -0.097897713713398 -0.097635577864585 -0.097199030956472 -0.096588592831737 -0.095804992430207 -0.094849168935858 -0.093722273232841 -0.092425669656467 -0.090960938021795 -0.089329875909261 -0.087534501183578 -0.085577054718539 -0.083460003297233 -0.081186042653573 -0.078758100617570 -0.076179340323308 -0.073453163435051 -0.070583213343340 -0.067573378279459 -0.064427794293192 -0.061150848035411 -0.057747179283760 -0.054221683146590 -0.050579511877373 -0.046826076229212 -0.042967046276585 -0.039008351629574 -0.034956180964168 -0.030816980791151 -0.026597453385564 -0.022304553798786 -0.017945485876071 -0.013527697203936 -0.009058872914157 -0.004546928274429 -0.000000000000000 0.004546928274429 0.009058872914157 0.013527697203936 0.017945485876071 0.022304553798786 0.026597453385564 0.030816980791151 0.034956180964168 0.039008351629574 0.042967046276585 0.046826076229212 0.050579511877373 0.054221683146590 0.057747179283760 0.061150848035411 0.064427794293192 0.067573378279459 0.070583213343340 0.073453163435051 0.076179340323306 0.078758100617570 0.081186042653573 0.083460003297233 0.085577054718539 0.087534501183578 0.089329875909261 0.090960938021795 0.092425669656467 0.093722273232841 0.094849168935858 0.095804992430207 0.096588592831737 0.097199030956472 0.097635577864585 0.097897713713398 0.097985126930297 +0.109444623520808 0.109347751034209 0.109057240494227 0.108573412891845 0.107896803982175 0.107028165433752 0.105968466425760 0.104718895681260 0.103280863921100 0.101656006719455 0.099846187738499 0.097853502315754 0.095680281373930 0.093329095619048 0.090802759988547 0.088104338306904 0.085237148101968 0.082204765530815 0.079011030359451 0.075660050936155 0.072156209093656 0.068504164910796 0.064708861259785 0.060775528060700 0.056709686160607 0.052517150750552 0.048204034229905 0.043776748423965 0.039242006057858 0.034606821387037 0.029878509882995 0.025064686871478 0.020173265020208 0.015212450573635 0.010190738233900 0.005116904589852 -0.000000000000000 -0.005116904589852 -0.010190738233900 -0.015212450573635 -0.020173265020208 -0.025064686871480 -0.029878509882996 -0.034606821387037 -0.039242006057858 -0.043776748423965 -0.048204034229905 -0.052517150750553 -0.056709686160608 -0.060775528060700 -0.064708861259785 -0.068504164910796 -0.072156209093656 -0.075660050936155 -0.079011030359451 -0.082204765530815 -0.085237148101968 -0.088104338306904 -0.090802759988547 -0.093329095619048 -0.095680281373930 -0.097853502315755 -0.099846187738499 -0.101656006719455 -0.103280863921100 -0.104718895681260 -0.105968466425760 -0.107028165433752 -0.107896803982176 -0.108573412891845 -0.109057240494228 -0.109347751034210 -0.109444623520809 -0.109347751034210 -0.109057240494228 -0.108573412891845 -0.107896803982175 -0.107028165433752 -0.105968466425760 -0.104718895681260 -0.103280863921100 -0.101656006719455 -0.099846187738499 -0.097853502315755 -0.095680281373930 -0.093329095619048 -0.090802759988547 -0.088104338306902 -0.085237148101968 -0.082204765530815 -0.079011030359452 -0.075660050936155 -0.072156209093655 -0.068504164910796 -0.064708861259785 -0.060775528060701 -0.056709686160608 -0.052517150750553 -0.048204034229904 -0.043776748423965 -0.039242006057858 -0.034606821387037 -0.029878509882996 -0.025064686871479 -0.020173265020208 -0.015212450573635 -0.010190738233901 -0.005116904589853 -0.000000000000000 0.005116904589853 0.010190738233900 0.015212450573634 0.020173265020207 0.025064686871479 0.029878509882996 0.034606821387037 0.039242006057858 0.043776748423964 0.048204034229904 0.052517150750553 0.056709686160607 0.060775528060701 0.064708861259786 0.068504164910796 0.072156209093655 0.075660050936155 0.079011030359452 0.082204765530815 0.085237148101968 0.088104338306902 0.090802759988547 0.093329095619048 0.095680281373930 0.097853502315754 0.099846187738499 0.101656006719455 0.103280863921100 0.104718895681260 0.105968466425760 0.107028165433752 0.107896803982175 0.108573412891845 0.109057240494227 0.109347751034209 0.109444623520808 +0.121191176521699 0.121084773841070 0.120765674100720 0.120234202508060 0.119490902083111 0.118536535163888 0.117372085501632 0.115998760933586 0.114417996617069 0.112631458805117 0.110641049139642 0.108448909434243 0.106057426914305 0.103469239877629 0.100687243734104 0.097714597378065 0.094554729841812 0.091211347173529 0.087688439477258 0.083990288046956 0.080121472520781 0.076086877975876 0.071891701877790 0.067541460792749 0.063041996764921 0.058399483254936 0.053620430530296 0.048711690392839 0.043680460123524 0.038534285520260 0.033281062900717 0.027929039939000 0.022486815202948 0.016963336257751 0.011367896201788 0.005710128502094 -0.000000000000000 -0.005710128502093 -0.011367896201788 -0.016963336257751 -0.022486815202948 -0.027929039939000 -0.033281062900718 -0.038534285520260 -0.043680460123524 -0.048711690392838 -0.053620430530297 -0.058399483254938 -0.063041996764922 -0.067541460792749 -0.071891701877790 -0.076086877975876 -0.080121472520781 -0.083990288046956 -0.087688439477258 -0.091211347173529 -0.094554729841812 -0.097714597378065 -0.100687243734105 -0.103469239877629 -0.106057426914305 -0.108448909434242 -0.110641049139642 -0.112631458805117 -0.114417996617069 -0.115998760933586 -0.117372085501632 -0.118536535163888 -0.119490902083111 -0.120234202508060 -0.120765674100720 -0.121084773841070 -0.121191176521699 -0.121084773841070 -0.120765674100720 -0.120234202508060 -0.119490902083111 -0.118536535163888 -0.117372085501632 -0.115998760933586 -0.114417996617069 -0.112631458805117 -0.110641049139643 -0.108448909434243 -0.106057426914305 -0.103469239877629 -0.100687243734104 -0.097714597378065 -0.094554729841812 -0.091211347173529 -0.087688439477258 -0.083990288046956 -0.080121472520781 -0.076086877975876 -0.071891701877789 -0.067541460792750 -0.063041996764922 -0.058399483254938 -0.053620430530296 -0.048711690392838 -0.043680460123524 -0.038534285520261 -0.033281062900718 -0.027929039939000 -0.022486815202948 -0.016963336257751 -0.011367896201789 -0.005710128502094 -0.000000000000000 0.005710128502094 0.011367896201789 0.016963336257750 0.022486815202947 0.027929039939000 0.033281062900718 0.038534285520260 0.043680460123524 0.048711690392838 0.053620430530296 0.058399483254938 0.063041996764922 0.067541460792750 0.071891701877790 0.076086877975876 0.080121472520781 0.083990288046956 0.087688439477258 0.091211347173529 0.094554729841811 0.097714597378065 0.100687243734104 0.103469239877629 0.106057426914305 0.108448909434243 0.110641049139642 0.112631458805117 0.114417996617069 0.115998760933586 0.117372085501632 0.118536535163888 0.119490902083111 0.120234202508060 0.120765674100720 0.121084773841070 0.121191176521699 +0.133282302701113 0.133166265820559 0.132818263029453 0.132238618259680 0.131427872663408 0.130386786505579 0.129116341801222 0.127617745685289 0.125892434498904 0.123942078572060 0.121768587678586 0.119374117134956 0.116761074509769 0.113932126905873 0.110890208771920 0.107638530194444 0.104180585615802 0.100520162917028 0.096661352797989 0.092608558380464 0.088366504952467 0.083940249764582 0.079335191781511 0.074557081283939 0.069612029207914 0.064506516100851 0.059247400565229 0.053841927053332 0.048297732868787 0.042622854223661 0.036825731193414 0.030915211406381 0.024900552299765 0.018791421770670 0.012597897048599 0.006330461615401 -0.000000000000000 -0.006330461615401 -0.012597897048599 -0.018791421770669 -0.024900552299765 -0.030915211406381 -0.036825731193415 -0.042622854223661 -0.048297732868787 -0.053841927053332 -0.059247400565229 -0.064506516100852 -0.069612029207916 -0.074557081283938 -0.079335191781511 -0.083940249764582 -0.088366504952467 -0.092608558380466 -0.096661352797989 -0.100520162917028 -0.104180585615802 -0.107638530194443 -0.110890208771921 -0.113932126905873 -0.116761074509769 -0.119374117134956 -0.121768587678585 -0.123942078572060 -0.125892434498905 -0.127617745685289 -0.129116341801222 -0.130386786505579 -0.131427872663408 -0.132238618259680 -0.132818263029453 -0.133166265820559 -0.133282302701113 -0.133166265820559 -0.132818263029453 -0.132238618259680 -0.131427872663408 -0.130386786505579 -0.129116341801223 -0.127617745685289 -0.125892434498905 -0.123942078572058 -0.121768587678586 -0.119374117134956 -0.116761074509769 -0.113932126905873 -0.110890208771921 -0.107638530194443 -0.104180585615802 -0.100520162917028 -0.096661352797989 -0.092608558380466 -0.088366504952467 -0.083940249764582 -0.079335191781510 -0.074557081283939 -0.069612029207914 -0.064506516100851 -0.059247400565229 -0.053841927053332 -0.048297732868788 -0.042622854223661 -0.036825731193415 -0.030915211406381 -0.024900552299765 -0.018791421770669 -0.012597897048600 -0.006330461615402 -0.000000000000000 0.006330461615402 0.012597897048600 0.018791421770669 0.024900552299764 0.030915211406381 0.036825731193415 0.042622854223661 0.048297732868788 0.053841927053332 0.059247400565228 0.064506516100851 0.069612029207914 0.074557081283939 0.079335191781512 0.083940249764582 0.088366504952467 0.092608558380466 0.096661352797989 0.100520162917028 0.104180585615802 0.107638530194443 0.110890208771921 0.113932126905873 0.116761074509769 0.119374117134956 0.121768587678585 0.123942078572058 0.125892434498905 0.127617745685289 0.129116341801223 0.130386786505579 0.131427872663408 0.132238618259680 0.132818263029453 0.133166265820559 0.133282302701113 +0.145781661133956 0.145655851989523 0.145278529992524 0.144650011914963 0.143770827252273 0.142641720530844 0.141263654527201 0.139637814387326 0.137765612630887 0.135648695021429 0.133288947279354 0.130688502610146 0.127849750015449 0.124775343349422 0.121468211077110 0.117931566685490 0.114168919691168 0.110184087181620 0.105981205819194 0.101564744228878 0.096939515682175 0.092110690980181 0.087083811429403 0.081864801793685 0.076459983095285 0.070876085127504 0.065120258530448 0.059200086270717 0.053123594355159 0.046899261598447 0.040536028254378 0.034043303311690 0.027430970247007 0.020709391020615 0.013889408095361 0.006982344255391 -0.000000000000000 -0.006982344255390 -0.013889408095361 -0.020709391020615 -0.027430970247007 -0.034043303311691 -0.040536028254379 -0.046899261598447 -0.053123594355158 -0.059200086270717 -0.065120258530449 -0.070876085127506 -0.076459983095288 -0.081864801793685 -0.087083811429403 -0.092110690980180 -0.096939515682176 -0.101564744228880 -0.105981205819194 -0.110184087181620 -0.114168919691168 -0.117931566685490 -0.121468211077113 -0.124775343349423 -0.127849750015449 -0.130688502610147 -0.133288947279354 -0.135648695021430 -0.137765612630888 -0.139637814387327 -0.141263654527202 -0.142641720530844 -0.143770827252274 -0.144650011914963 -0.145278529992525 -0.145655851989524 -0.145781661133956 -0.145655851989524 -0.145278529992525 -0.144650011914963 -0.143770827252274 -0.142641720530844 -0.141263654527202 -0.139637814387327 -0.137765612630888 -0.135648695021430 -0.133288947279354 -0.130688502610147 -0.127849750015449 -0.124775343349423 -0.121468211077111 -0.117931566685490 -0.114168919691169 -0.110184087181621 -0.105981205819194 -0.101564744228880 -0.096939515682175 -0.092110690980180 -0.087083811429403 -0.081864801793686 -0.076459983095287 -0.070876085127506 -0.065120258530448 -0.059200086270716 -0.053123594355159 -0.046899261598447 -0.040536028254379 -0.034043303311690 -0.027430970247007 -0.020709391020614 -0.013889408095362 -0.006982344255391 -0.000000000000000 0.006982344255391 0.013889408095362 0.020709391020614 0.027430970247007 0.034043303311690 0.040536028254379 0.046899261598447 0.053123594355159 0.059200086270716 0.065120258530448 0.070876085127505 0.076459983095286 0.081864801793685 0.087083811429403 0.092110690980179 0.096939515682174 0.101564744228879 0.105981205819194 0.110184087181620 0.114168919691167 0.117931566685490 0.121468211077110 0.124775343349422 0.127849750015449 0.130688502610146 0.133288947279354 0.135648695021429 0.137765612630887 0.139637814387327 0.141263654527201 0.142641720530844 0.143770827252273 0.144650011914963 0.145278529992524 0.145655851989523 0.145781661133956 +0.158760518065183 0.158624763194334 0.158217599470556 0.157539330110865 0.156590462311332 0.155371709993872 0.153883997642089 0.152128465216206 0.150106474133927 0.147819614300487 0.145269712167318 0.142458839794387 0.139389324886512 0.136063761768650 0.132485023259185 0.128656273393767 0.124580980944921 0.120262933674819 0.115706253249774 0.110915410735673 0.105895242583229 0.100650967001013 0.095188200602431 0.089512975200361 0.083631754610113 0.077551451307691 0.071279442776252 0.064823587359241 0.058192239424135 0.051394263626197 0.044439048047465 0.037336515972494 0.030097136049567 0.022731930574471 0.015252481623868 0.007670934757153 -0.000000000000000 -0.007670934757153 -0.015252481623868 -0.022731930574471 -0.030097136049566 -0.037336515972495 -0.044439048047466 -0.051394263626196 -0.058192239424135 -0.064823587359240 -0.071279442776252 -0.077551451307692 -0.083631754610114 -0.089512975200361 -0.095188200602431 -0.100650967001013 -0.105895242583229 -0.110915410735674 -0.115706253249773 -0.120262933674818 -0.124580980944921 -0.128656273393767 -0.132485023259185 -0.136063761768650 -0.139389324886512 -0.142458839794386 -0.145269712167318 -0.147819614300486 -0.150106474133927 -0.152128465216206 -0.153883997642090 -0.155371709993872 -0.156590462311332 -0.157539330110865 -0.158217599470556 -0.158624763194334 -0.158760518065183 -0.158624763194334 -0.158217599470556 -0.157539330110865 -0.156590462311332 -0.155371709993872 -0.153883997642090 -0.152128465216206 -0.150106474133927 -0.147819614300486 -0.145269712167318 -0.142458839794387 -0.139389324886513 -0.136063761768650 -0.132485023259185 -0.128656273393766 -0.124580980944921 -0.120262933674819 -0.115706253249774 -0.110915410735674 -0.105895242583228 -0.100650967001013 -0.095188200602431 -0.089512975200361 -0.083631754610114 -0.077551451307691 -0.071279442776252 -0.064823587359240 -0.058192239424136 -0.051394263626197 -0.044439048047466 -0.037336515972495 -0.030097136049566 -0.022731930574470 -0.015252481623869 -0.007670934757154 -0.000000000000000 0.007670934757153 0.015252481623868 0.022731930574470 0.030097136049566 0.037336515972495 0.044439048047466 0.051394263626197 0.058192239424136 0.064823587359240 0.071279442776252 0.077551451307691 0.083631754610114 0.089512975200361 0.095188200602431 0.100650967001013 0.105895242583228 0.110915410735673 0.115706253249774 0.120262933674819 0.124580980944920 0.128656273393766 0.132485023259185 0.136063761768650 0.139389324886513 0.142458839794387 0.145269712167318 0.147819614300486 0.150106474133927 0.152128465216206 0.153883997642090 0.155371709993872 0.156590462311332 0.157539330110865 0.158217599470556 0.158624763194334 0.158760518065183 +0.172299532315647 0.172153621160281 0.171715981685741 0.170986896508815 0.169966838796885 0.168656475473598 0.167056671699815 0.165168496622492 0.162993230381557 0.160532372361952 0.157787650674570 0.154761032845907 0.151454737691797 0.147871248345339 0.144013326403195 0.139884027147727 0.135486715794688 0.130825084707643 0.125903171510648 0.120725378020026 0.115296489904350 0.109621696968863 0.103706613946636 0.097557301663642 0.091180288428945 0.084582591484013 0.077771738327349 0.070755787711858 0.063543350093209 0.056143607287803 0.048566331079344 0.040821900493503 0.032921317441343 0.024876220414259 0.016698895896807 0.008402287149277 -0.000000000000000 -0.008402287149277 -0.016698895896806 -0.024876220414258 -0.032921317441342 -0.040821900493504 -0.048566331079345 -0.056143607287803 -0.063543350093209 -0.070755787711858 -0.077771738327349 -0.084582591484014 -0.091180288428946 -0.097557301663643 -0.103706613946635 -0.109621696968863 -0.115296489904350 -0.120725378020027 -0.125903171510648 -0.130825084707643 -0.135486715794688 -0.139884027147727 -0.144013326403196 -0.147871248345340 -0.151454737691797 -0.154761032845907 -0.157787650674570 -0.160532372361952 -0.162993230381557 -0.165168496622493 -0.167056671699815 -0.168656475473598 -0.169966838796886 -0.170986896508816 -0.171715981685741 -0.172153621160281 -0.172299532315648 -0.172153621160281 -0.171715981685741 -0.170986896508816 -0.169966838796886 -0.168656475473598 -0.167056671699817 -0.165168496622493 -0.162993230381557 -0.160532372361952 -0.157787650674571 -0.154761032845907 -0.151454737691798 -0.147871248345339 -0.144013326403196 -0.139884027147727 -0.135486715794688 -0.130825084707643 -0.125903171510649 -0.120725378020027 -0.115296489904350 -0.109621696968863 -0.103706613946635 -0.097557301663643 -0.091180288428946 -0.084582591484013 -0.077771738327349 -0.070755787711857 -0.063543350093210 -0.056143607287804 -0.048566331079345 -0.040821900493504 -0.032921317441342 -0.024876220414258 -0.016698895896807 -0.008402287149278 -0.000000000000000 0.008402287149278 0.016698895896807 0.024876220414257 0.032921317441342 0.040821900493504 0.048566331079345 0.056143607287803 0.063543350093210 0.070755787711857 0.077771738327349 0.084582591484013 0.091180288428945 0.097557301663642 0.103706613946636 0.109621696968862 0.115296489904349 0.120725378020027 0.125903171510649 0.130825084707643 0.135486715794687 0.139884027147726 0.144013326403195 0.147871248345339 0.151454737691797 0.154761032845907 0.157787650674570 0.160532372361952 0.162993230381557 0.165168496622492 0.167056671699817 0.168656475473598 0.169966838796885 0.170986896508815 0.171715981685741 0.172153621160281 0.172299532315647 +0.186490961365777 0.186334644235060 0.185865777315654 0.185084614761835 0.183991582617161 0.182587282492596 0.180872496712777 0.178848194926744 0.176515542178111 0.173875908427413 0.170930879516936 0.167682269565136 0.164132134773812 0.160282788626497 0.156136818450854 0.151697103311176 0.146966833189261 0.141949529402924 0.136649066201051 0.131069693462427 0.125216060412327 0.119093240256259 0.112706755614014 0.106062604619347 0.099167287531353 0.092027833682700 0.084651828567630 0.077047440849025 0.069223449039069 0.061189267582349 0.052954972043870 0.044531323077790 0.035929788826095 0.027162565370397 0.018242594835215 0.009183580717927 -0.000000000000000 -0.009183580717926 -0.018242594835215 -0.027162565370397 -0.035929788826095 -0.044531323077791 -0.052954972043871 -0.061189267582349 -0.069223449039069 -0.077047440849024 -0.084651828567629 -0.092027833682701 -0.099167287531354 -0.106062604619347 -0.112706755614013 -0.119093240256259 -0.125216060412327 -0.131069693462428 -0.136649066201050 -0.141949529402923 -0.146966833189261 -0.151697103311176 -0.156136818450854 -0.160282788626498 -0.164132134773812 -0.167682269565136 -0.170930879516936 -0.173875908427412 -0.176515542178112 -0.178848194926744 -0.180872496712777 -0.182587282492595 -0.183991582617160 -0.185084614761835 -0.185865777315654 -0.186334644235060 -0.186490961365777 -0.186334644235060 -0.185865777315654 -0.185084614761835 -0.183991582617160 -0.182587282492596 -0.180872496712777 -0.178848194926744 -0.176515542178112 -0.173875908427412 -0.170930879516937 -0.167682269565136 -0.164132134773812 -0.160282788626497 -0.156136818450854 -0.151697103311176 -0.146966833189261 -0.141949529402924 -0.136649066201052 -0.131069693462428 -0.125216060412327 -0.119093240256259 -0.112706755614013 -0.106062604619348 -0.099167287531354 -0.092027833682700 -0.084651828567629 -0.077047440849024 -0.069223449039070 -0.061189267582350 -0.052954972043871 -0.044531323077791 -0.035929788826094 -0.027162565370396 -0.018242594835216 -0.009183580717928 -0.000000000000000 0.009183580717927 0.018242594835216 0.027162565370396 0.035929788826094 0.044531323077790 0.052954972043871 0.061189267582349 0.069223449039069 0.077047440849024 0.084651828567629 0.092027833682700 0.099167287531354 0.106062604619348 0.112706755614014 0.119093240256259 0.125216060412327 0.131069693462428 0.136649066201051 0.141949529402924 0.146966833189261 0.151697103311176 0.156136818450854 0.160282788626497 0.164132134773812 0.167682269565136 0.170930879516936 0.173875908427412 0.176515542178112 0.178848194926744 0.180872496712777 0.182587282492596 0.183991582617160 0.185084614761835 0.185865777315654 0.186334644235060 0.186490961365777 +0.201441422676833 0.201274408404491 0.200773437580415 0.199938727014362 0.198770640825904 0.197269694600537 0.195436561210221 0.193272078299987 0.190777257441937 0.187953294957328 0.184801584406100 0.181323730741173 0.177521566121943 0.173397167377540 0.168952875105440 0.164191314384811 0.159115417076399 0.153728445671664 0.148034018643214 0.142036137236075 0.135739213625032 0.129148100346987 0.122268120898852 0.115105101371032 0.107665402963809 0.099955955209053 0.091984289692630 0.083561068047128 0.074715666177919 0.065764977202126 0.056707339119345 0.047540895912036 0.038263612887115 0.028873291988436 0.019367587305150 0.009744021012878 -0.000000000000000 -0.009744021012877 -0.019367587305150 -0.028873291988436 -0.038263612887114 -0.047540895912038 -0.056707339119349 -0.065764977202127 -0.074715666177920 -0.083561068047128 -0.091984289692631 -0.099955955209055 -0.107665402963811 -0.115105101371031 -0.122268120898851 -0.129148100346986 -0.135739213625031 -0.142036137236076 -0.148034018643213 -0.153728445671664 -0.159115417076399 -0.164191314384811 -0.168952875105441 -0.173397167377540 -0.177521566121943 -0.181323730741172 -0.184801584406100 -0.187953294957328 -0.190777257441937 -0.193272078299988 -0.195436561210220 -0.197269694600537 -0.198770640825904 -0.199938727014362 -0.200773437580415 -0.201274408404491 -0.201441422676833 -0.201274408404491 -0.200773437580415 -0.199938727014362 -0.198770640825904 -0.197269694600538 -0.195436561210221 -0.193272078299987 -0.190777257441937 -0.187953294957328 -0.184801584406100 -0.181323730741173 -0.177521566121943 -0.173397167377540 -0.168952875105441 -0.164191314384811 -0.159115417076399 -0.153728445671664 -0.148034018643214 -0.142036137236075 -0.135739213625031 -0.129148100346986 -0.122268120898851 -0.115105101371033 -0.107665402963810 -0.099955955209054 -0.091984289692630 -0.083561068047127 -0.074715666177921 -0.065764977202129 -0.056707339119348 -0.047540895912038 -0.038263612887113 -0.028873291988435 -0.019367587305151 -0.009744021012879 -0.000000000000000 0.009744021012879 0.019367587305151 0.028873291988435 0.038263612887113 0.047540895912037 0.056707339119347 0.065764977202127 0.074715666177920 0.083561068047127 0.091984289692630 0.099955955209054 0.107665402963810 0.115105101371033 0.122268120898852 0.129148100346986 0.135739213625031 0.142036137236075 0.148034018643214 0.153728445671664 0.159115417076398 0.164191314384811 0.168952875105441 0.173397167377540 0.177521566121943 0.181323730741173 0.184801584406100 0.187953294957328 0.190777257441937 0.193272078299987 0.195436561210221 0.197269694600538 0.198770640825904 0.199938727014362 0.200773437580415 0.201274408404491 0.201441422676833 +0.217275393699118 0.217097347063929 0.216563263288285 0.215673311686379 0.214427777531156 0.212827066682776 0.210871712077225 0.208562382083333 0.205899890738156 0.202885209871724 0.199519483132588 0.195804041925233 0.191740423269030 0.187330389585928 0.182575950420378 0.177479386089746 0.172043273256691 0.166270512406443 0.160164357201246 0.153728445671662 0.146966833189262 0.139884027147729 0.132485023259187 0.124628863549584 0.115697050095346 0.106665114891405 0.097531240575698 0.088293326740937 0.078949003922894 0.069495646423108 0.059930384168892 0.050250113811724 0.040451509266131 0.030531031895369 0.020484940557618 0.010309301737191 -0.000000000000000 -0.010309301737190 -0.020484940557618 -0.030531031895369 -0.040451509266130 -0.050250113811726 -0.059930384168894 -0.069495646423107 -0.078949003922894 -0.088293326740937 -0.097531240575699 -0.106665114891408 -0.115697050095349 -0.124628863549585 -0.132485023259188 -0.139884027147729 -0.146966833189262 -0.153728445671663 -0.160164357201246 -0.166270512406443 -0.172043273256691 -0.177479386089746 -0.182575950420379 -0.187330389585929 -0.191740423269029 -0.195804041925233 -0.199519483132588 -0.202885209871724 -0.205899890738157 -0.208562382083333 -0.210871712077225 -0.212827066682776 -0.214427777531156 -0.215673311686379 -0.216563263288285 -0.217097347063928 -0.217275393699118 -0.217097347063929 -0.216563263288285 -0.215673311686379 -0.214427777531155 -0.212827066682776 -0.210871712077226 -0.208562382083333 -0.205899890738157 -0.202885209871723 -0.199519483132588 -0.195804041925233 -0.191740423269030 -0.187330389585929 -0.182575950420378 -0.177479386089745 -0.172043273256692 -0.166270512406444 -0.160164357201246 -0.153728445671663 -0.146966833189261 -0.139884027147729 -0.132485023259187 -0.124628863549586 -0.115697050095348 -0.106665114891407 -0.097531240575698 -0.088293326740936 -0.078949003922895 -0.069495646423109 -0.059930384168893 -0.050250113811726 -0.040451509266130 -0.030531031895368 -0.020484940557620 -0.010309301737192 -0.000000000000000 0.010309301737192 0.020484940557619 0.030531031895368 0.040451509266130 0.050250113811725 0.059930384168893 0.069495646423109 0.078949003922895 0.088293326740936 0.097531240575697 0.106665114891406 0.115697050095347 0.124628863549585 0.132485023259188 0.139884027147728 0.146966833189261 0.153728445671662 0.160164357201246 0.166270512406443 0.172043273256691 0.177479386089745 0.182575950420378 0.187330389585929 0.191740423269030 0.195804041925233 0.199519483132588 0.202885209871723 0.205899890738157 0.208562382083333 0.210871712077226 0.212827066682776 0.214427777531155 0.215673311686379 0.216563263288285 0.217097347063929 0.217275393699118 +0.234139704333502 0.233950243371869 0.233381896845301 0.232434774842247 0.231109064224219 0.229405033705648 0.227323040982991 0.224863541929812 0.222027101878612 0.218814409013698 0.215226289902026 0.211263727190890 0.206927879502064 0.202220103551662 0.197141978523097 0.191695332717134 0.185882272497663 0.179705213544637 0.173166914415758 0.166270512406442 0.159019561682496 0.150082966579725 0.140832600589548 0.131488791957656 0.122049126207312 0.112510861592880 0.102870941600811 0.093126005555073 0.083272397532526 0.073306173780988 0.063223108823265 0.053018700423974 0.042688173592785 0.032226483797777 0.021628319566161 0.010888104656776 -0.000000000000000 -0.010888104656776 -0.021628319566161 -0.032226483797776 -0.042688173592785 -0.053018700423976 -0.063223108823267 -0.073306173780987 -0.083272397532525 -0.093126005555072 -0.102870941600810 -0.112510861592882 -0.122049126207314 -0.131488791957655 -0.140832600589545 -0.150082966579724 -0.159019561682495 -0.166270512406443 -0.173166914415758 -0.179705213544637 -0.185882272497662 -0.191695332717133 -0.197141978523099 -0.202220103551663 -0.206927879502064 -0.211263727190889 -0.215226289902025 -0.218814409013697 -0.222027101878612 -0.224863541929812 -0.227323040982991 -0.229405033705648 -0.231109064224219 -0.232434774842247 -0.233381896845301 -0.233950243371869 -0.234139704333502 -0.233950243371869 -0.233381896845301 -0.232434774842247 -0.231109064224219 -0.229405033705648 -0.227323040982992 -0.224863541929812 -0.222027101878612 -0.218814409013697 -0.215226289902027 -0.211263727190890 -0.206927879502065 -0.202220103551662 -0.197141978523097 -0.191695332717131 -0.185882272497663 -0.179705213544638 -0.173166914415759 -0.166270512406442 -0.159019561682495 -0.150082966579723 -0.140832600589544 -0.131488791957657 -0.122049126207313 -0.112510861592881 -0.102870941600810 -0.093126005555072 -0.083272397532527 -0.073306173780989 -0.063223108823266 -0.053018700423975 -0.042688173592784 -0.032226483797775 -0.021628319566163 -0.010888104656777 -0.000000000000000 0.010888104656777 0.021628319566162 0.032226483797775 0.042688173592783 0.053018700423975 0.063223108823266 0.073306173780989 0.083272397532527 0.093126005555072 0.102870941600810 0.112510861592881 0.122049126207313 0.131488791957657 0.140832600589549 0.150082966579723 0.159019561682494 0.166270512406442 0.173166914415759 0.179705213544638 0.185882272497661 0.191695332717131 0.197141978523097 0.202220103551662 0.206927879502065 0.211263727190890 0.215226289902025 0.218814409013697 0.222027101878612 0.224863541929812 0.227323040982992 0.229405033705648 0.231109064224219 0.232434774842247 0.233381896845301 0.233950243371869 0.234139704333502 +0.252209378220724 0.252008071663514 0.251404164015207 0.250397692439556 0.248988722526073 0.247177353778928 0.244963727329096 0.242348035897053 0.239330536040238 0.235911562726026 0.232091546276668 0.227871031737506 0.223250700723504 0.218231395801661 0.212814147467827 0.207000203775702 0.200791062673028 0.194188507094974 0.187028119780219 0.177491839373094 0.167876513085657 0.158179404428615 0.148397410014278 0.138527073641113 0.128564597528348 0.118505850951815 0.108346376502009 0.098081394159458 0.087705803360260 0.077214183205733 0.066600790954613 0.055859558923721 0.044984089913448 0.033967651268036 0.022803167677224 0.011483212825663 -0.000000000000000 -0.011483212825662 -0.022803167677224 -0.033967651268035 -0.044984089913447 -0.055859558923724 -0.066600790954616 -0.077214183205732 -0.087705803360261 -0.098081394159457 -0.108346376502008 -0.118505850951817 -0.128564597528349 -0.138527073641112 -0.148397410014278 -0.158179404428615 -0.167876513085656 -0.177491839373096 -0.187028119780219 -0.194188507094974 -0.200791062673028 -0.207000203775701 -0.212814147467828 -0.218231395801662 -0.223250700723503 -0.227871031737505 -0.232091546276668 -0.235911562726026 -0.239330536040238 -0.242348035897054 -0.244963727329096 -0.247177353778928 -0.248988722526073 -0.250397692439556 -0.251404164015207 -0.252008071663514 -0.252209378220724 -0.252008071663514 -0.251404164015207 -0.250397692439556 -0.248988722526073 -0.247177353778928 -0.244963727329096 -0.242348035897053 -0.239330536040238 -0.235911562726026 -0.232091546276669 -0.227871031737506 -0.223250700723504 -0.218231395801661 -0.212814147467827 -0.207000203775701 -0.200791062673028 -0.194188507094975 -0.187028119780220 -0.177491839373095 -0.167876513085656 -0.158179404428612 -0.148397410014277 -0.138527073641113 -0.128564597528349 -0.118505850951816 -0.108346376502006 -0.098081394159456 -0.087705803360262 -0.077214183205734 -0.066600790954615 -0.055859558923722 -0.044984089913447 -0.033967651268035 -0.022803167677225 -0.011483212825664 -0.000000000000000 0.011483212825663 0.022803167677225 0.033967651268035 0.044984089913447 0.055859558923722 0.066600790954614 0.077214183205733 0.087705803360261 0.098081394159456 0.108346376502005 0.118505850951815 0.128564597528348 0.138527073641113 0.148397410014279 0.158179404428613 0.167876513085656 0.177491839373094 0.187028119780220 0.194188507094975 0.200791062673027 0.207000203775701 0.212814147467827 0.218231395801661 0.223250700723504 0.227871031737506 0.232091546276668 0.235911562726026 0.239330536040238 0.242348035897053 0.244963727329096 0.247177353778928 0.248988722526073 0.250397692439556 0.251404164015207 0.252008071663514 0.252209378220724 +0.271695331400608 0.271481696642899 0.270840774675649 0.269772513575743 0.268276830674576 0.266353618383209 0.264002752387906 0.261224102255914 0.258017544502120 0.254382978177368 0.250320343048778 0.245829640451102 0.240910956895823 0.235564490531066 0.229790580550421 0.223589739651828 0.216962689648820 0.207138690584081 0.197085883448304 0.186969239305191 0.176784738894511 0.166528013229312 0.156194352855050 0.145778713925483 0.135275721341255 0.124679669156045 0.113984518418967 0.103183892589876 0.092271070635656 0.081238977890017 0.070080174736573 0.058786843154538 0.047350771147952 0.035763335063078 0.024015479784091 0.012097696784368 -0.000000000000000 -0.012097696784368 -0.024015479784091 -0.035763335063078 -0.047350771147951 -0.058786843154540 -0.070080174736575 -0.081238977890016 -0.092271070635656 -0.103183892589875 -0.113984518418967 -0.124679669156047 -0.135275721341258 -0.145778713925482 -0.156194352855050 -0.166528013229312 -0.176784738894510 -0.186969239305193 -0.197085883448304 -0.207138690584082 -0.216962689648820 -0.223589739651829 -0.229790580550422 -0.235564490531067 -0.240910956895823 -0.245829640451103 -0.250320343048778 -0.254382978177368 -0.258017544502121 -0.261224102255916 -0.264002752387907 -0.266353618383210 -0.268276830674577 -0.269772513575744 -0.270840774675650 -0.271481696642900 -0.271695331400609 -0.271481696642900 -0.270840774675650 -0.269772513575744 -0.268276830674576 -0.266353618383211 -0.264002752387907 -0.261224102255916 -0.258017544502121 -0.254382978177368 -0.250320343048778 -0.245829640451104 -0.240910956895824 -0.235564490531066 -0.229790580550422 -0.223589739651828 -0.216962689648821 -0.207138690584082 -0.197085883448306 -0.186969239305193 -0.176784738894509 -0.166528013229311 -0.156194352855049 -0.145778713925485 -0.135275721341256 -0.124679669156046 -0.113984518418966 -0.103183892589874 -0.092271070635658 -0.081238977890017 -0.070080174736573 -0.058786843154539 -0.047350771147951 -0.035763335063077 -0.024015479784093 -0.012097696784369 -0.000000000000000 0.012097696784369 0.024015479784092 0.035763335063077 0.047350771147950 0.058786843154539 0.070080174736573 0.081238977890017 0.092271070635657 0.103183892589874 0.113984518418965 0.124679669156046 0.135275721341256 0.145778713925484 0.156194352855050 0.166528013229310 0.176784738894508 0.186969239305193 0.197085883448305 0.207138690584081 0.216962689648819 0.223589739651828 0.229790580550421 0.235564490531066 0.240910956895823 0.245829640451103 0.250320343048777 0.254382978177368 0.258017544502120 0.261224102255915 0.264002752387906 0.266353618383210 0.268276830674576 0.269772513575743 0.270840774675649 0.271481696642899 0.271695331400608 +0.292854666634113 0.292628168948181 0.291948622067322 0.290815865723581 0.289229636815635 0.287189575454334 0.284695233481561 0.281746085517205 0.278341542604198 0.274480968536309 0.270163698967691 0.265389063416632 0.260156410288756 0.254465135056456 0.248314711741668 0.239431713163556 0.228834485077756 0.218199785287689 0.207522232518429 0.196796146505099 0.186015552482970 0.175174182252373 0.164265472075517 0.153282557607229 0.142218266013185 0.131065105385427 0.119815251525404 0.108460532128177 0.096992408367493 0.085401953848919 0.073679830867221 0.061816263873451 0.049801010026883 0.037623326676037 0.025271935581565 0.012734983660869 -0.000000000000000 -0.012734983660869 -0.025271935581565 -0.037623326676037 -0.049801010026882 -0.061816263873453 -0.073679830867222 -0.085401953848917 -0.096992408367492 -0.108460532128177 -0.119815251525404 -0.131065105385429 -0.142218266013187 -0.153282557607229 -0.164265472075516 -0.175174182252372 -0.186015552482969 -0.196796146505100 -0.207522232518428 -0.218199785287689 -0.228834485077755 -0.239431713163556 -0.248314711741669 -0.254465135056456 -0.260156410288755 -0.265389063416632 -0.270163698967691 -0.274480968536309 -0.278341542604199 -0.281746085517206 -0.284695233481560 -0.287189575454334 -0.289229636815635 -0.290815865723581 -0.291948622067322 -0.292628168948181 -0.292854666634113 -0.292628168948181 -0.291948622067321 -0.290815865723581 -0.289229636815635 -0.287189575454335 -0.284695233481561 -0.281746085517205 -0.278341542604198 -0.274480968536309 -0.270163698967691 -0.265389063416633 -0.260156410288756 -0.254465135056456 -0.248314711741669 -0.239431713163555 -0.228834485077757 -0.218199785287689 -0.207522232518429 -0.196796146505100 -0.186015552482968 -0.175174182252371 -0.164265472075516 -0.153282557607230 -0.142218266013186 -0.131065105385427 -0.119815251525403 -0.108460532128176 -0.096992408367493 -0.085401953848921 -0.073679830867222 -0.061816263873453 -0.049801010026882 -0.037623326676035 -0.025271935581567 -0.012734983660871 -0.000000000000000 0.012734983660870 0.025271935581566 0.037623326676035 0.049801010026881 0.061816263873452 0.073679830867222 0.085401953848920 0.096992408367493 0.108460532128176 0.119815251525403 0.131065105385427 0.142218266013186 0.153282557607230 0.164265472075518 0.175174182252371 0.186015552482968 0.196796146505100 0.207522232518429 0.218199785287689 0.228834485077755 0.239431713163555 0.248314711741669 0.254465135056456 0.260156410288756 0.265389063416633 0.270163698967690 0.274480968536309 0.278341542604198 0.281746085517205 0.284695233481561 0.287189575454335 0.289229636815635 0.290815865723581 0.291948622067321 0.292628168948181 0.292854666634113 +0.316004655530415 0.315764709752309 0.315044774754793 0.313844558755587 0.312163579485614 0.310001170277093 0.307356488658834 0.304228527530636 0.300616129008983 0.296518001056458 0.291932737027200 0.286858838280290 0.281294740031965 0.274949527807031 0.263653500500432 0.252358289204751 0.241056335631384 0.229739918151155 0.218401144183115 0.207031939819967 0.195624036869493 0.184168957434304 0.172657996101999 0.161082199771993 0.149432345103590 0.137698913530269 0.125872063747261 0.113941601542112 0.101896946800373 0.089727097479768 0.077420590305730 0.064965457897878 0.052349181990227 0.039558642356542 0.026580060995575 0.013398941067290 -0.000000000000000 -0.013398941067290 -0.026580060995574 -0.039558642356542 -0.052349181990227 -0.064965457897881 -0.077420590305732 -0.089727097479767 -0.101896946800372 -0.113941601542111 -0.125872063747260 -0.137698913530271 -0.149432345103591 -0.161082199771993 -0.172657996101999 -0.184168957434303 -0.195624036869492 -0.207031939819968 -0.218401144183115 -0.229739918151155 -0.241056335631384 -0.252358289204751 -0.263653500500434 -0.274949527807031 -0.281294740031963 -0.286858838280290 -0.291932737027200 -0.296518001056458 -0.300616129008984 -0.304228527530638 -0.307356488658834 -0.310001170277092 -0.312163579485614 -0.313844558755587 -0.315044774754793 -0.315764709752309 -0.316004655530415 -0.315764709752309 -0.315044774754793 -0.313844558755586 -0.312163579485614 -0.310001170277093 -0.307356488658834 -0.304228527530637 -0.300616129008983 -0.296518001056458 -0.291932737027200 -0.286858838280291 -0.281294740031965 -0.274949527807031 -0.263653500500433 -0.252358289204750 -0.241056335631384 -0.229739918151156 -0.218401144183116 -0.207031939819967 -0.195624036869492 -0.184168957434303 -0.172657996101998 -0.161082199771994 -0.149432345103591 -0.137698913530270 -0.125872063747259 -0.113941601542110 -0.101896946800373 -0.089727097479769 -0.077420590305731 -0.064965457897880 -0.052349181990226 -0.039558642356541 -0.026580060995576 -0.013398941067292 -0.000000000000000 0.013398941067291 0.026580060995575 0.039558642356541 0.052349181990226 0.064965457897879 0.077420590305731 0.089727097479769 0.101896946800373 0.113941601542110 0.125872063747260 0.137698913530270 0.149432345103591 0.161082199771994 0.172657996102001 0.184168957434303 0.195624036869492 0.207031939819967 0.218401144183116 0.229739918151156 0.241056335631383 0.252358289204750 0.263653500500433 0.274949527807031 0.281294740031965 0.286858838280291 0.291932737027198 0.296518001056458 0.300616129008983 0.304228527530637 0.307356488658834 0.310001170277093 0.312163579485614 0.313844558755586 0.315044774754793 0.315764709752309 0.316004655530415 +0.341542057735967 0.341288034564259 0.340525814183965 0.339254945159282 0.337474678975755 0.335183975903300 0.332381513294825 0.329065696411164 0.325234671889181 0.320886343996306 0.316018393841371 0.310628301738342 0.302294949330250 0.290134277131745 0.278019263975349 0.265938843488218 0.253882044293603 0.241837953140021 0.229795678048609 0.217744311259487 0.205672891746503 0.193570367056904 0.181425554217773 0.169227099434028 0.156963436282738 0.144622742085234 0.132192892111104 0.119661411236188 0.107015422639565 0.094241593080768 0.081326074248119 0.068254439609855 0.055011616131159 0.041581810140077 0.027948426532075 0.014093980393876 -0.000000000000000 -0.014093980393875 -0.027948426532074 -0.041581810140076 -0.055011616131158 -0.068254439609858 -0.081326074248122 -0.094241593080767 -0.107015422639563 -0.119661411236189 -0.132192892111102 -0.144622742085237 -0.156963436282740 -0.169227099434028 -0.181425554217774 -0.193570367056904 -0.205672891746503 -0.217744311259488 -0.229795678048610 -0.241837953140021 -0.253882044293603 -0.265938843488218 -0.278019263975350 -0.290134277131747 -0.302294949330250 -0.310628301738342 -0.316018393841371 -0.320886343996307 -0.325234671889182 -0.329065696411165 -0.332381513294825 -0.335183975903299 -0.337474678975755 -0.339254945159282 -0.340525814183965 -0.341288034564259 -0.341542057735967 -0.341288034564259 -0.340525814183965 -0.339254945159281 -0.337474678975755 -0.335183975903301 -0.332381513294826 -0.329065696411164 -0.325234671889181 -0.320886343996305 -0.316018393841372 -0.310628301738343 -0.302294949330251 -0.290134277131746 -0.278019263975349 -0.265938843488217 -0.253882044293605 -0.241837953140022 -0.229795678048611 -0.217744311259488 -0.205672891746501 -0.193570367056903 -0.181425554217774 -0.169227099434030 -0.156963436282739 -0.144622742085236 -0.132192892111101 -0.119661411236187 -0.107015422639566 -0.094241593080769 -0.081326074248121 -0.068254439609857 -0.055011616131157 -0.041581810140075 -0.027948426532076 -0.014093980393877 -0.000000000000000 0.014093980393877 0.027948426532076 0.041581810140075 0.055011616131156 0.068254439609857 0.081326074248121 0.094241593080768 0.107015422639566 0.119661411236186 0.132192892111100 0.144622742085235 0.156963436282738 0.169227099434029 0.181425554217775 0.193570367056902 0.205672891746500 0.217744311259487 0.229795678048610 0.241837953140022 0.253882044293602 0.265938843488217 0.278019263975349 0.290134277131745 0.302294949330250 0.310628301738343 0.316018393841371 0.320886343996305 0.325234671889181 0.329065696411164 0.332381513294826 0.335183975903301 0.337474678975755 0.339254945159281 0.340525814183965 0.341288034564259 0.341542057735967 +0.369970325342688 0.369701566002528 0.368895072445939 0.367550199096774 0.365665873450924 0.363240601315004 0.360272474249744 0.356759179328088 0.352698011350405 0.348085887692402 0.342919365995375 0.332509388771415 0.319308535098368 0.306214054694423 0.293209830268070 0.280280282684352 0.267410280830359 0.254585057823443 0.241790132377410 0.229011234275110 0.216234233000623 0.203445068665926 0.190629684427954 0.177773959635304 0.164863642970807 0.151884284868561 0.138821168481695 0.125659238461294 0.112383026776540 0.098976574761068 0.085423350509768 0.071706160671840 0.057807055588295 0.043707226602083 0.029386894223676 0.014825185659477 -0.000000000000000 -0.014825185659476 -0.029386894223675 -0.043707226602082 -0.057807055588294 -0.071706160671842 -0.085423350509770 -0.098976574761067 -0.112383026776539 -0.125659238461293 -0.138821168481694 -0.151884284868564 -0.164863642970811 -0.177773959635301 -0.190629684427953 -0.203445068665923 -0.216234233000622 -0.229011234275112 -0.241790132377407 -0.254585057823441 -0.267410280830359 -0.280280282684350 -0.293209830268071 -0.306214054694424 -0.319308535098367 -0.332509388771415 -0.342919365995375 -0.348085887692402 -0.352698011350405 -0.356759179328089 -0.360272474249743 -0.363240601315004 -0.365665873450924 -0.367550199096774 -0.368895072445940 -0.369701566002528 -0.369970325342688 -0.369701566002528 -0.368895072445939 -0.367550199096774 -0.365665873450924 -0.363240601315004 -0.360272474249745 -0.356759179328088 -0.352698011350405 -0.348085887692402 -0.342919365995375 -0.332509388771416 -0.319308535098369 -0.306214054694424 -0.293209830268071 -0.280280282684350 -0.267410280830360 -0.254585057823444 -0.241790132377410 -0.229011234275111 -0.216234233000620 -0.203445068665922 -0.190629684427953 -0.177773959635305 -0.164863642970809 -0.151884284868562 -0.138821168481694 -0.125659238461292 -0.112383026776541 -0.098976574761069 -0.085423350509769 -0.071706160671841 -0.057807055588293 -0.043707226602081 -0.029386894223677 -0.014825185659478 -0.000000000000000 0.014825185659478 0.029386894223677 0.043707226602081 0.057807055588292 0.071706160671841 0.085423350509769 0.098976574761069 0.112383026776541 0.125659238461292 0.138821168481694 0.151884284868563 0.164863642970809 0.177773959635305 0.190629684427955 0.203445068665922 0.216234233000620 0.229011234275111 0.241790132377410 0.254585057823444 0.267410280830358 0.280280282684350 0.293209830268071 0.306214054694424 0.319308535098369 0.332509388771416 0.342919365995375 0.348085887692402 0.352698011350405 0.356759179328088 0.360272474249745 0.363240601315004 0.365665873450924 0.367550199096774 0.368895072445939 0.369701566002528 0.369970325342688 +0.401938731326420 0.401654577286768 0.400801820791300 0.399379579496556 0.397386385468324 0.394820189201585 0.391678365374297 0.387957720462287 0.383654502380876 0.378764412358702 0.366216409741289 0.351742044629070 0.337456930630930 0.323337535042534 0.309361611224448 0.295508011717004 0.281756521028978 0.268087704717046 0.254482771886834 0.240923448656998 0.227391860455026 0.213870421272528 0.200341728210434 0.186788459799560 0.173193276696537 0.159538723433741 0.145807129948403 0.131980511632687 0.118040466634388 0.103968069097077 0.089743756958290 0.075347212822567 0.060757236290032 0.045951605946233 0.030906928999797 0.015598476283235 -0.000000000000000 -0.015598476283234 -0.030906928999797 -0.045951605946232 -0.060757236290032 -0.075347212822569 -0.089743756958292 -0.103968069097076 -0.118040466634387 -0.131980511632687 -0.145807129948403 -0.159538723433743 -0.173193276696540 -0.186788459799559 -0.200341728210432 -0.213870421272526 -0.227391860455023 -0.240923448657000 -0.254482771886832 -0.268087704717045 -0.281756521028973 -0.295508011717002 -0.309361611224450 -0.323337535042537 -0.337456930630930 -0.351742044629071 -0.366216409741290 -0.378764412358702 -0.383654502380877 -0.387957720462287 -0.391678365374297 -0.394820189201585 -0.397386385468324 -0.399379579496556 -0.400801820791300 -0.401654577286768 -0.401938731326420 -0.401654577286768 -0.400801820791300 -0.399379579496556 -0.397386385468324 -0.394820189201586 -0.391678365374297 -0.387957720462287 -0.383654502380877 -0.378764412358701 -0.366216409741292 -0.351742044629072 -0.337456930630930 -0.323337535042536 -0.309361611224449 -0.295508011717001 -0.281756521028979 -0.268087704717046 -0.254482771886834 -0.240923448657000 -0.227391860455022 -0.213870421272525 -0.200341728210431 -0.186788459799561 -0.173193276696539 -0.159538723433742 -0.145807129948401 -0.131980511632686 -0.118040466634389 -0.103968069097079 -0.089743756958291 -0.075347212822568 -0.060757236290029 -0.045951605946230 -0.030906928999799 -0.015598476283236 -0.000000000000000 0.015598476283236 0.030906928999799 0.045951605946231 0.060757236290029 0.075347212822567 0.089743756958291 0.103968069097079 0.118040466634389 0.131980511632686 0.145807129948401 0.159538723433742 0.173193276696538 0.186788459799561 0.200341728210434 0.213870421272525 0.227391860455023 0.240923448657000 0.254482771886835 0.268087704717046 0.281756521028972 0.295508011717001 0.309361611224449 0.323337535042536 0.337456930630930 0.351742044629072 0.366216409741289 0.378764412358701 0.383654502380877 0.387957720462287 0.391678365374297 0.394820189201586 0.397386385468324 0.399379579496556 0.400801820791300 0.401654577286768 0.401938731326420 +0.438300010173740 0.437999860085182 0.437099018969036 0.435596314637436 0.433489794674968 0.430776728352261 0.427453609440196 0.423516160062088 0.418959335763750 0.404244988107950 0.388182438037674 0.372423747370491 0.356934265381281 0.341681890579507 0.326636706684715 0.311770665700211 0.297057309794924 0.282471525165467 0.267989322205854 0.253587637227507 0.239244151696994 0.224937125532168 0.210645241447313 0.196347457687505 0.182022866757819 0.167650557947111 0.153209481577856 0.138678312989250 0.124035314284545 0.109258191846706 0.094323947549525 0.079208721461120 0.063887623649887 0.048334552452246 0.032521996238290 0.016420815302830 -0.000000000000000 -0.016420815302828 -0.032521996238288 -0.048334552452244 -0.063887623649884 -0.079208721461123 -0.094323947549528 -0.109258191846706 -0.124035314284545 -0.138678312989249 -0.153209481577855 -0.167650557947111 -0.182022866757822 -0.196347457687501 -0.210645241447313 -0.224937125532166 -0.239244151696993 -0.253587637227508 -0.267989322205853 -0.282471525165466 -0.297057309794924 -0.311770665700210 -0.326636706684715 -0.341681890579508 -0.356934265381274 -0.372423747370491 -0.388182438037674 -0.404244988107950 -0.418959335763750 -0.423516160062089 -0.427453609440196 -0.430776728352261 -0.433489794674967 -0.435596314637436 -0.437099018969036 -0.437999860085182 -0.438300010173740 -0.437999860085182 -0.437099018969036 -0.435596314637436 -0.433489794674968 -0.430776728352261 -0.427453609440196 -0.423516160062088 -0.418959335763750 -0.404244988107949 -0.388182438037676 -0.372423747370491 -0.356934265381281 -0.341681890579508 -0.326636706684715 -0.311770665700211 -0.297057309794924 -0.282471525165467 -0.267989322205855 -0.253587637227508 -0.239244151696992 -0.224937125532166 -0.210645241447310 -0.196347457687505 -0.182022866757819 -0.167650557947111 -0.153209481577853 -0.138678312989247 -0.124035314284546 -0.109258191846708 -0.094323947549527 -0.079208721461122 -0.063887623649884 -0.048334552452244 -0.032521996238291 -0.016420815302831 -0.000000000000000 0.016420815302831 0.032521996238291 0.048334552452244 0.063887623649884 0.079208721461121 0.094323947549527 0.109258191846708 0.124035314284546 0.138678312989247 0.153209481577853 0.167650557947111 0.182022866757819 0.196347457687505 0.210645241447314 0.224937125532166 0.239244151696992 0.253587637227509 0.267989322205855 0.282471525165467 0.297057309794924 0.311770665700211 0.326636706684715 0.341681890579508 0.356934265381281 0.372423747370491 0.388182438037673 0.404244988107949 0.418959335763750 0.423516160062088 0.427453609440196 0.430776728352261 0.433489794674968 0.435596314637436 0.437099018969036 0.437999860085182 0.438300010173740 +0.480197613875887 0.479881030462510 0.478930770845087 0.477345306568429 0.475122089147439 0.472257548540290 0.468747091138112 0.464585097401381 0.447718674668508 0.429635590840240 0.412017675366660 0.394813204975121 0.377975166654476 0.361460563671961 0.345229825235761 0.329246300515126 0.313475821525415 0.297886322332625 0.282447504330488 0.267130539143501 0.251907802122674 0.236752630509557 0.221639101213238 0.206541823819443 0.191435744968441 0.176295960624050 0.161097533030350 0.145815309328765 0.130423738895724 0.114896686464429 0.099207238015639 0.083327496258429 0.067228362267656 0.050879299489794 0.034248075858760 0.017300479158174 -0.000000000000000 -0.017300479158173 -0.034248075858760 -0.050879299489793 -0.067228362267655 -0.083327496258432 -0.099207238015642 -0.114896686464428 -0.130423738895722 -0.145815309328766 -0.161097533030349 -0.176295960624052 -0.191435744968443 -0.206541823819443 -0.221639101213235 -0.236752630509556 -0.251907802122671 -0.267130539143503 -0.282447504330487 -0.297886322332624 -0.313475821525415 -0.329246300515126 -0.345229825235769 -0.361460563671964 -0.377975166654474 -0.394813204975119 -0.412017675366660 -0.429635590840237 -0.447718674668509 -0.464585097401381 -0.468747091138112 -0.472257548540290 -0.475122089147439 -0.477345306568430 -0.478930770845087 -0.479881030462510 -0.480197613875887 -0.479881030462510 -0.478930770845087 -0.477345306568430 -0.475122089147439 -0.472257548540290 -0.468747091138112 -0.464585097401381 -0.447718674668508 -0.429635590840236 -0.412017675366661 -0.394813204975121 -0.377975166654484 -0.361460563671962 -0.345229825235768 -0.329246300515125 -0.313475821525416 -0.297886322332631 -0.282447504330490 -0.267130539143502 -0.251907802122668 -0.236752630509552 -0.221639101213235 -0.206541823819446 -0.191435744968443 -0.176295960624051 -0.161097533030348 -0.145815309328763 -0.130423738895725 -0.114896686464430 -0.099207238015641 -0.083327496258431 -0.067228362267655 -0.050879299489792 -0.034248075858762 -0.017300479158176 -0.000000000000000 0.017300479158175 0.034248075858761 0.050879299489792 0.067228362267655 0.083327496258430 0.099207238015641 0.114896686464430 0.130423738895725 0.145815309328763 0.161097533030348 0.176295960624051 0.191435744968443 0.206541823819446 0.221639101213238 0.236752630509552 0.251907802122668 0.267130539143502 0.282447504330490 0.297886322332631 0.313475821525409 0.329246300515125 0.345229825235768 0.361460563671962 0.377975166654484 0.394813204975121 0.412017675366660 0.429635590840236 0.447718674668508 0.464585097401381 0.468747091138112 0.472257548540290 0.475122089147439 0.477345306568430 0.478930770845087 0.479881030462510 0.480197613875887 +0.529202008934323 0.528868919742516 0.527868996680182 0.526200271877049 0.523859460862494 0.520841955575840 0.517141814663464 0.498196089682403 0.477484503499563 0.457470329125741 0.438074877999540 0.419227955234259 0.400866534417013 0.382933655055079 0.365377498178565 0.348150605245049 0.331209212806302 0.314512680988867 0.298022998142259 0.281704347335689 0.265522722967067 0.249445587757737 0.233441561968986 0.217480137886268 0.201531413544877 0.185565840368268 0.169553979895810 0.153466265117673 0.137272762129558 0.120942927879466 0.104445359708079 0.087747532180644 0.070815516364415 0.053613676206065 0.036104335986245 0.018247411941003 -0.000000000000000 -0.018247411941002 -0.036104335986244 -0.053613676206064 -0.070815516364413 -0.087747532180647 -0.104445359708079 -0.120942927879466 -0.137272762129557 -0.153466265117672 -0.169553979895810 -0.185565840368270 -0.201531413544879 -0.217480137886267 -0.233441561968985 -0.249445587757737 -0.265522722967064 -0.281704347335692 -0.298022998142257 -0.314512680988862 -0.331209212806301 -0.348150605245048 -0.365377498178568 -0.382933655055081 -0.400866534417015 -0.419227955234259 -0.438074877999530 -0.457470329125741 -0.477484503499564 -0.498196089682402 -0.517141814663464 -0.520841955575840 -0.523859460862494 -0.526200271877049 -0.527868996680183 -0.528868919742516 -0.529202008934323 -0.528868919742517 -0.527868996680182 -0.526200271877049 -0.523859460862494 -0.520841955575841 -0.517141814663464 -0.498196089682402 -0.477484503499563 -0.457470329125739 -0.438074877999539 -0.419227955234260 -0.400866534417013 -0.382933655055078 -0.365377498178566 -0.348150605245048 -0.331209212806302 -0.314512680988868 -0.298022998142260 -0.281704347335690 -0.265522722967064 -0.249445587757736 -0.233441561968984 -0.217480137886269 -0.201531413544878 -0.185565840368269 -0.169553979895808 -0.153466265117671 -0.137272762129560 -0.120942927879468 -0.104445359708079 -0.087747532180645 -0.070815516364413 -0.053613676206062 -0.036104335986246 -0.018247411941005 -0.000000000000000 0.018247411941004 0.036104335986246 0.053613676206062 0.070815516364412 0.087747532180645 0.104445359708079 0.120942927879468 0.137272762129560 0.153466265117671 0.169553979895808 0.185565840368269 0.201531413544878 0.217480137886269 0.233441561968986 0.249445587757736 0.265522722967064 0.281704347335690 0.298022998142260 0.314512680988868 0.331209212806300 0.348150605245048 0.365377498178566 0.382933655055078 0.400866534417013 0.419227955234260 0.438074877999530 0.457470329125739 0.477484503499563 0.498196089682402 0.517141814663464 0.520841955575841 0.523859460862494 0.526200271877049 0.527868996680182 0.528868919742517 0.529202008934323 +0.587531506223710 0.587182586524601 0.586134991683506 0.584386211365165 0.581932051325628 0.578766617866110 0.557900805958254 0.533681016304738 0.510502659716536 0.488242982090192 0.466794569895686 0.446062771972682 0.425963603498979 0.406422027644526 0.387370535233273 0.368747961063182 0.350498489203744 0.332570809871759 0.314917398278454 0.297493891786012 0.280258546271180 0.263171756103294 0.246195624849542 0.229293575902109 0.212429993812620 0.195569888317430 0.178678573913911 0.161721358454065 0.144663234592930 0.127468568086366 0.110100776887192 0.092521994738964 0.074692712502716 0.056571389751288 0.038114028193814 0.019273697198855 -0.000000000000000 -0.019273697198854 -0.038114028193812 -0.056571389751287 -0.074692712502714 -0.092521994738967 -0.110100776887194 -0.127468568086365 -0.144663234592929 -0.161721358454064 -0.178678573913911 -0.195569888317435 -0.212429993812624 -0.229293575902108 -0.246195624849541 -0.263171756103292 -0.280258546271180 -0.297493891786014 -0.314917398278453 -0.332570809871758 -0.350498489203743 -0.368747961063182 -0.387370535233276 -0.406422027644528 -0.425963603498976 -0.446062771972681 -0.466794569895682 -0.488242982090191 -0.510502659716537 -0.533681016304747 -0.557900805958254 -0.578766617866110 -0.581932051325628 -0.584386211365165 -0.586134991683506 -0.587182586524601 -0.587531506223710 -0.587182586524601 -0.586134991683506 -0.584386211365165 -0.581932051325627 -0.578766617866110 -0.557900805958254 -0.533681016304738 -0.510502659716536 -0.488242982090190 -0.466794569895689 -0.446062771972683 -0.425963603498981 -0.406422027644526 -0.387370535233275 -0.368747961063179 -0.350498489203744 -0.332570809871760 -0.314917398278457 -0.297493891786012 -0.280258546271179 -0.263171756103292 -0.246195624849540 -0.229293575902110 -0.212429993812623 -0.195569888317432 -0.178678573913909 -0.161721358454062 -0.144663234592931 -0.127468568086367 -0.110100776887193 -0.092521994738966 -0.074692712502713 -0.056571389751285 -0.038114028193815 -0.019273697198857 -0.000000000000000 0.019273697198857 0.038114028193815 0.056571389751285 0.074692712502713 0.092521994738966 0.110100776887193 0.127468568086367 0.144663234592931 0.161721358454063 0.178678573913909 0.195569888317431 0.212429993812622 0.229293575902110 0.246195624849543 0.263171756103292 0.280258546271180 0.297493891786012 0.314917398278457 0.332570809871760 0.350498489203742 0.368747961063179 0.387370535233275 0.406422027644526 0.425963603498981 0.446062771972683 0.466794569895681 0.488242982090190 0.510502659716536 0.533681016304738 0.557900805958254 0.578766617866110 0.581932051325627 0.584386211365165 0.586134991683506 0.587182586524601 0.587531506223710 +0.658425854384312 0.658063278863764 0.656974495474827 0.655156328006775 0.652603463636299 0.630114753112713 0.601068249613011 0.573591233439875 0.547485854763960 0.522582556224570 0.498734882392325 0.475815367023299 0.453712242776196 0.432326784578595 0.411571145409801 0.391366577712355 0.371641958851613 0.352332557674764 0.333378993116330 0.314726346242937 0.296323395034814 0.278121947214269 0.260076251019194 0.242142467320455 0.224278189142881 0.206441996648849 0.188593037111942 0.170690620437906 0.152693821445674 0.134561080442273 0.116249793634060 0.097715884614898 0.078913347545926 0.059793751658206 0.040305695315128 0.020394195986483 -0.000000000000000 -0.020394195986482 -0.040305695315127 -0.059793751658204 -0.078913347545925 -0.097715884614902 -0.116249793634063 -0.134561080442272 -0.152693821445672 -0.170690620437906 -0.188593037111942 -0.206441996648854 -0.224278189142884 -0.242142467320453 -0.260076251019193 -0.278121947214268 -0.296323395034811 -0.314726346242942 -0.333378993116329 -0.352332557674762 -0.371641958851611 -0.391366577712355 -0.411571145409804 -0.432326784578596 -0.453712242776195 -0.475815367023297 -0.498734882392326 -0.522582556224566 -0.547485854763961 -0.573591233439876 -0.601068249613011 -0.630114753112713 -0.652603463636298 -0.655156328006773 -0.656974495474827 -0.658063278863764 -0.658425854384312 -0.658063278863764 -0.656974495474827 -0.655156328006772 -0.652603463636298 -0.630114753112727 -0.601068249613011 -0.573591233439876 -0.547485854763960 -0.522582556224566 -0.498734882392332 -0.475815367023299 -0.453712242776196 -0.432326784578596 -0.411571145409803 -0.391366577712355 -0.371641958851613 -0.352332557674764 -0.333378993116331 -0.314726346242939 -0.296323395034811 -0.278121947214266 -0.260076251019192 -0.242142467320458 -0.224278189142882 -0.206441996648854 -0.188593037111939 -0.170690620437905 -0.152693821445676 -0.134561080442276 -0.116249793634062 -0.097715884614901 -0.078913347545924 -0.059793751658203 -0.040305695315130 -0.020394195986485 -0.000000000000000 0.020394195986484 0.040305695315130 0.059793751658203 0.078913347545924 0.097715884614900 0.116249793634062 0.134561080442275 0.152693821445676 0.170690620437905 0.188593037111939 0.206441996648854 0.224278189142882 0.242142467320457 0.260076251019195 0.278121947214266 0.296323395034811 0.314726346242939 0.333378993116331 0.352332557674764 0.371641958851610 0.391366577712355 0.411571145409803 0.432326784578596 0.453712242776196 0.475815367023299 0.498734882392325 0.522582556224566 0.547485854763960 0.573591233439876 0.601068249613011 0.630114753112727 0.652603463636298 0.655156328006772 0.656974495474827 0.658063278863764 0.658425854384312 +0.746811968764513 0.746440951424883 0.745326577558793 0.743464871863187 0.719888994663752 0.683950999892912 0.650430205860416 0.618993862086767 0.589363470983792 0.561303790225943 0.534614377120166 0.509123011337196 0.484680522829670 0.461156682792964 0.438436907027799 0.416419585847194 0.395013901116175 0.374138024697787 0.353717617264706 0.333684564696176 0.313975902897142 0.294532892098124 0.275300209403398 0.256225234180605 0.237257405278973 0.218347632350536 0.199447745962513 0.180509972895127 0.161486424131303 0.142328583636791 0.122986786141329 0.103409671773178 0.083543604552353 0.063332040362780 0.042714828017235 0.021627424275686 -0.000000000000000 -0.021627424275684 -0.042714828017233 -0.063332040362779 -0.083543604552352 -0.103409671773182 -0.122986786141332 -0.142328583636791 -0.161486424131302 -0.180509972895126 -0.199447745962511 -0.218347632350539 -0.237257405278976 -0.256225234180604 -0.275300209403397 -0.294532892098121 -0.313975902897142 -0.333684564696179 -0.353717617264706 -0.374138024697786 -0.395013901116173 -0.416419585847194 -0.438436907027800 -0.461156682792966 -0.484680522829665 -0.509123011337195 -0.534614377120165 -0.561303790225941 -0.589363470983795 -0.618993862086768 -0.650430205860415 -0.683950999892912 -0.719888994663751 -0.743464871863188 -0.745326577558794 -0.746440951424883 -0.746811968764513 -0.746440951424883 -0.745326577558793 -0.743464871863187 -0.719888994663751 -0.683950999892912 -0.650430205860417 -0.618993862086767 -0.589363470983792 -0.561303790225941 -0.534614377120176 -0.509123011337197 -0.484680522829671 -0.461156682792965 -0.438436907027800 -0.416419585847193 -0.395013901116176 -0.374138024697787 -0.353717617264707 -0.333684564696177 -0.313975902897138 -0.294532892098120 -0.275300209403396 -0.256225234180609 -0.237257405278975 -0.218347632350536 -0.199447745962509 -0.180509972895125 -0.161486424131305 -0.142328583636795 -0.122986786141331 -0.103409671773180 -0.083543604552350 -0.063332040362777 -0.042714828017236 -0.021627424275688 -0.000000000000000 0.021627424275687 0.042714828017236 0.063332040362777 0.083543604552350 0.103409671773180 0.122986786141331 0.142328583636792 0.161486424131305 0.180509972895125 0.199447745962509 0.218347632350536 0.237257405278975 0.256225234180609 0.275300209403398 0.294532892098120 0.313975902897139 0.333684564696177 0.353717617264707 0.374138024697787 0.395013901116172 0.416419585847192 0.438436907027800 0.461156682792965 0.484680522829671 0.509123011337197 0.534614377120164 0.561303790225941 0.589363470983792 0.618993862086767 0.650430205860417 0.683950999892912 0.719888994663751 0.743464871863187 0.745326577558793 0.746440951424883 0.746811968764513 +0.860568263801044 0.860200403620849 0.859095205541065 0.835416865872158 0.789169136120450 0.746780095448280 0.707657704154655 0.671320306275533 0.637371590914653 0.605482038527477 0.575374969364139 0.546815910608106 0.519604391583395 0.493567538868677 0.468555021598798 0.444435020498761 0.421090980589119 0.398418968864347 0.376325502358214 0.354725744068567 0.333541987736787 0.312702369877312 0.292139760405331 0.271790792888497 0.251595002681561 0.231494046578262 0.211430981551434 0.191349582943506 0.171193684317998 0.150906522219513 0.130430069389028 0.109704339566630 0.088666645861199 0.067250792702407 0.045386178484480 0.022996781964202 -0.000000000000000 -0.022996781964200 -0.045386178484478 -0.067250792702405 -0.088666645861198 -0.109704339566632 -0.130430069389032 -0.150906522219510 -0.171193684317996 -0.191349582943504 -0.211430981551434 -0.231494046578266 -0.251595002681565 -0.271790792888496 -0.292139760405328 -0.312702369877311 -0.333541987736783 -0.354725744068572 -0.376325502358214 -0.398418968864346 -0.421090980589117 -0.444435020498761 -0.468555021598799 -0.493567538868680 -0.519604391583393 -0.546815910608105 -0.575374969364138 -0.605482038527476 -0.637371590914653 -0.671320306275538 -0.707657704154655 -0.746780095448280 -0.789169136120452 -0.835416865872156 -0.859095205541066 -0.860200403620849 -0.860568263801044 -0.860200403620849 -0.859095205541066 -0.835416865872157 -0.789169136120450 -0.746780095448280 -0.707657704154656 -0.671320306275538 -0.637371590914653 -0.605482038527476 -0.575374969364147 -0.546815910608107 -0.519604391583396 -0.493567538868678 -0.468555021598798 -0.444435020498761 -0.421090980589120 -0.398418968864347 -0.376325502358215 -0.354725744068570 -0.333541987736781 -0.312702369877310 -0.292139760405327 -0.271790792888498 -0.251595002681563 -0.231494046578263 -0.211430981551433 -0.191349582943503 -0.171193684318000 -0.150906522219514 -0.130430069389030 -0.109704339566632 -0.088666645861197 -0.067250792702403 -0.045386178484482 -0.022996781964204 -0.000000000000000 0.022996781964203 0.045386178484481 0.067250792702404 0.088666645861196 0.109704339566632 0.130430069389030 0.150906522219513 0.171193684318000 0.191349582943503 0.211430981551433 0.231494046578262 0.251595002681563 0.271790792888498 0.292139760405334 0.312702369877311 0.333541987736782 0.354725744068570 0.376325502358215 0.398418968864347 0.421090980589117 0.444435020498761 0.468555021598798 0.493567538868678 0.519604391583396 0.546815910608107 0.575374969364137 0.605482038527476 0.637371590914653 0.671320306275538 0.707657704154656 0.746780095448280 0.789169136120450 0.835416865872157 0.859095205541066 0.860200403620849 0.860568263801044 +1.013126259551440 1.012787413555083 0.990921843637434 0.928280513350902 0.872142334748311 0.821370347052845 0.775072227451920 0.732537278319464 0.693191894332409 0.656567475825066 0.622276905159084 0.589997027761407 0.559455416526020 0.530420239206592 0.502692405214686 0.476099407972000 0.450490442786582 0.425732493903009 0.401707164370522 0.378308079378953 0.355438734794225 0.333010692522303 0.310942046260573 0.289156097371619 0.267580192572421 0.246144683945584 0.224781978200637 0.203425646667263 0.182009570547453 0.160467097723463 0.138730188048258 0.116728523583862 0.094388558671526 0.071632481903837 0.048377057817697 0.024532310117527 -0.000000000000000 -0.024532310117525 -0.048377057817695 -0.071632481903835 -0.094388558671524 -0.116728523583865 -0.138730188048262 -0.160467097723462 -0.182009570547451 -0.203425646667261 -0.224781978200637 -0.246144683945587 -0.267580192572424 -0.289156097371616 -0.310942046260571 -0.333010692522299 -0.355438734794223 -0.378308079378955 -0.401707164370521 -0.425732493903007 -0.450490442786581 -0.476099407971992 -0.502692405214688 -0.530420239206595 -0.559455416526010 -0.589997027761406 -0.622276905159083 -0.656567475825065 -0.693191894332412 -0.732537278319466 -0.775072227451894 -0.821370347052843 -0.872142334748308 -0.928280513350863 -0.990921843637434 -1.012787413555083 -1.013126259551440 -1.012787413555083 -0.990921843637434 -0.928280513350862 -0.872142334748308 -0.821370347052845 -0.775072227451921 -0.732537278319464 -0.693191894332411 -0.656567475825062 -0.622276905159085 -0.589997027761409 -0.559455416526021 -0.530420239206593 -0.502692405214687 -0.476099407971990 -0.450490442786590 -0.425732493903012 -0.401707164370523 -0.378308079378954 -0.355438734794222 -0.333010692522298 -0.310942046260568 -0.289156097371620 -0.267580192572423 -0.246144683945585 -0.224781978200635 -0.203425646667260 -0.182009570547455 -0.160467097723465 -0.138730188048259 -0.116728523583863 -0.094388558671523 -0.071632481903833 -0.048377057817699 -0.024532310117529 -0.000000000000000 0.024532310117529 0.048377057817698 0.071632481903833 0.094388558671522 0.116728523583863 0.138730188048259 0.160467097723465 0.182009570547454 0.203425646667259 0.224781978200635 0.246144683945585 0.267580192572422 0.289156097371620 0.310942046260574 0.333010692522297 0.355438734794222 0.378308079378954 0.401707164370523 0.425732493903012 0.450490442786580 0.476099407971990 0.502692405214687 0.530420239206593 0.559455416526021 0.589997027761409 0.622276905159083 0.656567475825061 0.693191894332411 0.732537278319464 0.775072227451921 0.821370347052845 0.872142334748308 0.928280513350862 0.990921843637434 1.012787413555083 1.013126259551440 +1.229412799975290 1.213448499130466 1.122469690927101 1.043378133801867 0.973742386911785 0.911744584489809 0.855997637765189 0.805424060011590 0.759173461059072 0.716565034414995 0.677046621744850 0.640165028205913 0.605544131262892 0.572868487703343 0.541870883773945 0.512322755223293 0.484026723966422 0.456810714328399 0.430523260368081 0.405029719330415 0.380209179408751 0.355951902251285 0.332157178344220 0.308731500804467 0.285586983115329 0.262639960929558 0.239809728619157 0.217017368717765 0.194184637420940 0.171232872301252 0.148081889603304 0.124648838007486 0.100846973556027 0.076584316348387 0.051762143306221 0.026273262256206 -0.000000000000000 -0.026273262256204 -0.051762143306219 -0.076584316348385 -0.100846973556026 -0.124648838007490 -0.148081889603308 -0.171232872301251 -0.194184637420938 -0.217017368717764 -0.239809728619156 -0.262639960929562 -0.285586983115334 -0.308731500804465 -0.332157178344220 -0.355951902251282 -0.380209179408750 -0.405029719330423 -0.430523260368080 -0.456810714328397 -0.484026723966421 -0.512322755223287 -0.541870883773959 -0.572868487703346 -0.605544131262891 -0.640165028205910 -0.677046621744849 -0.716565034414993 -0.759173461059074 -0.805424060011591 -0.855997637765188 -0.911744584489809 -0.973742386911785 -1.043378133801868 -1.122469690927156 -1.213448499130403 -1.229412799975290 -1.213448499130466 -1.122469690927101 -1.043378133801866 -0.973742386911785 -0.911744584489809 -0.855997637765191 -0.805424060011592 -0.759173461059073 -0.716565034414992 -0.677046621744852 -0.640165028205914 -0.605544131262892 -0.572868487703344 -0.541870883773949 -0.512322755223286 -0.484026723966427 -0.456810714328401 -0.430523260368082 -0.405029719330421 -0.380209179408748 -0.355951902251281 -0.332157178344218 -0.308731500804469 -0.285586983115332 -0.262639960929559 -0.239809728619154 -0.217017368717762 -0.194184637420942 -0.171232872301253 -0.148081889603306 -0.124648838007488 -0.100846973556024 -0.076584316348383 -0.051762143306223 -0.026273262256208 -0.000000000000000 0.026273262256208 0.051762143306223 0.076584316348383 0.100846973556024 0.124648838007487 0.148081889603306 0.171232872301253 0.194184637420942 0.217017368717761 0.239809728619154 0.262639960929559 0.285586983115331 0.308731500804468 0.332157178344222 0.355951902251282 0.380209179408749 0.405029719330421 0.430523260368082 0.456810714328401 0.484026723966422 0.512322755223286 0.541870883773950 0.572868487703344 0.605544131262892 0.640165028205914 0.677046621744848 0.716565034414992 0.759173461059073 0.805424060011592 0.855997637765191 0.911744584489809 0.973742386911785 1.043378133801866 1.122469690927101 1.213448499130466 1.229412799975290 +1.561499999999999 1.415196812178144 1.293537182159438 1.190416348084142 1.101582723334759 1.023983310978679 0.955368198732508 0.894041896061420 0.838701605234236 0.788328911459622 0.742115371760333 0.699410228666904 0.659682926134976 0.622495748366193 0.587483518160815 0.554338305277856 0.522797746334999 0.492636004710136 0.463656684210241 0.435687204214558 0.408574277871285 0.382180228601036 0.356379946478017 0.331058333455298 0.306108120490416 0.281427964193103 0.256920748224662 0.232492027070732 0.208048558157276 0.183496873342637 0.158741843045712 0.133685185855248 0.108223873371919 0.082248373992919 0.055640669819061 0.028271966969608 -0.000000000000000 -0.028271966969606 -0.055640669819059 -0.082248373992917 -0.108223873371917 -0.133685185855252 -0.158741843045716 -0.183496873342636 -0.208048558157275 -0.232492027070728 -0.256920748224662 -0.281427964193107 -0.306108120490419 -0.331058333455296 -0.356379946478016 -0.382180228601036 -0.408574277871283 -0.435687204214562 -0.463656684210240 -0.492636004710125 -0.522797746334999 -0.554338305277850 -0.587483518160817 -0.622495748366196 -0.659682926134975 -0.699410228666904 -0.742115371760310 -0.788328911459622 -0.838701605234238 -0.894041896061424 -0.955368198732469 -1.023983310978635 -1.101582723334760 -1.190416348084141 -1.293537182159438 -1.415196812178144 -1.561499999999998 -1.415196812178144 -1.293537182159439 -1.190416348084141 -1.101582723334756 -1.023983310978680 -0.955368198732508 -0.894041896061423 -0.838701605234236 -0.788328911459620 -0.742115371760335 -0.699410228666905 -0.659682926134977 -0.622495748366195 -0.587483518160816 -0.554338305277847 -0.522797746335001 -0.492636004710137 -0.463656684210243 -0.435687204214560 -0.408574277871283 -0.382180228601034 -0.356379946478012 -0.331058333455299 -0.306108120490419 -0.281427964193104 -0.256920748224659 -0.232492027070725 -0.208048558157278 -0.183496873342638 -0.158741843045714 -0.133685185855251 -0.108223873371914 -0.082248373992915 -0.055640669819063 -0.028271966969610 -0.000000000000000 0.028271966969610 0.055640669819062 0.082248373992915 0.108223873371914 0.133685185855251 0.158741843045714 0.183496873342638 0.208048558157278 0.232492027070725 0.256920748224659 0.281427964193104 0.306108120490419 0.331058333455299 0.356379946478018 0.382180228601034 0.408574277871283 0.435687204214561 0.463656684210242 0.492636004710138 0.522797746334995 0.554338305277847 0.587483518160816 0.622495748366195 0.659682926134977 0.699410228666905 0.742115371760310 0.788328911459621 0.838701605234236 0.894041896061423 0.955368198732508 1.023983310978680 1.101582723334756 1.190416348084141 1.293537182159439 1.415196812178144 1.561499999999999 +1.229395726895400 1.213431850721689 1.122455404555793 1.043365730646735 0.973731511285304 0.911734966534982 0.855989068976175 0.805416376707960 0.759166532950285 0.716558756513233 0.677040908534461 0.640159809367281 0.605539348487570 0.572864092289364 0.541866834787633 0.512319018078613 0.484023269316401 0.456807517192612 0.430520299441117 0.405026976430652 0.380206639037205 0.355949551238006 0.332155005565073 0.308729496955485 0.285585140534902 0.262638273461105 0.239808191508992 0.217015978544327 0.194183392052921 0.171231770883359 0.148080932569453 0.124648027122360 0.100846311987096 0.076583808771808 0.051761796051610 0.026273083497201 -0.000000000000000 -0.026273083497200 -0.051761796051608 -0.076583808771806 -0.100846311987095 -0.124648027122363 -0.148080932569456 -0.171231770883358 -0.194183392052920 -0.217015978544325 -0.239808191508992 -0.262638273461109 -0.285585140534905 -0.308729496955483 -0.332155005565069 -0.355949551238004 -0.380206639037204 -0.405026976430656 -0.430520299441117 -0.456807517192609 -0.484023269316400 -0.512319018078610 -0.541866834787637 -0.572864092289376 -0.605539348487570 -0.640159809367279 -0.677040908534459 -0.716558756513233 -0.759166532950285 -0.805416376707989 -0.855989068976173 -0.911734966534982 -0.973731511285303 -1.043365730646735 -1.122455404555794 -1.213431850721686 -1.229395726895400 -1.213431850721690 -1.122455404555793 -1.043365730646735 -0.973731511285303 -0.911734966534981 -0.855989068976176 -0.805416376707987 -0.759166532950285 -0.716558756513210 -0.677040908534462 -0.640159809367280 -0.605539348487575 -0.572864092289364 -0.541866834787636 -0.512319018078608 -0.484023269316401 -0.456807517192614 -0.430520299441119 -0.405026976430654 -0.380206639037200 -0.355949551237997 -0.332155005565065 -0.308729496955488 -0.285585140534905 -0.262638273461106 -0.239808191508991 -0.217015978544323 -0.194183392052923 -0.171231770883361 -0.148080932569454 -0.124648027122362 -0.100846311987093 -0.076583808771804 -0.051761796051613 -0.026273083497204 -0.000000000000000 0.026273083497203 0.051761796051613 0.076583808771804 0.100846311987092 0.124648027122361 0.148080932569454 0.171231770883361 0.194183392052923 0.217015978544323 0.239808191508991 0.262638273461106 0.285585140534905 0.308729496955485 0.332155005565074 0.355949551237997 0.380206639037201 0.405026976430654 0.430520299441119 0.456807517192614 0.484023269316400 0.512319018078607 0.541866834787636 0.572864092289364 0.605539348487575 0.640159809367280 0.677040908534459 0.716558756513210 0.759166532950285 0.805416376707987 0.855989068976176 0.911734966534981 0.973731511285303 1.043365730646735 1.122455404555793 1.213431850721690 1.229395726895400 +1.013103026925540 1.012764174348868 0.990899533311502 0.928260840748595 0.872124852564312 0.821354705877967 0.775058150332333 0.732524542892072 0.693180320025377 0.656556914521777 0.622267234278501 0.589988145055149 0.559447236115487 0.530412688529194 0.502685422646076 0.476092940957346 0.450484446359854 0.425726929505435 0.401701998902424 0.378303284435412 0.355434286047395 0.333006569221984 0.310938230831447 0.289152575090531 0.267576951313130 0.246141713981502 0.224779272058483 0.203423199026705 0.182007378183513 0.160465159490113 0.138728504903121 0.116727098655440 0.094387397371991 0.071631592092264 0.048376450020692 0.024531997816855 -0.000000000000000 -0.024531997816854 -0.048376450020690 -0.071631592092262 -0.094387397371990 -0.116727098655443 -0.138728504903126 -0.160465159490111 -0.182007378183510 -0.203423199026703 -0.224779272058483 -0.246141713981505 -0.267576951313131 -0.289152575090524 -0.310938230831445 -0.333006569221980 -0.355434286047390 -0.378303284435414 -0.401701998902422 -0.425726929505435 -0.450484446359847 -0.476092940957345 -0.502685422646080 -0.530412688529197 -0.559447236115487 -0.589988145055148 -0.622267234278501 -0.656556914521778 -0.693180320025377 -0.732524542892074 -0.775058150332308 -0.821354705877967 -0.872124852564311 -0.928260840748558 -0.990899533311502 -1.012764174348869 -1.013103026925540 -1.012764174348868 -0.990899533311502 -0.928260840748557 -0.872124852564310 -0.821354705877997 -0.775058150332334 -0.732524542892073 -0.693180320025377 -0.656556914521776 -0.622267234278503 -0.589988145055148 -0.559447236115487 -0.530412688529195 -0.502685422646077 -0.476092940957344 -0.450484446359855 -0.425726929505436 -0.401701998902426 -0.378303284435415 -0.355434286047389 -0.333006569221976 -0.310938230831443 -0.289152575090532 -0.267576951313131 -0.246141713981503 -0.224779272058481 -0.203423199026702 -0.182007378183513 -0.160465159490114 -0.138728504903123 -0.116727098655441 -0.094387397371988 -0.071631592092260 -0.048376450020694 -0.024531997816857 -0.000000000000000 0.024531997816857 0.048376450020693 0.071631592092260 0.094387397371988 0.116727098655441 0.138728504903122 0.160465159490114 0.182007378183513 0.203423199026702 0.224779272058481 0.246141713981502 0.267576951313130 0.289152575090532 0.310938230831449 0.333006569221976 0.355434286047389 0.378303284435410 0.401701998902426 0.425726929505436 0.450484446359847 0.476092940957344 0.502685422646076 0.530412688529195 0.559447236115487 0.589988145055148 0.622267234278495 0.656556914521776 0.693180320025377 0.732524542892073 0.775058150332334 0.821354705877997 0.872124852564310 0.928260840748557 0.990899533311502 1.012764174348868 1.013103026925540 +0.860543039661656 0.860175177031869 0.859069971660522 0.835392889477291 0.789147596635912 0.746760639559520 0.707640045797430 0.671304211382696 0.637356866162631 0.605468522909000 0.575362527791996 0.546804429001100 0.519593773049588 0.493557700711317 0.468545892946868 0.444426540416994 0.421083096560071 0.398411635562334 0.376318680654377 0.354719400221005 0.333536092730291 0.312696898885632 0.292134692354791 0.271786110106826 0.251590690619443 0.231490093594113 0.211427378752484 0.191346324078144 0.171190765716346 0.150903942780709 0.130427830615305 0.109702445645884 0.088665103801412 0.067249612523195 0.045385373473216 0.022996369006843 -0.000000000000000 -0.022996369006841 -0.045385373473214 -0.067249612523193 -0.088665103801411 -0.109702445645887 -0.130427830615309 -0.150903942780706 -0.171190765716344 -0.191346324078143 -0.211427378752482 -0.231490093594119 -0.251590690619445 -0.271786110106824 -0.292134692354787 -0.312696898885630 -0.333536092730289 -0.354719400221009 -0.376318680654376 -0.398411635562332 -0.421083096560064 -0.444426540416992 -0.468545892946869 -0.493557700711322 -0.519593773049587 -0.546804429001099 -0.575362527791996 -0.605468522909001 -0.637356866162631 -0.671304211382713 -0.707640045797429 -0.746760639559496 -0.789147596635912 -0.835392889477290 -0.859069971660487 -0.860175177031869 -0.860543039661656 -0.860175177031836 -0.859069971660521 -0.835392889477290 -0.789147596635914 -0.746760639559521 -0.707640045797432 -0.671304211382697 -0.637356866162631 -0.605468522909001 -0.575362527791999 -0.546804429001101 -0.519593773049590 -0.493557700711318 -0.468545892946868 -0.444426540416992 -0.421083096560073 -0.398411635562333 -0.376318680654378 -0.354719400221009 -0.333536092730288 -0.312696898885629 -0.292134692354786 -0.271786110106826 -0.251590690619444 -0.231490093594115 -0.211427378752481 -0.191346324078141 -0.171190765716348 -0.150903942780710 -0.130427830615308 -0.109702445645886 -0.088665103801409 -0.067249612523191 -0.045385373473218 -0.022996369006845 -0.000000000000000 0.022996369006844 0.045385373473217 0.067249612523191 0.088665103801409 0.109702445645886 0.130427830615307 0.150903942780710 0.171190765716348 0.191346324078142 0.211427378752481 0.231490093594115 0.251590690619444 0.271786110106826 0.292134692354791 0.312696898885630 0.333536092730288 0.354719400221009 0.376318680654378 0.398411635562333 0.421083096560063 0.444426540416992 0.468545892946868 0.493557700711318 0.519593773049590 0.546804429001101 0.575362527791996 0.605468522909001 0.637356866162631 0.671304211382697 0.707640045797432 0.746760639559521 0.789147596635914 0.835392889477290 0.859069971660521 0.860175177031835 0.860543039661656 +0.746786526495085 0.746415510214664 0.745301139599305 0.743439439566089 0.719864989026912 0.683929142282066 0.650410226002820 0.618975535211281 0.589346608704003 0.561288233554804 0.534599991056645 0.509109680627775 0.484668148618601 0.461145179952613 0.438426202014984 0.416409614970490 0.395004609127326 0.374129363641446 0.353709545535700 0.333677046265356 0.313968906675401 0.294526391415042 0.275294181581990 0.256219660193893 0.237252269477221 0.218342922250737 0.199443452093825 0.180506088695882 0.161482945894867 0.142325510505058 0.122984120146121 0.103407417927342 0.083541770993895 0.063330638557209 0.042713873025287 0.021626935096106 -0.000000000000000 -0.021626935096105 -0.042713873025285 -0.063330638557207 -0.083541770993894 -0.103407417927345 -0.122984120146124 -0.142325510505057 -0.161482945894866 -0.180506088695881 -0.199443452093822 -0.218342922250740 -0.237252269477225 -0.256219660193891 -0.275294181581989 -0.294526391415040 -0.313968906675401 -0.333677046265358 -0.353709545535700 -0.374129363641445 -0.395004609127325 -0.416409614970489 -0.438426202014995 -0.461145179952613 -0.484668148618601 -0.509109680627774 -0.534599991056644 -0.561288233554801 -0.589346608704004 -0.618975535211294 -0.650410226002818 -0.683929142282066 -0.719864989026911 -0.743439439566089 -0.745301139599305 -0.746415510214688 -0.746786526495085 -0.746415510214663 -0.745301139599305 -0.743439439566115 -0.719864989026911 -0.683929142282085 -0.650410226002820 -0.618975535211281 -0.589346608704004 -0.561288233554801 -0.534599991056656 -0.509109680627776 -0.484668148618600 -0.461145179952613 -0.438426202014994 -0.416409614970487 -0.395004609127327 -0.374129363641448 -0.353709545535701 -0.333677046265357 -0.313968906675399 -0.294526391415039 -0.275294181581988 -0.256219660193893 -0.237252269477224 -0.218342922250738 -0.199443452093820 -0.180506088695880 -0.161482945894869 -0.142325510505059 -0.122984120146123 -0.103407417927344 -0.083541770993892 -0.063330638557205 -0.042713873025289 -0.021626935096108 -0.000000000000000 0.021626935096108 0.042713873025288 0.063330638557205 0.083541770993892 0.103407417927343 0.122984120146123 0.142325510505059 0.161482945894869 0.180506088695879 0.199443452093820 0.218342922250738 0.237252269477224 0.256219660193894 0.275294181581990 0.294526391415039 0.313968906675400 0.333677046265357 0.353709545535701 0.374129363641448 0.395004609127324 0.416409614970487 0.438426202014994 0.461145179952613 0.484668148618600 0.509109680627776 0.534599991056643 0.561288233554801 0.589346608704004 0.618975535211281 0.650410226002820 0.683929142282085 0.719864989026910 0.743439439566115 0.745301139599305 0.746415510214663 0.746786526495085 +0.658400989758842 0.658038417953473 0.656949645786973 0.655131497280368 0.652578660000039 0.630091427864348 0.601046797362112 0.573571447572292 0.547467559863640 0.522565602506650 0.498719141308159 0.475800727760307 0.453698609448133 0.432314073953888 0.411559285063357 0.391355504513539 0.371631617721546 0.352322900561258 0.333369978146329 0.314717937020887 0.296315560062386 0.278114659411926 0.260069487334292 0.242136208409868 0.224272419120808 0.206436702892662 0.188588210120775 0.170686253740348 0.152689911554285 0.134557626854081 0.116246798877445 0.097713354344644 0.078911290689614 0.059792180618730 0.040304626235934 0.020393649088226 -0.000000000000000 -0.020393649088224 -0.040304626235932 -0.059792180618729 -0.078911290689612 -0.097713354344647 -0.116246798877448 -0.134557626854080 -0.152689911554285 -0.170686253740348 -0.188588210120775 -0.206436702892667 -0.224272419120810 -0.242136208409866 -0.260069487334291 -0.278114659411925 -0.296315560062383 -0.314717937020896 -0.333369978146328 -0.352322900561257 -0.371631617721546 -0.391355504513539 -0.411559285063360 -0.432314073953889 -0.453698609448132 -0.475800727760308 -0.498719141308158 -0.522565602506648 -0.547467559863641 -0.573571447572294 -0.601046797362112 -0.630091427864346 -0.652578660000037 -0.655131497280368 -0.656949645786973 -0.658038417953475 -0.658400989758842 -0.658038417953489 -0.656949645786973 -0.655131497280367 -0.652578660000037 -0.630091427864357 -0.601046797362122 -0.573571447572293 -0.547467559863640 -0.522565602506648 -0.498719141308159 -0.475800727760308 -0.453698609448133 -0.432314073953889 -0.411559285063359 -0.391355504513534 -0.371631617721549 -0.352322900561261 -0.333369978146330 -0.314717937020896 -0.296315560062382 -0.278114659411924 -0.260069487334290 -0.242136208409869 -0.224272419120809 -0.206436702892665 -0.188588210120773 -0.170686253740347 -0.152689911554288 -0.134557626854083 -0.116246798877447 -0.097713354344646 -0.078911290689611 -0.059792180618727 -0.040304626235936 -0.020393649088227 -0.000000000000000 0.020393649088227 0.040304626235935 0.059792180618728 0.078911290689611 0.097713354344645 0.116246798877447 0.134557626854083 0.152689911554288 0.170686253740347 0.188588210120773 0.206436702892665 0.224272419120808 0.242136208409868 0.260069487334292 0.278114659411924 0.296315560062382 0.314717937020896 0.333369978146330 0.352322900561261 0.371631617721545 0.391355504513534 0.411559285063359 0.432314073953889 0.453698609448133 0.475800727760308 0.498719141308158 0.522565602506648 0.547467559863639 0.573571447572293 0.601046797362122 0.630091427864357 0.652578660000037 0.655131497280367 0.656949645786972 0.658038417953489 0.658400989758842 +0.587507577120784 0.587158663065496 0.586111085230551 0.584362333505576 0.581908214024014 0.578742833620969 0.557878468456697 0.533660314464815 0.510483434305604 0.488225095706287 0.466777903481970 0.446047221998256 0.425949079663184 0.406408450996415 0.387357836622966 0.368736079860833 0.350487372236030 0.332560410536574 0.314907675806829 0.297484810626831 0.280250075579161 0.263163869314713 0.246188299333514 0.229286792677657 0.212423737323948 0.195564146261616 0.178673337116755 0.161716620791089 0.144658992953872 0.127464822382549 0.110097530102316 0.092519253025027 0.074690485323998 0.056569690080681 0.038112872767343 0.019273106836055 -0.000000000000000 -0.019273106836054 -0.038112872767342 -0.056569690080681 -0.074690485323998 -0.092519253025030 -0.110097530102319 -0.127464822382548 -0.144658992953870 -0.161716620791087 -0.178673337116753 -0.195564146261620 -0.212423737323951 -0.229286792677657 -0.246188299333512 -0.263163869314713 -0.280250075579159 -0.297484810626834 -0.314907675806827 -0.332560410536572 -0.350487372236030 -0.368736079860831 -0.387357836622968 -0.406408450996415 -0.425949079663181 -0.446047221998256 -0.466777903481967 -0.488225095706287 -0.510483434305606 -0.533660314464815 -0.557878468456686 -0.578742833620983 -0.581908214024026 -0.584362333505576 -0.586111085230552 -0.587158663065496 -0.587507577120784 -0.587158663065486 -0.586111085230552 -0.584362333505589 -0.581908214024026 -0.578742833620969 -0.557878468456697 -0.533660314464815 -0.510483434305606 -0.488225095706282 -0.466777903481971 -0.446047221998258 -0.425949079663189 -0.406408450996415 -0.387357836622967 -0.368736079860829 -0.350487372236033 -0.332560410536574 -0.314907675806829 -0.297484810626833 -0.280250075579158 -0.263163869314712 -0.246188299333511 -0.229286792677660 -0.212423737323950 -0.195564146261618 -0.178673337116751 -0.161716620791086 -0.144658992953874 -0.127464822382551 -0.110097530102318 -0.092519253025029 -0.074690485323996 -0.056569690080679 -0.038112872767345 -0.019273106836057 -0.000000000000000 0.019273106836056 0.038112872767345 0.056569690080679 0.074690485323995 0.092519253025028 0.110097530102318 0.127464822382551 0.144658992953873 0.161716620791086 0.178673337116750 0.195564146261617 0.212423737323949 0.229286792677659 0.246188299333515 0.263163869314712 0.280250075579158 0.297484810626833 0.314907675806829 0.332560410536574 0.350487372236030 0.368736079860829 0.387357836622966 0.406408450996414 0.425949079663189 0.446047221998258 0.466777903481967 0.488225095706280 0.510483434305606 0.533660314464816 0.557878468456697 0.578742833620969 0.581908214024026 0.584362333505589 0.586111085230552 0.587158663065485 0.587507577120784 +0.529179164739451 0.528846082560073 0.527846180604531 0.526177491211749 0.523836730261679 0.520819290188543 0.517119230282002 0.498174861429302 0.477464712561464 0.457451851566179 0.438057605487759 0.419211792812418 0.400851398657850 0.382919472534163 0.365364204201971 0.348138142786025 0.331197531614130 0.314501736840802 0.298012752215170 0.281694765678786 0.265513776060723 0.249437250146440 0.233433811958739 0.217472957298888 0.201524787523172 0.185559757227534 0.169548431018277 0.153461244887659 0.137268267908016 0.120938960017648 0.104441921600917 0.087744630361477 0.070813160643646 0.053611879857589 0.036103115986679 0.018246789268329 -0.000000000000000 -0.018246789268328 -0.036103115986678 -0.053611879857587 -0.070813160643644 -0.087744630361480 -0.104441921600921 -0.120938960017647 -0.137268267908016 -0.153461244887659 -0.169548431018277 -0.185559757227535 -0.201524787523174 -0.217472957298888 -0.233433811958738 -0.249437250146440 -0.265513776060723 -0.281694765678791 -0.298012752215168 -0.314501736840801 -0.331197531614129 -0.348138142786022 -0.365364204201972 -0.382919472534164 -0.400851398657851 -0.419211792812417 -0.438057605487755 -0.457451851566177 -0.477464712561464 -0.498174861429303 -0.517119230282001 -0.520819290188552 -0.523836730261686 -0.526177491211747 -0.527846180604524 -0.528846082560074 -0.529179164739451 -0.528846082560065 -0.527846180604531 -0.526177491211760 -0.523836730261686 -0.520819290188545 -0.517119230282003 -0.498174861429303 -0.477464712561464 -0.457451851566178 -0.438057605487760 -0.419211792812418 -0.400851398657852 -0.382919472534164 -0.365364204201971 -0.348138142786023 -0.331197531614129 -0.314501736840804 -0.298012752215171 -0.281694765678789 -0.265513776060722 -0.249437250146438 -0.233433811958737 -0.217472957298890 -0.201524787523173 -0.185559757227535 -0.169548431018276 -0.153461244887658 -0.137268267908018 -0.120938960017650 -0.104441921600920 -0.087744630361479 -0.070813160643643 -0.053611879857586 -0.036103115986681 -0.018246789268331 -0.000000000000000 0.018246789268330 0.036103115986680 0.053611879857585 0.070813160643643 0.087744630361478 0.104441921600919 0.120938960017649 0.137268267908017 0.153461244887658 0.169548431018276 0.185559757227535 0.201524787523173 0.217472957298890 0.233433811958739 0.249437250146438 0.265513776060722 0.281694765678789 0.298012752215171 0.314501736840804 0.331197531614128 0.348138142786023 0.365364204201971 0.382919472534164 0.400851398657852 0.419211792812418 0.438057605487754 0.457451851566178 0.477464712561464 0.498174861429303 0.517119230282003 0.520819290188546 0.523836730261686 0.526177491211760 0.527846180604531 0.528846082560065 0.529179164739451 +0.480175901089553 0.479859325638338 0.478909089970554 0.477323665820882 0.475100505022018 0.472236037979999 0.468725671666725 0.464563787260165 0.447698588351201 0.429616777697993 0.412000038046718 0.394796657512304 0.377959633013798 0.361445976526105 0.345216124936206 0.329233434223750 0.313463742480447 0.297874989227459 0.282436880788291 0.267120593273775 0.251898506148357 0.236743960455709 0.221631036649888 0.206534347652824 0.191428843275961 0.176289622529542 0.161091750617012 0.145810077588138 0.130419055711803 0.114892552632840 0.099203657298520 0.083324475476521 0.067225911431935 0.050877431975916 0.034246808628671 0.017299833034457 -0.000000000000000 -0.017299833034456 -0.034246808628670 -0.050877431975915 -0.067225911431934 -0.083324475476523 -0.099203657298523 -0.114892552632839 -0.130419055711803 -0.145810077588138 -0.161091750617011 -0.176289622529544 -0.191428843275963 -0.206534347652823 -0.221631036649885 -0.236743960455708 -0.251898506148357 -0.267120593273777 -0.282436880788290 -0.297874989227453 -0.313463742480446 -0.329233434223749 -0.345216124936208 -0.361445976526108 -0.377959633013790 -0.394796657512303 -0.412000038046717 -0.429616777697983 -0.447698588351201 -0.464563787260163 -0.468725671666730 -0.472236037979998 -0.475100505022022 -0.477323665820882 -0.478909089970555 -0.479859325638339 -0.480175901089553 -0.479859325638341 -0.478909089970554 -0.477323665820876 -0.475100505022022 -0.472236037979999 -0.468725671666727 -0.464563787260165 -0.447698588351201 -0.429616777697980 -0.412000038046720 -0.394796657512304 -0.377959633013798 -0.361445976526106 -0.345216124936206 -0.329233434223748 -0.313463742480448 -0.297874989227460 -0.282436880788293 -0.267120593273777 -0.251898506148356 -0.236743960455708 -0.221631036649885 -0.206534347652824 -0.191428843275963 -0.176289622529543 -0.161091750617010 -0.145810077588135 -0.130419055711805 -0.114892552632842 -0.099203657298522 -0.083324475476522 -0.067225911431933 -0.050877431975914 -0.034246808628672 -0.017299833034459 -0.000000000000000 0.017299833034458 0.034246808628672 0.050877431975913 0.067225911431933 0.083324475476522 0.099203657298522 0.114892552632842 0.130419055711805 0.145810077588135 0.161091750617010 0.176289622529542 0.191428843275963 0.206534347652824 0.221631036649888 0.236743960455707 0.251898506148356 0.267120593273777 0.282436880788292 0.297874989227460 0.313463742480445 0.329233434223748 0.345216124936206 0.361445976526107 0.377959633013798 0.394796657512304 0.412000038046717 0.429616777697980 0.447698588351201 0.464563787260165 0.468725671666727 0.472236037979998 0.475100505022022 0.477323665820876 0.478909089970554 0.479859325638341 0.480175901089553 +0.438279423972675 0.437979282484473 0.437078467225840 0.435575806178528 0.433469347210703 0.430756359992087 0.427433338809994 0.423496006424195 0.418939319139998 0.404226033830831 0.388164621235059 0.372406991001540 0.356918500877037 0.341667056878410 0.326622749412586 0.311757536471800 0.297044965618488 0.282459927935158 0.267978438269660 0.253577437020476 0.239234609431653 0.224928218939216 0.210636951561291 0.196339768672995 0.182015765772742 0.167644035040574 0.153203529620623 0.138672927635693 0.124030493965464 0.109253937793171 0.094320263848358 0.079205615143423 0.063885104814632 0.048332634427758 0.032520695785284 0.016420152863670 -0.000000000000000 -0.016420152863669 -0.032520695785283 -0.048332634427757 -0.063885104814630 -0.079205615143426 -0.094320263848361 -0.109253937793171 -0.124030493965463 -0.138672927635693 -0.153203529620623 -0.167644035040575 -0.182015765772743 -0.196339768672995 -0.210636951561290 -0.224928218939214 -0.239234609431653 -0.253577437020479 -0.267978438269654 -0.282459927935157 -0.297044965618486 -0.311757536471800 -0.326622749412587 -0.341667056878412 -0.356918500877038 -0.372406991001538 -0.388164621235058 -0.404226033830831 -0.418939319140001 -0.423496006424195 -0.427433338809995 -0.430756359992087 -0.433469347210704 -0.435575806178528 -0.437078467225840 -0.437979282484477 -0.438279423972675 -0.437979282484473 -0.437078467225841 -0.435575806178529 -0.433469347210704 -0.430756359992093 -0.427433338809984 -0.423496006424198 -0.418939319139998 -0.404226033830831 -0.388164621235059 -0.372406991001540 -0.356918500877038 -0.341667056878412 -0.326622749412586 -0.311757536471800 -0.297044965618488 -0.282459927935158 -0.267978438269661 -0.253577437020478 -0.239234609431650 -0.224928218939213 -0.210636951561289 -0.196339768672995 -0.182015765772741 -0.167644035040575 -0.153203529620622 -0.138672927635688 -0.124030493965466 -0.109253937793174 -0.094320263848360 -0.079205615143425 -0.063885104814629 -0.048332634427756 -0.032520695785285 -0.016420152863671 -0.000000000000000 0.016420152863671 0.032520695785285 0.048332634427756 0.063885104814629 0.079205615143425 0.094320263848359 0.109253937793172 0.124030493965466 0.138672927635689 0.153203529620621 0.167644035040575 0.182015765772741 0.196339768672995 0.210636951561292 0.224928218939213 0.239234609431651 0.253577437020478 0.267978438269661 0.282459927935158 0.297044965618484 0.311757536471800 0.326622749412586 0.341667056878411 0.356918500877038 0.372406991001540 0.388164621235057 0.404226033830831 0.418939319139998 0.423496006424198 0.427433338809984 0.430756359992090 0.433469347210704 0.435575806178529 0.437078467225841 0.437979282484473 0.438279423972675 +0.401919241833610 0.401635096799882 0.400782367372025 0.399360171356373 0.397367041069002 0.394800927356557 0.391659205351338 0.387938682087834 0.383635606146277 0.378745679528793 0.366198557999350 0.351725217859469 0.337441067550076 0.323322580785220 0.309347516700337 0.295494733057621 0.281744019112403 0.268075944759917 0.254471723094879 0.240913083926996 0.227382156122275 0.213861356898946 0.200333286409414 0.186780626094342 0.173186039409687 0.159532073605863 0.145801061284743 0.131975020476884 0.118035551969056 0.103963732571434 0.089740002943521 0.075344048496161 0.060754671750838 0.045949654362652 0.030905606794166 0.015597803356260 -0.000000000000000 -0.015597803356259 -0.030905606794166 -0.045949654362651 -0.060754671750837 -0.075344048496163 -0.089740002943524 -0.103963732571432 -0.118035551969055 -0.131975020476883 -0.145801061284742 -0.159532073605865 -0.173186039409691 -0.186780626094338 -0.200333286409413 -0.213861356898945 -0.227382156122270 -0.240913083926998 -0.254471723094879 -0.268075944759917 -0.281744019112402 -0.295494733057622 -0.309347516700338 -0.323322580785221 -0.337441067550076 -0.351725217859469 -0.366198557999350 -0.378745679528786 -0.383635606146266 -0.387938682087832 -0.391659205351330 -0.394800927356557 -0.397367041069002 -0.399360171356376 -0.400782367372021 -0.401635096799882 -0.401919241833610 -0.401635096799882 -0.400782367372022 -0.399360171356375 -0.397367041069002 -0.394800927356558 -0.391659205351339 -0.387938682087831 -0.383635606146266 -0.378745679528788 -0.366198557999352 -0.351725217859470 -0.337441067550075 -0.323322580785221 -0.309347516700337 -0.295494733057620 -0.281744019112403 -0.268075944759918 -0.254471723094879 -0.240913083926996 -0.227382156122269 -0.213861356898945 -0.200333286409408 -0.186780626094343 -0.173186039409689 -0.159532073605864 -0.145801061284741 -0.131975020476881 -0.118035551969057 -0.103963732571436 -0.089740002943523 -0.075344048496163 -0.060754671750836 -0.045949654362650 -0.030905606794168 -0.015597803356262 -0.000000000000000 0.015597803356261 0.030905606794168 0.045949654362650 0.060754671750836 0.075344048496163 0.089740002943523 0.103963732571435 0.118035551969057 0.131975020476881 0.145801061284740 0.159532073605864 0.173186039409689 0.186780626094343 0.200333286409415 0.213861356898945 0.227382156122270 0.240913083926996 0.254471723094879 0.268075944759917 0.281744019112400 0.295494733057620 0.309347516700337 0.323322580785221 0.337441067550075 0.351725217859470 0.366198557999348 0.378745679528788 0.383635606146266 0.387938682087831 0.391659205351339 0.394800927356557 0.397367041069002 0.399360171356375 0.400782367372022 0.401635096799882 0.401919241833610 +0.369951891403409 0.369683141299597 0.368876675495757 0.367531848546827 0.365647588167597 0.363222400471883 0.360254377416693 0.356741206561230 0.352680183283246 0.348068225628212 0.342901892001022 0.332492602162039 0.319292679783663 0.306199081797956 0.293195695860614 0.280266947353824 0.267397709309363 0.254573218667294 0.241778997686838 0.229000779458699 0.216224436572949 0.203435912078021 0.190621151927379 0.177766038153585 0.164856322036612 0.151877556545263 0.138815027328545 0.125653681517690 0.112378053569329 0.098972187335178 0.085419553482842 0.071702961313977 0.057804463928412 0.043705255562917 0.029385559787955 0.014824507070423 -0.000000000000000 -0.014824507070422 -0.029385559787954 -0.043705255562916 -0.057804463928412 -0.071702961313979 -0.085419553482845 -0.098972187335178 -0.112378053569328 -0.125653681517689 -0.138815027328544 -0.151877556545266 -0.164856322036615 -0.177766038153583 -0.190621151927378 -0.203435912078021 -0.216224436572948 -0.229000779458701 -0.241778997686837 -0.254573218667293 -0.267397709309362 -0.280266947353825 -0.293195695860616 -0.306199081797963 -0.319292679783663 -0.332492602162039 -0.342901892001022 -0.348068225628209 -0.352680183283250 -0.356741206561235 -0.360254377416693 -0.363222400471882 -0.365647588167595 -0.367531848546827 -0.368876675495758 -0.369683141299597 -0.369951891403411 -0.369683141299604 -0.368876675495757 -0.367531848546824 -0.365647588167596 -0.363222400471884 -0.360254377416693 -0.356741206561230 -0.352680183283247 -0.348068225628209 -0.342901892001023 -0.332492602162040 -0.319292679783665 -0.306199081797962 -0.293195695860615 -0.280266947353824 -0.267397709309364 -0.254573218667295 -0.241778997686838 -0.229000779458700 -0.216224436572948 -0.203435912078020 -0.190621151927378 -0.177766038153586 -0.164856322036613 -0.151877556545266 -0.138815027328544 -0.125653681517688 -0.112378053569330 -0.098972187335179 -0.085419553482844 -0.071702961313978 -0.057804463928411 -0.043705255562914 -0.029385559787956 -0.014824507070424 -0.000000000000000 0.014824507070424 0.029385559787956 0.043705255562914 0.057804463928411 0.071702961313978 0.085419553482844 0.098972187335179 0.112378053569330 0.125653681517688 0.138815027328543 0.151877556545265 0.164856322036613 0.177766038153586 0.190621151927379 0.203435912078020 0.216224436572948 0.229000779458700 0.241778997686838 0.254573218667295 0.267397709309360 0.280266947353824 0.293195695860615 0.306199081797962 0.319292679783665 0.332492602162040 0.342901892001023 0.348068225628209 0.352680183283247 0.356741206561230 0.360254377416693 0.363222400471884 0.365647588167596 0.367531848546824 0.368876675495757 0.369683141299603 0.369951891403409 +0.341524634254755 0.341270620416742 0.340508428075465 0.339237605908973 0.337457405592749 0.335166787662957 0.332364429815468 0.329048737731185 0.325217858544632 0.320869697099039 0.316001935157716 0.310612053768319 0.302279188568176 0.290119369272662 0.278005170050608 0.265925528405837 0.253869476552854 0.241826104583083 0.229784523645516 0.217733828923228 0.205663062175571 0.193561173603099 0.181416982777517 0.169219138361661 0.156956076324796 0.144615976334843 0.132186715982030 0.119655822456348 0.107010421264026 0.094237181524641 0.081322257339971 0.068251224666622 0.055009013055850 0.041579831543955 0.027947087883375 0.014093300195626 -0.000000000000000 -0.014093300195626 -0.027947087883374 -0.041579831543954 -0.055009013055850 -0.068251224666624 -0.081322257339973 -0.094237181524640 -0.107010421264025 -0.119655822456347 -0.132186715982029 -0.144615976334846 -0.156956076324797 -0.169219138361661 -0.181416982777517 -0.193561173603097 -0.205663062175570 -0.217733828923230 -0.229784523645516 -0.241826104583082 -0.253869476552854 -0.265925528405836 -0.278005170050610 -0.290119369272662 -0.302279188568176 -0.310612053768313 -0.316001935157716 -0.320869697099039 -0.325217858544630 -0.329048737731186 -0.332364429815468 -0.335166787662957 -0.337457405592748 -0.339237605908973 -0.340508428075464 -0.341270620416743 -0.341524634254755 -0.341270620416743 -0.340508428075465 -0.339237605908973 -0.337457405592747 -0.335166787662954 -0.332364429815470 -0.329048737731186 -0.325217858544631 -0.320869697099038 -0.316001935157716 -0.310612053768319 -0.302279188568177 -0.290119369272662 -0.278005170050608 -0.265925528405835 -0.253869476552855 -0.241826104583085 -0.229784523645516 -0.217733828923229 -0.205663062175571 -0.193561173603096 -0.181416982777517 -0.169219138361662 -0.156956076324797 -0.144615976334844 -0.132186715982029 -0.119655822456346 -0.107010421264027 -0.094237181524642 -0.081322257339972 -0.068251224666623 -0.055009013055849 -0.041579831543953 -0.027947087883376 -0.014093300195628 -0.000000000000000 0.014093300195627 0.027947087883376 0.041579831543953 0.055009013055848 0.068251224666623 0.081322257339972 0.094237181524642 0.107010421264027 0.119655822456346 0.132186715982029 0.144615976334844 0.156956076324797 0.169219138361662 0.181416982777518 0.193561173603096 0.205663062175571 0.217733828923229 0.229784523645516 0.241826104583084 0.253869476552852 0.265925528405835 0.278005170050608 0.290119369272662 0.302279188568177 0.310612053768319 0.316001935157714 0.320869697099038 0.325217858544631 0.329048737731186 0.332364429815470 0.335166787662954 0.337457405592747 0.339237605908973 0.340508428075465 0.341270620416743 0.341524634254755 +0.315988197380754 0.315748260931403 0.315028353952824 0.313828184760833 0.312147271249880 0.309984946981174 0.307340369778090 0.304212532900539 0.300600278890769 0.296502316202730 0.291917238747489 0.286843548506417 0.281279681383126 0.274934754759540 0.263639514414561 0.252345059127184 0.241043833695288 0.229728119390269 0.218390026369919 0.207021483326126 0.195614224546917 0.184159774515569 0.172649430118991 0.161074240491961 0.149424984481986 0.137692145679931 0.125865884923731 0.113936010145088 0.101891943391469 0.089722684816974 0.077416773395205 0.064962244063909 0.052346580964455 0.039556666387852 0.026578724982301 0.013398262713792 -0.000000000000000 -0.013398262713791 -0.026578724982300 -0.039556666387851 -0.052346580964454 -0.064962244063911 -0.077416773395209 -0.089722684816974 -0.101891943391468 -0.113936010145088 -0.125865884923730 -0.137692145679933 -0.149424984481988 -0.161074240491959 -0.172649430118990 -0.184159774515569 -0.195614224546916 -0.207021483326127 -0.218390026369917 -0.229728119390268 -0.241043833695288 -0.252345059127183 -0.263639514414563 -0.274934754759540 -0.281279681383126 -0.286843548506416 -0.291917238747488 -0.296502316202730 -0.300600278890769 -0.304212532900539 -0.307340369778089 -0.309984946981175 -0.312147271249879 -0.313828184760832 -0.315028353952818 -0.315748260931403 -0.315988197380754 -0.315748260931401 -0.315028353952825 -0.313828184760832 -0.312147271249878 -0.309984946981175 -0.307340369778089 -0.304212532900539 -0.300600278890770 -0.296502316202731 -0.291917238747488 -0.286843548506410 -0.281279681383126 -0.274934754759540 -0.263639514414562 -0.252345059127182 -0.241043833695289 -0.229728119390269 -0.218390026369920 -0.207021483326126 -0.195614224546916 -0.184159774515566 -0.172649430118989 -0.161074240491963 -0.149424984481988 -0.137692145679931 -0.125865884923729 -0.113936010145087 -0.101891943391470 -0.089722684816975 -0.077416773395208 -0.064962244063910 -0.052346580964453 -0.039556666387850 -0.026578724982302 -0.013398262713793 -0.000000000000000 0.013398262713793 0.026578724982302 0.039556666387850 0.052346580964453 0.064962244063910 0.077416773395208 0.089722684816975 0.101891943391469 0.113936010145087 0.125865884923728 0.137692145679931 0.149424984481988 0.161074240491962 0.172649430118991 0.184159774515567 0.195614224546915 0.207021483326126 0.218390026369920 0.229728119390268 0.241043833695288 0.252345059127182 0.263639514414562 0.274934754759540 0.281279681383126 0.286843548506410 0.291917238747487 0.296502316202730 0.300600278890769 0.304212532900539 0.307340369778089 0.309984946981175 0.312147271249878 0.313828184760832 0.315028353952825 0.315748260931401 0.315988197380754 +0.292839130699917 0.292612642258265 0.291933123138192 0.290800413155547 0.289214249348622 0.287174272023590 0.284680033273213 0.281731008023577 0.278326607678895 0.274466196448837 0.270149110457633 0.265374679747120 0.260142253299167 0.254451227214081 0.248301076192046 0.239418623482551 0.228822102199805 0.218188087315491 0.207511199933342 0.196785762066276 0.186005801141517 0.175165051079897 0.164256950206502 0.153274636194842 0.142210938198268 0.131058366278515 0.119809098201750 0.108454963635941 0.096987425749338 0.085397560177445 0.073676031294785 0.061813065697148 0.049798422769567 0.037621362184528 0.025270608143382 0.012734310141068 -0.000000000000000 -0.012734310141068 -0.025270608143381 -0.037621362184527 -0.049798422769566 -0.061813065697150 -0.073676031294786 -0.085397560177444 -0.096987425749337 -0.108454963635941 -0.119809098201750 -0.131058366278518 -0.142210938198271 -0.153274636194841 -0.164256950206500 -0.175165051079896 -0.186005801141517 -0.196785762066281 -0.207511199933342 -0.218188087315491 -0.228822102199805 -0.239418623482551 -0.248301076192049 -0.254451227214083 -0.260142253299173 -0.265374679747119 -0.270149110457633 -0.274466196448837 -0.278326607678895 -0.281731008023578 -0.284680033273212 -0.287174272023589 -0.289214249348622 -0.290800413155547 -0.291933123138192 -0.292612642258270 -0.292839130699917 -0.292612642258266 -0.291933123138193 -0.290800413155547 -0.289214249348622 -0.287174272023590 -0.284680033273213 -0.281731008023579 -0.278326607678894 -0.274466196448837 -0.270149110457631 -0.265374679747120 -0.260142253299170 -0.254451227214081 -0.248301076192049 -0.239418623482551 -0.228822102199805 -0.218188087315493 -0.207511199933343 -0.196785762066280 -0.186005801141515 -0.175165051079895 -0.164256950206499 -0.153274636194843 -0.142210938198269 -0.131058366278516 -0.119809098201749 -0.108454963635939 -0.096987425749339 -0.085397560177445 -0.073676031294785 -0.061813065697149 -0.049798422769565 -0.037621362184526 -0.025270608143383 -0.012734310141069 -0.000000000000000 0.012734310141069 0.025270608143383 0.037621362184526 0.049798422769565 0.061813065697149 0.073676031294785 0.085397560177445 0.096987425749339 0.108454963635940 0.119809098201749 0.131058366278516 0.142210938198269 0.153274636194842 0.164256950206503 0.175165051079895 0.186005801141515 0.196785762066280 0.207511199933343 0.218188087315493 0.228822102199803 0.239418623482551 0.248301076192049 0.254451227214081 0.260142253299170 0.265374679747120 0.270149110457632 0.274466196448837 0.278326607678894 0.281731008023579 0.284680033273213 0.287174272023590 0.289214249348622 0.290800413155547 0.291933123138193 0.292612642258266 0.292839130699917 +0.271680677584618 0.271467051924123 0.270826157272163 0.269757941776553 0.268262322886760 0.266339193178873 0.263988428550796 0.261209898827693 0.258003480828053 0.254369073951418 0.250306618357857 0.245816115818380 0.240897653322839 0.235551429538470 0.229777784217040 0.223577230651785 0.216950491286364 0.207127138052810 0.197074978796292 0.186958967591102 0.176775087098365 0.166518970205060 0.156185909293314 0.145770862326327 0.135268455997071 0.124672986144533 0.113978415606411 0.103178369644930 0.092266129053936 0.081234621029949 0.070076407866999 0.058783673514696 0.047348208020634 0.035761389861837 0.024014166155548 0.012097030726867 -0.000000000000000 -0.012097030726867 -0.024014166155547 -0.035761389861836 -0.047348208020633 -0.058783673514698 -0.070076407867001 -0.081234621029949 -0.092266129053936 -0.103178369644928 -0.113978415606411 -0.124672986144535 -0.135268455997074 -0.145770862326326 -0.156185909293313 -0.166518970205060 -0.176775087098364 -0.186958967591104 -0.197074978796292 -0.207127138052810 -0.216950491286364 -0.223577230651785 -0.229777784217041 -0.235551429538472 -0.240897653322839 -0.245816115818379 -0.250306618357857 -0.254369073951419 -0.258003480828054 -0.261209898827693 -0.263988428550801 -0.266339193178873 -0.268262322886761 -0.269757941776553 -0.270826157272163 -0.271467051924123 -0.271680677584618 -0.271467051924123 -0.270826157272163 -0.269757941776548 -0.268262322886762 -0.266339193178873 -0.263988428550797 -0.261209898827693 -0.258003480828054 -0.254369073951419 -0.250306618357860 -0.245816115818380 -0.240897653322843 -0.235551429538471 -0.229777784217041 -0.223577230651783 -0.216950491286365 -0.207127138052811 -0.197074978796292 -0.186958967591103 -0.176775087098363 -0.166518970205059 -0.156185909293312 -0.145770862326329 -0.135268455997073 -0.124672986144533 -0.113978415606411 -0.103178369644928 -0.092266129053939 -0.081234621029951 -0.070076407866999 -0.058783673514697 -0.047348208020633 -0.035761389861835 -0.024014166155549 -0.012097030726868 -0.000000000000000 0.012097030726868 0.024014166155549 0.035761389861836 0.047348208020633 0.058783673514697 0.070076407866999 0.081234621029951 0.092266129053938 0.103178369644927 0.113978415606411 0.124672986144533 0.135268455997073 0.145770862326328 0.156185909293315 0.166518970205060 0.176775087098363 0.186958967591103 0.197074978796292 0.207127138052811 0.216950491286364 0.223577230651783 0.229777784217041 0.235551429538471 0.240897653322842 0.245816115818380 0.250306618357853 0.254369073951419 0.258003480828054 0.261209898827693 0.263988428550797 0.266339193178873 0.268262322886762 0.269757941776548 0.270826157272163 0.271467051924123 0.271680677584618 +0.252195569878323 0.251994272221287 0.251390391293336 0.250383964317544 0.248975056982185 0.247163768929247 0.244950241466258 0.242334667528415 0.239317303925393 0.235898485913490 0.232078644139581 0.227858324008159 0.223238207526493 0.218219137685379 0.212802145434141 0.206988479307441 0.200779637758991 0.194177404252127 0.187017381203109 0.177481716785861 0.167866995416078 0.158170482245957 0.148389075509269 0.138519320613122 0.128557421380033 0.118499248691357 0.108340346753256 0.098075937180243 0.087700921069231 0.077209879218111 0.066597070627342 0.055856429410544 0.044981560230538 0.033965732370896 0.022801872549653 0.011482556581718 -0.000000000000000 -0.011482556581717 -0.022801872549652 -0.033965732370896 -0.044981560230538 -0.055856429410546 -0.066597070627344 -0.077209879218110 -0.087700921069231 -0.098075937180242 -0.108340346753256 -0.118499248691358 -0.128557421380035 -0.138519320613122 -0.148389075509269 -0.158170482245957 -0.167866995416078 -0.177481716785862 -0.187017381203109 -0.194177404252126 -0.200779637758990 -0.206988479307441 -0.212802145434143 -0.218219137685378 -0.223238207526492 -0.227858324008162 -0.232078644139580 -0.235898485913490 -0.239317303925394 -0.242334667528418 -0.244950241466257 -0.247163768929247 -0.248975056982185 -0.250383964317544 -0.251390391293333 -0.251994272221289 -0.252195569878323 -0.251994272221292 -0.251390391293332 -0.250383964317544 -0.248975056982185 -0.247163768929248 -0.244950241466258 -0.242334667528416 -0.239317303925394 -0.235898485913489 -0.232078644139583 -0.227858324008161 -0.223238207526493 -0.218219137685379 -0.212802145434142 -0.206988479307441 -0.200779637758991 -0.194177404252126 -0.187017381203112 -0.177481716785861 -0.167866995416077 -0.158170482245957 -0.148389075509265 -0.138519320613123 -0.128557421380034 -0.118499248691358 -0.108340346753255 -0.098075937180242 -0.087700921069232 -0.077209879218112 -0.066597070627344 -0.055856429410544 -0.044981560230537 -0.033965732370895 -0.022801872549653 -0.011482556581719 -0.000000000000000 0.011482556581718 0.022801872549653 0.033965732370894 0.044981560230536 0.055856429410544 0.066597070627344 0.077209879218111 0.087700921069232 0.098075937180242 0.108340346753255 0.118499248691358 0.128557421380034 0.138519320613123 0.148389075509270 0.158170482245957 0.167866995416077 0.177481716785861 0.187017381203112 0.194177404252126 0.200779637758992 0.206988479307441 0.212802145434142 0.218219137685379 0.223238207526493 0.227858324008161 0.232078644139585 0.235898485913489 0.239317303925394 0.242334667528416 0.244950241466258 0.247163768929248 0.248975056982185 0.250383964317544 0.251390391293332 0.251994272221292 0.252195569878323 +0.234126708389846 0.233937256090884 0.233368935568681 0.232421856960659 0.231096207209751 0.229392255143905 0.227310358604766 0.224850973642135 0.222014665795023 0.218802123483651 0.215214173539131 0.211251798899929 0.206916158504453 0.202208609409244 0.197130731159920 0.191684352438999 0.185871580009153 0.179694829963293 0.173156861283037 0.166260811695132 0.159010235800160 0.150074195115525 0.140824403274778 0.131481163837141 0.122042063747204 0.112504362690565 0.102865005600645 0.093120633270246 0.083267591273413 0.073301937390386 0.063219447718903 0.053015621648768 0.042685685873330 0.032224597611627 0.021627047218510 0.010887460367197 -0.000000000000000 -0.010887460367197 -0.021627047218509 -0.032224597611626 -0.042685685873329 -0.053015621648770 -0.063219447718905 -0.073301937390386 -0.083267591273412 -0.093120633270245 -0.102865005600645 -0.112504362690568 -0.122042063747206 -0.131481163837140 -0.140824403274778 -0.150074195115525 -0.159010235800159 -0.166260811695132 -0.173156861283036 -0.179694829963292 -0.185871580009152 -0.191684352438999 -0.197130731159920 -0.202208609409244 -0.206916158504456 -0.211251798899929 -0.215214173539131 -0.218802123483650 -0.222014665795023 -0.224850973642137 -0.227310358604769 -0.229392255143905 -0.231096207209751 -0.232421856960659 -0.233368935568681 -0.233937256090884 -0.234126708389846 -0.233937256090885 -0.233368935568681 -0.232421856960659 -0.231096207209746 -0.229392255143906 -0.227310358604766 -0.224850973642136 -0.222014665795022 -0.218802123483648 -0.215214173539131 -0.211251798899929 -0.206916158504454 -0.202208609409244 -0.197130731159920 -0.191684352438997 -0.185871580009153 -0.179694829963294 -0.173156861283038 -0.166260811695131 -0.159010235800158 -0.150074195115525 -0.140824403274777 -0.131481163837142 -0.122042063747205 -0.112504362690566 -0.102865005600644 -0.093120633270245 -0.083267591273414 -0.073301937390387 -0.063219447718904 -0.053015621648769 -0.042685685873328 -0.032224597611625 -0.021627047218511 -0.010887460367199 -0.000000000000000 0.010887460367198 0.021627047218511 0.032224597611625 0.042685685873328 0.053015621648769 0.063219447718904 0.073301937390387 0.083267591273414 0.093120633270245 0.102865005600644 0.112504362690566 0.122042063747205 0.131481163837142 0.140824403274778 0.150074195115525 0.159010235800158 0.166260811695131 0.173156861283038 0.179694829963294 0.185871580009152 0.191684352438997 0.197130731159920 0.202208609409243 0.206916158504454 0.211251798899929 0.215214173539133 0.218802123483648 0.222014665795022 0.224850973642136 0.227310358604767 0.229392255143904 0.231096207209746 0.232421856960659 0.233368935568680 0.233937256090885 0.234126708389846 +0.217263180596345 0.217085142352957 0.216551083765972 0.215661174189275 0.214415698961770 0.212815064035452 0.210859802463544 0.208550582756859 0.205888219118419 0.202873683567173 0.199508119962467 0.195792859940068 0.191729440769620 0.187319625140572 0.182565422880116 0.177469114601378 0.172033277273296 0.166260811695136 0.160154971847826 0.153719396081891 0.146958140086380 0.139875711565915 0.132477106532496 0.124621384885668 0.115690124168472 0.106658740443308 0.097525417631332 0.088288056632997 0.078944289321039 0.069491491368269 0.059926794113008 0.050247095663280 0.040449071441901 0.030529184378771 0.020483694964121 0.010308671387248 -0.000000000000000 -0.010308671387247 -0.020483694964120 -0.030529184378770 -0.040449071441900 -0.050247095663281 -0.059926794113009 -0.069491491368268 -0.078944289321038 -0.088288056632996 -0.097525417631332 -0.106658740443309 -0.115690124168475 -0.124621384885667 -0.132477106532496 -0.139875711565914 -0.146958140086380 -0.153719396081892 -0.160154971847826 -0.166260811695135 -0.172033277273295 -0.177469114601376 -0.182565422880116 -0.187319625140571 -0.191729440769620 -0.195792859940067 -0.199508119962468 -0.202873683567172 -0.205888219118420 -0.208550582756858 -0.210859802463543 -0.212815064035452 -0.214415698961772 -0.215661174189275 -0.216551083765969 -0.217085142352957 -0.217263180596345 -0.217085142352956 -0.216551083765971 -0.215661174189272 -0.214415698961773 -0.212815064035453 -0.210859802463544 -0.208550582756859 -0.205888219118419 -0.202873683567171 -0.199508119962467 -0.195792859940070 -0.191729440769621 -0.187319625140572 -0.182565422880116 -0.177469114601377 -0.172033277273297 -0.166260811695136 -0.160154971847828 -0.153719396081891 -0.146958140086379 -0.139875711565913 -0.132477106532495 -0.124621384885669 -0.115690124168473 -0.106658740443308 -0.097525417631331 -0.088288056632995 -0.078944289321040 -0.069491491368270 -0.059926794113009 -0.050247095663281 -0.040449071441899 -0.030529184378769 -0.020483694964121 -0.010308671387249 -0.000000000000000 0.010308671387249 0.020483694964121 0.030529184378769 0.040449071441899 0.050247095663281 0.059926794113009 0.069491491368270 0.078944289321040 0.088288056632995 0.097525417631331 0.106658740443308 0.115690124168473 0.124621384885669 0.132477106532497 0.139875711565913 0.146958140086380 0.153719396081891 0.160154971847828 0.166260811695136 0.172033277273294 0.177469114601376 0.182565422880116 0.187319625140572 0.191729440769621 0.195792859940070 0.199508119962468 0.202873683567172 0.205888219118419 0.208550582756859 0.210859802463544 0.212815064035451 0.214415698961773 0.215661174189272 0.216551083765971 0.217085142352956 0.217263180596345 +0.201429966235615 0.201262960056164 0.200762013521271 0.199927343472129 0.198759314080478 0.197258441004363 0.195425397208135 0.193261020448451 0.190766322427432 0.187942499613782 0.184790945731188 0.181313265911257 0.177511292505528 0.173387102547000 0.168943036846810 0.164181720705459 0.159106086210261 0.153719396081887 0.148025269021896 0.142027706500808 0.135731120912030 0.129140365000434 0.122260762456232 0.115098139544103 0.107658857614865 0.099949846322273 0.091978637340080 0.083555916728642 0.074711058079494 0.065760916533048 0.056703831339616 0.047537947773337 0.038261232478184 0.028871488785173 0.019366372225745 0.009743406478274 -0.000000000000000 -0.009743406478274 -0.019366372225744 -0.028871488785173 -0.038261232478184 -0.047537947773339 -0.056703831339618 -0.065760916533047 -0.074711058079494 -0.083555916728641 -0.091978637340079 -0.099949846322275 -0.107658857614867 -0.115098139544102 -0.122260762456232 -0.129140365000433 -0.135731120912029 -0.142027706500810 -0.148025269021896 -0.153719396081887 -0.159106086210261 -0.164181720705459 -0.168943036846810 -0.173387102547001 -0.177511292505527 -0.181313265911257 -0.184790945731187 -0.187942499613783 -0.190766322427433 -0.193261020448447 -0.195425397208135 -0.197258441004363 -0.198759314080478 -0.199927343472129 -0.200762013521271 -0.201262960056161 -0.201429966235615 -0.201262960056164 -0.200762013521271 -0.199927343472129 -0.198759314080478 -0.197258441004363 -0.195425397208135 -0.193261020448451 -0.190766322427433 -0.187942499613783 -0.184790945731190 -0.181313265911258 -0.177511292505529 -0.173387102547001 -0.168943036846809 -0.164181720705458 -0.159106086210261 -0.153719396081887 -0.148025269021896 -0.142027706500810 -0.135731120912029 -0.129140365000432 -0.122260762456231 -0.115098139544104 -0.107658857614866 -0.099949846322274 -0.091978637340078 -0.083555916728641 -0.074711058079495 -0.065760916533049 -0.056703831339617 -0.047537947773338 -0.038261232478183 -0.028871488785173 -0.019366372225745 -0.009743406478275 -0.000000000000000 0.009743406478275 0.019366372225745 0.028871488785172 0.038261232478183 0.047537947773338 0.056703831339617 0.065760916533049 0.074711058079495 0.083555916728641 0.091978637340078 0.099949846322274 0.107658857614866 0.115098139544104 0.122260762456234 0.129140365000432 0.135731120912029 0.142027706500810 0.148025269021896 0.153719396081887 0.159106086210260 0.164181720705458 0.168943036846809 0.173387102547000 0.177511292505529 0.181313265911258 0.184790945731187 0.187942499613782 0.190766322427432 0.193261020448451 0.195425397208135 0.197258441004363 0.198759314080478 0.199927343472129 0.200762013521271 0.201262960056164 0.201429966235615 +0.186480238610191 0.186323929249396 0.185855085647800 0.185073961983796 0.183980984340873 0.182576754385433 0.180862054512511 0.178837854455921 0.176505319357600 0.173865819288999 0.170920940214819 0.167672496386148 0.164122544146166 0.160273397126929 0.156127642809882 0.151688160416407 0.146958140086382 0.141941103294322 0.136640924441720 0.131061853552985 0.125208539988909 0.119086057077030 0.112699927542097 0.106056149601865 0.099161223574400 0.092022178821964 0.084646600834490 0.077042658231849 0.069219129439539 0.061185428766659 0.052951631588592 0.044528498310341 0.035927496759687 0.027160822633452 0.018241417595262 0.009182984600052 0.000001113916932 -0.009182984600051 -0.018241417595262 -0.027160822633451 -0.035927496759686 -0.044528498310342 -0.052951631588593 -0.061185428766659 -0.069219129439538 -0.077042658231848 -0.084646600834490 -0.092022178821966 -0.099161223574402 -0.106056149601864 -0.112699927542098 -0.119086057077030 -0.125208539988908 -0.131061853552988 -0.136640924441720 -0.141941103294322 -0.146958140086383 -0.151688160416407 -0.156127642809882 -0.160273397126927 -0.164122544146168 -0.167672496386147 -0.170920940214818 -0.173865819288998 -0.176505319357602 -0.178837854455924 -0.180862054512511 -0.182576754385430 -0.183980984340873 -0.185073961983797 -0.185855085647800 -0.186323929249396 -0.186480238610191 -0.186323929249397 -0.185855085647801 -0.185073961983797 -0.183980984340873 -0.182576754385432 -0.180862054512511 -0.178837854455922 -0.176505319357601 -0.173865819288998 -0.170920940214819 -0.167672496386148 -0.164122544146167 -0.160273397126926 -0.156127642809881 -0.151688160416407 -0.146958140086383 -0.141941103294324 -0.136640924441721 -0.131061853552986 -0.125208539988908 -0.119086057077028 -0.112699927542097 -0.106056149601866 -0.099161223574402 -0.092022178821965 -0.084646600834490 -0.077042658231846 -0.069219129439540 -0.061185428766660 -0.052951631588593 -0.044528498310342 -0.035927496759685 -0.027160822633450 -0.018241417595263 -0.009182984600053 0.000006794704813 0.009182984600053 0.018241417595263 0.027160822633450 0.035927496759685 0.044528498310342 0.052951631588593 0.061185428766660 0.069219129439539 0.077042658231846 0.084646600834489 0.092022178821965 0.099161223574401 0.106056149601866 0.112699927542098 0.119086057077028 0.125208539988908 0.131061853552986 0.136640924441721 0.141941103294323 0.146958140086382 0.151688160416407 0.156127642809881 0.160273397126926 0.164122544146166 0.167672496386148 0.170920940214819 0.173865819288998 0.176505319357601 0.178837854455922 0.180862054512511 0.182576754385432 0.183980984340873 0.185073961983797 0.185855085647801 0.186323929249397 0.186480238610191 +0.172289523289411 0.172143619559824 0.171706002368528 0.170976954349914 0.169956948700518 0.168646652384307 0.167046930613169 0.165158852595197 0.162983698540776 0.160522967913763 0.157778388911322 0.154751929152424 0.151445807550177 0.147862507338229 0.144004790215400 0.139875711565915 0.135478636705053 0.130817258091357 0.125895613436890 0.120718104636379 0.115289517424464 0.109615041657080 0.103700292099463 0.097551329587883 0.091174682416260 0.084577367781790 0.077766913105710 0.070751377026618 0.063539369844722 0.056140073175523 0.048563258552083 0.040819304695275 0.032919213152841 0.024874621989946 0.016697817197720 0.008401741471671 -0.000000000000000 -0.008401741471671 -0.016697817197720 -0.024874621989946 -0.032919213152840 -0.040819304695276 -0.048563258552084 -0.056140073175522 -0.063539369844721 -0.070751377026617 -0.077766913105709 -0.084577367781792 -0.091174682416261 -0.097551329587884 -0.103700292099463 -0.109615041657080 -0.115289517424463 -0.120718104636381 -0.125895613436888 -0.130817258091357 -0.135478636705053 -0.139875711565914 -0.144004790215401 -0.147862507338229 -0.151445807550178 -0.154751929152424 -0.157778388911322 -0.160522967913763 -0.162983698540776 -0.165158852595198 -0.167046930613169 -0.168646652384308 -0.169956948700518 -0.170976954349915 -0.171706002368529 -0.172143619559824 -0.172289523289411 -0.172143619559824 -0.171706002368528 -0.170976954349915 -0.169956948700518 -0.168646652384308 -0.167046930613170 -0.165158852595197 -0.162983698540776 -0.160522967913763 -0.157778388911322 -0.154751929152424 -0.151445807550178 -0.147862507338228 -0.144004790215401 -0.139875711565913 -0.135478636705053 -0.130817258091358 -0.125895613436890 -0.120718104636381 -0.115289517424462 -0.109615041657079 -0.103700292099462 -0.097551329587884 -0.091174682416260 -0.084577367781791 -0.077766913105708 -0.070751377026616 -0.063539369844723 -0.056140073175523 -0.048563258552083 -0.040819304695276 -0.032919213152840 -0.024874621989945 -0.016697817197721 -0.008401741471672 -0.000000000000000 0.008401741471671 0.016697817197721 0.024874621989944 0.032919213152840 0.040819304695276 0.048563258552083 0.056140073175523 0.063539369844722 0.070751377026617 0.077766913105708 0.084577367781790 0.091174682416260 0.097551329587884 0.103700292099464 0.109615041657079 0.115289517424462 0.120718104636381 0.125895613436890 0.130817258091357 0.135478636705053 0.139875711565913 0.144004790215401 0.147862507338228 0.151445807550178 0.154751929152424 0.157778388911321 0.160522967913763 0.162983698540776 0.165158852595197 0.167046930613170 0.168646652384308 0.169956948700518 0.170976954349915 0.171706002368528 0.172143619559824 0.172289523289411 +0.158751205655139 0.158615457846841 0.158208315314715 0.157530081287692 0.156581262981504 0.155362574345147 0.153874939896272 0.152119499635562 0.150097615026868 0.147810876026443 0.145261109140606 0.142450386486991 0.139381035829596 0.136055651552680 0.132477106532497 0.128648564859455 0.124573495355878 0.120255685826770 0.115699257972185 0.110908682880338 0.105888797010426 0.100644818563039 0.095182364124413 0.089507465458162 0.083626586305245 0.077546639039082 0.071275001008779 0.064819530388907 0.058188581339866 0.051391018268148 0.044436228961864 0.037334136362965 0.030095208725023 0.022730467893609 0.015251495436394 0.007670436341873 -0.000000000000000 -0.007670436341872 -0.015251495436393 -0.022730467893609 -0.030095208725023 -0.037334136362966 -0.044436228961866 -0.051391018268149 -0.058188581339866 -0.064819530388907 -0.071275001008779 -0.077546639039084 -0.083626586305246 -0.089507465458162 -0.095182364124413 -0.100644818563040 -0.105888797010426 -0.110908682880339 -0.115699257972185 -0.120255685826770 -0.124573495355878 -0.128648564859454 -0.132477106532499 -0.136055651552681 -0.139381035829597 -0.142450386486992 -0.145261109140606 -0.147810876026443 -0.150097615026868 -0.152119499635561 -0.153874939896272 -0.155362574345148 -0.156581262981507 -0.157530081287692 -0.158208315314715 -0.158615457846841 -0.158751205655139 -0.158615457846841 -0.158208315314715 -0.157530081287692 -0.156581262981507 -0.155362574345147 -0.153874939896273 -0.152119499635561 -0.150097615026868 -0.147810876026443 -0.145261109140607 -0.142450386486992 -0.139381035829597 -0.136055651552681 -0.132477106532498 -0.128648564859455 -0.124573495355878 -0.120255685826772 -0.115699257972187 -0.110908682880339 -0.105888797010426 -0.100644818563039 -0.095182364124412 -0.089507465458163 -0.083626586305246 -0.077546639039084 -0.071275001008779 -0.064819530388906 -0.058188581339867 -0.051391018268150 -0.044436228961866 -0.037334136362966 -0.030095208725022 -0.022730467893609 -0.015251495436394 -0.007670436341874 -0.000000000000000 0.007670436341873 0.015251495436394 0.022730467893608 0.030095208725022 0.037334136362965 0.044436228961864 0.051391018268149 0.058188581339867 0.064819530388906 0.071275001008778 0.077546639039083 0.083626586305245 0.089507465458162 0.095182364124413 0.100644818563038 0.105888797010425 0.110908682880338 0.115699257972186 0.120255685826771 0.124573495355877 0.128648564859454 0.132477106532497 0.136055651552680 0.139381035829596 0.142450386486991 0.145261109140605 0.147810876026442 0.150097615026867 0.152119499635560 0.153874939896272 0.155362574345147 0.156581262981507 0.157530081287692 0.158208315314715 0.158615457846841 0.158751205655139 +0.145773030909736 0.145647228446939 0.145269926497174 0.144641441839410 0.143762303980479 0.142633257462325 0.141255265080787 0.139629512004366 0.137757410777845 0.135640607191689 0.133280986994165 0.130680683418534 0.127842085493031 0.124767847095937 0.121460896712597 0.117924447844943 0.114162010017571 0.110177400317238 0.105974755394969 0.101558543851840 0.096933578920740 0.092105031347211 0.087078442362942 0.081859736635248 0.076455235065639 0.070871667299823 0.065116183800815 0.059196367325882 0.053120243637562 0.046896291268456 0.040533450149765 0.034041128904384 0.027429210597190 0.020708056728234 0.013888509249210 0.006981890379909 -0.000000000000000 -0.006981890379909 -0.013888509249209 -0.020708056728233 -0.027429210597189 -0.034041128904385 -0.040533450149766 -0.046896291268456 -0.053120243637562 -0.059196367325881 -0.065116183800815 -0.070871667299824 -0.076455235065640 -0.081859736635248 -0.087078442362941 -0.092105031347211 -0.096933578920740 -0.101558543851841 -0.105974755394968 -0.110177400317237 -0.114162010017571 -0.117924447844942 -0.121460896712597 -0.124767847095937 -0.127842085493031 -0.130680683418534 -0.133280986994164 -0.135640607191689 -0.137757410777846 -0.139629512004367 -0.141255265080787 -0.142633257462325 -0.143762303980479 -0.144641441839410 -0.145269926497174 -0.145647228446939 -0.145773030909736 -0.145647228446939 -0.145269926497174 -0.144641441839410 -0.143762303980478 -0.142633257462326 -0.141255265080787 -0.139629512004367 -0.137757410777845 -0.135640607191686 -0.133280986994167 -0.130680683418535 -0.127842085493031 -0.124767847095938 -0.121460896712597 -0.117924447844942 -0.114162010017570 -0.110177400317239 -0.105974755394969 -0.101558543851840 -0.096933578920740 -0.092105031347211 -0.087078442362941 -0.081859736635249 -0.076455235065640 -0.070871667299824 -0.065116183800813 -0.059196367325881 -0.053120243637563 -0.046896291268456 -0.040533450149766 -0.034041128904385 -0.027429210597189 -0.020708056728233 -0.013888509249210 -0.006981890379910 -0.000000000000000 0.006981890379910 0.013888509249210 0.020708056728233 0.027429210597189 0.034041128904384 0.040533450149766 0.046896291268456 0.053120243637563 0.059196367325880 0.065116183800813 0.070871667299824 0.076455235065640 0.081859736635248 0.087078442362942 0.092105031347211 0.096933578920740 0.101558543851840 0.105974755394969 0.110177400317239 0.114162010017570 0.117924447844941 0.121460896712597 0.124767847095937 0.127842085493031 0.130680683418535 0.133280986994164 0.135640607191686 0.137757410777845 0.139629512004366 0.141255265080787 0.142633257462325 0.143762303980478 0.144641441839410 0.145269926497174 0.145647228446939 0.145773030909736 +0.133274342775719 0.133158312179046 0.132810328240487 0.132230714894616 0.131420013297902 0.130378983720935 0.129108608185395 0.127610093833394 0.125884877013176 0.123934628061108 0.121761256755893 0.119366918416457 0.116754020610448 0.113925230435274 0.110883482328422 0.107631986358243 0.104174236940500 0.100514021919668 0.096655431947520 0.092602870084497 0.088361061542220 0.083935063477980 0.079330274744318 0.074552445488880 0.069607686491708 0.064502478119140 0.059243678765327 0.053838532644804 0.048294676791841 0.042620147115368 0.036823383351790 0.030913232752395 0.024898952337337 0.018790209544780 0.012597081101633 0.006330049941898 -0.000000000000000 -0.006330049941898 -0.012597081101632 -0.018790209544780 -0.024898952337337 -0.030913232752396 -0.036823383351792 -0.042620147115368 -0.048294676791840 -0.053838532644803 -0.059243678765326 -0.064502478119142 -0.069607686491710 -0.074552445488880 -0.079330274744317 -0.083935063477980 -0.088361061542220 -0.092602870084498 -0.096655431947519 -0.100514021919668 -0.104174236940500 -0.107631986358244 -0.110883482328423 -0.113925230435274 -0.116754020610448 -0.119366918416457 -0.121761256755893 -0.123934628061108 -0.125884877013176 -0.127610093833392 -0.129108608185393 -0.130378983720935 -0.131420013297902 -0.132230714894616 -0.132810328240487 -0.133158312179046 -0.133274342775719 -0.133158312179046 -0.132810328240487 -0.132230714894616 -0.131420013297902 -0.130378983720936 -0.129108608185395 -0.127610093833394 -0.125884877013176 -0.123934628061108 -0.121761256755894 -0.119366918416458 -0.116754020610449 -0.113925230435274 -0.110883482328423 -0.107631986358242 -0.104174236940500 -0.100514021919668 -0.096655431947520 -0.092602870084498 -0.088361061542220 -0.083935063477979 -0.079330274744317 -0.074552445488880 -0.069607686491710 -0.064502478119141 -0.059243678765326 -0.053838532644803 -0.048294676791841 -0.042620147115369 -0.036823383351791 -0.030913232752395 -0.024898952337336 -0.018790209544779 -0.012597081101633 -0.006330049941899 -0.000000000000000 0.006330049941899 0.012597081101633 0.018790209544779 0.024898952337336 0.030913232752395 0.036823383351791 0.042620147115369 0.048294676791841 0.053838532644803 0.059243678765326 0.064502478119141 0.069607686491709 0.074552445488880 0.079330274744318 0.083935063477979 0.088361061542220 0.092602870084498 0.096655431947520 0.100514021919668 0.104174236940500 0.107631986358242 0.110883482328423 0.113925230435274 0.116754020610449 0.119366918416458 0.121761256755893 0.123934628061108 0.125884877013176 0.127610093833393 0.129108608185395 0.130378983720936 0.131420013297902 0.132230714894616 0.132810328240487 0.133158312179046 0.133274342775719 +0.121183877435318 0.121077480624389 0.120758398492820 0.120226956247093 0.119483696905523 0.118529382803391 0.117364997687915 0.115991749390541 0.114411073060597 0.112624634940268 0.110634336657128 0.108442320006160 0.106050972188979 0.103462931473556 0.100681093232829 0.097708616315950 0.094548929700619 0.091205739369716 0.087683035349942 0.083985098844444 0.080116509385627 0.076082151928383 0.071887223797948 0.067537241400506 0.063038046598798 0.058395812648955 0.053617049589182 0.048708608965550 0.043677687775063 0.038531831501850 0.033278936118361 0.027927248920509 0.022485368063510 0.016962240664167 0.011367159335486 0.005709757021095 -0.000000000000000 -0.005709757021095 -0.011367159335486 -0.016962240664167 -0.022485368063510 -0.027927248920509 -0.033278936118362 -0.038531831501850 -0.043677687775064 -0.048708608965549 -0.053617049589182 -0.058395812648956 -0.063038046598799 -0.067537241400505 -0.071887223797948 -0.076082151928383 -0.080116509385626 -0.083985098844446 -0.087683035349942 -0.091205739369717 -0.094548929700619 -0.097708616315949 -0.100681093232830 -0.103462931473558 -0.106050972188979 -0.108442320006160 -0.110634336657128 -0.112624634940269 -0.114411073060597 -0.115991749390541 -0.117364997687916 -0.118529382803391 -0.119483696905523 -0.120226956247094 -0.120758398492821 -0.121077480624389 -0.121183877435319 -0.121077480624389 -0.120758398492820 -0.120226956247095 -0.119483696905523 -0.118529382803391 -0.117364997687915 -0.115991749390541 -0.114411073060597 -0.112624634940269 -0.110634336657128 -0.108442320006160 -0.106050972188979 -0.103462931473556 -0.100681093232830 -0.097708616315949 -0.094548929700620 -0.091205739369717 -0.087683035349943 -0.083985098844444 -0.080116509385626 -0.076082151928383 -0.071887223797948 -0.067537241400506 -0.063038046598799 -0.058395812648955 -0.053617049589182 -0.048708608965549 -0.043677687775064 -0.038531831501851 -0.033278936118362 -0.027927248920509 -0.022485368063510 -0.016962240664166 -0.011367159335487 -0.005709757021096 -0.000000000000000 0.005709757021095 0.011367159335487 0.016962240664166 0.022485368063509 0.027927248920509 0.033278936118362 0.038531831501851 0.043677687775064 0.048708608965549 0.053617049589182 0.058395812648955 0.063038046598799 0.067537241400506 0.071887223797949 0.076082151928382 0.080116509385626 0.083985098844445 0.087683035349943 0.091205739369717 0.094548929700618 0.097708616315949 0.100681093232830 0.103462931473556 0.106050972188979 0.108442320006160 0.110634336657128 0.112624634940269 0.114411073060597 0.115991749390541 0.117364997687915 0.118529382803391 0.119483696905523 0.120226956247094 0.120758398492820 0.121077480624389 0.121183877435318 +0.109437978149112 0.109341111101600 0.109050616877568 0.108566816464074 0.107890245609550 0.107021655972899 0.105962016720459 0.104712516558878 0.103274566188602 0.101649801158899 0.099840085101980 0.097847513319681 0.095674416692584 0.093323365877347 0.090797175753955 0.088098910080422 0.085231886308120 0.082199680506604 0.079006132342204 0.075655350050221 0.072151715335904 0.068499888134879 0.064704811159148 0.060771714150280 0.056706117757247 0.052513836952088 0.048200983892958 0.043773970140449 0.039239508130206 0.034604611802238 0.029876596285441 0.025063076534752 0.020171964817846 0.015211466949006 0.010190077169309 0.005116571575005 -0.000000000000000 -0.005116571575005 -0.010190077169309 -0.015211466949006 -0.020171964817845 -0.025063076534753 -0.029876596285442 -0.034604611802238 -0.039239508130206 -0.043773970140449 -0.048200983892958 -0.052513836952089 -0.056706117757247 -0.060771714150280 -0.064704811159148 -0.068499888134879 -0.072151715335904 -0.075655350050221 -0.079006132342204 -0.082199680506604 -0.085231886308119 -0.088098910080422 -0.090797175753956 -0.093323365877347 -0.095674416692584 -0.097847513319681 -0.099840085101980 -0.101649801158900 -0.103274566188602 -0.104712516558879 -0.105962016720459 -0.107021655972899 -0.107890245609548 -0.108566816464075 -0.109050616877568 -0.109341111101600 -0.109437978149112 -0.109341111101601 -0.109050616877568 -0.108566816464074 -0.107890245609548 -0.107021655972899 -0.105962016720458 -0.104712516558879 -0.103274566188602 -0.101649801158900 -0.099840085101981 -0.097847513319681 -0.095674416692584 -0.093323365877347 -0.090797175753955 -0.088098910080421 -0.085231886308120 -0.082199680506604 -0.079006132342205 -0.075655350050221 -0.072151715335904 -0.068499888134879 -0.064704811159147 -0.060771714150281 -0.056706117757247 -0.052513836952089 -0.048200983892958 -0.043773970140449 -0.039239508130207 -0.034604611802238 -0.029876596285441 -0.025063076534753 -0.020171964817845 -0.015211466949006 -0.010190077169310 -0.005116571575006 -0.000000000000000 0.005116571575006 0.010190077169309 0.015211466949006 0.020171964817845 0.025063076534753 0.029876596285441 0.034604611802238 0.039239508130207 0.043773970140448 0.048200983892958 0.052513836952089 0.056706117757247 0.060771714150281 0.064704811159148 0.068499888134879 0.072151715335903 0.075655350050221 0.079006132342205 0.082199680506604 0.085231886308119 0.088098910080421 0.090797175753955 0.093323365877346 0.095674416692584 0.097847513319681 0.099840085101980 0.101649801158900 0.103274566188602 0.104712516558879 0.105962016720458 0.107021655972898 0.107890245609547 0.108566816464074 0.109050616877568 0.109341111101601 0.109437978149112 +0.097979130417582 0.097891722192396 0.097629601316624 0.097193079356548 0.096582676144218 0.095799120604331 0.094843351901024 0.093716520893628 0.092419991887278 0.090955344661093 0.089324376753360 0.087529105979856 0.085571773158106 0.083454845006944 0.081181017187332 0.078753217446901 0.076174608827147 0.073448592888689 0.070578812906503 0.067569156983476 0.064423761027244 0.061147011531805 0.057743548102249 0.054218265657709 0.050576316244781 0.046823110391070 0.042964317925969 0.039005868193958 0.034953949584004 0.030815008297605 0.026595746277454 0.022303118218804 0.017944327586361 0.013526821561130 0.009058284843987 0.004546632246021 -0.000000000000000 -0.004546632246021 -0.009058284843986 -0.013526821561130 -0.017944327586360 -0.022303118218805 -0.026595746277455 -0.030815008297604 -0.034953949584004 -0.039005868193958 -0.042964317925968 -0.046823110391070 -0.050576316244781 -0.054218265657708 -0.057743548102248 -0.061147011531805 -0.064423761027243 -0.067569156983476 -0.070578812906503 -0.073448592888689 -0.076174608827147 -0.078753217446900 -0.081181017187331 -0.083454845006944 -0.085571773158106 -0.087529105979856 -0.089324376753360 -0.090955344661094 -0.092419991887278 -0.093716520893628 -0.094843351901025 -0.095799120604331 -0.096582676144218 -0.097193079356548 -0.097629601316625 -0.097891722192398 -0.097979130417582 -0.097891722192398 -0.097629601316624 -0.097193079356548 -0.096582676144218 -0.095799120604329 -0.094843351901025 -0.093716520893628 -0.092419991887279 -0.090955344661094 -0.089324376753361 -0.087529105979856 -0.085571773158107 -0.083454845006944 -0.081181017187330 -0.078753217446900 -0.076174608827147 -0.073448592888689 -0.070578812906503 -0.067569156983476 -0.064423761027242 -0.061147011531805 -0.057743548102248 -0.054218265657710 -0.050576316244781 -0.046823110391070 -0.042964317925968 -0.039005868193958 -0.034953949584004 -0.030815008297605 -0.026595746277455 -0.022303118218804 -0.017944327586360 -0.013526821561129 -0.009058284843987 -0.004546632246022 -0.000000000000000 0.004546632246022 0.009058284843987 0.013526821561129 0.017944327586359 0.022303118218804 0.026595746277455 0.030815008297605 0.034953949584004 0.039005868193958 0.042964317925968 0.046823110391070 0.050576316244781 0.054218265657709 0.057743548102250 0.061147011531804 0.064423761027242 0.067569156983476 0.070578812906502 0.073448592888689 0.076174608827146 0.078753217446900 0.081181017187330 0.083454845006944 0.085571773158107 0.087529105979856 0.089324376753359 0.090955344661093 0.092419991887278 0.093716520893628 0.094843351901024 0.095799120604329 0.096582676144218 0.097193079356548 0.097629601316624 0.097891722192398 0.097979130417582 +0.086754742048114 0.086676754177714 0.086442889577853 0.086053445392178 0.085508917224106 0.084809999678084 0.083957587107745 0.082952774561305 0.081796858911956 0.080491340158008 0.079037922874866 0.077438517798197 0.075695243514640 0.073810428233884 0.071786611612855 0.069626546600184 0.067333201266274 0.064909760581553 0.062359628102861 0.059686427525320 0.056894004054522 0.053986425551501 0.050967983400780 0.047843193049609 0.044616794164877 0.041293750352448 0.037879248382475 0.034378696863315 0.030797724306085 0.027142176521780 0.023418113293235 0.019631804265059 0.015789723996109 0.011898546121103 0.007965136570657 0.003996545802417 -0.000000000000000 -0.003996545802417 -0.007965136570657 -0.011898546121103 -0.015789723996109 -0.019631804265060 -0.023418113293236 -0.027142176521780 -0.030797724306084 -0.034378696863315 -0.037879248382475 -0.041293750352448 -0.044616794164878 -0.047843193049609 -0.050967983400780 -0.053986425551501 -0.056894004054522 -0.059686427525322 -0.062359628102861 -0.064909760581552 -0.067333201266274 -0.069626546600184 -0.071786611612855 -0.073810428233885 -0.075695243514640 -0.077438517798197 -0.079037922874866 -0.080491340158008 -0.081796858911956 -0.082952774561306 -0.083957587107745 -0.084809999678085 -0.085508917224106 -0.086053445392178 -0.086442889577853 -0.086676754177714 -0.086754742048114 -0.086676754177714 -0.086442889577854 -0.086053445392178 -0.085508917224106 -0.084809999678085 -0.083957587107745 -0.082952774561306 -0.081796858911956 -0.080491340158008 -0.079037922874866 -0.077438517798197 -0.075695243514640 -0.073810428233885 -0.071786611612855 -0.069626546600184 -0.067333201266274 -0.064909760581553 -0.062359628102861 -0.059686427525321 -0.056894004054522 -0.053986425551501 -0.050967983400779 -0.047843193049610 -0.044616794164877 -0.041293750352448 -0.037879248382475 -0.034378696863314 -0.030797724306085 -0.027142176521780 -0.023418113293235 -0.019631804265060 -0.015789723996109 -0.011898546121102 -0.007965136570658 -0.003996545802418 -0.000000000000000 0.003996545802417 0.007965136570657 0.011898546121102 0.015789723996109 0.019631804265059 0.023418113293235 0.027142176521780 0.030797724306085 0.034378696863314 0.037879248382475 0.041293750352448 0.044616794164877 0.047843193049610 0.050967983400780 0.053986425551501 0.056894004054521 0.059686427525321 0.062359628102861 0.064909760581553 0.067333201266273 0.069626546600184 0.071786611612855 0.073810428233884 0.075695243514640 0.077438517798197 0.079037922874866 0.080491340158008 0.081796858911956 0.082952774561305 0.083957587107745 0.084809999678085 0.085508917224106 0.086053445392178 0.086442889577854 0.086676754177714 0.086754742048114 +0.075716110063096 0.075647536321460 0.075441907688673 0.075099502001232 0.074620782519266 0.074006398221454 0.073257184209859 0.072374162216601 0.071358541202060 0.070211718031916 0.068935278218187 0.067530996707065 0.066000838694155 0.064346960445496 0.062571710100636 0.060677628431763 0.058667449531025 0.056544101395941 0.054310706381108 0.051970581482433 0.049527238418511 0.046984383472177 0.044345917053873 0.041615932947283 0.038798717196635 0.035898746594427 0.032920686727647 0.029869389540575 0.026749890372193 0.023567404426854 0.020327322637546 0.017035206882542 0.013696784517762 0.010317942189413 0.006904718894101 0.003463298256705 -0.000000000000000 -0.003463298256705 -0.006904718894101 -0.010317942189413 -0.013696784517762 -0.017035206882543 -0.020327322637546 -0.023567404426854 -0.026749890372194 -0.029869389540574 -0.032920686727648 -0.035898746594428 -0.038798717196636 -0.041615932947283 -0.044345917053873 -0.046984383472177 -0.049527238418511 -0.051970581482433 -0.054310706381108 -0.056544101395941 -0.058667449531025 -0.060677628431763 -0.062571710100636 -0.064346960445496 -0.066000838694155 -0.067530996707066 -0.068935278218187 -0.070211718031916 -0.071358541202061 -0.072374162216602 -0.073257184209859 -0.074006398221454 -0.074620782519266 -0.075099502001232 -0.075441907688674 -0.075647536321460 -0.075716110063096 -0.075647536321460 -0.075441907688673 -0.075099502001232 -0.074620782519266 -0.074006398221454 -0.073257184209859 -0.072374162216602 -0.071358541202061 -0.070211718031915 -0.068935278218187 -0.067530996707066 -0.066000838694156 -0.064346960445496 -0.062571710100636 -0.060677628431763 -0.058667449531025 -0.056544101395942 -0.054310706381108 -0.051970581482433 -0.049527238418511 -0.046984383472177 -0.044345917053873 -0.041615932947283 -0.038798717196636 -0.035898746594427 -0.032920686727647 -0.029869389540574 -0.026749890372194 -0.023567404426855 -0.020327322637546 -0.017035206882542 -0.013696784517762 -0.010317942189413 -0.006904718894101 -0.003463298256706 -0.000000000000000 0.003463298256706 0.006904718894101 0.010317942189413 0.013696784517762 0.017035206882542 0.020327322637546 0.023567404426855 0.026749890372193 0.029869389540574 0.032920686727647 0.035898746594427 0.038798717196635 0.041615932947283 0.044345917053874 0.046984383472177 0.049527238418511 0.051970581482433 0.054310706381108 0.056544101395942 0.058667449531025 0.060677628431763 0.062571710100636 0.064346960445496 0.066000838694156 0.067530996707066 0.068935278218187 0.070211718031915 0.071358541202061 0.072374162216602 0.073257184209859 0.074006398221454 0.074620782519266 0.075099502001231 0.075441907688673 0.075647536321460 0.075716110063096 +0.064817529046537 0.064758395603566 0.064581079830212 0.064285835412251 0.063873085222099 0.063343421409811 0.062697605524075 0.061936568656878 0.061061411603626 0.060073405028865 0.058973989625813 0.057764776256380 0.056447546056541 0.055024250490326 0.053497011334126 0.051868120571448 0.050140040176808 0.048315401766103 0.046397006089482 0.044387822341584 0.042290987262978 0.040109804005679 0.037847740734899 0.035508428938563 0.033095661415721 0.030613389914783 0.028065722392528 0.025456919865028 0.022791392822245 0.020073697178721 0.017308529733912 0.014500723117082 0.011655240193334 0.008777167909382 0.005871710560003 0.002944182458812 -0.000000000000000 -0.002944182458812 -0.005871710560003 -0.008777167909381 -0.011655240193334 -0.014500723117082 -0.017308529733913 -0.020073697178721 -0.022791392822245 -0.025456919865027 -0.028065722392528 -0.030613389914783 -0.033095661415721 -0.035508428938563 -0.037847740734899 -0.040109804005679 -0.042290987262977 -0.044387822341584 -0.046397006089482 -0.048315401766104 -0.050140040176808 -0.051868120571448 -0.053497011334126 -0.055024250490326 -0.056447546056541 -0.057764776256380 -0.058973989625813 -0.060073405028865 -0.061061411603626 -0.061936568656878 -0.062697605524075 -0.063343421409812 -0.063873085222099 -0.064285835412250 -0.064581079830213 -0.064758395603565 -0.064817529046537 -0.064758395603567 -0.064581079830213 -0.064285835412250 -0.063873085222099 -0.063343421409812 -0.062697605524075 -0.061936568656878 -0.061061411603626 -0.060073405028865 -0.058973989625813 -0.057764776256380 -0.056447546056541 -0.055024250490326 -0.053497011334126 -0.051868120571447 -0.050140040176808 -0.048315401766104 -0.046397006089482 -0.044387822341584 -0.042290987262977 -0.040109804005679 -0.037847740734899 -0.035508428938564 -0.033095661415721 -0.030613389914783 -0.028065722392528 -0.025456919865027 -0.022791392822246 -0.020073697178721 -0.017308529733912 -0.014500723117082 -0.011655240193334 -0.008777167909381 -0.005871710560003 -0.002944182458813 -0.000000000000000 0.002944182458812 0.005871710560003 0.008777167909381 0.011655240193334 0.014500723117082 0.017308529733912 0.020073697178721 0.022791392822246 0.025456919865027 0.028065722392527 0.030613389914783 0.033095661415721 0.035508428938564 0.037847740734899 0.040109804005679 0.042290987262977 0.044387822341584 0.046397006089482 0.048315401766103 0.050140040176808 0.051868120571447 0.053497011334126 0.055024250490326 0.056447546056541 0.057764776256380 0.058973989625813 0.060073405028865 0.061061411603626 0.061936568656878 0.062697605524075 0.063343421409812 0.063873085222099 0.064285835412250 0.064581079830212 0.064758395603566 0.064817529046537 +0.054015504635264 0.053965870614841 0.053817043444148 0.053569247782162 0.053222858017348 0.052778398200550 0.052236541946404 0.051598112298578 0.050864081552913 0.050035571031254 0.049113850797492 0.048100339306137 0.046996602972599 0.045804355653184 0.044525458021790 0.043161916829259 0.041715884030413 0.040189655762972 0.038585671161724 0.036906510990744 0.035154896075813 0.033333685518780 0.031445874675314 0.029494592877265 0.027483100880881 0.025414788022185 0.023293169061207 0.021121880697118 0.018904677737098 0.016645428902529 0.014348112257195 0.012016810243457 0.009655704313798 0.007269069146864 0.004861266439021 0.002436738264555 -0.000000000000000 -0.002436738264555 -0.004861266439021 -0.007269069146864 -0.009655704313797 -0.012016810243457 -0.014348112257196 -0.016645428902529 -0.018904677737098 -0.021121880697118 -0.023293169061207 -0.025414788022185 -0.027483100880881 -0.029494592877265 -0.031445874675314 -0.033333685518780 -0.035154896075813 -0.036906510990745 -0.038585671161724 -0.040189655762972 -0.041715884030414 -0.043161916829258 -0.044525458021790 -0.045804355653184 -0.046996602972599 -0.048100339306137 -0.049113850797492 -0.050035571031254 -0.050864081552913 -0.051598112298578 -0.052236541946404 -0.052778398200550 -0.053222858017348 -0.053569247782162 -0.053817043444148 -0.053965870614842 -0.054015504635264 -0.053965870614842 -0.053817043444148 -0.053569247782162 -0.053222858017348 -0.052778398200551 -0.052236541946403 -0.051598112298578 -0.050864081552913 -0.050035571031254 -0.049113850797493 -0.048100339306137 -0.046996602972600 -0.045804355653184 -0.044525458021790 -0.043161916829258 -0.041715884030413 -0.040189655762972 -0.038585671161724 -0.036906510990745 -0.035154896075813 -0.033333685518780 -0.031445874675314 -0.029494592877266 -0.027483100880881 -0.025414788022185 -0.023293169061207 -0.021121880697117 -0.018904677737099 -0.016645428902530 -0.014348112257196 -0.012016810243457 -0.009655704313797 -0.007269069146863 -0.004861266439021 -0.002436738264555 -0.000000000000000 0.002436738264555 0.004861266439021 0.007269069146863 0.009655704313797 0.012016810243457 0.014348112257195 0.016645428902529 0.018904677737099 0.021121880697117 0.023293169061207 0.025414788022185 0.027483100880881 0.029494592877266 0.031445874675314 0.033333685518780 0.035154896075813 0.036906510990744 0.038585671161724 0.040189655762972 0.041715884030414 0.043161916829258 0.044525458021790 0.045804355653184 0.046996602972599 0.048100339306137 0.049113850797492 0.050035571031254 0.050864081552913 0.051598112298578 0.052236541946403 0.052778398200550 0.053222858017348 0.053569247782162 0.053817043444148 0.053965870614841 0.054015504635264 +0.043268042343603 0.043228000810907 0.043107939774653 0.042908049885719 0.042628648779694 0.042270180901557 0.041833217257184 0.041318455088673 0.040726717469669 0.040058952815988 0.039316234306141 0.038499759205548 0.037610848087543 0.036650943943589 0.035621611174503 0.034524534453947 0.033361517454842 0.032134481429048 0.030845463630163 0.029496615569061 0.028090201091545 0.026628594267383 0.025114277079957 0.023549836905820 0.021937963773624 0.020281447392193 0.018583173937881 0.016846122591892 0.015073361818882 0.013268045378920 0.011433408065769 0.009572761165504 0.007689487630593 0.005787036965863 0.003868919824178 0.001938702311170 -0.000000000000000 -0.001938702311170 -0.003868919824178 -0.005787036965863 -0.007689487630593 -0.009572761165505 -0.011433408065770 -0.013268045378920 -0.015073361818882 -0.016846122591892 -0.018583173937881 -0.020281447392193 -0.021937963773624 -0.023549836905820 -0.025114277079956 -0.026628594267382 -0.028090201091545 -0.029496615569061 -0.030845463630163 -0.032134481429048 -0.033361517454842 -0.034524534453947 -0.035621611174503 -0.036650943943589 -0.037610848087543 -0.038499759205548 -0.039316234306141 -0.040058952815988 -0.040726717469670 -0.041318455088673 -0.041833217257184 -0.042270180901557 -0.042628648779694 -0.042908049885719 -0.043107939774653 -0.043228000810907 -0.043268042343603 -0.043228000810907 -0.043107939774653 -0.042908049885719 -0.042628648779694 -0.042270180901557 -0.041833217257184 -0.041318455088673 -0.040726717469670 -0.040058952815988 -0.039316234306141 -0.038499759205548 -0.037610848087543 -0.036650943943589 -0.035621611174503 -0.034524534453947 -0.033361517454842 -0.032134481429048 -0.030845463630163 -0.029496615569062 -0.028090201091545 -0.026628594267383 -0.025114277079956 -0.023549836905820 -0.021937963773624 -0.020281447392193 -0.018583173937881 -0.016846122591892 -0.015073361818882 -0.013268045378920 -0.011433408065770 -0.009572761165504 -0.007689487630593 -0.005787036965862 -0.003868919824178 -0.001938702311171 -0.000000000000000 0.001938702311170 0.003868919824178 0.005787036965862 0.007689487630593 0.009572761165504 0.011433408065769 0.013268045378920 0.015073361818882 0.016846122591892 0.018583173937881 0.020281447392193 0.021937963773624 0.023549836905820 0.025114277079957 0.026628594267382 0.028090201091544 0.029496615569061 0.030845463630163 0.032134481429048 0.033361517454842 0.034524534453947 0.035621611174503 0.036650943943589 0.037610848087543 0.038499759205548 0.039316234306141 0.040058952815988 0.040726717469669 0.041318455088673 0.041833217257184 0.042270180901557 0.042628648779694 0.042908049885719 0.043107939774653 0.043228000810907 0.043268042343603 +0.032533986390770 0.032503665804872 0.032412754556349 0.032261404127147 0.032049866835058 0.031778495604753 0.031447743645617 0.031058164034815 0.030610409203577 0.030105230324262 0.029543476595398 0.028926094421473 0.028254126483980 0.027528710699831 0.026751079063022 0.025922556365191 0.025044558790475 0.024118592379962 0.023146251360886 0.022129216335693 0.021069252326058 0.019968206667052 0.018828006746686 0.017650657586319 0.016438239257599 0.015192904131928 0.013916873958816 0.012612436769922 0.011281943606092 0.009927805065277 0.008552487669844 0.007158510052539 0.005748438961092 0.004324885082315 0.002890498687454 0.001447965101476 -0.000000000000000 -0.001447965101476 -0.002890498687454 -0.004324885082315 -0.005748438961092 -0.007158510052540 -0.008552487669844 -0.009927805065277 -0.011281943606092 -0.012612436769922 -0.013916873958816 -0.015192904131928 -0.016438239257599 -0.017650657586319 -0.018828006746686 -0.019968206667052 -0.021069252326059 -0.022129216335693 -0.023146251360887 -0.024118592379962 -0.025044558790476 -0.025922556365191 -0.026751079063023 -0.027528710699832 -0.028254126483980 -0.028926094421473 -0.029543476595398 -0.030105230324262 -0.030610409203578 -0.031058164034816 -0.031447743645617 -0.031778495604753 -0.032049866835057 -0.032261404127147 -0.032412754556349 -0.032503665804872 -0.032533986390770 -0.032503665804872 -0.032412754556349 -0.032261404127147 -0.032049866835057 -0.031778495604753 -0.031447743645617 -0.031058164034816 -0.030610409203577 -0.030105230324262 -0.029543476595398 -0.028926094421473 -0.028254126483980 -0.027528710699832 -0.026751079063022 -0.025922556365191 -0.025044558790476 -0.024118592379962 -0.023146251360886 -0.022129216335693 -0.021069252326058 -0.019968206667052 -0.018828006746686 -0.017650657586319 -0.016438239257599 -0.015192904131928 -0.013916873958816 -0.012612436769922 -0.011281943606092 -0.009927805065277 -0.008552487669844 -0.007158510052540 -0.005748438961092 -0.004324885082315 -0.002890498687455 -0.001447965101476 -0.000000000000000 0.001447965101476 0.002890498687454 0.004324885082315 0.005748438961092 0.007158510052539 0.008552487669844 0.009927805065277 0.011281943606092 0.012612436769921 0.013916873958816 0.015192904131928 0.016438239257599 0.017650657586319 0.018828006746686 0.019968206667052 0.021069252326058 0.022129216335693 0.023146251360886 0.024118592379962 0.025044558790475 0.025922556365191 0.026751079063022 0.027528710699832 0.028254126483980 0.028926094421473 0.029543476595398 0.030105230324262 0.030610409203577 0.031058164034816 0.031447743645617 0.031778495604753 0.032049866835057 0.032261404127147 0.032412754556349 0.032503665804872 0.032533986390770 +0.021772386094960 0.021751952275424 0.021690686463095 0.021588695552403 0.021446157552641 0.021263321365578 0.021040506473610 0.020778102537957 0.020476568906279 0.020136434028966 0.019758294783247 0.019342815704152 0.018890728121319 0.018402829200516 0.017879980888732 0.017323108761676 0.016733200772479 0.016111305900417 0.015458532698557 0.014776047739220 0.014065073956296 0.013326888883546 0.012562822788173 0.011774256699116 0.010962620329718 0.010129389894660 0.009276085821299 0.008404270355854 0.007515545065176 0.006611548235199 0.005693952167538 0.004764460376077 0.003824804685833 0.002876742236794 0.001922052395918 0.000962533580919 -0.000000000000000 -0.000962533580919 -0.001922052395918 -0.002876742236794 -0.003824804685833 -0.004764460376078 -0.005693952167538 -0.006611548235199 -0.007515545065176 -0.008404270355854 -0.009276085821299 -0.010129389894660 -0.010962620329719 -0.011774256699116 -0.012562822788173 -0.013326888883546 -0.014065073956296 -0.014776047739221 -0.015458532698557 -0.016111305900417 -0.016733200772479 -0.017323108761678 -0.017879980888732 -0.018402829200516 -0.018890728121319 -0.019342815704152 -0.019758294783247 -0.020136434028966 -0.020476568906279 -0.020778102537957 -0.021040506473610 -0.021263321365578 -0.021446157552641 -0.021588695552403 -0.021690686463095 -0.021751952275424 -0.021772386094960 -0.021751952275424 -0.021690686463095 -0.021588695552403 -0.021446157552641 -0.021263321365578 -0.021040506473610 -0.020778102537957 -0.020476568906279 -0.020136434028966 -0.019758294783247 -0.019342815704152 -0.018890728121319 -0.018402829200516 -0.017879980888732 -0.017323108761677 -0.016733200772479 -0.016111305900417 -0.015458532698557 -0.014776047739221 -0.014065073956296 -0.013326888883546 -0.012562822788173 -0.011774256699116 -0.010962620329719 -0.010129389894660 -0.009276085821299 -0.008404270355854 -0.007515545065176 -0.006611548235199 -0.005693952167538 -0.004764460376078 -0.003824804685833 -0.002876742236794 -0.001922052395918 -0.000962533580919 -0.000000000000000 0.000962533580919 0.001922052395918 0.002876742236794 0.003824804685833 0.004764460376078 0.005693952167538 0.006611548235199 0.007515545065176 0.008404270355854 0.009276085821299 0.010129389894660 0.010962620329718 0.011774256699116 0.012562822788173 0.013326888883546 0.014065073956296 0.014776047739220 0.015458532698557 0.016111305900417 0.016733200772479 0.017323108761677 0.017879980888732 0.018402829200516 0.018890728121319 0.019342815704152 0.019758294783247 0.020136434028966 0.020476568906279 0.020778102537957 0.021040506473610 0.021263321365578 0.021446157552641 0.021588695552403 0.021690686463095 0.021751952275424 0.021772386094960 +0.010941868965230 0.010931527636991 0.010900522510837 0.010848910132673 0.010776784646459 0.010684277645407 0.010571557963771 0.010438831409295 0.010286340436453 0.010114363760640 0.009923215913495 0.009713246739584 0.009484840834728 0.009238416926273 0.008974427195678 0.008693356543845 0.008395721799663 0.008082070872327 0.007752981848035 0.007409062031775 0.007050946934963 0.006679299209822 0.006294807531429 0.005898185428527 0.005490170064248 0.005071520968033 0.004643018720135 0.004205463590241 0.003759674131826 0.003306485734051 0.002846749133067 0.002381328884807 0.001911101801421 0.001436955353695 0.000959786041911 0.000480497737749 -0.000000000000000 -0.000480497737749 -0.000959786041911 -0.001436955353696 -0.001911101801421 -0.002381328884807 -0.002846749133068 -0.003306485734051 -0.003759674131826 -0.004205463590241 -0.004643018720136 -0.005071520968033 -0.005490170064248 -0.005898185428527 -0.006294807531429 -0.006679299209822 -0.007050946934963 -0.007409062031775 -0.007752981848035 -0.008082070872328 -0.008395721799664 -0.008693356543845 -0.008974427195678 -0.009238416926273 -0.009484840834728 -0.009713246739584 -0.009923215913495 -0.010114363760640 -0.010286340436453 -0.010438831409295 -0.010571557963771 -0.010684277645407 -0.010776784646459 -0.010848910132673 -0.010900522510837 -0.010931527636991 -0.010941868965230 -0.010931527636991 -0.010900522510837 -0.010848910132673 -0.010776784646459 -0.010684277645407 -0.010571557963771 -0.010438831409295 -0.010286340436453 -0.010114363760640 -0.009923215913495 -0.009713246739584 -0.009484840834728 -0.009238416926273 -0.008974427195678 -0.008693356543845 -0.008395721799664 -0.008082070872328 -0.007752981848035 -0.007409062031775 -0.007050946934963 -0.006679299209822 -0.006294807531428 -0.005898185428527 -0.005490170064248 -0.005071520968033 -0.004643018720136 -0.004205463590241 -0.003759674131826 -0.003306485734051 -0.002846749133068 -0.002381328884807 -0.001911101801421 -0.001436955353696 -0.000959786041911 -0.000480497737749 -0.000000000000000 0.000480497737749 0.000959786041911 0.001436955353695 0.001911101801421 0.002381328884807 0.002846749133067 0.003306485734051 0.003759674131826 0.004205463590240 0.004643018720135 0.005071520968033 0.005490170064248 0.005898185428527 0.006294807531429 0.006679299209822 0.007050946934963 0.007409062031775 0.007752981848035 0.008082070872327 0.008395721799663 0.008693356543845 0.008974427195678 0.009238416926273 0.009484840834728 0.009713246739584 0.009923215913495 0.010114363760640 0.010286340436453 0.010438831409295 0.010571557963771 0.010684277645407 0.010776784646459 0.010848910132673 0.010900522510837 0.010931527636991 0.010941868965230 +-0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 \ No newline at end of file diff --git a/simulations/Tutorial/xhps_integration/surface_tables/prespoint_Y.txt b/simulations/Tutorial/xhps_integration/surface_tables/prespoint_Y.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e20b6f7bfa1dd5f884641477686683098e7eb2e --- /dev/null +++ b/simulations/Tutorial/xhps_integration/surface_tables/prespoint_Y.txt @@ -0,0 +1,73 @@ +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.001555063445446 0.005010188153256 0.008083019860466 0.010772701984360 0.013077514677980 0.014994860798126 0.016521249063712 0.017652274330233 0.018382594910083 0.018705906873968 0.018382594910083 0.017652274330232 0.016521249063712 0.014994860798126 0.013077514677979 0.010772701984359 0.008083019860466 0.005010188153256 0.001555063445446 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.001555110606230 -0.005010340098436 -0.008083264996153 -0.010773028690682 -0.013077911282911 -0.014995315550875 -0.016521750107606 -0.017652809674997 -0.018383152403460 -0.018706474172505 -0.018383152403460 -0.017652809674997 -0.016521750107606 -0.014995315550875 -0.013077911282911 -0.010773028690682 -0.008083264996153 -0.005010340098436 -0.001555110606229 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000774187341475 0.006009669820195 0.010847177418925 0.015289972248744 0.019340367260184 0.022999725826107 0.026268457723398 0.029146011430947 0.031630862652893 0.033720498966476 0.035411400483661 0.036699016405273 0.037577737335857 0.038040863217811 0.037577737335857 0.036699016405273 0.035411400483661 0.033720498966477 0.031630862652893 0.029146011430946 0.026268457723398 0.022999725826107 0.019340367260185 0.015289972248744 0.010847177418924 0.006009669820195 0.000774187341475 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000774210820441 -0.006009852076896 -0.010847506383882 -0.015290435951410 -0.019340953800153 -0.023000423344321 -0.026269254373229 -0.029146895349042 -0.031631821929668 -0.033721521616155 -0.035412474413717 -0.036700129385166 -0.037578876964932 -0.038042016892215 -0.037578876964932 -0.036700129385166 -0.035412474413717 -0.033721521616155 -0.031631821929668 -0.029146895349042 -0.026269254373229 -0.023000423344321 -0.019340953800153 -0.015290435951410 -0.010847506383882 -0.006009852076896 -0.000774210820441 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.005814809323886 0.012125574565924 0.018017334363348 0.023496341185228 0.028567756667252 0.033235664953024 0.037503081200762 0.041371955234769 0.044843170298293 0.047916536840053 0.050590781241085 0.052863529361640 0.054731284759707 0.056189401403592 0.057232050670858 0.057852182394816 0.057232050670858 0.056189401403592 0.054731284759707 0.052863529361640 0.050590781241084 0.047916536840053 0.044843170298293 0.041371955234769 0.037503081200763 0.033235664953024 0.028567756667251 0.023496341185228 0.018017334363348 0.012125574565925 0.005814809323887 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.005814985671008 -0.012125942301140 -0.018017880779378 -0.023497053764416 -0.028568623048475 -0.033236672899025 -0.037504218565723 -0.041373209932001 -0.044844530267899 -0.047917990016384 -0.050592315519870 -0.052865132566604 -0.054732944608538 -0.056191105473076 -0.057233786361018 -0.057853936891858 -0.057233786361018 -0.056191105473076 -0.054732944608538 -0.052865132566604 -0.050592315519870 -0.047917990016384 -0.044844530267899 -0.041373209932001 -0.037504218565723 -0.033236672899025 -0.028568623048475 -0.023497053764416 -0.018017880779379 -0.012125942301139 -0.005814985671008 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000586648699567 0.008509132409302 0.015971948795777 0.022986400446443 0.029562455833395 0.035708790983577 0.041432824276893 0.046740744559644 0.051637532716234 0.056126976797256 0.060211680756729 0.063893066805272 0.067171371338946 0.070045634355477 0.072513682219829 0.074572103589703 0.076216218257920 0.077440038612425 0.078236223355763 0.077440038612425 0.076216218257920 0.074572103589703 0.072513682219829 0.070045634355476 0.067171371338946 0.063893066805272 0.060211680756729 0.056126976797256 0.051637532716234 0.046740744559642 0.041432824276891 0.035708790983578 0.029562455833397 0.022986400446443 0.015971948795778 0.008509132409301 0.000586648699567 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000586666491001 -0.008509390467806 -0.015972433180909 -0.022987097560537 -0.029563352381102 -0.035709873932666 -0.041434080820114 -0.046742162077439 -0.051639098740103 -0.056128678973575 -0.060213506810846 -0.063895004505669 -0.067173408461273 -0.070047758646269 -0.072515881359702 -0.074574365155815 -0.076218529685492 -0.077442387155092 -0.078238596044516 -0.077442387155092 -0.076218529685492 -0.074574365155815 -0.072515881359702 -0.070047758646269 -0.067173408461273 -0.063895004505669 -0.060213506810846 -0.056128678973575 -0.051639098740103 -0.046742162077439 -0.041434080820114 -0.035709873932666 -0.029563352381100 -0.022987097560536 -0.015972433180909 -0.008509390467806 -0.000586666491001 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.008707849102188 0.017423079584888 0.025649470874962 0.033401690557403 0.040692816458444 0.047534404488078 0.053936546746451 0.059907920377402 0.065455827566098 0.070586226994995 0.075303756992710 0.079611750532604 0.083512242161384 0.087005966861697 0.090092350775764 0.092769493638582 0.095034142688140 0.096881657735485 0.098305966988167 0.099299513125655 0.098305966988168 0.096881657735486 0.095034142688140 0.092769493638582 0.090092350775763 0.087005966861697 0.083512242161384 0.079611750532604 0.075303756992710 0.070586226994996 0.065455827566098 0.059907920377402 0.053936546746452 0.047534404488078 0.040692816458444 0.033401690557404 0.025649470874961 0.017423079584889 0.008707849102188 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.008708113187220 -0.017423607978810 -0.025650248752631 -0.033402703538504 -0.040694050559272 -0.047535846075390 -0.053938182493070 -0.059909737219305 -0.065457812660716 -0.070588367680470 -0.075306040747852 -0.079614164937300 -0.083514774857229 -0.087008605512571 -0.090095083028144 -0.092772307081319 -0.095037024811431 -0.096884595888808 -0.098308948336862 -0.099302524605861 -0.098308948336862 -0.096884595888808 -0.095037024811431 -0.092772307081319 -0.090095083028144 -0.087008605512571 -0.083514774857229 -0.079614164937300 -0.075306040747852 -0.070588367680470 -0.065457812660716 -0.059909737219305 -0.053938182493070 -0.047535846075390 -0.040694050559272 -0.033402703538503 -0.025650248752631 -0.017423607978810 -0.008708113187220 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.006201749203769 0.016302913720242 0.025859827738399 0.034893252439696 0.043421910223710 0.051462604206072 0.059030322657024 0.066138329536434 0.072798242107773 0.079020096455764 0.084812401587570 0.090182182663047 0.095135013773389 0.099675040567496 0.103804992909629 0.107526187638321 0.110838521383473 0.113740453284075 0.116228977331185 0.118299583937699 0.119946210206040 0.121161178224653 0.119946210206040 0.118299583937699 0.116228977331185 0.113740453284075 0.110838521383472 0.107526187638320 0.103804992909629 0.099675040567496 0.095135013773389 0.090182182663048 0.084812401587568 0.079020096455763 0.072798242107774 0.066138329536435 0.059030322657025 0.051462604206073 0.043421910223709 0.034893252439696 0.025859827738399 0.016302913720243 0.006201749203771 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.006201937285710 -0.016303408142626 -0.025860611995611 -0.034894310655750 -0.043423227090419 -0.051464164924843 -0.059032112883812 -0.066140335329456 -0.072800449877563 -0.079022492917226 -0.084814973713661 -0.090184917639782 -0.095137898955823 -0.099678063436412 -0.103808141028604 -0.107529448610863 -0.110841882809956 -0.113743902718145 -0.116232502235322 -0.118303171637619 -0.119949847843591 -0.121164852708833 -0.119949847843591 -0.118303171637619 -0.116232502235322 -0.113743902718145 -0.110841882809956 -0.107529448610863 -0.103808141028604 -0.099678063436412 -0.095137898955823 -0.090184917639782 -0.084814973713661 -0.079022492917226 -0.072800449877563 -0.066140335329453 -0.059032112883812 -0.051464164924843 -0.043423227090420 -0.034894310655750 -0.025860611995611 -0.016303408142628 -0.006201937285710 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000693194444842 0.012360470548851 0.023407649575453 0.033863643121189 0.043754630887382 0.053104263395479 0.061933839986991 0.070262464601551 0.078107181461628 0.085483092473328 0.092403457871665 0.098879781388958 0.104921881000912 0.110537946101833 0.115734581773354 0.120516840636722 0.124888242613123 0.128850782756428 0.132404927165184 0.135549596822121 0.138282139046894 0.140598286078141 0.142492100120102 0.143955903993732 0.142492100120102 0.140598286078141 0.138282139046894 0.135549596822121 0.132404927165184 0.128850782756427 0.124888242613124 0.120516840636722 0.115734581773354 0.110537946101833 0.104921881000911 0.098879781388957 0.092403457871666 0.085483092473328 0.078107181461628 0.070262464601551 0.061933839986990 0.053104263395480 0.043754630887383 0.033863643121190 0.023407649575454 0.012360470548850 0.000693194444840 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000693215467515 -0.012360845407812 -0.023408359464871 -0.033864670112033 -0.043755957844592 -0.053105873901241 -0.061935718269445 -0.070264595468208 -0.078109550236899 -0.085485684939625 -0.092406260213546 -0.098882780139858 -0.104925062992020 -0.110541298412698 -0.115738091683839 -0.120520495579920 -0.124892030128881 -0.128854690445092 -0.132408942641241 -0.135553707667331 -0.138286332762568 -0.140602550036163 -0.142496421512277 -0.143960269779039 -0.142496421512277 -0.140602550036163 -0.138286332762568 -0.135553707667331 -0.132408942641241 -0.128854690445092 -0.124892030128881 -0.120520495579920 -0.115738091683839 -0.110541298412698 -0.104925062992020 -0.098882780139858 -0.092406260213546 -0.085485684939622 -0.078109550236899 -0.070264595468208 -0.061935718269445 -0.053105873901241 -0.043755957844592 -0.033864670112035 -0.023408359464871 -0.012360845407812 -0.000693215467515 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.005234051148497 0.017989682585306 0.030060880771678 0.041484026742043 0.052292014357121 0.062514549614186 0.072178412304507 0.081307684454744 0.089923949308446 0.098046464023650 0.105692308765084 0.112876514439665 0.119612170949235 0.125910517504631 0.131781016251360 0.137231410191609 0.142267766143668 0.146894503252027 0.151114407344080 0.154928631217354 0.158336680729874 0.161336386350161 0.163923859597985 0.166093433566461 0.167837586454384 0.166093433566461 0.163923859597985 0.161336386350161 0.158336680729875 0.154928631217353 0.151114407344080 0.146894503252028 0.142267766143667 0.137231410191610 0.131781016251360 0.125910517504630 0.119612170949235 0.112876514439665 0.105692308765084 0.098046464023651 0.089923949308447 0.081307684454742 0.072178412304507 0.062514549614187 0.052292014357122 0.041484026742044 0.030060880771676 0.017989682585305 0.005234051148498 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.005234209882823 -0.017990228162734 -0.030061792435235 -0.041485284838098 -0.052293600229610 -0.062516445507960 -0.072180601276567 -0.081310150292436 -0.089926676453676 -0.098049437502336 -0.105695514121142 -0.112879937672854 -0.119615798456299 -0.125914336023164 -0.131785012805919 -0.137235572041578 -0.142272080732413 -0.146898958156940 -0.151118990227039 -0.154933329775198 -0.158341482644455 -0.161341279237536 -0.163928830956281 -0.166098470721951 -0.167842676505214 -0.166098470721951 -0.163928830956281 -0.161341279237536 -0.158341482644455 -0.154933329775198 -0.151118990227039 -0.146898958156940 -0.142272080732413 -0.137235572041578 -0.131785012805919 -0.125914336023163 -0.119615798456299 -0.112879937672854 -0.105695514121140 -0.098049437502336 -0.089926676453675 -0.081310150292436 -0.072180601276567 -0.062516445507960 -0.052293600229613 -0.041485284838098 -0.030061792435235 -0.017990228162734 -0.005234209882823 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.009163293609910 0.023116204754453 0.036305670288944 0.048777550816250 0.060573178672821 0.071729799171409 0.082280953669320 0.092256812232999 0.101684462404181 0.110588159518837 0.118989543147093 0.126907823477261 0.134359940834117 0.141360700978631 0.147922888366437 0.154057359130161 0.159773115184700 0.165077360523347 0.169975540467808 0.174471364347836 0.178566811809142 0.182262122673970 0.185555770000048 0.188444415693093 0.190922847717691 0.192983897612317 0.190922847717691 0.188444415693093 0.185555770000048 0.182262122673970 0.178566811809141 0.174471364347835 0.169975540467808 0.165077360523349 0.159773115184700 0.154057359130161 0.147922888366436 0.141360700978631 0.134359940834115 0.126907823477262 0.118989543147093 0.110588159518837 0.101684462404180 0.092256812233000 0.082280953669321 0.071729799171410 0.060573178672822 0.048777550816249 0.036305670288942 0.023116204754454 0.009163293609912 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.009163571507317 -0.023116905805151 -0.036306771339733 -0.048779030104760 -0.060575015690174 -0.071731974538272 -0.082283449023582 -0.092259610127522 -0.101687546213319 -0.110591513352538 -0.118993151771574 -0.126911672241335 -0.134364015600341 -0.141364988058593 -0.147927374459433 -0.154062031264728 -0.159777960662374 -0.165082366864145 -0.169980695356885 -0.174476655582845 -0.178572227247771 -0.182267650181181 -0.185561397394493 -0.188450130692190 -0.190928637880793 -0.192989750281375 -0.190928637880793 -0.188450130692190 -0.185561397394493 -0.182267650181181 -0.178572227247771 -0.174476655582845 -0.169980695356885 -0.165082366864145 -0.159777960662374 -0.154062031264728 -0.147927374459433 -0.141364988058593 -0.134364015600341 -0.126911672241331 -0.118993151771573 -0.110591513352538 -0.101687546213319 -0.092259610127522 -0.082283449023582 -0.071731974538275 -0.060575015690174 -0.048779030104759 -0.036306771339734 -0.023116905805151 -0.009163571507317 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.012483772489529 0.027768224391776 0.042191101783101 0.055810508230697 0.068678557070204 0.080842025410547 0.092342916713894 0.103218945546002 0.113503955723836 0.123228281156571 0.132419057093227 0.141100488183683 0.149294078674361 0.157018829151096 0.164291403474226 0.171126268896328 0.177535811788061 0.183530430902925 0.189118609671356 0.194306968614838 0.199100298598964 0.203501575290145 0.207511954833201 0.211130750416153 0.214355389023972 0.217181347293444 0.219602064954254 0.217181347293444 0.214355389023972 0.211130750416153 0.207511954833202 0.203501575290143 0.199100298598963 0.194306968614839 0.189118609671357 0.183530430902926 0.177535811788062 0.171126268896327 0.164291403474225 0.157018829151098 0.149294078674361 0.141100488183683 0.132419057093228 0.123228281156570 0.113503955723836 0.103218945546003 0.092342916713894 0.080842025410548 0.068678557070202 0.055810508230695 0.042191101783103 0.027768224391778 0.012483772489530 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.012484151087897 -0.027769066525392 -0.042192381322787 -0.055812200809396 -0.068680639901314 -0.080844477126088 -0.092345717219727 -0.103222075891777 -0.113507397985587 -0.123232018330278 -0.132423072997806 -0.141104767372110 -0.149298606351776 -0.157023591098875 -0.164296385979115 -0.171131458683823 -0.177541195959306 -0.183535996874425 -0.189124345116896 -0.194312861408988 -0.199106336761582 -0.203507746931337 -0.207518248098142 -0.211137153429178 -0.214361889831384 -0.217187933804374 -0.219608724878870 -0.217187933804374 -0.214361889831384 -0.211137153429178 -0.207518248098142 -0.203507746931337 -0.199106336761582 -0.194312861408988 -0.189124345116896 -0.183535996874425 -0.177541195959306 -0.171131458683823 -0.164296385979115 -0.157023591098875 -0.149298606351774 -0.141104767372110 -0.132423072997806 -0.123232018330278 -0.113507397985587 -0.103222075891777 -0.092345717219728 -0.080844477126088 -0.068680639901314 -0.055812200809396 -0.042192381322787 -0.027769066525392 -0.012484151087901 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.015192530247071 0.031976235098902 0.047774907337870 0.062662782273483 0.076706008130301 0.089963626730403 0.102488407509141 0.114327558889054 0.125523336535273 0.136113564425133 0.146132081781935 0.155609126593483 0.164571664541437 0.173043670615429 0.181046369404983 0.188598438995852 0.195716182500908 0.202413670493347 0.208702856952487 0.214593670756090 0.220094084237332 0.225210159852378 0.229946075559948 0.234304129083149 0.238284720792327 0.241886314501181 0.245105374992381 0.247936280566280 0.245105374992381 0.241886314501181 0.238284720792327 0.234304129083150 0.229946075559947 0.225210159852377 0.220094084237332 0.214593670756092 0.208702856952488 0.202413670493348 0.195716182500907 0.188598438995851 0.181046369404984 0.173043670615430 0.164571664541438 0.155609126593484 0.146132081781934 0.136113564425133 0.125523336535274 0.114327558889055 0.102488407509142 0.089963626730401 0.076706008130299 0.062662782273483 0.047774907337872 0.031976235098903 0.015192530247073 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.015192990994591 -0.031977204849869 -0.047776356218969 -0.062664682662744 -0.076708334411849 -0.089966355078937 -0.102491515699716 -0.114331026128416 -0.125527143311675 -0.136117692373921 -0.146136513564709 -0.155613845788875 -0.164576655545874 -0.173048918552430 -0.181051860041750 -0.188604158666050 -0.195722118032625 -0.202419809141394 -0.208709186334204 -0.214600178789929 -0.220100759083534 -0.225216989855036 -0.229953049189860 -0.234311234880799 -0.238291947310339 -0.241893650245592 -0.245112808362012 -0.247943799789465 -0.245112808362012 -0.241893650245592 -0.238291947310339 -0.234311234880799 -0.229953049189860 -0.225216989855036 -0.220100759083534 -0.214600178789929 -0.208709186334204 -0.202419809141394 -0.195722118032625 -0.188604158666050 -0.181051860041750 -0.173048918552427 -0.164576655545873 -0.155613845788875 -0.146136513564709 -0.136117692373921 -0.125527143311675 -0.114331026128420 -0.102491515699716 -0.089966355078937 -0.076708334411849 -0.062664682662744 -0.047776356218969 -0.031977204849873 -0.015192990994591 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.017278775017282 0.035774468737841 0.053127417558994 0.069433606586725 0.084777851589458 0.099235295724215 0.112872665031778 0.125749325992034 0.137918179671078 0.149426420161035 0.160316179648764 0.170625078206123 0.180386693015268 0.189630959031798 0.198384510899241 0.206670974145907 0.214511212232016 0.221923534802327 0.228923871483302 0.235525914700580 0.241741234247660 0.247579365680776 0.253047874023989 0.258152393720468 0.262896645242218 0.267282428251583 0.271309590675900 0.274975972491808 0.278277322395927 0.274975972491809 0.271309590675900 0.267282428251583 0.262896645242218 0.258152393720468 0.253047874023988 0.247579365680776 0.241741234247660 0.235525914700581 0.228923871483302 0.221923534802325 0.214511212232012 0.206670974145909 0.198384510899242 0.189630959031799 0.180386693015267 0.170625078206120 0.160316179648764 0.149426420161036 0.137918179671079 0.125749325992035 0.112872665031778 0.099235295724212 0.084777851589460 0.069433606586726 0.053127417558996 0.035774468737843 0.017278775017280 0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.017279299034844 -0.035775553678758 -0.053129028766957 -0.069435712316403 -0.084780422667744 -0.099238305256884 -0.112876088148226 -0.125753139622076 -0.137922362348867 -0.149430951852004 -0.160321041596084 -0.170630252793887 -0.180392163645872 -0.189636710015479 -0.198390527353997 -0.206677241906224 -0.214517717765116 -0.221930265130716 -0.228930814112587 -0.235533057551618 -0.241748565592185 -0.247586874079717 -0.253055548267696 -0.258160222770171 -0.262904618171977 -0.267290534190041 -0.271317818747079 -0.274984311754231 -0.278285761779181 -0.274984311754231 -0.271317818747079 -0.267290534190041 -0.262904618171977 -0.258160222770171 -0.253055548267696 -0.247586874079717 -0.241748565592185 -0.235533057551618 -0.228930814112588 -0.221930265130716 -0.214517717765116 -0.206677241906224 -0.198390527353994 -0.189636710015479 -0.180392163645872 -0.170630252793887 -0.160321041596084 -0.149430951852004 -0.137922362348869 -0.125753139622076 -0.112876088148226 -0.099238305256884 -0.084780422667744 -0.069435712316403 -0.053129028766961 -0.035775553678758 -0.017279299034844 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.018720691899014 0.039203133447358 0.058337653918562 0.076250352719257 0.093051495971828 0.108837856350311 0.123694643883680 0.137697108003133 0.150911873502077 0.163398059684179 0.175208221701596 0.186389145142955 0.196982518742290 0.207025505222630 0.216551226446890 0.225589175988235 0.234165569775181 0.242303643477259 0.250023903671952 0.257344338491450 0.264280592325635 0.270846108205219 0.277052240664993 0.282908341158193 0.288421817429760 0.293598167633410 0.298440989370554 0.302951963214992 0.307130809641295 0.310975217569570 0.307130809641295 0.302951963214992 0.298440989370554 0.293598167633410 0.288421817429759 0.282908341158192 0.277052240664993 0.270846108205220 0.264280592325636 0.257344338491450 0.250023903671950 0.242303643477257 0.234165569775182 0.225589175988236 0.216551226446890 0.207025505222629 0.196982518742287 0.186389145142956 0.175208221701595 0.163398059684180 0.150911873502077 0.137697108003130 0.123694643883677 0.108837856350312 0.093051495971830 0.076250352719257 0.058337653918564 0.039203133447355 0.018720691899011 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.018721259645937 -0.039204322370209 -0.058339423138620 -0.076252665182033 -0.093054317966914 -0.108841157102144 -0.123698395200880 -0.137701283976428 -0.150916450242745 -0.163403015096414 -0.175213535283455 -0.186394797811367 -0.196988492678489 -0.207031783734895 -0.216557793847995 -0.225596017485409 -0.234172671370709 -0.242310991878104 -0.250031486206984 -0.257352143035070 -0.264288607226693 -0.270854322220254 -0.277060642894899 -0.282916920987465 -0.288430564467553 -0.293607071655622 -0.298450040262185 -0.302961150912011 -0.307140124071192 -0.310984648589751 -0.307140124071192 -0.302961150912011 -0.298450040262185 -0.293607071655622 -0.288430564467553 -0.282916920987465 -0.277060642894899 -0.270854322220254 -0.264288607226693 -0.257352143035070 -0.250031486206985 -0.242310991878104 -0.234172671370709 -0.225596017485407 -0.216557793847995 -0.207031783734895 -0.196988492678489 -0.186394797811367 -0.175213535283455 -0.163403015096419 -0.150916450242745 -0.137701283976428 -0.123698395200880 -0.108841157102144 -0.093054317966914 -0.076252665182036 -0.058339423138620 -0.039204322370209 -0.018721259645937 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.019480224741655 0.042312026860804 0.063523030457775 0.083282349292282 0.101735957712771 0.119010464491707 0.135216166631270 0.150449537839762 0.164795269447465 0.178327954218060 0.191113483111176 0.203210209670147 0.214669925009029 0.225538677397209 0.235857463498821 0.245662812913473 0.254987283414314 0.263859880914246 0.272306415504572 0.280349802747002 0.288010317640859 0.295305807240203 0.302251866689245 0.308861982421518 0.315147645382633 0.321118436349891 0.326782084700903 0.332144501298122 0.337209785477759 0.341980205431115 0.346456150512147 0.341980205431116 0.337209785477759 0.332144501298122 0.326782084700903 0.321118436349890 0.315147645382632 0.308861982421518 0.302251866689246 0.295305807240203 0.288010317640859 0.280349802747002 0.272306415504570 0.263859880914247 0.254987283414315 0.245662812913475 0.235857463498822 0.225538677397207 0.214669925009031 0.203210209670148 0.191113483111177 0.178327954218062 0.164795269447462 0.150449537839759 0.135216166631272 0.119010464491708 0.101735957712772 0.083282349292284 0.063523030457771 0.042312026860801 0.019480224741656 0.000000000000000 -0.000000000000000 -0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 -0.019480815523112 -0.042313310067812 -0.063524956935989 -0.083284875016114 -0.101739043083617 -0.119014073750673 -0.135220267364460 -0.150454100559063 -0.164800267233217 -0.178333362412801 -0.191119279055720 -0.203216372475026 -0.214676435355452 -0.225545517362898 -0.235864616404821 -0.245670263188661 -0.254995016474960 -0.263867883056286 -0.272314673806696 -0.280358304982865 -0.288019052199000 -0.295314763050411 -0.302261033154266 -0.308871349353108 -0.315157202941036 -0.321128174985907 -0.326791995099745 -0.332154574324261 -0.337220012119989 -0.341990576747019 -0.346466657571111 -0.341990576747019 -0.337220012119989 -0.332154574324261 -0.326791995099745 -0.321128174985907 -0.315157202941036 -0.308871349353108 -0.302261033154267 -0.295314763050411 -0.288019052199000 -0.280358304982865 -0.272314673806697 -0.263867883056286 -0.254995016474957 -0.245670263188661 -0.235864616404819 -0.225545517362898 -0.214676435355452 -0.203216372475026 -0.191119279055725 -0.178333362412801 -0.164800267233217 -0.150454100559063 -0.135220267364460 -0.119014073750673 -0.101739043083621 -0.083284875016114 -0.063524956935989 -0.042313310067812 -0.019480815523112 0.000000000000000 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 0.019494141300173 0.045166612601155 0.068845414145299 0.090763421737013 0.111118435346823 0.130079513437604 0.147791979410623 0.164381413550662 0.179956862031316 0.194613435987320 0.208434431244175 0.221493068220136 0.233853928507550 0.245574147436424 0.256704408937710 0.267289779135829 0.277370407506672 0.286982118558071 0.296156912401327 0.304923388972287 0.313307107796612 0.321330892902089 0.329015090628547 0.336377786572199 0.343434986646882 0.350200766187865 0.356687390114247 0.362905406361746 0.368863714063028 0.374569607254620 0.380028794196535 0.385245391669894 0.380028794196536 0.374569607254620 0.368863714063029 0.362905406361746 0.356687390114247 0.350200766187864 0.343434986646882 0.336377786572201 0.329015090628548 0.321330892902091 0.313307107796613 0.304923388972286 0.296156912401329 0.286982118558072 0.277370407506672 0.267289779135829 0.256704408937710 0.245574147436424 0.233853928507551 0.221493068220137 0.208434431244176 0.194613435987317 0.179956862031313 0.164381413550663 0.147791979410623 0.130079513437606 0.111118435346825 0.090763421737009 0.068845414145295 0.045166612601157 0.019494141300175 0.000000000000000 -0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.019494732503681 -0.045167982379871 -0.068847502036722 -0.090766174341122 -0.111121805262328 -0.130083458390280 -0.147796461533511 -0.164386398785306 -0.179962319626331 -0.194619338075776 -0.208440752485282 -0.221499785493662 -0.233861020651858 -0.245581595022630 -0.256712194074031 -0.267297885297221 -0.277378819385702 -0.286990821933773 -0.296165894023206 -0.304932636457207 -0.313316609536591 -0.321340637981329 -0.329025068748298 -0.336387987982199 -0.343445402082284 -0.350211386810689 -0.356698207458476 -0.362916412281248 -0.368874900681560 -0.374580966917146 -0.380040319421135 -0.385257075099501 -0.380040319421135 -0.374580966917146 -0.368874900681560 -0.362916412281248 -0.356698207458476 -0.350211386810689 -0.343445402082284 -0.336387987982200 -0.329025068748298 -0.321340637981329 -0.313316609536591 -0.304932636457207 -0.296165894023206 -0.286990821933769 -0.277378819385702 -0.267297885297221 -0.256712194074031 -0.245581595022630 -0.233861020651858 -0.221499785493665 -0.208440752485282 -0.194619338075776 -0.179962319626331 -0.164386398785306 -0.147796461533511 -0.130083458390283 -0.111121805262328 -0.090766174341122 -0.068847502036722 -0.045167982379871 -0.019494732503681 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.018657881854849 0.047858765025461 0.074538987852639 0.099030304534230 0.121608854377641 0.142506349407235 0.161918665240048 0.180012512110512 0.196930668503520 0.212796126077938 0.227715401115585 0.241781201541675 0.255074591073930 0.267666757576790 0.279620467381639 0.290991268553513 0.301828492016220 0.312176088812442 0.322073333665014 0.331555418770387 0.340653956923143 0.349397409297399 0.357811450242415 0.365919279096559 0.373741887143510 0.381298286319679 0.388605705049286 0.395679755569551 0.402534576262289 0.409182951789897 0.415636413208970 0.421905319675994 0.427998922840018 0.421905319675995 0.415636413208970 0.409182951789898 0.402534576262289 0.395679755569549 0.388605705049283 0.381298286319678 0.373741887143511 0.365919279096560 0.357811450242416 0.349397409297397 0.340653956923142 0.331555418770388 0.322073333665016 0.312176088812441 0.301828492016220 0.290991268553509 0.279620467381640 0.267666757576791 0.255074591073933 0.241781201541676 0.227715401115582 0.212796126077935 0.196930668503519 0.180012512110514 0.161918665240050 0.142506349407237 0.121608854377637 0.099030304534226 0.074538987852642 0.047858765025463 0.018657881854851 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.018658447696922 -0.047860216449731 -0.074541248414441 -0.099033307850080 -0.121612542438601 -0.142510671231556 -0.161923575786335 -0.180017971393241 -0.196936640867245 -0.212802579597208 -0.227722307095296 -0.241788534098301 -0.255082326782373 -0.267674875170893 -0.279628947498773 -0.291000093515666 -0.301837645641456 -0.312185556251735 -0.322083101260433 -0.331565473931278 -0.340664288017588 -0.349408005556624 -0.357822301676286 -0.365930376418505 -0.373753221703568 -0.381309850044470 -0.388617490387923 -0.395691755444620 -0.402546784025153 -0.409195361179646 -0.415649018314394 -0.421918114900048 -0.428011902866242 -0.421918114900048 -0.415649018314394 -0.409195361179646 -0.402546784025154 -0.395691755444620 -0.388617490387923 -0.381309850044471 -0.373753221703568 -0.365930376418505 -0.357822301676286 -0.349408005556624 -0.340664288017588 -0.331565473931278 -0.322083101260430 -0.312185556251735 -0.301837645641456 -0.291000093515666 -0.279628947498773 -0.267674875170893 -0.255082326782379 -0.241788534098301 -0.227722307095296 -0.212802579597208 -0.196936640867245 -0.180017971393241 -0.161923575786338 -0.142510671231556 -0.121612542438601 -0.099033307850080 -0.074541248414441 -0.047860216449731 -0.018658447696922 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.000000000000000 0.016794344746817 0.050526980890790 0.080961437685844 0.108591681108503 0.133818333979931 0.156969778976523 0.178317787156823 0.198089260557987 0.216475171614921 0.233637450605781 0.249714350788026 0.264824670245330 0.279071105376052 0.292542937964741 0.305318205898273 0.317465470247237 0.329045264242562 0.340111289664005 0.350711411278644 0.360888488804039 0.370681077423335 0.380124021438093 0.389248960698857 0.398084765634119 0.406657913735425 0.414992818051628 0.423112116452567 0.431036929033514 0.438787089967350 0.446381359314267 0.453837619728604 0.461173062634077 0.468404368259030 0.475547883932581 0.468404368259031 0.461173062634079 0.453837619728604 0.446381359314267 0.438787089967350 0.431036929033512 0.423112116452568 0.414992818051629 0.406657913735426 0.398084765634120 0.389248960698855 0.380124021438091 0.370681077423336 0.360888488804040 0.350711411278647 0.340111289664004 0.329045264242559 0.317465470247238 0.305318205898273 0.292542937964742 0.279071105376053 0.264824670245328 0.249714350788022 0.233637450605782 0.216475171614922 0.198089260557989 0.178317787156825 0.156969778976518 0.133818333979928 0.108591681108505 0.080961437685847 0.050526980890793 0.016794344746819 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 -0.016794854072952 -0.050528513234692 -0.080963893022826 -0.108594974394519 -0.133822392320714 -0.156974539436744 -0.178323195043227 -0.198095268058613 -0.216481736709490 -0.233644536184910 -0.249721923935172 -0.264832701646768 -0.279079568832557 -0.292551809984748 -0.305327465356901 -0.317475098098872 -0.329055243277393 -0.340121604300849 -0.350722047387930 -0.360899433555998 -0.370692319157482 -0.380135549550671 -0.389260765545664 -0.398096838446509 -0.406670246547737 -0.415005403638584 -0.423124948275438 -0.431050001194083 -0.438800397168913 -0.446394896829061 -0.453851383371201 -0.461187048740415 -0.468418573670909 -0.475562305987580 -0.468418573670909 -0.461187048740415 -0.453851383371201 -0.446394896829061 -0.438800397168913 -0.431050001194083 -0.423124948275438 -0.415005403638584 -0.406670246547737 -0.398096838446509 -0.389260765545664 -0.380135549550671 -0.370692319157481 -0.360899433555998 -0.350722047387930 -0.340121604300849 -0.329055243277392 -0.317475098098872 -0.305327465356901 -0.292551809984752 -0.279079568832557 -0.264832701646768 -0.249721923935172 -0.233644536184910 -0.216481736709489 -0.198095268058616 -0.178323195043227 -0.156974539436744 -0.133822392320714 -0.108594974394519 -0.080963893022826 -0.050528513234691 -0.016794854072952 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 0.000000000000000 0.013588223549497 0.053397471113358 0.088694932468260 0.120260693240871 0.148706069317972 0.174517025799282 0.198084855823621 0.219728278247527 0.239709630770292 0.258246921791644 0.275522927253170 0.291692145791971 0.306886179540711 0.321217942594061 0.334784986164990 0.347672151009151 0.359953702455453 0.371695063968936 0.382954236713187 0.393782971803553 0.404227746623655 0.414330585183458 0.424129753957955 0.433660358209559 0.442954858928779 0.452043526845308 0.460954847190679 0.469715886838626 0.478352633972504 0.486890319436825 0.495353728364554 0.503767510505806 0.512156497918754 0.520546039351146 0.528962361806883 0.520546039351146 0.512156497918754 0.503767510505806 0.495353728364556 0.486890319436823 0.478352633972502 0.469715886838626 0.460954847190681 0.452043526845309 0.442954858928780 0.433660358209556 0.424129753957953 0.414330585183459 0.404227746623656 0.393782971803551 0.382954236713187 0.371695063968934 0.359953702455454 0.347672151009152 0.334784986164992 0.321217942594059 0.306886179540707 0.291692145791967 0.275522927253167 0.258246921791646 0.239709630770293 0.219728278247529 0.198084855823617 0.174517025799276 0.148706069317970 0.120260693240874 0.088694932468263 0.053397471113359 0.013588223549490 0.000000000000000 0.000000000000000 0.000000000000000 -0.013588635642816 -0.053399090511305 -0.088697622340805 -0.120264340415823 -0.148710579162683 -0.174522318419074 -0.198090863190661 -0.219734941999848 -0.239716900501889 -0.258254753708122 -0.275531283103219 -0.291700992009798 -0.306895486551652 -0.321227684247827 -0.334795139269751 -0.347682694946054 -0.359964618857918 -0.371706336454496 -0.382965850658388 -0.393794914154404 -0.404240005735707 -0.414343150686718 -0.424142616642963 -0.433673509931493 -0.442968292527275 -0.452057236078021 -0.460968826679143 -0.469730132025245 -0.478367141087831 -0.486905085476589 -0.495368751076161 -0.503782788384205 -0.512172030211990 -0.520561826076019 -0.528978403775595 -0.520561826076021 -0.512172030211990 -0.503782788384205 -0.495368751076161 -0.486905085476589 -0.478367141087831 -0.469730132025245 -0.460968826679143 -0.452057236078021 -0.442968292527275 -0.433673509931493 -0.424142616642963 -0.414343150686718 -0.404240005735703 -0.393794914154404 -0.382965850658388 -0.371706336454496 -0.359964618857918 -0.347682694946054 -0.334795139269752 -0.321227684247827 -0.306895486551652 -0.291700992009798 -0.275531283103219 -0.258254753708122 -0.239716900501894 -0.219734941999848 -0.198090863190661 -0.174522318419074 -0.148710579162683 -0.120264340415823 -0.088697622340805 -0.053399090511305 -0.013588635642816 0.000000000000000 0.000000000000000 +0.000000000000000 0.008431579620531 0.056876548775071 0.098764338130087 0.135431299576842 0.167876034069251 0.196859985811657 0.222974121384865 0.246684326273579 0.268363045744563 0.288311801279609 0.306777513855629 0.323964536662194 0.340043660262683 0.355158945803111 0.369432976640826 0.382970942647495 0.395863852379724 0.408191086496139 0.420022448737671 0.431419830448236 0.442438575746330 0.453128613578331 0.463535407643131 0.473700763973039 0.483663527683851 0.493460194298509 0.503125456569469 0.512692704499628 0.522194494035875 0.531662998513384 0.541130456263454 0.550629627821288 0.560194276895934 0.569859690762612 0.579663258143637 0.589645126177767 0.579663258143638 0.569859690762612 0.560194276895933 0.550629627821289 0.541130456263457 0.531662998513383 0.522194494035875 0.512692704499630 0.503125456569471 0.493460194298510 0.483663527683850 0.473700763973036 0.463535407643131 0.453128613578333 0.442438575746332 0.431419830448238 0.420022448737673 0.408191086496140 0.395863852379727 0.382970942647497 0.369432976640824 0.355158945803113 0.340043660262680 0.323964536662196 0.306777513855631 0.288311801279611 0.268363045744566 0.246684326273574 0.222974121384859 0.196859985811660 0.167876034069254 0.135431299576845 0.098764338130091 0.056876548775066 0.008431579620535 0.000000000000000 -0.008431835327069 -0.056878273683835 -0.098767333379920 -0.135435406834428 -0.167881125286091 -0.196865956031769 -0.222980883574644 -0.246691807528442 -0.268371184455170 -0.288320544980915 -0.306786817571039 -0.323974361612577 -0.340053972848513 -0.355169716793839 -0.369444180523521 -0.382982557099338 -0.395875857837940 -0.408203465805348 -0.420035186859451 -0.431432914221152 -0.442451993687381 -0.453142355718731 -0.463549465392872 -0.473715130009985 -0.483678195863928 -0.493475159584453 -0.503140714976144 -0.512708253054528 -0.522210330753831 -0.531679122384952 -0.541146867256890 -0.550646326898383 -0.560211266042440 -0.569876973034451 -0.579680837730617 -0.589663008487264 -0.579680837730617 -0.569876973034451 -0.560211266042440 -0.550646326898383 -0.541146867256889 -0.531679122384952 -0.522210330753831 -0.512708253054528 -0.503140714976144 -0.493475159584453 -0.483678195863928 -0.473715130009985 -0.463549465392872 -0.453142355718728 -0.442451993687381 -0.431432914221152 -0.420035186859451 -0.408203465805348 -0.395875857837940 -0.382982557099343 -0.369444180523521 -0.355169716793840 -0.340053972848513 -0.323974361612577 -0.306786817571039 -0.288320544980921 -0.268371184455170 -0.246691807528442 -0.222980883574644 -0.196865956031769 -0.167881125286091 -0.135435406834428 -0.098767333379920 -0.056878273683835 -0.008431835327069 0.000000000000000 +-0.000000000000000 0.061788677854842 0.113169565715726 0.156720906542018 0.194238286060788 0.227011085910061 0.255989518503858 0.281889645604202 0.305261681806699 0.326535737380317 0.346053244548313 0.364089039725624 0.380867194287627 0.396572570101330 0.411359393583094 0.425357713864049 0.438678335682996 0.451416637319115 0.463655563384078 0.475468000385280 0.486918686432987 0.498065766902825 0.508962079856746 0.519656235008927 0.530193535625882 0.540616782375081 0.550966990700253 0.561284048067619 0.571607333901874 0.581976322892415 0.592431191409468 0.603013446945453 0.613766601802959 0.624736914802575 0.635974228808729 0.647532937739457 0.659473125000005 0.647532937739457 0.635974228808729 0.624736914802577 0.613766601802960 0.603013446945453 0.592431191409467 0.581976322892416 0.571607333901875 0.561284048067614 0.550966990700253 0.540616782375079 0.530193535625879 0.519656235008930 0.508962079856747 0.498065766902827 0.486918686432987 0.475468000385277 0.463655563384080 0.451416637319110 0.438678335682998 0.425357713864047 0.411359393583090 0.396572570101326 0.380867194287628 0.364089039725626 0.346053244548305 0.326535737380320 0.305261681806693 0.281889645604197 0.255989518503850 0.227011085910055 0.194238286060791 0.156720906542023 0.113169565715718 0.061788677854847 0.000000000000000 -0.061790551734925 -0.113172997836347 -0.156725659454635 -0.194244176771991 -0.227017970529834 -0.255997281959522 -0.281898194539249 -0.305270939551105 -0.326545640308130 -0.346063739388250 -0.364100081541456 -0.380878744938582 -0.396584597052999 -0.411371868978312 -0.425370613789693 -0.438691639586339 -0.451430327539995 -0.463669624777810 -0.475482420017630 -0.486933453333048 -0.498080871863077 -0.508977515272096 -0.519671994748492 -0.530209614932694 -0.540633177790204 -0.550983700008636 -0.561301070263876 -0.571624669174905 -0.581993972628267 -0.592449158212632 -0.603031734679224 -0.613785215650238 -0.624755861349181 -0.635993516152053 -0.647552575626525 -0.659493125000006 -0.647552575626525 -0.635993516152053 -0.624755861349181 -0.613785215650237 -0.603031734679225 -0.592449158212632 -0.581993972628266 -0.571624669174905 -0.561301070263875 -0.550983700008636 -0.540633177790204 -0.530209614932694 -0.519671994748492 -0.508977515272096 -0.498080871863077 -0.486933453333048 -0.475482420017630 -0.463669624777809 -0.451430327539995 -0.438691639586344 -0.425370613789693 -0.411371868978312 -0.396584597052999 -0.380878744938582 -0.364100081541456 -0.346063739388246 -0.326545640308130 -0.305270939551105 -0.281898194539249 -0.255997281959522 -0.227017970529834 -0.194244176771991 -0.156725659454635 -0.113172997836347 -0.061790551734925 -0.000000000000000 +-0.000000358990426 0.097528433784862 0.139528871062208 0.175960443777762 0.207960468847725 0.236379077345782 0.261864762394525 0.284921086904248 0.305945293447237 0.325255217034125 0.343108439124660 0.359716175660897 0.375253517140313 0.389867094872098 0.403680901128206 0.416800765370512 0.429317838989245 0.441311339765325 0.452850737726394 0.463997515577933 0.474806602631178 0.485327556655452 0.495605550391601 0.505682206582105 0.515596315942049 0.525384465580050 0.535081600331410 0.544721535839150 0.554337439704002 0.563962295417712 0.573629362967322 0.583372649890027 0.593227407162687 0.603230665678846 0.613421831313371 0.623843359891790 0.634541538058559 0.623843359891790 0.613421831313371 0.603230665678845 0.593227407162688 0.583372649890026 0.573629362967321 0.563962295417713 0.554337439704003 0.544721535839151 0.535081600331411 0.525384465580046 0.515596315942046 0.505682206582106 0.495605550391598 0.485327556655454 0.474806602631179 0.463997515577930 0.452850737726396 0.441311339765327 0.429317838989247 0.416800765370514 0.403680901128201 0.389867094872102 0.375253517140315 0.359716175660899 0.343108439124662 0.325255217034128 0.305945293447232 0.284921086904252 0.261864762394527 0.236379077345785 0.207960468847729 0.175960443777766 0.139528871062200 0.097528433784865 -0.000000358990426 -0.097529398820789 -0.139531253979531 -0.175964053587190 -0.207965153502183 -0.236384713900283 -0.261871250096878 -0.284928342228450 -0.305953246449541 -0.325263808631095 -0.343117619027217 -0.359725900784023 -0.375263750363417 -0.389877804061788 -0.403692058360246 -0.416812346304874 -0.429329822364200 -0.441323706985304 -0.452863472524296 -0.464010603737352 -0.474820031757260 -0.485341315985682 -0.495619630639809 -0.505696599810320 -0.515611015456137 -0.525399465845956 -0.535096896909536 -0.544737125335031 -0.554353319734019 -0.563978464588980 -0.573645820871303 -0.583389397109965 -0.593244445295176 -0.603247997370421 -0.613439460313515 -0.623861291124179 -0.634559777713286 -0.623861291124179 -0.613439460313515 -0.603247997370421 -0.593244445295176 -0.583389397109965 -0.573645820871303 -0.563978464588980 -0.554353319734019 -0.544737125335031 -0.535096896909538 -0.525399465845956 -0.515611015456138 -0.505696599810319 -0.495619630639812 -0.485341315985681 -0.474820031757259 -0.464010603737351 -0.452863472524296 -0.441323706985303 -0.429329822364203 -0.416812346304874 -0.403692058360246 -0.389877804061788 -0.375263750363417 -0.359725900784023 -0.343117619027223 -0.325263808631095 -0.305953246449541 -0.284928342228449 -0.261871250096878 -0.236384713900283 -0.207965153502183 -0.175964053587189 -0.139531253979531 -0.097529398820789 -0.000000358990426 +-0.000000592793526 0.088437011663171 0.159798250003800 0.191020324884057 0.218865841749488 0.243922008263745 0.266649357374337 0.287414356529961 0.306512451330866 0.324184666475373 0.340629773838365 0.356013351773202 0.370474626473361 0.384131706233858 0.397085634763922 0.409423565596034 0.421221274817744 0.432545170482510 0.443453915615560 0.453999752182681 0.464229592075748 0.474185925633976 0.483907586796810 0.493430405524166 0.502787771824757 0.512011131042201 0.521130426567005 0.530174503591496 0.539171485708626 0.548149134941350 0.557135205091065 0.566157798064596 0.575245733066736 0.584428939250100 0.593738883652281 0.603209048120525 0.612875471576858 0.603209048120526 0.593738883652280 0.584428939250096 0.575245733066737 0.566157798064593 0.557135205091063 0.548149134941351 0.539171485708627 0.530174503591498 0.521130426567005 0.512011131042199 0.502787771824751 0.493430405524159 0.483907586796812 0.474185925633978 0.464229592075745 0.453999752182678 0.443453915615561 0.432545170482511 0.421221274817741 0.409423565596036 0.397085634763919 0.384131706233854 0.370474626473363 0.356013351773204 0.340629773838367 0.324184666475375 0.306512451330861 0.287414356529956 0.266649357374332 0.243922008263748 0.218865841749490 0.191020324884052 0.159798250003793 0.088437011663178 -0.000000592793526 -0.088438197982786 -0.159799826120680 -0.191023039921534 -0.218869567919513 -0.243926639899519 -0.266654806147414 -0.287420547897993 -0.306519321854866 -0.324192161763373 -0.340637846948056 -0.356021961956296 -0.370483738177801 -0.384141288303272 -0.397095659789701 -0.409434009388783 -0.421232115973094 -0.432556390022295 -0.443465496689617 -0.454011679819982 -0.464241852975965 -0.474198507992498 -0.483920480157680 -0.493443600656553 -0.502801260619519 -0.512024906425680 -0.521144482429932 -0.530188834731259 -0.539186087783589 -0.548164004436264 -0.557150339292863 -0.566173195048225 -0.575261391690905 -0.584444859163069 -0.593755065308202 -0.603225492807018 -0.612892181455014 -0.603225492807019 -0.593755065308202 -0.584444859163069 -0.575261391690905 -0.566173195048225 -0.557150339292863 -0.548164004436264 -0.539186087783589 -0.530188834731259 -0.521144482429932 -0.512024906425680 -0.502801260619519 -0.493443600656553 -0.483920480157677 -0.474198507992497 -0.464241852975965 -0.454011679819982 -0.443465496689617 -0.432556390022295 -0.421232115973094 -0.409434009388783 -0.397095659789701 -0.384141288303272 -0.370483738177801 -0.356021961956296 -0.340637846948059 -0.324192161763373 -0.306519321854866 -0.287420547897993 -0.266654806147414 -0.243926639899519 -0.218869567919513 -0.191023039921534 -0.159799826120680 -0.088438197982786 -0.000000592793526 +-0.000000757704306 0.075112317885154 0.150318924078569 0.203170810462624 0.227771733643340 0.250147459319554 0.270635081618062 0.289508401706733 0.306992259317209 0.323273149355718 0.338507201830721 0.352826260064041 0.366342567149332 0.379152420281687 0.391339050360489 0.402974913644504 0.414123532726710 0.424840988916677 0.435177142811447 0.445176641425443 0.454879756718762 0.464323090327865 0.473540171800217 0.482561971991688 0.491417349021899 0.500133440957542 0.508736016961648 0.517249796830859 0.525698747518446 0.534106364319035 0.542495943813964 0.550890855408886 0.559314818323454 0.567792191222852 0.576348282338103 0.585009688957219 0.593804676658704 0.585009688957220 0.576348282338105 0.567792191222851 0.559314818323454 0.550890855408885 0.542495943813962 0.534106364319036 0.525698747518446 0.517249796830861 0.508736016961646 0.500133440957545 0.491417349021898 0.482561971991689 0.473540171800217 0.464323090327866 0.454879756718762 0.445176641425440 0.435177142811448 0.424840988916678 0.414123532726704 0.402974913644506 0.391339050360486 0.379152420281684 0.366342567149335 0.352826260064044 0.338507201830722 0.323273149355719 0.306992259317206 0.289508401706735 0.270635081618064 0.250147459319547 0.227771733643342 0.203170810462626 0.150318924078551 0.075112317885159 -0.000000757704306 -0.075113834089045 -0.150320442671822 -0.203172803587795 -0.227774677065375 -0.250151261559890 -0.270639664929040 -0.289513699480167 -0.306998214079037 -0.323279711194664 -0.338514327153081 -0.352833910596814 -0.366350709134652 -0.379161023820352 -0.391348088872836 -0.402984363424523 -0.414133372570887 -0.424851199813311 -0.435187707679170 -0.445187544892160 -0.454890984934050 -0.464334630803194 -0.473552013272560 -0.482574104306880 -0.491429763034823 -0.500146128446767 -0.508748970556574 -0.517263009949878 -0.525712214316733 -0.534120079645128 -0.542509903174209 -0.550905054939263 -0.559329254768346 -0.567806861920489 -0.576363185212682 -0.585024822517712 -0.593820040004701 -0.585024822517712 -0.576363185212682 -0.567806861920489 -0.559329254768346 -0.550905054939263 -0.542509903174208 -0.534120079645128 -0.525712214316733 -0.517263009949878 -0.508748970556575 -0.500146128446768 -0.491429763034823 -0.482574104306880 -0.473552013272557 -0.464334630803194 -0.454890984934050 -0.445187544892160 -0.435187707679170 -0.424851199813312 -0.414133372570884 -0.402984363424523 -0.391348088872836 -0.379161023820352 -0.366350709134653 -0.352833910596814 -0.338514327153086 -0.323279711194665 -0.306998214079038 -0.289513699480167 -0.270639664929040 -0.250151261559890 -0.227774677065375 -0.203172803587795 -0.150320442671822 -0.075113834089045 -0.000000757704306 +-0.000000880670201 0.065178359662206 0.130411581224879 0.195752928849052 0.235207788337895 0.255391233125791 0.274018479620607 0.291298307269824 0.307404912124594 0.322484886331040 0.336662580556719 0.350044271134013 0.362721432598509 0.374773332976429 0.386269110977290 0.397269453034081 0.407827958571689 0.417992260431474 0.427804951640603 0.437304358053624 0.446525187674479 0.455499080895751 0.464255080903455 0.472820039688573 0.481218972188401 0.489475368841426 0.497611475124461 0.505648545337482 0.513607076928464 0.521507030948875 0.529368043760177 0.537209634846905 0.545051415519777 0.552913303412029 0.560815747993637 0.568779972876475 0.576828241496085 0.568779972876477 0.560815747993637 0.552913303412031 0.545051415519778 0.537209634846903 0.529368043760174 0.521507030948876 0.513607076928465 0.505648545337482 0.497611475124462 0.489475368841425 0.481218972188398 0.472820039688577 0.464255080903456 0.455499080895752 0.446525187674479 0.437304358053620 0.427804951640604 0.417992260431476 0.407827958571691 0.397269453034082 0.386269110977295 0.374773332976425 0.362721432598511 0.350044271134014 0.336662580556721 0.322484886331041 0.307404912124589 0.291298307269825 0.274018479620608 0.255391233125794 0.235207788337897 0.195752928849057 0.130411581224869 0.065178359662213 -0.000000880670201 -0.065180121804709 -0.130413345776556 -0.195754697425585 -0.235210078197442 -0.255394336756192 -0.274022328258899 -0.291302841234550 -0.307410079296715 -0.322490640940638 -0.336668882204474 -0.350051083995072 -0.362728724769454 -0.374781075935560 -0.386277279135545 -0.397278023358901 -0.407836910270219 -0.418001574682179 -0.427814611364794 -0.437314347720062 -0.446535493131531 -0.455509689226633 -0.464265980300979 -0.472831219346402 -0.481230422206366 -0.489487080142902 -0.497623439384127 -0.505660754918072 -0.513619524825361 -0.521519710741578 -0.529380949569817 -0.537222761299165 -0.545064757712666 -0.552926856888031 -0.560829508715920 -0.568793937208832 -0.576842406186438 -0.568793937208832 -0.560829508715920 -0.552926856888031 -0.545064757712667 -0.537222761299165 -0.529380949569817 -0.521519710741578 -0.513619524825361 -0.505660754918072 -0.497623439384127 -0.489487080142902 -0.481230422206366 -0.472831219346402 -0.464265980300976 -0.455509689226631 -0.446535493131530 -0.437314347720062 -0.427814611364793 -0.418001574682178 -0.407836910270222 -0.397278023358901 -0.386277279135545 -0.374781075935559 -0.362728724769454 -0.350051083995072 -0.336668882204474 -0.322490640940638 -0.307410079296715 -0.291302841234550 -0.274022328258899 -0.255394336756192 -0.235210078197441 -0.195754697425585 -0.130413345776555 -0.065180121804709 -0.000000880670201 +-0.000000976211163 0.057460911405268 0.114951780442083 0.172500614700384 0.230136400424932 0.259884406277563 0.276936820556534 0.292851356859431 0.307764866600777 0.321793998636121 0.335038869569245 0.347585967467145 0.359510470156467 0.370878112014906 0.381746699354091 0.392167349999471 0.402185514737520 0.411841825029669 0.421172801479205 0.430211450066040 0.438987767489115 0.447529172612947 0.455860877671011 0.464006210290015 0.471986895388324 0.479823304436539 0.487534678351472 0.495139329354150 0.502654826403867 0.510098168285595 0.517485948048432 0.524834512249854 0.532160118343556 0.539479093553321 0.546807998704700 0.554163800750675 0.561564058145217 0.554163800750676 0.546807998704700 0.539479093553322 0.532160118343553 0.524834512249853 0.517485948048430 0.510098168285595 0.502654826403868 0.495139329354150 0.487534678351473 0.479823304436538 0.471986895388321 0.464006210290016 0.455860877671012 0.447529172612948 0.438987767489116 0.430211450066047 0.421172801479206 0.411841825029670 0.402185514737522 0.392167349999472 0.381746699354087 0.370878112014902 0.359510470156469 0.347585967467146 0.335038869569246 0.321793998636123 0.307764866600775 0.292851356859427 0.276936820556536 0.259884406277565 0.230136400424937 0.172500614700387 0.114951780442074 0.057460911405273 -0.000000976211163 -0.057462864611440 -0.114953736002085 -0.172502574191078 -0.230138365434642 -0.259886911297960 -0.276940035504864 -0.292855228089305 -0.307769346763300 -0.321799045734638 -0.335044446184959 -0.347592040119852 -0.359517008772968 -0.370885089484062 -0.381754091152071 -0.392175133872269 -0.402193670430510 -0.411850334056034 -0.421181646920684 -0.430220616400682 -0.438997240441642 -0.447538939024313 -0.455870925384095 -0.464016528049078 -0.471997472750218 -0.479834131691928 -0.487545746454651 -0.495150629860231 -0.502666351412310 -0.510109910389156 -0.517497900286747 -0.524846668066991 -0.532172471548899 -0.539491638285257 -0.546820729396562 -0.554176712098523 -0.561577145076944 -0.554176712098523 -0.546820729396562 -0.539491638285257 -0.532172471548899 -0.524846668066991 -0.517497900286747 -0.510109910389156 -0.502666351412310 -0.495150629860231 -0.487545746454651 -0.479834131691928 -0.471997472750219 -0.464016528049078 -0.455870925384093 -0.447538939024313 -0.438997240441642 -0.430220616400682 -0.421181646920684 -0.411850334056034 -0.402193670430511 -0.392175133872269 -0.381754091152070 -0.370885089484061 -0.359517008772968 -0.347592040119852 -0.335044446184964 -0.321799045734638 -0.307769346763300 -0.292855228089305 -0.276940035504864 -0.259886911297960 -0.230138365434642 -0.172502574191078 -0.114953736002085 -0.057462864611440 -0.000000976211163 +-0.000001052843891 0.051271402033363 0.102556403899062 0.153866426364233 0.205213793640637 0.256610602982419 0.279488910329256 0.294216519603943 0.308082748737814 0.321181296633608 0.333593437279435 0.345390066785182 0.356633362510994 0.367378137869967 0.377672956470884 0.387561054543075 0.397081109593271 0.406267884962970 0.415152773663629 0.423764260049080 0.432128314169238 0.440268730765149 0.448207422613679 0.455964676163882 0.463559376016016 0.471009203697026 0.478330815320171 0.485540002035322 0.492651836645424 0.499680809356294 0.506640955323640 0.513545976447909 0.520409359736312 0.527244494496730 0.534064790650258 0.540883800550135 0.547715346883072 0.540883800550137 0.534064790650258 0.527244494496730 0.520409359736314 0.513545976447908 0.506640955323639 0.499680809356293 0.492651836645422 0.485540002035323 0.478330815320171 0.471009203697024 0.463559376016015 0.455964676163883 0.448207422613680 0.440268730765150 0.432128314169237 0.423764260049078 0.415152773663630 0.406267884962970 0.397081109593272 0.387561054543077 0.377672956470882 0.367378137869965 0.356633362510994 0.345390066785182 0.333593437279437 0.321181296633609 0.308082748737811 0.294216519603940 0.279488910329253 0.256610602982429 0.205213793640646 0.153866426364237 0.102556403899054 0.051271402033367 -0.000001052843891 -0.051273508475462 -0.102558512605935 -0.153868538851771 -0.205215911433771 -0.256612727618818 -0.279491571115569 -0.294219808276160 -0.308086622190060 -0.321185716287950 -0.333598368469502 -0.345395478240475 -0.356639225922696 -0.367384427523166 -0.377679648931345 -0.387568128388981 -0.397088545184309 -0.406275664240633 -0.415160879977606 -0.423772678005668 -0.432137029498356 -0.440277730203110 -0.448216693799386 -0.455974207546439 -0.463569156772107 -0.471019223656589 -0.478341064899181 -0.485550472174624 -0.492662518754610 -0.499691695261937 -0.506652037221035 -0.513557246855685 -0.520420811453332 -0.527256120560619 -0.534076584297076 -0.540895755174538 -0.547727455998444 -0.540895755174538 -0.534076584297076 -0.527256120560619 -0.520420811453332 -0.513557246855685 -0.506652037221035 -0.499691695261937 -0.492662518754610 -0.485550472174624 -0.478341064899182 -0.471019223656589 -0.463569156772107 -0.455974207546439 -0.448216693799384 -0.440277730203111 -0.432137029498356 -0.423772678005669 -0.415160879977606 -0.406275664240633 -0.397088545184313 -0.387568128388981 -0.377679648931345 -0.367384427523166 -0.356639225922696 -0.345395478240475 -0.333598368469509 -0.321185716287950 -0.308086622190060 -0.294219808276160 -0.279491571115569 -0.256612727618817 -0.205215911433772 -0.153868538851771 -0.102558512605935 -0.051273508475462 -0.000001052843891 +-0.000001115894394 0.046179309600076 0.092361173696614 0.138545808572806 0.184734331042082 0.230927532171758 0.277125763634345 0.295430301691396 0.308366547845445 0.320632241594364 0.332293761721469 0.343409529173192 0.354031202025255 0.364204664008943 0.373970847327631 0.383366421593050 0.392424373945277 0.401174500235696 0.409643823149558 0.417856950032966 0.425836380753832 0.433602774010332 0.441175178983171 0.448571238023275 0.455807365103850 0.462898903996957 0.469860269517917 0.476705074688190 0.483446246274047 0.490096130848469 0.496666593282405 0.503169109390133 0.509614854324635 0.516014788237615 0.522379740683703 0.528720495258590 0.535047876018404 0.528720495258590 0.522379740683704 0.516014788237612 0.509614854324636 0.503169109390131 0.496666593282405 0.490096130848469 0.483446246274048 0.476705074688191 0.469860269517918 0.462898903996956 0.455807365103848 0.448571238023276 0.441175178983173 0.433602774010333 0.425836380753833 0.417856950032964 0.409643823149558 0.401174500235696 0.392424373945278 0.383366421593051 0.373970847327629 0.364204664008940 0.354031202025256 0.343409529173193 0.332293761721468 0.320632241594366 0.308366547845442 0.295430301691392 0.277125763634348 0.230927532171764 0.184734331042088 0.138545808572809 0.092361173696606 0.046179309600080 -0.000001115894394 -0.046181542108955 -0.092363408367196 -0.138548046850964 -0.184736574380763 -0.230929782033872 -0.277128021495668 -0.295433072404818 -0.308369879638329 -0.320636098982907 -0.332298112570315 -0.343414344278042 -0.354036454757249 -0.364210330010119 -0.373976904248764 -0.383372848866837 -0.392431152589166 -0.401181612679698 -0.409651253085128 -0.417864682279796 -0.425844401141854 -0.433611069274686 -0.441183736670251 -0.448580046406223 -0.455816413106139 -0.462908181122821 -0.469869765788642 -0.476714780583303 -0.483456152676627 -0.490106228993824 -0.496676874709424 -0.503179565894730 -0.509625477914645 -0.516025571088563 -0.522390675094914 -0.528731573608961 -0.535059090721302 -0.528731573608961 -0.522390675094914 -0.516025571088563 -0.509625477914645 -0.503179565894729 -0.496676874709424 -0.490106228993824 -0.483456152676627 -0.476714780583303 -0.469869765788642 -0.462908181122821 -0.455816413106139 -0.448580046406223 -0.441183736670247 -0.433611069274686 -0.425844401141854 -0.417864682279796 -0.409651253085128 -0.401181612679698 -0.392431152589169 -0.383372848866837 -0.373976904248764 -0.364210330010119 -0.354036454757249 -0.343414344278042 -0.332298112570317 -0.320636098982907 -0.308369879638330 -0.295433072404818 -0.277128021495668 -0.230929782033872 -0.184736574380762 -0.138548046850964 -0.092363408367196 -0.046181542108955 -0.000001115894394 +-0.000001168864813 0.041901586129594 0.083798130340518 0.125682135544651 0.167547036395448 0.209385909668294 0.251191350862444 0.292955347260697 0.308622390562624 0.320135609276207 0.331114582330298 0.341607616730189 0.351657753737552 0.361303491512422 0.370579393517696 0.379516603373009 0.388143282688423 0.396484985170281 0.404564977753287 0.412404517509320 0.420023091493942 0.427438625423030 0.434667666054671 0.441725541332120 0.448626501680910 0.455383845315764 0.462010029975654 0.468516773149578 0.474915142565870 0.481215638482848 0.487428269129167 0.493562620490794 0.499627921524037 0.505633105784747 0.511586870401957 0.517497733286559 0.523374089452606 0.517497733286559 0.511586870401956 0.505633105784747 0.499627921524037 0.493562620490794 0.487428269129166 0.481215638482850 0.474915142565871 0.468516773149579 0.462010029975655 0.455383845315763 0.448626501680908 0.441725541332121 0.434667666054672 0.427438625423030 0.420023091493943 0.412404517509316 0.404564977753287 0.396484985170273 0.388143282688425 0.379516603373011 0.370579393517693 0.361303491512419 0.351657753737546 0.341607616730191 0.331114582330299 0.320135609276201 0.308622390562622 0.292955347260691 0.251191350862450 0.209385909668297 0.167547036395453 0.125682135544654 0.083798130340511 0.041901586129597 -0.000001168864813 -0.041903924543626 -0.083800470808877 -0.125684479440569 -0.167549385097651 -0.209388264563218 -0.251193713346476 -0.292957718742367 -0.308625234053752 -0.320138958082998 -0.331118406642810 -0.341611889269587 -0.351662449464427 -0.361308587374319 -0.370584868229553 -0.379522437225357 -0.388149457379048 -0.396491483655848 -0.404571784117932 -0.412411616847737 -0.420030469806890 -0.427446269523428 -0.434675563482832 -0.441733680278744 -0.448634870916739 -0.455392434126884 -0.462018828103577 -0.468525770735309 -0.474924330097276 -0.481225006744637 -0.487437809154898 -0.493572323516343 -0.499637778941948 -0.505643109098922 -0.511597011182115 -0.517508003121921 -0.523384479904118 -0.517508003121921 -0.511597011182115 -0.505643109098922 -0.499637778941948 -0.493572323516343 -0.487437809154898 -0.481225006744637 -0.474924330097276 -0.468525770735310 -0.462018828103577 -0.455392434126884 -0.448634870916739 -0.441733680278744 -0.434675563482830 -0.427446269523427 -0.420030469806890 -0.412411616847737 -0.404571784117932 -0.396491483655848 -0.388149457379050 -0.379522437225357 -0.370584868229553 -0.361308587374319 -0.351662449464427 -0.341611889269587 -0.331118406642814 -0.320138958082998 -0.308625234053752 -0.292957718742367 -0.251193713346476 -0.209388264563218 -0.167549385097651 -0.125684479440569 -0.083800470808877 -0.041903924543626 -0.000001168864813 +-0.000001214153102 0.038244449899279 0.076478581271803 0.114689530323506 0.152865411541145 0.190993983970416 0.229062529687405 0.267057729657144 0.304965536326907 0.319682588599982 0.330035961605332 0.339955190143789 0.349476181559247 0.358631264425075 0.367449637404111 0.375957752975755 0.384179646855040 0.392137221924838 0.399850493907701 0.407337804726175 0.414616008472789 0.421700634078677 0.428606028094200 0.435345480442486 0.441931335554298 0.448375090920105 0.454687484787040 0.460878574473609 0.466957806562436 0.472934080054932 0.478815803423745 0.484610946375843 0.490327087035644 0.495971455171893 0.501550972020181 0.507072287193992 0.512541813129087 0.507072287193992 0.501550972020182 0.495971455171894 0.490327087035644 0.484610946375842 0.478815803423743 0.472934080054932 0.466957806562432 0.460878574473611 0.454687484787040 0.448375090920103 0.441931335554295 0.435345480442487 0.428606028094200 0.421700634078677 0.414616008472790 0.407337804726173 0.399850493907694 0.392137221924840 0.384179646855042 0.375957752975756 0.367449637404109 0.358631264425073 0.349476181559249 0.339955190143790 0.330035961605334 0.319682588599984 0.304965536326903 0.267057729657138 0.229062529687408 0.190993983970419 0.152865411541148 0.114689530323510 0.076478581271797 0.038244449899282 -0.000001214153102 -0.038246878854360 -0.076481012174369 -0.114691964474705 -0.152867850246327 -0.190996428540835 -0.229064981441901 -0.267060189923822 -0.304968006444751 -0.319685473486015 -0.330039304283743 -0.339958965128722 -0.349480365310838 -0.358635835140113 -0.367454574832213 -0.375963038257235 -0.384185262377297 -0.392143151194638 -0.399856721437035 -0.407344315929825 -0.414622789575948 -0.421707672033215 -0.428613310502374 -0.435352995487014 -0.441939071933888 -0.448383037789597 -0.454695631701430 -0.460886911335286 -0.466966323571055 -0.472942767659261 -0.478824652275074 -0.484619947282340 -0.490336230917172 -0.495980733014833 -0.501560374831627 -0.507081805954913 -0.512551438745756 -0.507081805954913 -0.501560374831627 -0.495980733014833 -0.490336230917172 -0.484619947282340 -0.478824652275074 -0.472942767659262 -0.466966323571055 -0.460886911335289 -0.454695631701430 -0.448383037789597 -0.441939071933888 -0.435352995487014 -0.428613310502371 -0.421707672033215 -0.414622789575948 -0.407344315929825 -0.399856721437035 -0.392143151194638 -0.384185262377300 -0.375963038257235 -0.367454574832212 -0.358635835140113 -0.349480365310838 -0.339958965128723 -0.330039304283747 -0.319685473486015 -0.304968006444752 -0.267060189923822 -0.229064981441901 -0.190996428540835 -0.152867850246326 -0.114691964474705 -0.076481012174369 -0.038246878854360 -0.000001214153102 +-0.000001253456894 0.035070727328362 0.070127466551272 0.105153612078988 0.140133588958885 0.175051486884002 0.209890946315129 0.244635042822745 0.279266169222368 0.313765915090668 0.329041934471690 0.338428811366431 0.347456735724535 0.356152837554809 0.364541759535104 0.372645941175701 0.380485865012064 0.388080270597382 0.395446341080257 0.402599866352789 0.409555386100221 0.416326315547091 0.422925056252206 0.429363093938302 0.435651085037590 0.441798933378966 0.447815858228684 0.453710454715259 0.459490747515219 0.465164238545018 0.470737949290648 0.476218458307761 0.481611934337886 0.486924165408823 0.492160584216430 0.497326290019700 0.502426067218725 0.497326290019700 0.492160584216430 0.486924165408822 0.481611934337887 0.476218458307760 0.470737949290646 0.465164238545013 0.459490747515219 0.453710454715260 0.447815858228683 0.441798933378964 0.435651085037589 0.429363093938303 0.422925056252207 0.416326315547092 0.409555386100213 0.402599866352787 0.395446341080257 0.388080270597384 0.380485865012064 0.372645941175702 0.364541759535103 0.356152837554807 0.347456735724536 0.338428811366433 0.329041934471691 0.313765915090663 0.279266169222356 0.244635042822738 0.209890946315127 0.175051486884005 0.140133588958889 0.105153612078992 0.070127466551266 0.035070727328365 -0.000001253456894 -0.035073234856444 -0.070129975922880 -0.105156124525272 -0.140136105714145 -0.175054009186970 -0.209893475410230 -0.244637579961296 -0.279268715663792 -0.313768472103700 -0.329044833289391 -0.338432126750571 -0.347460445548942 -0.356156921208665 -0.364546197769187 -0.372650715965514 -0.380490959435502 -0.388085668724956 -0.395452027876132 -0.402605827585207 -0.409561608260005 -0.416332785773186 -0.422931762263163 -0.429370023969065 -0.435658227780575 -0.441806277928987 -0.447823394030945 -0.453718171515944 -0.459498635314108 -0.465172287549668 -0.470746149871653 -0.476226800954624 -0.481620409615064 -0.486932763911484 -0.492169296525434 -0.497335106655336 -0.502434978592636 -0.497335106655337 -0.492169296525434 -0.486932763911484 -0.481620409615064 -0.476226800954624 -0.470746149871653 -0.465172287549668 -0.459498635314108 -0.453718171515944 -0.447823394030945 -0.441806277928987 -0.435658227780576 -0.429370023969066 -0.422931762263168 -0.416332785773186 -0.409561608260005 -0.402605827585207 -0.395452027876131 -0.388085668724956 -0.380490959435502 -0.372650715965514 -0.364546197769187 -0.356156921208665 -0.347460445548943 -0.338432126750571 -0.329044833289394 -0.313768472103700 -0.279268715663792 -0.244637579961296 -0.209893475410230 -0.175054009186971 -0.140136105714145 -0.105156124525272 -0.070129975922880 -0.035073234856444 -0.000001253456894 +-0.000001288012224 0.032280552216551 0.064544588221087 0.096772914469727 0.128947421372751 0.161049692552796 0.193060901284497 0.224961705843297 0.256732143518766 0.288351523067354 0.319798315404653 0.337009384887293 0.345575087076783 0.353839370558677 0.361822981551274 0.369544903851577 0.377022540789420 0.384271874697710 0.391307606993538 0.398143281477195 0.404791393051350 0.411263483725660 0.417570227489363 0.423721505396899 0.429726472010511 0.435593614172652 0.441330802934609 0.446945339341447 0.452443994663328 0.457833045566758 0.463118304633330 0.468305146555680 0.473398530269342 0.478403017211926 0.483322785837075 0.488161642447424 0.492923028346718 0.488161642447424 0.483322785837075 0.478403017211927 0.473398530269342 0.468305146555679 0.463118304633329 0.457833045566758 0.452443994663329 0.446945339341448 0.441330802934610 0.435593614172649 0.429726472010509 0.423721505396899 0.417570227489365 0.411263483725661 0.404791393051350 0.398143281477194 0.391307606993538 0.384271874697710 0.377022540789422 0.369544903851578 0.361822981551272 0.353839370558682 0.345575087076784 0.337009384887295 0.319798315404656 0.288351523067356 0.256732143518763 0.224961705843297 0.193060901284500 0.161049692552799 0.128947421372753 0.096772914469729 0.064544588221082 0.032280552216553 -0.000001288012224 -0.032283128822011 -0.064547166570056 -0.096775495726103 -0.128950006702738 -0.161052283125822 -0.193063498274133 -0.224964310428107 -0.256734756883158 -0.288354146402408 -0.319800949908866 -0.337012272874544 -0.345578355312498 -0.353842999569321 -0.361826953054022 -0.369549200639072 -0.377027146625755 -0.384276774224308 -0.391312785643555 -0.398148725397376 -0.404797089030340 -0.411269419127916 -0.417576390193925 -0.423727883740305 -0.429733054733291 -0.435600390368798 -0.441337762003557 -0.446952470942056 -0.452451288669469 -0.457840492024045 -0.463125893716593 -0.468312868526803 -0.473406375435039 -0.478410975881070 -0.483330848277134 -0.488169798839606 -0.492931268739292 -0.488169798839606 -0.483330848277134 -0.478410975881070 -0.473406375435039 -0.468312868526803 -0.463125893716593 -0.457840492024045 -0.452451288669470 -0.446952470942057 -0.441337762003556 -0.435600390368798 -0.429733054733291 -0.423727883740305 -0.417576390193922 -0.411269419127916 -0.404797089030340 -0.398148725397377 -0.391312785643555 -0.384276774224308 -0.377027146625756 -0.369549200639072 -0.361826953054021 -0.353842999569320 -0.345578355312498 -0.337012272874544 -0.319800949908874 -0.288354146402408 -0.256734756883158 -0.224964310428107 -0.193063498274133 -0.161052283125822 -0.128950006702738 -0.096775495726103 -0.064547166570056 -0.032283128822011 -0.000001288012224 +-0.000001318740865 0.029799454975712 0.059580694179789 0.089322773504088 0.119005884627268 0.148609944434680 0.178114502755985 0.207498649557808 0.236740921487045 0.265819207682323 0.294710654798381 0.323391571221179 0.343811105992002 0.351666924129236 0.359266014906779 0.366624369224699 0.373756707495812 0.380676596479226 0.387396552671378 0.393928133897302 0.400282020504997 0.406468087362442 0.412495467683171 0.418372609557448 0.424107325938077 0.429706838718210 0.435177817441258 0.440526413096889 0.445758287380189 0.450878637721644 0.455892218331739 0.460803357444375 0.465615970886372 0.470333572045149 0.474959278251390 0.479495813537259 0.483945507672010 0.479495813537259 0.474959278251390 0.470333572045149 0.465615970886372 0.460803357444375 0.455892218331739 0.450878637721645 0.445758287380190 0.440526413096891 0.435177817441259 0.429706838718210 0.424107325938077 0.418372609557449 0.412495467683172 0.406468087362443 0.400282020504999 0.393928133897301 0.387396552671380 0.380676596479227 0.373756707495814 0.366624369224701 0.359266014906778 0.351666924129235 0.343811105992003 0.323391571221176 0.294710654798384 0.265819207682327 0.236740921487042 0.207498649557802 0.178114502755988 0.148609944434682 0.119005884627270 0.089322773504091 0.059580694179785 0.029799454975714 -0.000001318740865 -0.029802093006597 -0.059583333858468 -0.089325415930182 -0.119008530902001 -0.148612595661525 -0.178117160041287 -0.207501314011350 -0.236743594222619 -0.265821889818256 -0.294713347457988 -0.323394275533247 -0.343813960253462 -0.351670126210057 -0.359269547456271 -0.366628215833054 -0.373760852606000 -0.380681025306541 -0.387401251129628 -0.393933088530851 -0.400287218425904 -0.406473516192023 -0.412501115497415 -0.418378464835735 -0.424113377514719 -0.429713075736356 -0.435184229308748 -0.440532989443688 -0.445765018016998 -0.450885512599366 -0.455899227501419 -0.460810491017286 -0.465623218993900 -0.470340924798123 -0.474966725698484 -0.479503345622096 -0.483953114188530 -0.479503345622096 -0.474966725698484 -0.470340924798124 -0.465623218993901 -0.460810491017286 -0.455899227501420 -0.450885512599367 -0.445765018016998 -0.440532989443688 -0.435184229308748 -0.429713075736356 -0.424113377514719 -0.418378464835735 -0.412501115497412 -0.406473516192023 -0.400287218425905 -0.393933088530852 -0.387401251129629 -0.380681025306542 -0.373760852606004 -0.366628215833054 -0.359269547456272 -0.351670126210058 -0.343813960253462 -0.323394275533247 -0.294713347457995 -0.265821889818256 -0.236743594222618 -0.207501314011350 -0.178117160041287 -0.148612595661525 -0.119008530902001 -0.089325415930182 -0.059583333858468 -0.029802093006596 -0.000001318740865 +-0.000001346344654 0.027570738419379 0.055122174545660 0.082632233247123 0.110080024358903 0.137444415548702 0.164703951417994 0.191836772477169 0.218820533995160 0.245632324745851 0.272248585700486 0.298645028747466 0.324796555558819 0.349615409742427 0.356847895695690 0.363858796939185 0.370660485527281 0.377264402757265 0.383681133582138 0.389920472953339 0.395991484934487 0.401902555312354 0.407661438331288 0.413275298089126 0.418750745055240 0.424093868101764 0.429310262377165 0.434405053294474 0.439382916854664 0.444248096476974 0.449004416461856 0.453655292167832 0.458203736939502 0.462652365780024 0.467003395716134 0.471258642756541 0.475419515294161 0.471258642756541 0.467003395716134 0.462652365780024 0.458203736939503 0.453655292167831 0.449004416461861 0.444248096476975 0.439382916854663 0.434405053294474 0.429310262377164 0.424093868101763 0.418750745055238 0.413275298089126 0.407661438331288 0.401902555312354 0.395991484934487 0.389920472953337 0.383681133582138 0.377264402757266 0.370660485527282 0.363858796939185 0.356847895695688 0.349615409742425 0.324796555558821 0.298645028747467 0.272248585700489 0.245632324745852 0.218820533995156 0.191836772477163 0.164703951417996 0.137444415548704 0.110080024358905 0.082632233247125 0.055122174545655 0.027570738419381 -0.000001346344654 -0.027573431627408 -0.055124869310066 -0.082634930606198 -0.110082725351968 -0.137447121216519 -0.164706662803161 -0.191839490624448 -0.218823259951823 -0.245635059561962 -0.272251330429134 -0.298647784444987 -0.324799323284949 -0.349618208659032 -0.356851013127798 -0.363862217254713 -0.370664193839172 -0.377268384854996 -0.383685375868338 -0.389924962384924 -0.395996208967749 -0.401907501851497 -0.407666595679968 -0.413280654904568 -0.418756290304547 -0.424099591020073 -0.429316152427284 -0.434411100127728 -0.439389110272579 -0.444254426393576 -0.449010872866224 -0.453661865086640 -0.458210416399287 -0.462659141768800 -0.467010258144115 -0.471265581415602 -0.475426519815687 -0.471265581415602 -0.467010258144114 -0.462659141768800 -0.458210416399286 -0.453661865086639 -0.449010872866222 -0.444254426393575 -0.439389110272579 -0.434411100127728 -0.429316152427284 -0.424099591020073 -0.418756290304547 -0.413280654904568 -0.407666595679966 -0.401907501851497 -0.395996208967749 -0.389924962384924 -0.383685375868338 -0.377268384854996 -0.370664193839175 -0.363862217254713 -0.356851013127798 -0.349618208659032 -0.324799323284949 -0.298647784444987 -0.272251330429140 -0.245635059561962 -0.218823259951823 -0.191839490624448 -0.164706662803160 -0.137447121216519 -0.110082725351968 -0.082634930606198 -0.055124869310066 -0.027573431627408 -0.000001346344654 +-0.000001371367799 0.025550441808189 0.051080956315833 0.076568803779166 0.101992475464496 0.127330252197179 0.152560134404253 0.177659772343321 0.202606396594329 0.227376748911132 0.251947013554821 0.276292749259950 0.300388822019552 0.324209338913968 0.347727583253318 0.361226414255203 0.367710053024967 0.374009577729016 0.380133859978613 0.386091124847017 0.391888992295941 0.397534514157523 0.403034207014608 0.408394081274851 0.413619666691315 0.418716034542278 0.423687816645745 0.428539221349204 0.433274046601410 0.437895690180588 0.442407157121285 0.446811064350098 0.451109642507879 0.455304734902405 0.459397793500029 0.463389871827256 0.467281614612470 0.463389871827256 0.459397793500030 0.455304734902406 0.451109642507879 0.446811064350096 0.442407157121284 0.437895690180588 0.433274046601410 0.428539221349204 0.423687816645746 0.418716034542277 0.413619666691315 0.408394081274851 0.403034207014609 0.397534514157524 0.391888992295942 0.386091124847022 0.380133859978613 0.374009577729017 0.367710053024968 0.361226414255203 0.347727583253314 0.324209338913965 0.300388822019560 0.276292749259952 0.251947013554824 0.227376748911133 0.202606396594326 0.177659772343318 0.152560134404256 0.127330252197181 0.101992475464499 0.076568803779168 0.051080956315829 0.025550441808191 -0.000001371367799 -0.025553185033434 -0.051083701010140 -0.076571550922301 -0.101995226036780 -0.127333007179712 -0.152562894779117 -0.177662539093724 -0.202609170704753 -0.227379531367436 -0.251949805344288 -0.276295551371328 -0.300391635442986 -0.324212164640910 -0.347730422276358 -0.361229428808116 -0.367713345105757 -0.374013133700115 -0.380137666737346 -0.386095169774874 -0.391893263210816 -0.397538999268638 -0.403038894879671 -0.408398960759209 -0.413624726928771 -0.418721264897288 -0.423693206676734 -0.428544760772743 -0.433279725257012 -0.437901497995853 -0.442413084077180 -0.446817100446103 -0.451115777726765 -0.455310959174385 -0.459404096666014 -0.463396243600948 -0.467288044540999 -0.463396243600948 -0.459404096666014 -0.455310959174384 -0.451115777726765 -0.446817100446103 -0.442413084077180 -0.437901497995854 -0.433279725257012 -0.428544760772743 -0.423693206676734 -0.418721264897288 -0.413624726928772 -0.408398960759210 -0.403038894879668 -0.397538999268639 -0.391893263210816 -0.386095169774875 -0.380137666737346 -0.374013133700116 -0.367713345105759 -0.361229428808117 -0.347730422276358 -0.324212164640910 -0.300391635442986 -0.276295551371328 -0.251949805344296 -0.227379531367436 -0.202609170704753 -0.177662539093724 -0.152562894779117 -0.127333007179712 -0.101995226036780 -0.076571550922301 -0.051083701010140 -0.025553185033434 -0.000001371367799 +-0.000001394239176 0.023703922590472 0.047387645955838 0.071028122586690 0.094603578771250 0.118092060373867 0.141471373148849 0.164719023465789 0.187812159576121 0.210727513568943 0.233441344185854 0.255929380690737 0.278166768020063 0.300128013473549 0.321786935242949 0.343116613119456 0.364089341766779 0.370889876305060 0.376730907281855 0.382414762834094 0.387947769598662 0.393335781716306 0.398584202527139 0.403698003655762 0.408681741591664 0.413539571850862 0.418275260785003 0.422892195084608 0.427393389002888 0.431781489306404 0.436058777937695 0.440227172353118 0.444288223476058 0.448243111181312 0.452092637199945 0.455837215305825 0.459476858613713 0.455837215305824 0.452092637199945 0.448243111181312 0.444288223476058 0.440227172353118 0.436058777937694 0.431781489306404 0.427393389002888 0.422892195084608 0.418275260785003 0.413539571850859 0.408681741591668 0.403698003655763 0.398584202527140 0.393335781716307 0.387947769598663 0.382414762834092 0.376730907281856 0.370889876305060 0.364089341766780 0.343116613119457 0.321786935242946 0.300128013473547 0.278166768020065 0.255929380690737 0.233441344185857 0.210727513568944 0.187812159576119 0.164719023465785 0.141471373148854 0.118092060373869 0.094603578771252 0.071028122586692 0.047387645955834 0.023703922590474 -0.000001394239176 -0.023706711530664 -0.047390436281589 -0.071030915221834 -0.094606374639796 -0.118094860400048 -0.141474178257181 -0.164721834581062 -0.187814977623396 -0.210730339473495 -0.233444178873082 -0.255932225086042 -0.278169623048667 -0.300130880060225 -0.321789814311748 -0.343119505593322 -0.364092248567082 -0.370893023840107 -0.376734296232562 -0.382418381016554 -0.387951605207334 -0.393339823284700 -0.398588438890193 -0.403702423913674 -0.408686335074956 -0.413544328086403 -0.418280169462917 -0.422897246025688 -0.427398572126451 -0.431786794598328 -0.436064195418455 -0.440232692045612 -0.444293835373028 -0.448248805212138 -0.452098403196615 -0.455843042967828 -0.459482737471629 -0.455843042967828 -0.452098403196615 -0.448248805212139 -0.444293835373028 -0.440232692045613 -0.436064195418455 -0.431786794598328 -0.427398572126451 -0.422897246025689 -0.418280169462917 -0.413544328086404 -0.408686335074956 -0.403702423913674 -0.398588438890191 -0.393339823284700 -0.387951605207333 -0.382418381016554 -0.376734296232562 -0.370893023840107 -0.364092248567086 -0.343119505593322 -0.321789814311748 -0.300130880060225 -0.278169623048667 -0.255932225086042 -0.233444178873083 -0.210730339473495 -0.187814977623396 -0.164721834581062 -0.141474178257181 -0.118094860400048 -0.094606374639796 -0.071030915221834 -0.047390436281589 -0.023706711530664 -0.000001394239176 +-0.000001415301739 0.022003480021812 0.043986763218847 0.065926771581040 0.087801740500029 0.109589752855298 0.131268688816325 0.152816176211398 0.174209541628057 0.195425762425632 0.216441419859145 0.237232653535663 0.257775117449507 0.278043937870920 0.298013673394432 0.317658277487738 0.336951063919635 0.355864675486065 0.373451412874525 0.378869170735333 0.384144296436826 0.389281567126301 0.394285383366104 0.399159780177818 0.403908436407766 0.408534682412420 0.413041506054664 0.417431556992968 0.421707149235269 0.425870261918145 0.429922538259285 0.433865282617556 0.437699455579692 0.441425666976207 0.445044166710735 0.448554833267126 0.451957159736592 0.448554833267126 0.445044166710735 0.441425666976208 0.437699455579693 0.433865282617555 0.429922538259283 0.425870261918146 0.421707149235270 0.417431556992968 0.413041506054665 0.408534682412420 0.403908436407765 0.399159780177819 0.394285383366105 0.389281567126302 0.384144296436827 0.378869170735329 0.373451412874526 0.355864675486066 0.336951063919637 0.317658277487741 0.298013673394430 0.278043937870918 0.257775117449509 0.237232653535668 0.216441419859147 0.195425762425633 0.174209541628053 0.152816176211396 0.131268688816327 0.109589752855300 0.087801740500031 0.065926771581041 0.043986763218843 0.022003480021814 -0.000001415301739 -0.022006311060477 -0.043989595563050 -0.065929606101057 -0.087804578065983 -0.109592594337096 -0.131271535083579 -0.152819028133298 -0.174212400073237 -0.195428628262005 -0.216444293953685 -0.237235536754172 -0.257778010656310 -0.278046841928520 -0.298016589163103 -0.317661205825063 -0.336954005679934 -0.355867631519821 -0.373454399175190 -0.378872377351938 -0.384147711953672 -0.389285180418453 -0.394289183566567 -0.399163756645746 -0.403912578697477 -0.408538980243137 -0.413045949280773 -0.417436135574654 -0.421711853209359 -0.425875081369025 -0.429927463289693 -0.433870303319144 -0.437704562003140 -0.441430849100752 -0.445049414412929 -0.448560136288651 -0.451962507650913 -0.448560136288651 -0.445049414412929 -0.441430849100752 -0.437704562003140 -0.433870303319144 -0.429927463289693 -0.425875081369024 -0.421711853209359 -0.417436135574653 -0.413045949280773 -0.408538980243137 -0.403912578697477 -0.399163756645747 -0.394289183566570 -0.389285180418453 -0.384147711953671 -0.378872377351938 -0.373454399175190 -0.355867631519821 -0.336954005679941 -0.317661205825062 -0.298016589163103 -0.278046841928520 -0.257778010656310 -0.237235536754172 -0.216444293953692 -0.195428628262005 -0.174212400073237 -0.152819028133298 -0.131271535083579 -0.109592594337096 -0.087804578065983 -0.065929606101057 -0.043989595563050 -0.022006311060477 -0.000001415301739 +-0.000001434833401 0.020426667704326 0.040833357392898 0.061197179290428 0.081496593610410 0.101709933702074 0.121815364521356 0.141790841768008 0.161614071874823 0.181262473047947 0.200713137572563 0.219942795616397 0.238927780783839 0.257643997696525 0.276066891901122 0.294171422432791 0.311932037391970 0.329322652923277 0.346316636018239 0.362886791597252 0.379005354360973 0.385349826963318 0.390114567513245 0.394755099134049 0.399274308864336 0.403674783225329 0.407958809584638 0.412128376309279 0.416185171644681 0.420130581251971 0.423965684329393 0.427691248236652 0.431307721532002 0.434815225321965 0.438213542812150 0.441502106934983 0.444679985915911 0.441502106934984 0.438213542812149 0.434815225321965 0.431307721532003 0.427691248236652 0.423965684329393 0.420130581251971 0.416185171644682 0.412128376309279 0.407958809584639 0.403674783225327 0.399274308864335 0.394755099134049 0.390114567513245 0.385349826963319 0.379005354360974 0.362886791597249 0.346316636018239 0.329322652923278 0.311932037391972 0.294171422432792 0.276066891901119 0.257643997696522 0.238927780783843 0.219942795616399 0.200713137572564 0.181262473047949 0.161614071874821 0.141790841768005 0.121815364521360 0.101709933702075 0.081496593610412 0.061197179290430 0.040833357392895 0.020426667704327 -0.000001434833401 -0.020429537780706 -0.040836228697938 -0.061200052642975 -0.081499469828896 -0.101712813604355 -0.121818248924518 -0.141793731488149 -0.161616967726817 -0.181265375845184 -0.200716048126636 -0.219945714736781 -0.238930709277506 -0.257646936367508 -0.276069841550040 -0.294174383856315 -0.311935011382204 -0.329325640267114 -0.346319637496602 -0.362889807984279 -0.379008386423122 -0.385353024917091 -0.390117944538470 -0.394758644871021 -0.399278013116146 -0.403678635931075 -0.407962800792954 -0.412132496152042 -0.416189410310807 -0.420134928961147 -0.423970131305657 -0.427695784681654 -0.431312337597862 -0.434819911083576 -0.438218288238763 -0.441506901860988 -0.444684820010613 -0.441506901860988 -0.438218288238763 -0.434819911083576 -0.431312337597862 -0.427695784681654 -0.423970131305657 -0.420134928961148 -0.416189410310807 -0.412132496152042 -0.407962800792954 -0.403678635931075 -0.399278013116146 -0.394758644871021 -0.390117944538470 -0.385353024917091 -0.379008386423123 -0.362889807984280 -0.346319637496603 -0.329325640267114 -0.311935011382209 -0.294174383856315 -0.276069841550040 -0.257646936367508 -0.238930709277506 -0.219945714736781 -0.200716048126642 -0.181265375845184 -0.161616967726817 -0.141793731488149 -0.121818248924518 -0.101712813604355 -0.081499469828896 -0.061200052642975 -0.040836228697938 -0.020429537780706 -0.000001434833401 +-0.000001453062149 0.018955072379509 0.037890558949481 0.056783933425345 0.075614053288425 0.094359672515498 0.112999407904371 0.131511706120980 0.149874811664218 0.168066735954868 0.186065227767708 0.203847745239712 0.221391429703871 0.238673081615561 0.255669138858153 0.272355657735218 0.288708296978841 0.304702305126599 0.320312511643416 0.335513322188503 0.350278718451584 0.364582263005724 0.378397109645959 0.390462052065945 0.394756414404062 0.398935888306597 0.403002131239563 0.406956538710486 0.410800240318134 0.414534094833589 0.418158684227908 0.421674306559416 0.425080967629693 0.428378371312820 0.431565908456367 0.434642644246347 0.437607303920523 0.434642644246348 0.431565908456367 0.428378371312820 0.425080967629695 0.421674306559414 0.418158684227907 0.414534094833589 0.410800240318134 0.406956538710486 0.403002131239563 0.398935888306595 0.394756414404062 0.390462052065946 0.378397109645959 0.364582263005724 0.350278718451586 0.335513322188500 0.320312511643417 0.304702305126601 0.288708296978842 0.272355657735218 0.255669138858152 0.238673081615558 0.221391429703872 0.203847745239714 0.186065227767711 0.168066735954869 0.149874811664216 0.131511706120978 0.112999407904372 0.094359672515499 0.075614053288427 0.056783933425347 0.037890558949478 0.018955072379510 -0.000001453062149 -0.018957978888708 -0.037893466613269 -0.056786843013045 -0.075616965568736 -0.094362588256239 -0.113002327872219 -0.131514631081164 -0.149877742380202 -0.168069673188021 -0.186068172276917 -0.203850697780996 -0.221394391029915 -0.238676052475247 -0.255672119996015 -0.272358649890863 -0.288711300886295 -0.304705321513629 -0.320315541230742 -0.335516365688991 -0.350281776569330 -0.364585336435069 -0.378400199070452 -0.390465177988576 -0.394759691604827 -0.398939306970323 -0.403005681637213 -0.406960211175848 -0.410804025224463 -0.414537982570136 -0.418162665176214 -0.421678371069298 -0.425085105994829 -0.428382573745795 -0.431570165063150 -0.434646945000015 -0.437611638634166 -0.434646945000015 -0.431570165063150 -0.428382573745794 -0.425085105994829 -0.421678371069299 -0.418162665176214 -0.414537982570136 -0.410804025224463 -0.406960211175848 -0.403005681637213 -0.398939306970323 -0.394759691604827 -0.390465177988576 -0.378400199070448 -0.364585336435069 -0.350281776569329 -0.335516365688990 -0.320315541230742 -0.304705321513629 -0.288711300886298 -0.272358649890863 -0.255672119996015 -0.238676052475247 -0.221394391029915 -0.203850697780996 -0.186068172276921 -0.168069673188021 -0.149877742380202 -0.131514631081163 -0.113002327872219 -0.094362588256239 -0.075616965568736 -0.056786843013045 -0.037893466613269 -0.018957978888708 -0.000001453062149 +-0.000001470177172 0.017573414870044 0.035127777359765 0.052641067391695 0.070092679839155 0.087461927191122 0.104728012945286 0.121870005743490 0.138866814447389 0.155697164360253 0.172339574810400 0.188772338322540 0.204973501615676 0.220920848679502 0.236591886195495 0.251963831584391 0.267013603977141 0.281717818422966 0.296052783664108 0.309994503822692 0.323518684360528 0.336600742686561 0.349215823798869 0.361338821358512 0.372944404599189 0.384007051480998 0.394501088494654 0.401892188795902 0.405527497452565 0.409054916995388 0.412474592491494 0.415786413531058 0.418990005050948 0.422084717163631 0.425069613903577 0.427943460801927 0.430704711197680 0.427943460801927 0.425069613903577 0.422084717163631 0.418990005050948 0.415786413531058 0.412474592491497 0.409054916995389 0.405527497452565 0.401892188795903 0.394501088494654 0.384007051480997 0.372944404599189 0.361338821358513 0.349215823798870 0.336600742686563 0.323518684360530 0.309994503822691 0.296052783664110 0.281717818422967 0.267013603977141 0.251963831584392 0.236591886195494 0.220920848679500 0.204973501615677 0.188772338322541 0.172339574810404 0.155697164360255 0.138866814447386 0.121870005743484 0.104728012945286 0.087461927191123 0.070092679839157 0.052641067391696 0.035127777359762 0.017573414870045 -0.000001470177172 -0.017576355585439 -0.035130719158164 -0.052644010994582 -0.070095625967223 -0.087464876563943 -0.104730966280990 -0.121872963758391 -0.138869777855611 -0.155700133873342 -0.172342551136878 -0.188775322167457 -0.204976493680135 -0.220923849660104 -0.236594896783783 -0.251966852466239 -0.267016635832070 -0.281720861923456 -0.296055839474813 -0.309997572599608 -0.323521766750125 -0.336603839324803 -0.349218935310219 -0.361341948354833 -0.372947547678601 -0.384010211226627 -0.394504265473351 -0.401895423181828 -0.405530838052630 -0.409058354400841 -0.412478117275583 -0.415790016227674 -0.418993676132916 -0.422088447020518 -0.425073392818981 -0.427947278930158 -0.430708558539760 -0.427947278930158 -0.425073392818981 -0.422088447020518 -0.418993676132917 -0.415790016227674 -0.412478117275584 -0.409058354400842 -0.405530838052630 -0.401895423181828 -0.394504265473352 -0.384010211226627 -0.372947547678601 -0.361341948354834 -0.349218935310216 -0.336603839324804 -0.323521766750125 -0.309997572599608 -0.296055839474813 -0.281720861923457 -0.267016635832072 -0.251966852466239 -0.236594896783783 -0.220923849660103 -0.204976493680135 -0.188775322167457 -0.172342551136879 -0.155700133873342 -0.138869777855611 -0.121872963758390 -0.104730966280990 -0.087464876563943 -0.070095625967222 -0.052644010994582 -0.035130719158164 -0.017576355585439 -0.000001470177172 +-0.000001486337184 0.016268877751768 0.032519353605245 0.048730031944630 0.064880960909947 0.080952125222709 0.096923425896633 0.112774660684575 0.128485505454885 0.144035496696428 0.159404015358443 0.174570272239389 0.189513295147723 0.204211918067087 0.218644772568250 0.232790281720907 0.246626656768460 0.260131896839976 0.273283791983025 0.286059929810872 0.298437706065608 0.310394339405793 0.321906890732056 0.332952287366658 0.343507352402905 0.353548839536154 0.363053473680664 0.371997997663521 0.380359225269103 0.388114100883756 0.395239765958828 0.401713632473101 0.407513463528537 0.412617461159027 0.417004361367994 0.420653536337115 0.423762785528174 0.420653536337115 0.417004361367995 0.412617461159027 0.407513463528537 0.401713632473101 0.395239765958826 0.388114100883757 0.380359225269103 0.371997997663521 0.363053473680664 0.353548839536151 0.343507352402909 0.332952287366659 0.321906890732056 0.310394339405793 0.298437706065610 0.286059929810872 0.273283791983026 0.260131896839976 0.246626656768460 0.232790281720907 0.218644772568247 0.204211918067080 0.189513295147726 0.174570272239391 0.159404015358444 0.144035496696429 0.128485505454883 0.112774660684573 0.096923425896635 0.080952125222708 0.064880960909948 0.048730031944632 0.032519353605243 0.016268877751769 -0.000001486337184 -0.016271850764062 -0.032522327631139 -0.048733007659250 -0.064883938987490 -0.080955106336073 -0.096926410717031 -0.112777649881118 -0.128488499694170 -0.144038496642087 -0.159407021670675 -0.174573285574477 -0.189516316157502 -0.204214947398385 -0.218647810862316 -0.232793329612755 -0.246629714886204 -0.260134965804120 -0.273286872405700 -0.286063022295017 -0.298440811204117 -0.310397457780581 -0.321910022913106 -0.332955433910981 -0.343510513853470 -0.353552016420715 -0.363056666510591 -0.372001206932517 -0.380362451451893 -0.388117344434716 -0.395243027310548 -0.401716912034914 -0.407516761684976 -0.412620778268262 -0.417007697760213 -0.420656892312887 -0.423860484767260 -0.420656892312886 -0.417007697760213 -0.412620778268262 -0.407516761684975 -0.401716912034914 -0.395243027310548 -0.388117344434716 -0.380362451451892 -0.372001206932517 -0.363056666510590 -0.353552016420715 -0.343510513853470 -0.332955433910981 -0.321910022913103 -0.310397457780581 -0.298440811204117 -0.286063022295017 -0.273286872405699 -0.260134965804120 -0.246629714886206 -0.232793329612755 -0.218647810862316 -0.204214947398385 -0.189516316157502 -0.174573285574477 -0.159407021670678 -0.144038496642087 -0.128488499694170 -0.112777649881118 -0.096926410717031 -0.080955106336073 -0.064883938987490 -0.048733007659250 -0.032522327631139 -0.016271850764062 -0.000001486337184 +-0.000001501676737 0.015030595256874 0.030043537981558 0.045018156867770 0.059935250988829 0.074775572910918 0.089519814012067 0.104148590510432 0.118642430385650 0.132981761381301 0.147146900281151 0.161118043657464 0.174875260295356 0.188398485503597 0.201667517528520 0.214662016294178 0.227361504698259 0.239745372699054 0.251792884433920 0.263483188614156 0.274795332444222 0.285708279314490 0.296200930516675 0.306252151228070 0.315840801005138 0.324945769018611 0.333546014249671 0.341620610850304 0.349148798850296 0.356110040366526 0.362484081439723 0.368251019584835 0.373391377099117 0.377886180119978 0.381717043368293 0.384866260448402 0.387316899504520 0.384866260448403 0.381717043368293 0.377886180119978 0.373391377099117 0.368251019584832 0.362484081439723 0.356110040366529 0.349148798850294 0.341620610850304 0.333546014249670 0.324945769018611 0.315840801005137 0.306252151228073 0.296200930516676 0.285708279314490 0.274795332444222 0.263483188614154 0.251792884433920 0.239745372699055 0.227361504698260 0.214662016294176 0.201667517528519 0.188398485503595 0.174875260295357 0.161118043657465 0.147146900281152 0.132981761381302 0.118642430385648 0.104148590510430 0.089519814012069 0.074775572910920 0.059935250988830 0.045018156867772 0.030043537981556 0.015030595256875 -0.000001501676737 -0.015033598925778 -0.030046542596552 -0.045021163058907 -0.059938259385130 -0.074778584139964 -0.089522828699574 -0.104151609279802 -0.118645453857516 -0.132984790173057 -0.147149935006447 -0.161121084925706 -0.174878308711148 -0.188401541666175 -0.201670582031152 -0.214665089723521 -0.227364587633703 -0.239748465711995 -0.251795988087032 -0.263486303460596 -0.274798459026803 -0.285711418164800 -0.296204082154164 -0.306255316159086 -0.315843979721917 -0.324948961998214 -0.333549221952889 -0.341623833720510 -0.349152037312239 -0.356113294825116 -0.362487352278732 -0.368254307165602 -0.373394681759207 -0.377889502171779 -0.381720383097642 -0.384869618113153 -0.387320275333111 -0.384869618113153 -0.381720383097642 -0.377889502171779 -0.373394681759208 -0.368254307165602 -0.362487352278732 -0.356113294825116 -0.349152037312239 -0.341623833720510 -0.333549221952889 -0.324948961998215 -0.315843979721917 -0.306255316159086 -0.296204082154162 -0.285711418164800 -0.274798459026803 -0.263486303460596 -0.251795988087032 -0.239748465711995 -0.227364587633704 -0.214665089723521 -0.201670582031152 -0.188401541666175 -0.174878308711148 -0.161121084925706 -0.147149935006451 -0.132984790173057 -0.118645453857516 -0.104151609279801 -0.089522828699574 -0.074778584139964 -0.059938259385130 -0.045021163058907 -0.030046542596552 -0.015033598925778 -0.000001501676737 +-0.000001516311075 0.013849260983929 0.027681704085193 0.041477468355876 0.055218187851030 0.068885465077096 0.082460861249463 0.095925887216697 0.109261995222287 0.122450571677369 0.135472931120880 0.148310311546928 0.160943871282546 0.173354687602693 0.185523757272701 0.197431999211726 0.209060259473618 0.220389318743835 0.231399902552685 0.242072694405425 0.252388352029082 0.262327526933344 0.271870887478838 0.280999145639383 0.289693087636400 0.297933608611559 0.305701751489252 0.312978750162121 0.319746077110837 0.325985495543124 0.331679116106664 0.336809458195076 0.341359515826534 0.345312828029285 0.348653553618541 0.351366550194098 0.353437457128291 0.351366550194098 0.348653553618541 0.345312828029285 0.341359515826534 0.336809458195075 0.331679116106662 0.325985495543124 0.319746077110838 0.312978750162121 0.305701751489253 0.297933608611558 0.289693087636399 0.280999145639383 0.271870887478838 0.262327526933346 0.252388352029083 0.242072694405424 0.231399902552688 0.220389318743836 0.209060259473618 0.197431999211727 0.185523757272699 0.173354687602691 0.160943871282546 0.148310311546929 0.135472931120881 0.122450571677370 0.109261995222286 0.095925887216694 0.082460861249463 0.068885465077097 0.055218187851032 0.041477468355877 0.027681704085190 0.013849260983930 -0.000001516311075 -0.013852293899554 -0.027684737881025 -0.041480503617995 -0.055221225164413 -0.068888505025176 -0.082463904413680 -0.095928934176023 -0.109265046552755 -0.122453627951572 -0.135475992907457 -0.148313379410045 -0.160946945781334 -0.173357769290677 -0.185526846697192 -0.197435096913198 -0.209063365985037 -0.220392434589985 -0.231403028249441 -0.242075830458994 -0.252391498935212 -0.262330685176505 -0.271874057531353 -0.281002327960541 -0.289696282671512 -0.297936816790992 -0.305704973227429 -0.312981985856469 -0.319749327140725 -0.325988760268757 -0.331682395867955 -0.336812753310480 -0.341362826591878 -0.345316154716563 -0.348656896474713 -0.351369909439867 -0.353440832956882 -0.351369909439867 -0.348656896474713 -0.345316154716563 -0.341362826591877 -0.336812753310480 -0.331682395867956 -0.325988760268757 -0.319749327140725 -0.312981985856470 -0.305704973227430 -0.297936816790992 -0.289696282671512 -0.281002327960541 -0.271874057531353 -0.262330685176505 -0.252391498935212 -0.242075830458994 -0.231403028249441 -0.220392434589985 -0.209063365985040 -0.197435096913198 -0.185526846697192 -0.173357769290678 -0.160946945781334 -0.148313379410045 -0.135475992907460 -0.122453627951572 -0.109265046552755 -0.095928934176023 -0.082463904413680 -0.068888505025175 -0.055221225164413 -0.041480503617995 -0.027684737881024 -0.013852293899553 -0.000001516311075 +-0.000001530339924 0.012716822284972 0.025417736551215 0.038083768019945 0.050697459700044 0.063241336153003 0.075697898056078 0.088049617377871 0.100278933321772 0.112368249193958 0.124299930354287 0.136056303409803 0.147619656812407 0.158972243023330 0.170096282408512 0.180973969029582 0.191587478495536 0.201918978039660 0.211950638985156 0.221664651760384 0.231043243621294 0.240068699233324 0.248723384258638 0.256989772085667 0.264850473827319 0.272288271701011 0.279286155887919 0.285827364950262 0.291895429863761 0.297474221697667 0.302548002946189 0.307101482483829 0.311119874081463 0.314588958380864 0.317495148183445 0.319825556862206 0.321568069657241 0.319825556862206 0.317495148183446 0.314588958380864 0.311119874081463 0.307101482483829 0.302548002946188 0.297474221697667 0.291895429863762 0.285827364950262 0.279286155887919 0.272288271701011 0.264850473827318 0.256989772085668 0.248723384258638 0.240068699233324 0.231043243621294 0.221664651760383 0.211950638985157 0.201918978039662 0.191587478495538 0.180973969029583 0.170096282408509 0.158972243023328 0.147619656812407 0.136056303409804 0.124299930354288 0.112368249193959 0.100278933321770 0.088049617377869 0.075697898056079 0.063241336153004 0.050697459700045 0.038083768019947 0.025417736551213 0.012716822284973 -0.000001530339924 -0.012719883236792 -0.025420798318730 -0.038086831146193 -0.050700524726911 -0.063244403620770 -0.075700968502944 -0.088052691339477 -0.100282011330699 -0.112371331779235 -0.124303018040857 -0.136059396718006 -0.147622756257415 -0.158975349114575 -0.170099395649098 -0.180977089915671 -0.191590607515687 -0.201922115674197 -0.211953785705448 -0.221667808028146 -0.231046409887833 -0.240071875938768 -0.248726571831135 -0.256992970940556 -0.264853684366276 -0.272291494311161 -0.279289390940930 -0.285830612801408 -0.291898690850962 -0.297477496140515 -0.302551291144953 -0.307104784718436 -0.311123190610464 -0.314592289440424 -0.317498493986279 -0.319828917596556 -0.321571445485839 -0.319828917596556 -0.317498493986279 -0.314592289440424 -0.311123190610464 -0.307104784718436 -0.302551291144953 -0.297477496140516 -0.291898690850962 -0.285830612801408 -0.279289390940931 -0.272291494311162 -0.264853684366277 -0.256992970940556 -0.248726571831132 -0.240071875938768 -0.231046409887834 -0.221667808028147 -0.211953785705448 -0.201922115674197 -0.191590607515690 -0.180977089915671 -0.170099395649098 -0.158975349114575 -0.147622756257415 -0.136059396718006 -0.124303018040860 -0.112371331779235 -0.100282011330699 -0.088052691339477 -0.075700968502944 -0.063244403620770 -0.050700524726911 -0.038086831146193 -0.025420798318730 -0.012719883236792 -0.000001530339924 +-0.000001543850468 0.011626239164203 0.023237548095192 0.034815906553986 0.046344833177726 0.057807839485099 0.069188428144429 0.080470091791808 0.091636312537563 0.102670562299688 0.113556304103250 0.124276994484970 0.134816087142286 0.145157037965972 0.155283311594794 0.165178389629679 0.174825780643227 0.184209032118048 0.193311744444154 0.202117587101567 0.210610317148752 0.218773800131058 0.226592033514930 0.234049172744162 0.241129560002661 0.247817755754863 0.254098573119004 0.259957115110999 0.265378814775885 0.270349478201646 0.274855330384353 0.278883063886437 0.282419890198638 0.285453593684124 0.287972587947069 0.289965974431215 0.291423603013348 0.289965974431215 0.287972587947069 0.285453593684124 0.282419890198637 0.278883063886437 0.274855330384352 0.270349478201646 0.265378814775886 0.259957115110999 0.254098573119004 0.247817755754863 0.241129560002660 0.234049172744162 0.226592033514930 0.218773800131059 0.210610317148753 0.202117587101566 0.193311744444154 0.184209032118049 0.174825780643228 0.165178389629680 0.155283311594793 0.145157037965971 0.134816087142287 0.124276994484970 0.113556304103251 0.102670562299689 0.091636312537562 0.080470091791806 0.069188428144430 0.057807839485101 0.046344833177727 0.034815906553987 0.023237548095190 0.011626239164204 -0.000001543850468 -0.011629327115985 -0.023240636799286 -0.034818996511157 -0.046347924887564 -0.057810933445551 -0.069191524851323 -0.080473191738361 -0.091639416213887 -0.102673670192284 -0.113559416694485 -0.124280112252559 -0.134819210558733 -0.145160167498022 -0.155286447702842 -0.165181532767183 -0.174828931256086 -0.184212190643976 -0.193314911312021 -0.202120762730725 -0.210613501948337 -0.218776994499271 -0.226595237838298 -0.234052387396783 -0.241132785345428 -0.247820992134649 -0.254101820867864 -0.259960374545318 -0.265382086195545 -0.270352761889148 -0.274858626603959 -0.278886372883279 -0.282423212197838 -0.285456928889901 -0.287975936541856 -0.289969336574783 -0.291426978841939 -0.289969336574783 -0.287975936541856 -0.285456928889900 -0.282423212197839 -0.278886372883279 -0.274858626603959 -0.270352761889148 -0.265382086195545 -0.259960374545318 -0.254101820867865 -0.247820992134649 -0.241132785345428 -0.234052387396783 -0.226595237838297 -0.218776994499271 -0.210613501948337 -0.202120762730725 -0.193314911312021 -0.184212190643976 -0.174828931256087 -0.165181532767183 -0.155286447702842 -0.145160167498022 -0.134819210558734 -0.124280112252559 -0.113559416694487 -0.102673670192284 -0.091639416213887 -0.080473191738361 -0.069191524851323 -0.057810933445551 -0.046347924887564 -0.034818996511157 -0.023240636799286 -0.011629327115985 -0.000001543850468 +-0.000001556919740 0.010571291665497 0.021128693735096 0.031655203679335 0.042135377360776 0.052553773151978 0.062894953335203 0.073143485984469 0.083283947450209 0.093300925566292 0.103179023698790 0.112902865754964 0.122457102269982 0.131826417687579 0.140995538948839 0.149949245501205 0.158672380836733 0.167149865665022 0.175366712821924 0.183308044009626 0.190959108457501 0.198305303585624 0.205332197744020 0.212025555090688 0.218371362660025 0.224355859659960 0.229965569021482 0.235187331207931 0.240008340272694 0.244416182134586 0.248398875017664 0.251944911978917 0.255043305421593 0.257683633464951 0.259856088012320 0.261551524329604 0.262761511914685 0.261551524329604 0.259856088012320 0.257683633464951 0.255043305421593 0.251944911978917 0.248398875017662 0.244416182134588 0.240008340272694 0.235187331207931 0.229965569021483 0.224355859659959 0.218371362660023 0.212025555090688 0.205332197744022 0.198305303585624 0.190959108457502 0.183308044009625 0.175366712821925 0.167149865665024 0.158672380836735 0.149949245501205 0.140995538948838 0.131826417687579 0.122457102269982 0.112902865754965 0.103179023698791 0.093300925566292 0.083283947450208 0.073143485984468 0.062894953335204 0.052553773151979 0.042135377360777 0.031655203679336 0.021128693735094 0.010571291665498 -0.000001556919740 -0.010574405734998 -0.021131808494425 -0.031658319587599 -0.042138494875902 -0.052556892730247 -0.062898075430772 -0.073146611048883 -0.083287075931909 -0.093304057910120 -0.103182160345470 -0.112906007140595 -0.122460248825501 -0.131829569838219 -0.140998697113574 -0.149952410092180 -0.158675552258679 -0.167153044314658 -0.175369899087340 -0.183311238269663 -0.190962311081098 -0.198308514931154 -0.205335418158626 -0.212028784909578 -0.218374602205786 -0.224359109241832 -0.229968828934630 -0.235190601732706 -0.240011621673885 -0.244419474660674 -0.248402178900063 -0.251948227431201 -0.255046632638755 -0.257686972622640 -0.259859439266093 -0.261554887814194 -0.262764887743279 -0.261554887814194 -0.259859439266093 -0.257686972622640 -0.255046632638755 -0.251948227431201 -0.248402178900063 -0.244419474660674 -0.240011621673886 -0.235190601732706 -0.229968828934630 -0.224359109241832 -0.218374602205787 -0.212028784909578 -0.205335418158624 -0.198308514931154 -0.190962311081098 -0.183311238269663 -0.175369899087340 -0.167153044314658 -0.158675552258680 -0.149952410092180 -0.140998697113574 -0.131829569838219 -0.122460248825501 -0.112906007140595 -0.103182160345472 -0.093304057910120 -0.083287075931909 -0.073146611048883 -0.062898075430772 -0.052556892730247 -0.042138494875902 -0.031658319587599 -0.021131808494425 -0.010574405734998 -0.000001556919740 +-0.000001569616552 0.009546423996749 0.019080058634881 0.028584978892815 0.038046836190109 0.047451292441313 0.056784024035889 0.066030726229991 0.075177118051939 0.084208947822168 0.093111999387500 0.101872099167887 0.110475124112306 0.118907010658054 0.127153764785315 0.135201473255543 0.143036316118717 0.150644580570035 0.158012676231633 0.165127151929101 0.171974714025742 0.178542246369997 0.184816831902777 0.190785775961515 0.196436631307236 0.201757224888430 0.206735686342591 0.211360478221455 0.215620427910048 0.219504761192981 0.223003137402205 0.226105686061836 0.228803044923861 0.231086399267785 0.232947522313691 0.234378816575523 0.235373355956997 0.234378816575523 0.232947522313691 0.231086399267785 0.228803044923861 0.226105686061835 0.223003137402205 0.219504761192981 0.215620427910049 0.211360478221455 0.206735686342592 0.201757224888430 0.196436631307235 0.190785775961515 0.184816831902777 0.178542246369998 0.171974714025743 0.165127151929100 0.158012676231634 0.150644580570035 0.143036316118718 0.135201473255544 0.127153764785315 0.118907010658054 0.110475124112306 0.101872099167888 0.093111999387501 0.084208947822169 0.075177118051937 0.066030726229991 0.056784024035890 0.047451292441314 0.038046836190109 0.028584978892816 0.019080058634880 0.009546423996750 -0.000001569616552 -0.009549563439271 -0.019083198705426 -0.028588120009297 -0.038049978769278 -0.047454436898297 -0.056787170783721 -0.066033875679136 -0.075180270609808 -0.084212103892642 -0.093115159370423 -0.101875263458578 -0.110478293101045 -0.118910184729564 -0.127156944318230 -0.135204658621878 -0.143039507683309 -0.150647778689995 -0.158015881255771 -0.165130364197341 -0.171977933868539 -0.178545474107732 -0.184820067845142 -0.190789020406893 -0.196439884542083 -0.201760487186629 -0.206738957964808 -0.211363759414493 -0.215623718906203 -0.219508062209383 -0.223006448640170 -0.226109007706215 -0.228806377142404 -0.231089742210498 -0.232950876112215 -0.234382181342529 -0.235376731785592 -0.234382181342529 -0.232950876112215 -0.231089742210498 -0.228806377142404 -0.226109007706215 -0.223006448640170 -0.219508062209383 -0.215623718906203 -0.211363759414493 -0.206738957964808 -0.201760487186629 -0.196439884542083 -0.190789020406894 -0.184820067845140 -0.178545474107732 -0.171977933868539 -0.165130364197341 -0.158015881255771 -0.150647778689995 -0.143039507683311 -0.135204658621878 -0.127156944318230 -0.118910184729564 -0.110478293101045 -0.101875263458578 -0.093115159370425 -0.084212103892642 -0.075180270609808 -0.066033875679136 -0.056787170783721 -0.047454436898297 -0.038049978769278 -0.028588120009297 -0.019083198705426 -0.009549563439271 -0.000001569616552 +-0.000001582003073 0.008546616646003 0.017081602041896 0.025590166632183 0.034059113973581 0.042475264500580 0.050825461550497 0.059096577729336 0.067275521701924 0.075349245488582 0.083304752349098 0.091129105332879 0.098809436572070 0.106332957391742 0.113686969308289 0.120858875983681 0.127836196199185 0.134606577907576 0.141157813417706 0.147477855759367 0.153554836269912 0.159377083436667 0.164933143021149 0.170211799482152 0.175202098704863 0.179893372032727 0.184275261586952 0.188337746846327 0.192071172446524 0.195466277144080 0.198514223875028 0.201206630822657 0.203535603392367 0.205493766974688 0.207074300360076 0.208270969651538 0.209078162503350 0.208270969651539 0.207074300360075 0.205493766974688 0.203535603392367 0.201206630822657 0.198514223875028 0.195466277144081 0.192071172446524 0.188337746846328 0.184275261586952 0.179893372032727 0.175202098704861 0.170211799482152 0.164933143021149 0.159377083436667 0.153554836269912 0.147477855759365 0.141157813417706 0.134606577907576 0.127836196199185 0.120858875983681 0.113686969308287 0.106332957391740 0.098809436572071 0.091129105332879 0.083304752349098 0.075349245488583 0.067275521701923 0.059096577729335 0.050825461550498 0.042475264500581 0.034059113973582 0.025590166632183 0.017081602041895 0.008546616646004 -0.000001582003073 -0.008549780841118 -0.017084766803693 -0.025593332337705 -0.034062280998743 -0.042478433219719 -0.050828632335926 -0.059099750950877 -0.067278697726449 -0.075352424679550 -0.083307935066076 -0.091132291931078 -0.098812627401855 -0.106336152798144 -0.113690169630507 -0.120862081554598 -0.127839407344830 -0.134609794946633 -0.141161036660980 -0.147481085509257 -0.153558072819880 -0.159380327070685 -0.164936394013161 -0.170215058095522 -0.175205365191814 -0.179896646633786 -0.184278544530388 -0.188341038347591 -0.192074472707687 -0.195469586353277 -0.198517542205908 -0.201209958433829 -0.203538940426869 -0.205497113559457 -0.207077656605438 -0.208274335650704 -0.209081538331943 -0.208274335650704 -0.207077656605437 -0.205497113559457 -0.203538940426869 -0.201209958433829 -0.198517542205908 -0.195469586353277 -0.192074472707687 -0.188341038347591 -0.184278544530389 -0.179896646633787 -0.175205365191814 -0.170215058095522 -0.164936394013160 -0.159380327070684 -0.153558072819880 -0.147481085509258 -0.141161036660980 -0.134609794946633 -0.127839407344831 -0.120862081554598 -0.113690169630507 -0.106336152798143 -0.098812627401854 -0.091132291931078 -0.083307935066078 -0.075352424679550 -0.067278697726449 -0.059099750950877 -0.050828632335926 -0.042478433219718 -0.034062280998743 -0.025593332337705 -0.017084766803693 -0.008549780841118 -0.000001582003073 +-0.000001594136154 0.007567279884156 0.015124144081271 0.022656995937266 0.030153847275762 0.037602731603399 0.044991711655574 0.052308887213268 0.059542403256797 0.066680458520893 0.073711314513899 0.080623305061854 0.087404846435891 0.094044448118713 0.100530724262701 0.106852405888800 0.112998353871280 0.118957572748970 0.124719225398740 0.130272648601372 0.135607369524003 0.140713123136659 0.145579870573284 0.150197818439658 0.154557439062468 0.158649491664496 0.162465044441385 0.165995497505267 0.169232606649682 0.172168507878905 0.174795742633204 0.177107283629207 0.179096561222153 0.180757490184106 0.182084496779289 0.183072546004967 0.183717168853383 0.183072546004967 0.182084496779290 0.180757490184106 0.179096561222153 0.177107283629207 0.174795742633204 0.172168507878905 0.169232606649682 0.165995497505268 0.162465044441385 0.158649491664495 0.154557439062467 0.150197818439658 0.145579870573285 0.140713123136661 0.135607369524003 0.130272648601372 0.124719225398740 0.118957572748970 0.112998353871281 0.106852405888802 0.100530724262699 0.094044448118712 0.087404846435892 0.080623305061854 0.073711314513900 0.066680458520894 0.059542403256797 0.052308887213267 0.044991711655574 0.037602731603399 0.030153847275762 0.022656995937266 0.015124144081270 0.007567279884156 -0.000001594136154 -0.007570468325066 -0.015127333027777 -0.022660185725718 -0.030157038241437 -0.037605924080072 -0.044994905975089 -0.052312083705102 -0.059545602247621 -0.066683660334138 -0.073714519469305 -0.080626513475036 -0.087408058617882 -0.094047664375512 -0.100533944894817 -0.106855631190794 -0.113001584131287 -0.118960808248246 -0.124722466411183 -0.130275895393046 -0.135610622352657 -0.140716382251248 -0.145583136213485 -0.150201090835385 -0.154560718433390 -0.158652778219554 -0.162468338378304 -0.165998799010076 -0.169235915896245 -0.172171825028448 -0.174799067833851 -0.177110617015527 -0.179099902914721 -0.180760840289067 -0.182087855387941 -0.183075913193372 -0.183720544681977 -0.183075913193372 -0.182087855387941 -0.180760840289067 -0.179099902914721 -0.177110617015527 -0.174799067833851 -0.172171825028448 -0.169235915896245 -0.165998799010076 -0.162468338378304 -0.158652778219554 -0.154560718433390 -0.150201090835385 -0.145583136213483 -0.140716382251248 -0.135610622352657 -0.130275895393046 -0.124722466411183 -0.118960808248246 -0.113001584131288 -0.106855631190794 -0.100533944894817 -0.094047664375512 -0.087408058617882 -0.080626513475036 -0.073714519469307 -0.066683660334138 -0.059545602247621 -0.052312083705102 -0.044994905975089 -0.037605924080072 -0.030157038241437 -0.022660185725718 -0.015127333027777 -0.007570468325066 -0.000001594136154 +-0.000001606068440 0.006604163583966 0.013199185248282 0.019772719321819 0.026314042727830 0.032812457307688 0.039257298367525 0.045637943429539 0.051943821237166 0.058164421061898 0.064289302357939 0.070308104808862 0.076210558808264 0.081986496413696 0.087625862810359 0.093118728317579 0.098455300967644 0.103625939682309 0.108621168068018 0.113431688846028 0.118048398928246 0.122462405144173 0.126665040617978 0.130647881788541 0.134402766058128 0.137921810048350 0.141197428434073 0.144222353318248 0.146989654102086 0.149492757796535 0.151725469711994 0.153681994454501 0.155356957147185 0.156745424786926 0.157842927636949 0.158645480547227 0.159149604085902 0.158645480547227 0.157842927636949 0.156745424786926 0.155356957147185 0.153681994454502 0.151725469711994 0.149492757796536 0.146989654102086 0.144222353318248 0.141197428434073 0.137921810048350 0.134402766058127 0.130647881788541 0.126665040617977 0.122462405144173 0.118048398928246 0.113431688846027 0.108621168068018 0.103625939682309 0.098455300967645 0.093118728317579 0.087625862810358 0.081986496413695 0.076210558808264 0.070308104808862 0.064289302357940 0.058164421061899 0.051943821237164 0.045637943429538 0.039257298367526 0.032812457307689 0.026314042727831 0.019772719321820 0.013199185248281 0.006604163583967 -0.000001606068440 -0.006607375869096 -0.013202397977964 -0.019775932791754 -0.026317257232715 -0.032815673140818 -0.039260515820391 -0.045641162791422 -0.051947042794734 -0.058167645098801 -0.064292529154393 -0.070311334641252 -0.076213791948724 -0.081989733129698 -0.087629103364300 -0.093121972966362 -0.098458549962261 -0.103629193267420 -0.108624426481539 -0.113434952318696 -0.118051667683213 -0.122465679396573 -0.126668320574515 -0.130651167647067 -0.134406058007233 -0.137925108266943 -0.141200733090974 -0.144225664571793 -0.146992972099718 -0.149496082674428 -0.151728801594665 -0.153685333454442 -0.155360303364509 -0.156748778309016 -0.157846288538133 -0.158648848888467 -0.159152979914495 -0.158648848888467 -0.157846288538133 -0.156748778309016 -0.155360303364509 -0.153685333454443 -0.151728801594665 -0.149496082674428 -0.146992972099718 -0.144225664571793 -0.141200733090974 -0.137925108266943 -0.134406058007233 -0.130651167647067 -0.126668320574515 -0.122465679396573 -0.118051667683213 -0.113434952318696 -0.108624426481539 -0.103629193267420 -0.098458549962261 -0.093121972966362 -0.087629103364299 -0.081989733129698 -0.076213791948724 -0.070311334641252 -0.064292529154395 -0.058167645098801 -0.051947042794734 -0.045641162791422 -0.039260515820391 -0.032815673140818 -0.026317257232715 -0.019775932791754 -0.013202397977964 -0.006607375869096 -0.000001606068440 +-0.000001617849337 0.005653279390984 0.011298750657049 0.016925378911458 0.022523764771119 0.028084535425193 0.033598353661442 0.039055927035939 0.044448017220171 0.049765449558279 0.054999122865745 0.060140019499016 0.065179215723601 0.070107892405845 0.074917346051039 0.079599000207685 0.084144417254591 0.088545310584073 0.092793557190848 0.096881210672189 0.100800514640679 0.104543916546324 0.108104081899940 0.111473908884741 0.114646543337583 0.117615394075883 0.120374148540398 0.122916788718111 0.125237607303410 0.127331224049510 0.129192602255817 0.130817065330628 0.132200313362303 0.133338439625957 0.134227946946537 0.134865763833562 0.135249260297217 0.134865763833562 0.134227946946537 0.133338439625957 0.132200313362303 0.130817065330628 0.129192602255817 0.127331224049510 0.125237607303410 0.122916788718111 0.120374148540398 0.117615394075882 0.114646543337583 0.111473908884741 0.108104081899940 0.104543916546324 0.100800514640680 0.096881210672188 0.092793557190849 0.088545310584073 0.084144417254591 0.079599000207686 0.074917346051038 0.070107892405844 0.065179215723602 0.060140019499017 0.054999122865745 0.049765449558279 0.044448017220170 0.039055927035938 0.033598353661442 0.028084535425193 0.022523764771119 0.016925378911459 0.011298750657048 0.005653279390985 -0.000001617849337 -0.005656515217500 -0.011301986866906 -0.016928615759609 -0.022527002511600 -0.028087774310761 -0.033601593943208 -0.039059168963001 -0.044451261039247 -0.049768695513341 -0.055002371197648 -0.060143270445135 -0.065182469517458 -0.070111149276744 -0.074920606223698 -0.079602263901867 -0.084147684684732 -0.088548581958926 -0.092796832713107 -0.096884490538130 -0.100803799039799 -0.104547205660973 -0.108107375904976 -0.111477207947166 -0.114649847616205 -0.117618703720961 -0.120377463693315 -0.122920109511034 -0.125240933858973 -0.127334556480498 -0.129195940664858 -0.130820409809904 -0.132203663993270 -0.133341796479069 -0.134231310080996 -0.134869133297086 -0.135252636125808 -0.134869133297086 -0.134231310080996 -0.133341796479069 -0.132203663993270 -0.130820409809904 -0.129195940664858 -0.127334556480498 -0.125240933858973 -0.122920109511034 -0.120377463693315 -0.117618703720961 -0.114649847616204 -0.111477207947167 -0.108107375904976 -0.104547205660973 -0.100803799039799 -0.096884490538130 -0.092796832713107 -0.088548581958926 -0.084147684684734 -0.079602263901867 -0.074920606223698 -0.070111149276744 -0.065182469517458 -0.060143270445135 -0.055002371197649 -0.049768695513341 -0.044451261039247 -0.039059168963001 -0.033601593943208 -0.028087774310761 -0.022527002511600 -0.016928615759609 -0.011301986866906 -0.005656515217500 -0.000001617849337 +-0.000001629525861 0.004710832077646 0.009415252699440 0.014103600306649 0.018767860572107 0.023400045783839 0.027992203822096 0.032536427225429 0.037024862366572 0.041449718757837 0.045803278504487 0.050077905923155 0.054266057340691 0.058360291087014 0.062353277693450 0.066237810305811 0.070006815319016 0.073653363237335 0.077170679761610 0.080552157101606 0.083791365508591 0.086882065019718 0.089818217402327 0.092593998282539 0.095203809438696 0.097642291236306 0.099904335177057 0.101985096530426 0.103880007012269 0.105584787470630 0.107095460534862 0.108408363180190 0.109520159155762 0.110427851220504 0.111128793127446 0.111620701293723 0.111901666090384 0.111620701293723 0.111128793127446 0.110427851220504 0.109520159155763 0.108408363180190 0.107095460534862 0.105584787470630 0.103880007012268 0.101985096530426 0.099904335177057 0.097642291236306 0.095203809438696 0.092593998282539 0.089818217402327 0.086882065019718 0.083791365508591 0.080552157101605 0.077170679761610 0.073653363237336 0.070006815319016 0.066237810305812 0.062353277693449 0.058360291087013 0.054266057340691 0.050077905923155 0.045803278504488 0.041449718757837 0.037024862366572 0.032536427225428 0.027992203822097 0.023400045783840 0.018767860572107 0.014103600306650 0.009415252699439 0.004710832077647 -0.000001629525861 -0.004714091236672 -0.009418512180216 -0.014106860323140 -0.018771121337463 -0.023403307510078 -0.027995466719780 -0.032539691503344 -0.037028128231399 -0.041452986413833 -0.045806548153162 -0.050081177762954 -0.054269331566674 -0.058363567890532 -0.062356557261835 -0.066241092822056 -0.070010100961457 -0.073656652179351 -0.077173972171303 -0.080555453141498 -0.083794665335325 -0.086885368783752 -0.089821525247646 -0.092597310346360 -0.095207125851190 -0.097645612120315 -0.099907660647822 -0.101988426695331 -0.103883341970577 -0.105588127313239 -0.107098805344071 -0.108411713029475 -0.109523514109553 -0.110431211333995 -0.111132158446400 -0.111624071854298 -0.111905041918976 -0.111624071854298 -0.111132158446400 -0.110431211333995 -0.109523514109553 -0.108411713029475 -0.107098805344071 -0.105588127313239 -0.103883341970577 -0.101988426695331 -0.099907660647822 -0.097645612120315 -0.095207125851190 -0.092597310346360 -0.089821525247646 -0.086885368783752 -0.083794665335325 -0.080555453141498 -0.077173972171303 -0.073656652179351 -0.070010100961458 -0.066241092822056 -0.062356557261835 -0.058363567890532 -0.054269331566674 -0.050081177762953 -0.045806548153163 -0.041452986413833 -0.037028128231399 -0.032539691503344 -0.027995466719780 -0.023403307510078 -0.018771121337463 -0.014106860323140 -0.009418512180216 -0.004714091236672 -0.000001629525861 +-0.000001641143405 0.003773157478026 0.007541366903639 0.011296406341160 0.015031711643456 0.018740743659157 0.022416996616623 0.026054006551639 0.029645359788644 0.033184701484519 0.036665744243106 0.040082276807498 0.043428172836040 0.046697399766576 0.049884027772033 0.052982238808856 0.055986335757996 0.058890751656392 0.061690059014859 0.064378979216218 0.066952391985341 0.069405344920517 0.071733063073183 0.073930958560668 0.075994640194108 0.077919923101252 0.079702838321275 0.081339642346276 0.082826826581567 0.084161126694496 0.085339531819013 0.086359293580998 0.087217934907165 0.087913258578129 0.088443355484596 0.088806612543646 0.089001720230785 0.088806612543646 0.088443355484596 0.087913258578129 0.087217934907165 0.086359293580998 0.085339531819012 0.084161126694496 0.082826826581567 0.081339642346276 0.079702838321275 0.077919923101252 0.075994640194108 0.073930958560669 0.071733063073184 0.069405344920517 0.066952391985341 0.064378979216218 0.061690059014860 0.058890751656392 0.055986335757996 0.052982238808857 0.049884027772032 0.046697399766575 0.043428172836040 0.040082276807498 0.036665744243106 0.033184701484519 0.029645359788643 0.026054006551638 0.022416996616623 0.018740743659157 0.015031711643456 0.011296406341160 0.007541366903638 0.003773157478027 -0.000001641143405 -0.003776439851402 -0.007544649536576 -0.011299689406243 -0.015034995312580 -0.018744028103256 -0.022420282005401 -0.026057293053288 -0.029648647569578 -0.033187990709105 -0.036669035073384 -0.040085569402924 -0.043431467353216 -0.046700696358982 -0.049887326589768 -0.052985539998378 -0.055989639461859 -0.058894058013002 -0.061693368158215 -0.064382291275667 -0.066955707085337 -0.069408663180382 -0.071736384606872 -0.073934283476541 -0.075997968594712 -0.077923255083102 -0.079706173974646 -0.081342981755002 -0.082830169822848 -0.084164473838717 -0.085342882929561 -0.086362648714105 -0.087221294111748 -0.087916621895646 -0.088446722948917 -0.088809984180931 -0.089005096059378 -0.088809984180931 -0.088446722948917 -0.087916621895646 -0.087221294111748 -0.086362648714106 -0.085342882929561 -0.084164473838717 -0.082830169822849 -0.081342981755002 -0.079706173974646 -0.077923255083102 -0.075997968594712 -0.073934283476541 -0.071736384606871 -0.069408663180382 -0.066955707085337 -0.064382291275667 -0.061693368158215 -0.058894058013002 -0.055989639461860 -0.052985539998378 -0.049887326589768 -0.046700696358982 -0.043431467353216 -0.040085569402924 -0.036669035073385 -0.033187990709105 -0.029648647569578 -0.026057293053288 -0.022420282005401 -0.018744028103256 -0.015034995312580 -0.011299689406243 -0.007544649536576 -0.003776439851402 -0.000001641143405 +-0.000001652746457 0.002836664792178 0.005669916567312 0.008493044090833 0.011301003296824 0.014088771759071 0.016851355916064 0.019583798305539 0.022281184810244 0.024938651916136 0.027551393983640 0.030114670531979 0.032623813535858 0.035074234732921 0.037461432939587 0.039781001371846 0.042028634966588 0.044200137697958 0.046291429882062 0.048298555462157 0.050217689265212 0.052045144219464 0.053777378521268 0.055411002738245 0.056942786834402 0.058369667101536 0.059688752980004 0.060897333750578 0.061992885077915 0.062973075384947 0.063835772036405 0.064579047308577 0.065201184121528 0.065700681509041 0.066076259800911 0.066326865491552 0.066451675768393 0.066326865491552 0.066076259800911 0.065700681509041 0.065201184121528 0.064579047308577 0.063835772036405 0.062973075384948 0.061992885077915 0.060897333750579 0.059688752980004 0.058369667101536 0.056942786834402 0.055411002738245 0.053777378521268 0.052045144219464 0.050217689265212 0.048298555462157 0.046291429882062 0.044200137697958 0.042028634966588 0.039781001371846 0.037461432939587 0.035074234732921 0.032623813535858 0.030114670531980 0.027551393983640 0.024938651916137 0.022281184810244 0.019583798305538 0.016851355916064 0.014088771759072 0.011301003296824 0.008493044090833 0.005669916567312 0.002836664792178 -0.000001652746457 -0.002839970350643 -0.005673222322319 -0.008496350173047 -0.011304309836364 -0.014092078885292 -0.016854663757342 -0.019587106989054 -0.022284494461767 -0.024941962659813 -0.027554705941779 -0.030117983824846 -0.032627128281461 -0.035077551046811 -0.037464750934650 -0.039784321158104 -0.042031956651001 -0.044203461384230 -0.046294755670451 -0.048301883449289 -0.050221019543896 -0.052048476878513 -0.053780713645331 -0.055414340407635 -0.056946127124936 -0.058373010084378 -0.059692098721513 -0.060900682312169 -0.061996236515916 -0.062976429750481 -0.063839129375256 -0.064582407661087 -0.065204547522491 -0.065704047987606 -0.066079629380495 -0.066330238189769 -0.066455051596985 -0.066330238189770 -0.066079629380495 -0.065704047987606 -0.065204547522491 -0.064582407661087 -0.063839129375256 -0.062976429750481 -0.061996236515917 -0.060900682312169 -0.059692098721513 -0.058373010084378 -0.056946127124936 -0.055414340407635 -0.053780713645331 -0.052048476878513 -0.050221019543896 -0.048301883449289 -0.046294755670451 -0.044203461384230 -0.042031956651001 -0.039784321158104 -0.037464750934650 -0.035077551046811 -0.032627128281461 -0.030117983824846 -0.027554705941780 -0.024941962659813 -0.022284494461767 -0.019587106989054 -0.016854663757342 -0.014092078885292 -0.011304309836364 -0.008496350173047 -0.005673222322319 -0.002839970350643 -0.000001652746457 +-0.000001664379284 0.001897781301967 0.003793762248367 0.005682819255175 0.007561504086782 0.009426384954538 0.011274051986431 0.013101122685689 0.014904247375212 0.016680114624539 0.018425456655790 0.020137054724740 0.021811744472863 0.023446421245832 0.025038045373532 0.026583647406307 0.028080333301642 0.029525289555068 0.030915788268584 0.032249192149420 0.033522959431415 0.034734648710849 0.035881923687993 0.036962557805220 0.037974438771938 0.038915572966224 0.039784089702521 0.040578245354367 0.041296427320717 0.041937157824069 0.042499097528292 0.042981048963775 0.043381959747331 0.043700925584142 0.043937193038873 0.044090162063196 0.044159388266891 0.044090162063196 0.043937193038873 0.043700925584142 0.043381959747331 0.042981048963775 0.042499097528292 0.041937157824069 0.041296427320717 0.040578245354367 0.039784089702521 0.038915572966224 0.037974438771937 0.036962557805220 0.035881923687993 0.034734648710849 0.033522959431416 0.032249192149420 0.030915788268584 0.029525289555068 0.028080333301642 0.026583647406307 0.025038045373532 0.023446421245832 0.021811744472863 0.020137054724740 0.018425456655790 0.016680114624539 0.014904247375212 0.013101122685689 0.011274051986431 0.009426384954538 0.007561504086782 0.005682819255175 0.003793762248366 0.001897781301967 -0.000001664379284 -0.001901110104711 -0.003797091183562 -0.005686148410867 -0.007564833550629 -0.009429714813660 -0.011277382327260 -0.013104453593812 -0.014907578935225 -0.016683446919895 -0.018428789768650 -0.020140388735830 -0.021815079461328 -0.023449757289092 -0.025041382547146 -0.026586985783830 -0.028083672954495 -0.029528630552404 -0.030919130677159 -0.032252536033469 -0.033526304852529 -0.034737995727855 -0.035885272356844 -0.036965908178883 -0.037977790900289 -0.038918926895948 -0.039787445477014 -0.040581603013651 -0.041299786901348 -0.041940519359064 -0.042502461047051 -0.042984414492015 -0.043385327307026 -0.043704295193466 -0.043940564712154 -0.044093535810873 -0.044162764095484 -0.044093535810873 -0.043940564712154 -0.043704295193466 -0.043385327307026 -0.042984414492015 -0.042502461047051 -0.041940519359064 -0.041299786901349 -0.040581603013651 -0.039787445477014 -0.038918926895948 -0.037977790900289 -0.036965908178883 -0.035885272356844 -0.034737995727856 -0.033526304852529 -0.032252536033469 -0.030919130677159 -0.029528630552404 -0.028083672954496 -0.026586985783830 -0.025041382547146 -0.023449757289092 -0.021815079461328 -0.020140388735830 -0.018428789768651 -0.016683446919895 -0.014907578935225 -0.013104453593812 -0.011277382327260 -0.009429714813660 -0.007564833550629 -0.005686148410867 -0.003797091183562 -0.001901110104711 -0.000001664379284 +-0.000001676086607 0.000952897677391 0.001905692472546 0.002854932453545 0.003798847973560 0.004735678673918 0.005663676562289 0.006581109075530 0.007486262123301 0.008377443108518 0.009252983920704 0.010111243898208 0.010950612755248 0.011769513469671 0.012566405127259 0.013339785718368 0.014088194882607 0.014810216597233 0.015504481804858 0.016169670976020 0.016804516602116 0.017407805614152 0.017978381722728 0.018515147674627 0.019017067421383 0.019483168195153 0.019912542487267 0.020304349924773 0.020657819040390 0.020972248931269 0.021247010802062 0.021481549387821 0.021675384252406 0.021828110958140 0.021939402102603 0.022009008218634 0.022036758533731 0.022009008218634 0.021939402102603 0.021828110958140 0.021675384252406 0.021481549387821 0.021247010802062 0.020972248931269 0.020657819040390 0.020304349924773 0.019912542487267 0.019483168195153 0.019017067421382 0.018515147674628 0.017978381722728 0.017407805614152 0.016804516602116 0.016169670976020 0.015504481804858 0.014810216597233 0.014088194882607 0.013339785718368 0.012566405127259 0.011769513469671 0.010950612755248 0.010111243898208 0.009252983920704 0.008377443108518 0.007486262123300 0.006581109075530 0.005663676562289 0.004735678673918 0.003798847973560 0.002854932453546 0.001905692472546 0.000952897677391 -0.000001676086607 -0.000956249872962 -0.001909044735148 -0.002858284827729 -0.003802200503673 -0.004739031404022 -0.005667029536083 -0.006584462336268 -0.007489615713711 -0.008380797070727 -0.009256338296159 -0.010114598727598 -0.010953968078431 -0.011772869325602 -0.012569761553913 -0.013343142752672 -0.014091552560372 -0.014813574953084 -0.015507840872171 -0.016173030786859 -0.016807877187168 -0.017411167002675 -0.017981743942489 -0.018518510751851 -0.019020431380700 -0.019486533059554 -0.019915908278053 -0.020307716661516 -0.020661186740891 -0.020975617611524 -0.021250380476228 -0.021484920068186 -0.021678755949362 -0.021831483680159 -0.021942775856221 -0.022012383008432 -0.022040134362324 -0.022012383008432 -0.021942775856221 -0.021831483680159 -0.021678755949362 -0.021484920068186 -0.021250380476228 -0.020975617611524 -0.020661186740891 -0.020307716661516 -0.019915908278053 -0.019486533059554 -0.019020431380700 -0.018518510751851 -0.017981743942489 -0.017411167002675 -0.016807877187168 -0.016173030786859 -0.015507840872171 -0.014813574953084 -0.014091552560372 -0.013343142752672 -0.012569761553913 -0.011772869325602 -0.010953968078431 -0.010114598727598 -0.009256338296159 -0.008380797070727 -0.007489615713711 -0.006584462336268 -0.005667029536083 -0.004739031404022 -0.003802200503673 -0.002858284827729 -0.001909044735148 -0.000956249872962 -0.000001676086607 +-0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 -0.000001687914296 \ No newline at end of file diff --git a/simulations/Tutorial/xhps_integration/surface_tables/prespoint_Z.txt b/simulations/Tutorial/xhps_integration/surface_tables/prespoint_Z.txt new file mode 100644 index 0000000000000000000000000000000000000000..c20e265f9838c0cb26f3f75c2bc168371f6487e5 --- /dev/null +++ b/simulations/Tutorial/xhps_integration/surface_tables/prespoint_Z.txt @@ -0,0 +1,73 @@ +0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 0.331000000000000 +0.328800770893356 0.328802849417580 0.328809081199834 0.328819454874878 0.328833951520581 0.328852544687839 0.328875200442410 0.328901877418700 0.328932526885424 0.328967092823174 0.329005512013766 0.329047714141423 0.329093621905652 0.329143151145801 0.329196210977237 0.329252703938962 0.329312526152734 0.329375567493404 0.329441711770503 0.329510836920802 0.329582815211813 0.329657513455949 0.329734793235224 0.329814511136269 0.329896518995365 0.329980664153328 0.330066789719919 0.330154734847458 0.330244335013350 0.330335422311131 0.330427825749696 0.330521371560254 0.330615883510576 0.330711183226109 0.330807090517416 0.330903423713431 0.331000000000005 0.330903423713431 0.330807090517416 0.330711183226109 0.330615883510576 0.330521371560254 0.330427825749696 0.330335422311131 0.330244335013350 0.330154734847458 0.330066789719919 0.329980664153328 0.329896518995365 0.329814511136269 0.329734793235224 0.329657513455949 0.329582815211813 0.329510836920802 0.329441711770503 0.329375567493404 0.329312526152734 0.329252703938962 0.329196210977237 0.329143151145801 0.329093621905652 0.329047714141423 0.329005512013766 0.328967092823174 0.328932526885424 0.328901877418700 0.328875200442410 0.328852544687839 0.328833951520581 0.328819454874878 0.328809081199834 0.328802849417580 0.328800770893356 0.328802849417580 0.328809081199834 0.328819454874878 0.328833951520581 0.328852544687839 0.328875200442410 0.328901877418700 0.328932526885424 0.328967092823174 0.329005512013766 0.329047714141423 0.329093621905652 0.329143151145801 0.329196210977237 0.329252703938962 0.329312526152734 0.329375567493404 0.329441711770503 0.329510836920802 0.329582815211813 0.329657513455949 0.329734793235224 0.329814511136269 0.329896518995365 0.329980664153328 0.330066789719919 0.330154734847458 0.330244335013350 0.330335422311131 0.330427825749696 0.330521371560254 0.330615883510576 0.330711183226109 0.330807090517416 0.330903423713431 0.331000000000005 0.330903423713431 0.330807090517416 0.330711183226109 0.330615883510576 0.330521371560254 0.330427825749696 0.330335422311131 0.330244335013350 0.330154734847458 0.330066789719919 0.329980664153328 0.329896518995365 0.329814511136269 0.329734793235224 0.329657513455949 0.329582815211813 0.329510836920802 0.329441711770503 0.329375567493404 0.329312526152734 0.329252703938962 0.329196210977237 0.329143151145801 0.329093621905652 0.329047714141423 0.329005512013766 0.328967092823174 0.328932526885424 0.328901877418700 0.328875200442410 0.328852544687839 0.328833951520581 0.328819454874878 0.328809081199834 0.328802849417580 0.328800770893356 +0.326623924606787 0.326628031637278 0.326640345564178 0.326660844902710 0.326689493874671 0.326726242453129 0.326771026425108 0.326823767472335 0.326884373270203 0.326952737605088 0.327028740510196 0.327112248420120 0.327203114344339 0.327301178059846 0.327406266323173 0.327518193102030 0.327636759826796 0.327761755662111 0.327892957798763 0.328030131766138 0.328173031765403 0.328321401023570 0.328474972168613 0.328633467625801 0.328796600035158 0.328964072690271 0.329135579998274 0.329310807960977 0.329489434676980 0.329671130864560 0.329855560405025 0.330042380906164 0.330231244285365 0.330421797371790 0.330613682527049 0.330806538283597 0.331000000000000 0.330806538283597 0.330613682527049 0.330421797371790 0.330231244285365 0.330042380906164 0.329855560405025 0.329671130864560 0.329489434676980 0.329310807960977 0.329135579998274 0.328964072690271 0.328796600035158 0.328633467625801 0.328474972168613 0.328321401023570 0.328173031765403 0.328030131766138 0.327892957798763 0.327761755662111 0.327636759826796 0.327518193102030 0.327406266323173 0.327301178059846 0.327203114344339 0.327112248420120 0.327028740510196 0.326952737605088 0.326884373270203 0.326823767472335 0.326771026425108 0.326726242453129 0.326689493874671 0.326660844902710 0.326640345564178 0.326628031637278 0.326623924606787 0.326628031637278 0.326640345564178 0.326660844902710 0.326689493874671 0.326726242453129 0.326771026425108 0.326823767472335 0.326884373270203 0.326952737605088 0.327028740510196 0.327112248420120 0.327203114344339 0.327301178059846 0.327406266323173 0.327518193102030 0.327636759826796 0.327761755662111 0.327892957798763 0.328030131766138 0.328173031765403 0.328321401023570 0.328474972168613 0.328633467625801 0.328796600035158 0.328964072690271 0.329135579998274 0.329310807960977 0.329489434676978 0.329671130864560 0.329855560405025 0.330042380906164 0.330231244285365 0.330421797371790 0.330613682527049 0.330806538283597 0.331000000000000 0.330806538283597 0.330613682527049 0.330421797371790 0.330231244285365 0.330042380906164 0.329855560405025 0.329671130864560 0.329489434676978 0.329310807960977 0.329135579998274 0.328964072690271 0.328796600035158 0.328633467625801 0.328474972168613 0.328321401023570 0.328173031765403 0.328030131766138 0.327892957798763 0.327761755662111 0.327636759826796 0.327518193102030 0.327406266323173 0.327301178059846 0.327203114344339 0.327112248420120 0.327028740510196 0.326952737605088 0.326884373270203 0.326823767472335 0.326771026425108 0.326726242453129 0.326689493874671 0.326660844902710 0.326640345564178 0.326628031637278 0.326623924606787 +0.324460931999132 0.324467026183261 0.324485298583817 0.324515718754481 0.324558235981940 0.324612779331924 0.324679257713954 0.324757559965122 0.324847554953341 0.324949091700534 0.325061999526321 0.325186088212863 0.325321148191561 0.325466950752387 0.325623248276688 0.325789774494332 0.325966244766098 0.326152356392308 0.326347788948605 0.326552204649945 0.326765248743684 0.326986549932831 0.327215720830361 0.327452358445499 0.327696044702886 0.327946346995395 0.328202818771332 0.328465000156684 0.328732418612932 0.329004589630895 0.329281017460820 0.329561195879000 0.329844608990762 0.330130732069802 0.330419032433420 0.330708970353141 0.330999999999994 0.330708970353141 0.330419032433420 0.330130732069802 0.329844608990762 0.329561195878998 0.329281017460820 0.329004589630895 0.328732418612932 0.328465000156684 0.328202818771332 0.327946346995395 0.327696044702886 0.327452358445499 0.327215720830361 0.326986549932831 0.326765248743685 0.326552204649945 0.326347788948605 0.326152356392309 0.325966244766098 0.325789774494332 0.325623248276688 0.325466950752387 0.325321148191561 0.325186088212863 0.325061999526321 0.324949091700534 0.324847554953341 0.324757559965122 0.324679257713954 0.324612779331924 0.324558235981940 0.324515718754481 0.324485298583817 0.324467026183261 0.324460931999132 0.324467026183261 0.324485298583817 0.324515718754481 0.324558235981940 0.324612779331924 0.324679257713954 0.324757559965122 0.324847554953341 0.324949091700534 0.325061999526321 0.325186088212863 0.325321148191561 0.325466950752387 0.325623248276688 0.325789774494332 0.325966244766098 0.326152356392308 0.326347788948605 0.326552204649945 0.326765248743685 0.326986549932831 0.327215720830361 0.327452358445499 0.327696044702886 0.327946346995395 0.328202818771332 0.328465000156684 0.328732418612932 0.329004589630895 0.329281017460820 0.329561195878998 0.329844608990762 0.330130732069802 0.330419032433420 0.330708970353141 0.330999999999994 0.330708970353141 0.330419032433420 0.330130732069802 0.329844608990762 0.329561195878998 0.329281017460820 0.329004589630895 0.328732418612932 0.328465000156684 0.328202818771332 0.327946346995395 0.327696044702886 0.327452358445499 0.327215720830361 0.326986549932831 0.326765248743685 0.326552204649945 0.326347788948605 0.326152356392308 0.325966244766098 0.325789774494332 0.325623248276688 0.325466950752387 0.325321148191561 0.325186088212863 0.325061999526321 0.324949091700534 0.324847554953341 0.324757559965122 0.324679257713954 0.324612779331924 0.324558235981940 0.324515718754481 0.324485298583817 0.324467026183261 0.324460931999132 +0.322303477515865 0.322311525521760 0.322335656764227 0.322375832924547 0.322431990161482 0.322504039146505 0.322591865113732 0.322695327925163 0.322814262152016 0.322948477173061 0.323097757291078 0.323261861868662 0.323440525484770 0.323633458113532 0.323840345326996 0.324060848523501 0.324294605183657 0.324541229155764 0.324800310972798 0.325071418202986 0.325354095836168 0.325647866708020 0.325952231964407 0.326266671567924 0.326590644848783 0.326923591102136 0.327264930233726 0.327614063455851 0.327970374035275 0.328333228094779 0.328701975469694 0.329075950620654 0.329454473603536 0.329836851097334 0.330222377490329 0.330610336024805 0.331000000000004 0.330610336024805 0.330222377490329 0.329836851097334 0.329454473603536 0.329075950620653 0.328701975469694 0.328333228094779 0.327970374035275 0.327614063455851 0.327264930233726 0.326923591102136 0.326590644848783 0.326266671567924 0.325952231964407 0.325647866708020 0.325354095836168 0.325071418202986 0.324800310972798 0.324541229155764 0.324294605183657 0.324060848523501 0.323840345326996 0.323633458113532 0.323440525484770 0.323261861868662 0.323097757291078 0.322948477173061 0.322814262152016 0.322695327925163 0.322591865113732 0.322504039146505 0.322431990161482 0.322375832924547 0.322335656764227 0.322311525521760 0.322303477515865 0.322311525521760 0.322335656764227 0.322375832924547 0.322431990161482 0.322504039146505 0.322591865113732 0.322695327925163 0.322814262152016 0.322948477173061 0.323097757291078 0.323261861868662 0.323440525484770 0.323633458113532 0.323840345326996 0.324060848523501 0.324294605183657 0.324541229155764 0.324800310972798 0.325071418202986 0.325354095836168 0.325647866708020 0.325952231964407 0.326266671567924 0.326590644848783 0.326923591102136 0.327264930233726 0.327614063455851 0.327970374035275 0.328333228094779 0.328701975469694 0.329075950620654 0.329454473603537 0.329836851097334 0.330222377490329 0.330610336024805 0.331000000000004 0.330610336024805 0.330222377490329 0.329836851097334 0.329454473603537 0.329075950620654 0.328701975469694 0.328333228094779 0.327970374035275 0.327614063455851 0.327264930233726 0.326923591102136 0.326590644848783 0.326266671567924 0.325952231964407 0.325647866708020 0.325354095836168 0.325071418202986 0.324800310972798 0.324541229155764 0.324294605183657 0.324060848523501 0.323840345326996 0.323633458113532 0.323440525484770 0.323261861868662 0.323097757291078 0.322948477173061 0.322814262152016 0.322695327925163 0.322591865113732 0.322504039146505 0.322431990161482 0.322375832924547 0.322335656764227 0.322311525521760 0.322303477515865 +0.320143330412358 0.320153306417351 0.320183219380226 0.320233024147234 0.320302645470791 0.320391978022960 0.320500886415259 0.320629205225720 0.320776739034419 0.320943262468921 0.321128520261299 0.321332227318777 0.321554068810029 0.321793700269676 0.322050747723534 0.322324807837411 0.322615448092549 0.322922206990779 0.323244594292840 0.323582091293217 0.323934151135177 0.324300199169602 0.324679633361401 0.325071824747223 0.325476117948321 0.325891831742199 0.326318259696878 0.326754670871257 0.327200310585071 0.327654401261797 0.328116143347461 0.328584716308306 0.329059279709747 0.329538974378867 0.330022923652231 0.330510234710391 0.331000000000008 0.330510234710391 0.330022923652231 0.329538974378867 0.329059279709747 0.328584716308306 0.328116143347461 0.327654401261797 0.327200310585071 0.326754670871257 0.326318259696878 0.325891831742199 0.325476117948321 0.325071824747223 0.324679633361401 0.324300199169602 0.323934151135177 0.323582091293217 0.323244594292840 0.322922206990779 0.322615448092549 0.322324807837411 0.322050747723534 0.321793700269675 0.321554068810029 0.321332227318777 0.321128520261299 0.320943262468921 0.320776739034419 0.320629205225720 0.320500886415259 0.320391978022960 0.320302645470791 0.320233024147234 0.320183219380226 0.320153306417351 0.320143330412358 0.320153306417351 0.320183219380226 0.320233024147234 0.320302645470791 0.320391978022960 0.320500886415259 0.320629205225720 0.320776739034419 0.320943262468921 0.321128520261299 0.321332227318777 0.321554068810029 0.321793700269675 0.322050747723534 0.322324807837411 0.322615448092549 0.322922206990779 0.323244594292840 0.323582091293217 0.323934151135177 0.324300199169602 0.324679633361401 0.325071824747223 0.325476117948321 0.325891831742199 0.326318259696878 0.326754670871257 0.327200310585071 0.327654401261797 0.328116143347461 0.328584716308306 0.329059279709748 0.329538974378867 0.330022923652231 0.330510234710391 0.331000000000008 0.330510234710391 0.330022923652231 0.329538974378867 0.329059279709748 0.328584716308306 0.328116143347461 0.327654401261797 0.327200310585071 0.326754670871257 0.326318259696878 0.325891831742199 0.325476117948321 0.325071824747223 0.324679633361400 0.324300199169602 0.323934151135177 0.323582091293217 0.323244594292840 0.322922206990779 0.322615448092549 0.322324807837411 0.322050747723534 0.321793700269675 0.321554068810029 0.321332227318777 0.321128520261299 0.320943262468921 0.320776739034419 0.320629205225720 0.320500886415259 0.320391978022960 0.320302645470791 0.320233024147234 0.320183219380226 0.320153306417351 0.320143330412358 +0.317972218750528 0.317984104045827 0.318019742937165 0.318079084437013 0.318162043553532 0.318268501272266 0.318398304531810 0.318551266194708 0.318727165015240 0.318925745606087 0.319146718406227 0.319389759652754 0.319654511359645 0.319940581306874 0.320247543043488 0.320574935908733 0.320922265075405 0.321289001620061 0.321674582624893 0.322078411316278 0.322499857245313 0.322938256515768 0.323392912065034 0.323863094003825 0.324348040020410 0.324846955855226 0.325359015851719 0.325883363589197 0.326419112603395 0.326965347200270 0.327521123368372 0.328085469794804 0.328657388989489 0.329235858522063 0.329819832375217 0.330408242417736 0.330999999999994 0.330408242417736 0.329819832375218 0.329235858522063 0.328657388989489 0.328085469794804 0.327521123368372 0.326965347200270 0.326419112603395 0.325883363589197 0.325359015851719 0.324846955855226 0.324348040020410 0.323863094003825 0.323392912065034 0.322938256515768 0.322499857245313 0.322078411316277 0.321674582624893 0.321289001620061 0.320922265075404 0.320574935908733 0.320247543043488 0.319940581306874 0.319654511359645 0.319389759652754 0.319146718406227 0.318925745606087 0.318727165015240 0.318551266194708 0.318398304531810 0.318268501272266 0.318162043553532 0.318079084437013 0.318019742937165 0.317984104045827 0.317972218750528 0.317984104045827 0.318019742937165 0.318079084437013 0.318162043553532 0.318268501272266 0.318398304531810 0.318551266194708 0.318727165015240 0.318925745606087 0.319146718406227 0.319389759652754 0.319654511359645 0.319940581306874 0.320247543043488 0.320574935908733 0.320922265075405 0.321289001620061 0.321674582624893 0.322078411316277 0.322499857245313 0.322938256515768 0.323392912065035 0.323863094003825 0.324348040020410 0.324846955855226 0.325359015851719 0.325883363589197 0.326419112603395 0.326965347200270 0.327521123368372 0.328085469794804 0.328657388989489 0.329235858522063 0.329819832375216 0.330408242417736 0.330999999999994 0.330408242417736 0.329819832375216 0.329235858522063 0.328657388989489 0.328085469794804 0.327521123368372 0.326965347200270 0.326419112603395 0.325883363589197 0.325359015851719 0.324846955855226 0.324348040020410 0.323863094003825 0.323392912065034 0.322938256515768 0.322499857245313 0.322078411316277 0.321674582624893 0.321289001620061 0.320922265075405 0.320574935908733 0.320247543043488 0.319940581306874 0.319654511359645 0.319389759652754 0.319146718406227 0.318925745606087 0.318727165015240 0.318551266194708 0.318398304531810 0.318268501272266 0.318162043553532 0.318079084437013 0.318019742937165 0.317984104045827 0.317972218750528 +0.315781702050282 0.315795484748964 0.315836814235311 0.315905634668134 0.316001852938708 0.316125338611493 0.316275923842733 0.316453403278601 0.316657533934920 0.316888035061049 0.317144587990895 0.317426835984511 0.317734384064178 0.318066798849326 0.318423608395054 0.318804302039476 0.319208330265492 0.319635104583047 0.320083997438249 0.320554342156144 0.321045432924275 0.321556524824412 0.322086833920220 0.322635537408773 0.323201773844086 0.323784643440965 0.324383208467585 0.324996493735248 0.325623487193722 0.326263140640495 0.326914370552148 0.327576059045628 0.328247054977135 0.328926175185625 0.329612205887582 0.330303904229033 0.330999999999998 0.330303904229033 0.329612205887582 0.328926175185625 0.328247054977135 0.327576059045628 0.326914370552148 0.326263140640495 0.325623487193722 0.324996493735248 0.324383208467585 0.323784643440965 0.323201773844086 0.322635537408773 0.322086833920220 0.321556524824412 0.321045432924275 0.320554342156144 0.320083997438249 0.319635104583048 0.319208330265492 0.318804302039476 0.318423608395054 0.318066798849325 0.317734384064178 0.317426835984511 0.317144587990895 0.316888035061049 0.316657533934920 0.316453403278601 0.316275923842733 0.316125338611493 0.316001852938708 0.315905634668134 0.315836814235311 0.315795484748964 0.315781702050282 0.315795484748964 0.315836814235311 0.315905634668134 0.316001852938708 0.316125338611493 0.316275923842733 0.316453403278601 0.316657533934920 0.316888035061049 0.317144587990895 0.317426835984511 0.317734384064178 0.318066798849326 0.318423608395054 0.318804302039476 0.319208330265492 0.319635104583047 0.320083997438249 0.320554342156144 0.321045432924275 0.321556524824412 0.322086833920220 0.322635537408773 0.323201773844086 0.323784643440965 0.324383208467585 0.324996493735248 0.325623487193722 0.326263140640495 0.326914370552148 0.327576059045628 0.328247054977135 0.328926175185625 0.329612205887582 0.330303904229033 0.330999999999998 0.330303904229033 0.329612205887582 0.328926175185625 0.328247054977135 0.327576059045628 0.326914370552148 0.326263140640495 0.325623487193722 0.324996493735248 0.324383208467585 0.323784643440965 0.323201773844086 0.322635537408773 0.322086833920220 0.321556524824412 0.321045432924275 0.320554342156144 0.320083997438249 0.319635104583047 0.319208330265492 0.318804302039476 0.318423608395054 0.318066798849326 0.317734384064178 0.317426835984511 0.317144587990895 0.316888035061049 0.316657533934920 0.316453403278601 0.316275923842733 0.316125338611493 0.316001852938708 0.315905634668134 0.315836814235311 0.315795484748964 0.315781702050282 +0.313563038401150 0.313578713239668 0.313625717855472 0.313703992527284 0.313813437646458 0.313953913608180 0.314125240661067 0.314327198717112 0.314559527124451 0.314821924405990 0.315114047967514 0.315435513779419 0.315785896036827 0.316164726803331 0.316571495644262 0.317005649255880 0.317466591097440 0.317953681033679 0.318466234995749 0.319003524669191 0.319564777218015 0.320149175054437 0.320755855664282 0.321383911498466 0.322032389941315 0.322700293366835 0.323386579294276 0.324090160654523 0.324809906178952 0.325544640922447 0.326293146932170 0.327054164073509 0.327826391024364 0.328608486448470 0.329399070358017 0.330196725674981 0.331000000000004 0.330196725674981 0.329399070358017 0.328608486448470 0.327826391024364 0.327054164073509 0.326293146932170 0.325544640922447 0.324809906178952 0.324090160654523 0.323386579294276 0.322700293366835 0.322032389941315 0.321383911498466 0.320755855664282 0.320149175054437 0.319564777218016 0.319003524669191 0.318466234995749 0.317953681033679 0.317466591097440 0.317005649255880 0.316571495644262 0.316164726803331 0.315785896036827 0.315435513779419 0.315114047967514 0.314821924405990 0.314559527124451 0.314327198717112 0.314125240661067 0.313953913608180 0.313813437646458 0.313703992527284 0.313625717855472 0.313578713239668 0.313563038401150 0.313578713239668 0.313625717855472 0.313703992527284 0.313813437646458 0.313953913608180 0.314125240661067 0.314327198717112 0.314559527124451 0.314821924405990 0.315114047967514 0.315435513779419 0.315785896036827 0.316164726803331 0.316571495644262 0.317005649255880 0.317466591097440 0.317953681033679 0.318466234995749 0.319003524669191 0.319564777218016 0.320149175054437 0.320755855664282 0.321383911498466 0.322032389941315 0.322700293366835 0.323386579294276 0.324090160654524 0.324809906178952 0.325544640922447 0.326293146932170 0.327054164073509 0.327826391024364 0.328608486448470 0.329399070358016 0.330196725674981 0.331000000000004 0.330196725674981 0.329399070358016 0.328608486448470 0.327826391024364 0.327054164073509 0.326293146932170 0.325544640922447 0.324809906178952 0.324090160654524 0.323386579294276 0.322700293366835 0.322032389941315 0.321383911498466 0.320755855664282 0.320149175054437 0.319564777218016 0.319003524669191 0.318466234995749 0.317953681033679 0.317466591097440 0.317005649255880 0.316571495644262 0.316164726803331 0.315785896036827 0.315435513779419 0.315114047967514 0.314821924405990 0.314559527124451 0.314327198717112 0.314125240661067 0.313953913608180 0.313813437646458 0.313703992527284 0.313625717855472 0.313578713239668 0.313563038401150 +0.311307041525073 0.311324609751033 0.311377293566906 0.311465030353123 0.311587715632189 0.311745202902469 0.311937303407651 0.312163785844121 0.312424376009056 0.312718756392715 0.313046565719073 0.313407398439583 0.313800804185542 0.314226287185209 0.314683305652523 0.315171271154965 0.315689547968832 0.316237452430842 0.316814252295798 0.317419166110643 0.318051362615986 0.318709960186870 0.319394026325156 0.320102577216580 0.320834577366096 0.321588939325641 0.322364523528994 0.323160138248705 0.323974539690506 0.324806432240736 0.325654468882473 0.326517251796044 0.327393333159415 0.328281216163672 0.329179356258270 0.330086162640165 0.330999999999998 0.330086162640165 0.329179356258270 0.328281216163672 0.327393333159415 0.326517251796044 0.325654468882472 0.324806432240736 0.323974539690507 0.323160138248705 0.322364523528994 0.321588939325641 0.320834577366095 0.320102577216580 0.319394026325156 0.318709960186870 0.318051362615987 0.317419166110643 0.316814252295798 0.316237452430842 0.315689547968832 0.315171271154966 0.314683305652523 0.314226287185209 0.313800804185542 0.313407398439583 0.313046565719073 0.312718756392715 0.312424376009056 0.312163785844121 0.311937303407650 0.311745202902469 0.311587715632189 0.311465030353123 0.311377293566906 0.311324609751033 0.311307041525073 0.311324609751033 0.311377293566906 0.311465030353123 0.311587715632189 0.311745202902469 0.311937303407651 0.312163785844121 0.312424376009056 0.312718756392715 0.313046565719073 0.313407398439583 0.313800804185542 0.314226287185209 0.314683305652523 0.315171271154966 0.315689547968832 0.316237452430842 0.316814252295798 0.317419166110643 0.318051362615987 0.318709960186870 0.319394026325156 0.320102577216580 0.320834577366096 0.321588939325641 0.322364523528994 0.323160138248705 0.323974539690506 0.324806432240735 0.325654468882473 0.326517251796044 0.327393333159415 0.328281216163672 0.329179356258270 0.330086162640165 0.330999999999998 0.330086162640165 0.329179356258270 0.328281216163672 0.327393333159415 0.326517251796044 0.325654468882473 0.324806432240735 0.323974539690506 0.323160138248705 0.322364523528994 0.321588939325641 0.320834577366096 0.320102577216580 0.319394026325156 0.318709960186870 0.318051362615987 0.317419166110643 0.316814252295798 0.316237452430842 0.315689547968832 0.315171271154966 0.314683305652523 0.314226287185209 0.313800804185542 0.313407398439583 0.313046565719073 0.312718756392715 0.312424376009056 0.312163785844121 0.311937303407651 0.311745202902469 0.311587715632189 0.311465030353123 0.311377293566906 0.311324609751033 0.311307041525073 +0.309003922699079 0.309023392040148 0.309081778574714 0.309179017790310 0.309315002011377 0.309489580168284 0.309702557476313 0.309953695027017 0.310242709295057 0.310569271564272 0.310933007277596 0.311333495316067 0.311770267213037 0.312242806310432 0.312750546864776 0.313292873111517 0.313869118297030 0.314478563688639 0.315120437573787 0.315793914260512 0.316498113092200 0.317232097490596 0.317994874041901 0.318785391641707 0.319602540715373 0.320445152531281 0.321311998625170 0.322201790354430 0.323113178601889 0.324044753649101 0.324995045239496 0.325962522852082 0.326945596206355 0.327942616019043 0.328951875032913 0.329971609337405 0.330999999999998 0.329971609337405 0.328951875032913 0.327942616019043 0.326945596206355 0.325962522852082 0.324995045239496 0.324044753649101 0.323113178601890 0.322201790354430 0.321311998625170 0.320445152531281 0.319602540715373 0.318785391641707 0.317994874041901 0.317232097490596 0.316498113092199 0.315793914260512 0.315120437573787 0.314478563688639 0.313869118297031 0.313292873111517 0.312750546864776 0.312242806310431 0.311770267213037 0.311333495316067 0.310933007277596 0.310569271564272 0.310242709295057 0.309953695027017 0.309702557476313 0.309489580168284 0.309315002011377 0.309179017790310 0.309081778574714 0.309023392040148 0.309003922699079 0.309023392040148 0.309081778574714 0.309179017790310 0.309315002011377 0.309489580168284 0.309702557476313 0.309953695027017 0.310242709295057 0.310569271564272 0.310933007277596 0.311333495316067 0.311770267213037 0.312242806310432 0.312750546864776 0.313292873111517 0.313869118297030 0.314478563688639 0.315120437573787 0.315793914260512 0.316498113092199 0.317232097490596 0.317994874041901 0.318785391641707 0.319602540715373 0.320445152531281 0.321311998625170 0.322201790354430 0.323113178601889 0.324044753649101 0.324995045239496 0.325962522852082 0.326945596206355 0.327942616019043 0.328951875032913 0.329971609337405 0.330999999999998 0.329971609337405 0.328951875032913 0.327942616019043 0.326945596206355 0.325962522852082 0.324995045239496 0.324044753649101 0.323113178601889 0.322201790354430 0.321311998625170 0.320445152531281 0.319602540715373 0.318785391641707 0.317994874041901 0.317232097490596 0.316498113092199 0.315793914260512 0.315120437573787 0.314478563688639 0.313869118297031 0.313292873111517 0.312750546864776 0.312242806310432 0.311770267213037 0.311333495316067 0.310933007277596 0.310569271564272 0.310242709295057 0.309953695027017 0.309702557476313 0.309489580168284 0.309315002011377 0.309179017790310 0.309081778574714 0.309023392040148 0.309003922699079 +0.306643111546237 0.306664496256722 0.306728628621836 0.306835443281701 0.306984831100663 0.307176638864750 0.307410668860559 0.307686678338104 0.308004378860815 0.308363435546732 0.308763466205653 0.309204040377897 0.309684678281158 0.310204849672832 0.310763972636166 0.311361412299551 0.311996479499311 0.312668429397371 0.313376460066383 0.314119711055921 0.314897261954624 0.315708130964289 0.316551273503191 0.317425580857045 0.318329878897324 0.319262926887724 0.320223416400818 0.321209970367931 0.322221142286317 0.323255415608625 0.324311203340365 0.325386847871774 0.326480621070788 0.327590724664185 0.328715290933812 0.329852383754545 0.330999999999999 0.329852383754545 0.328715290933812 0.327590724664185 0.326480621070788 0.325386847871774 0.324311203340365 0.323255415608625 0.322221142286317 0.321209970367931 0.320223416400818 0.319262926887724 0.318329878897324 0.317425580857045 0.316551273503191 0.315708130964289 0.314897261954624 0.314119711055920 0.313376460066382 0.312668429397371 0.311996479499311 0.311361412299551 0.310763972636166 0.310204849672832 0.309684678281158 0.309204040377897 0.308763466205653 0.308363435546732 0.308004378860815 0.307686678338104 0.307410668860559 0.307176638864750 0.306984831100663 0.306835443281701 0.306728628621836 0.306664496256722 0.306643111546237 0.306664496256722 0.306728628621836 0.306835443281701 0.306984831100663 0.307176638864750 0.307410668860559 0.307686678338104 0.308004378860815 0.308363435546732 0.308763466205653 0.309204040377897 0.309684678281158 0.310204849672832 0.310763972636166 0.311361412299552 0.311996479499311 0.312668429397371 0.313376460066382 0.314119711055921 0.314897261954624 0.315708130964289 0.316551273503191 0.317425580857045 0.318329878897323 0.319262926887724 0.320223416400818 0.321209970367931 0.322221142286317 0.323255415608624 0.324311203340365 0.325386847871774 0.326480621070788 0.327590724664185 0.328715290933812 0.329852383754545 0.330999999999999 0.329852383754545 0.328715290933812 0.327590724664185 0.326480621070788 0.325386847871774 0.324311203340365 0.323255415608624 0.322221142286317 0.321209970367931 0.320223416400818 0.319262926887724 0.318329878897324 0.317425580857045 0.316551273503191 0.315708130964289 0.314897261954624 0.314119711055921 0.313376460066382 0.312668429397371 0.311996479499311 0.311361412299552 0.310763972636166 0.310204849672832 0.309684678281158 0.309204040377897 0.308763466205653 0.308363435546732 0.308004378860815 0.307686678338104 0.307410668860559 0.307176638864750 0.306984831100663 0.306835443281701 0.306728628621836 0.306664496256722 0.306643111546237 +0.304213048400682 0.304236369383590 0.304306310656609 0.304422807116214 0.304585750002153 0.304794986517093 0.305050319296582 0.305351505731772 0.305698257148178 0.306090237844452 0.306527063996050 0.307008302429498 0.307533469273927 0.308102028497521 0.308713390337555 0.309366909633863 0.310061884076711 0.310797552381339 0.311573092402744 0.312387619205658 0.313240183106151 0.314129767702765 0.315055287916662 0.316015588061849 0.317009439968157 0.318035541181273 0.319092513265736 0.320178900238351 0.321293167161032 0.322433698923451 0.323598799247198 0.324786689944263 0.325995510463642 0.327223317760488 0.328468086522709 0.329727709790003 0.331000000000006 0.329727709790003 0.328468086522709 0.327223317760488 0.325995510463642 0.324786689944263 0.323598799247198 0.322433698923451 0.321293167161033 0.320178900238351 0.319092513265736 0.318035541181273 0.317009439968156 0.316015588061849 0.315055287916662 0.314129767702765 0.313240183106151 0.312387619205658 0.311573092402744 0.310797552381339 0.310061884076711 0.309366909633863 0.308713390337555 0.308102028497521 0.307533469273927 0.307008302429498 0.306527063996050 0.306090237844452 0.305698257148178 0.305351505731772 0.305050319296582 0.304794986517093 0.304585750002153 0.304422807116214 0.304306310656609 0.304236369383590 0.304213048400682 0.304236369383590 0.304306310656609 0.304422807116214 0.304585750002153 0.304794986517093 0.305050319296582 0.305351505731772 0.305698257148178 0.306090237844452 0.306527063996050 0.307008302429498 0.307533469273927 0.308102028497521 0.308713390337555 0.309366909633863 0.310061884076711 0.310797552381339 0.311573092402743 0.312387619205658 0.313240183106151 0.314129767702765 0.315055287916662 0.316015588061849 0.317009439968157 0.318035541181273 0.319092513265736 0.320178900238351 0.321293167161032 0.322433698923451 0.323598799247198 0.324786689944263 0.325995510463642 0.327223317760488 0.328468086522709 0.329727709790003 0.331000000000006 0.329727709790003 0.328468086522709 0.327223317760488 0.325995510463642 0.324786689944263 0.323598799247198 0.322433698923451 0.321293167161032 0.320178900238351 0.319092513265736 0.318035541181273 0.317009439968157 0.316015588061849 0.315055287916662 0.314129767702765 0.313240183106151 0.312387619205658 0.311573092402743 0.310797552381339 0.310061884076711 0.309366909633863 0.308713390337555 0.308102028497521 0.307533469273927 0.307008302429498 0.306527063996050 0.306090237844452 0.305698257148178 0.305351505731772 0.305050319296582 0.304794986517093 0.304585750002153 0.304422807116214 0.304306310656609 0.304236369383590 0.304213048400682 +0.301700939121514 0.301726224124806 0.301802057944197 0.301928376915146 0.302105074620160 0.302332001425029 0.302608963831830 0.302935723651045 0.303311996995799 0.303737453102087 0.304211712979599 0.304734347898707 0.305304877720114 0.305922769074708 0.306587433402346 0.307298224859444 0.308054438106663 0.308855305989356 0.309699997125023 0.310587613413625 0.311517187488394 0.312487680126596 0.313497977641670 0.314546889280163 0.315633144648979 0.316755391200600 0.317912191806118 0.319102022448050 0.320323270067104 0.321574230599097 0.322853107240244 0.324158008980856 0.325486949449117 0.326837846108008 0.328208519849566 0.329596695031305 0.330999999999996 0.329596695031306 0.328208519849566 0.326837846108008 0.325486949449117 0.324158008980855 0.322853107240243 0.321574230599097 0.320323270067104 0.319102022448050 0.317912191806118 0.316755391200600 0.315633144648979 0.314546889280163 0.313497977641671 0.312487680126596 0.311517187488395 0.310587613413625 0.309699997125023 0.308855305989356 0.308054438106663 0.307298224859444 0.306587433402346 0.305922769074708 0.305304877720114 0.304734347898707 0.304211712979599 0.303737453102087 0.303311996995799 0.302935723651045 0.302608963831830 0.302332001425029 0.302105074620160 0.301928376915146 0.301802057944197 0.301726224124806 0.301700939121514 0.301726224124806 0.301802057944197 0.301928376915146 0.302105074620160 0.302332001425029 0.302608963831830 0.302935723651045 0.303311996995799 0.303737453102087 0.304211712979599 0.304734347898707 0.305304877720114 0.305922769074708 0.306587433402346 0.307298224859444 0.308054438106663 0.308855305989356 0.309699997125023 0.310587613413626 0.311517187488395 0.312487680126596 0.313497977641670 0.314546889280163 0.315633144648979 0.316755391200600 0.317912191806119 0.319102022448051 0.320323270067104 0.321574230599097 0.322853107240243 0.324158008980855 0.325486949449117 0.326837846108008 0.328208519849566 0.329596695031305 0.330999999999996 0.329596695031305 0.328208519849566 0.326837846108008 0.325486949449117 0.324158008980855 0.322853107240244 0.321574230599097 0.320323270067104 0.319102022448050 0.317912191806119 0.316755391200600 0.315633144648979 0.314546889280163 0.313497977641670 0.312487680126596 0.311517187488395 0.310587613413626 0.309699997125023 0.308855305989356 0.308054438106663 0.307298224859444 0.306587433402346 0.305922769074708 0.305304877720114 0.304734347898707 0.304211712979599 0.303737453102087 0.303311996995799 0.302935723651045 0.302608963831830 0.302332001425029 0.302105074620160 0.301928376915146 0.301802057944197 0.301726224124806 0.301700939121514 +0.299092460685999 0.299119744572014 0.299201575953532 0.299337893890281 0.299528596446473 0.299773540138753 0.300072539165281 0.300425364417922 0.300831742280231 0.301291353214551 0.301803830142395 0.302368756623103 0.302985664836754 0.303654033378364 0.304373284871599 0.305142783411558 0.305961831847607 0.306829668918873 0.307745466256746 0.308708325270616 0.309717273935180 0.310771263499790 0.311869165142781 0.313009766596085 0.314191768768190 0.315413782396185 0.316674324760454 0.317971816498539 0.319304578557537 0.320670829327387 0.322068682000208 0.323496142203620 0.324951105958555 0.326431358014396 0.327934570616287 0.329458302761148 0.330999999999994 0.329458302761148 0.327934570616288 0.326431358014396 0.324951105958555 0.323496142203619 0.322068682000208 0.320670829327387 0.319304578557538 0.317971816498540 0.316674324760454 0.315413782396185 0.314191768768190 0.313009766596085 0.311869165142781 0.310771263499790 0.309717273935180 0.308708325270616 0.307745466256746 0.306829668918874 0.305961831847607 0.305142783411558 0.304373284871599 0.303654033378364 0.302985664836755 0.302368756623103 0.301803830142395 0.301291353214551 0.300831742280231 0.300425364417922 0.300072539165281 0.299773540138753 0.299528596446473 0.299337893890281 0.299201575953532 0.299119744572014 0.299092460685999 0.299119744572014 0.299201575953532 0.299337893890281 0.299528596446473 0.299773540138753 0.300072539165281 0.300425364417922 0.300831742280231 0.301291353214551 0.301803830142395 0.302368756623103 0.302985664836755 0.303654033378364 0.304373284871599 0.305142783411558 0.305961831847607 0.306829668918873 0.307745466256746 0.308708325270616 0.309717273935180 0.310771263499790 0.311869165142781 0.313009766596085 0.314191768768190 0.315413782396185 0.316674324760455 0.317971816498540 0.319304578557537 0.320670829327387 0.322068682000208 0.323496142203619 0.324951105958555 0.326431358014396 0.327934570616286 0.329458302761148 0.330999999999994 0.329458302761148 0.327934570616286 0.326431358014396 0.324951105958555 0.323496142203620 0.322068682000208 0.320670829327387 0.319304578557537 0.317971816498540 0.316674324760455 0.315413782396185 0.314191768768190 0.313009766596085 0.311869165142781 0.310771263499790 0.309717273935180 0.308708325270616 0.307745466256746 0.306829668918873 0.305961831847607 0.305142783411558 0.304373284871599 0.303654033378364 0.302985664836755 0.302368756623103 0.301803830142395 0.301291353214551 0.300831742280231 0.300425364417922 0.300072539165281 0.299773540138753 0.299528596446473 0.299337893890281 0.299201575953532 0.299119744572014 0.299092460685999 +0.296371402360333 0.296400727446839 0.296488683816027 0.296635214667837 0.296840224905538 0.297103580491441 0.297425107546333 0.297804591194066 0.298241774153324 0.298736355079134 0.299287986657397 0.299896273456491 0.300560769540902 0.301280975852880 0.302056337369330 0.302886240042480 0.303770007534442 0.304706897757464 0.305696099233669 0.306736727290161 0.307827820107779 0.308968334644356 0.310157142456130 0.311393025444010 0.312674671554590 0.314000670469294 0.315369509318565 0.316779568461839 0.318229117377852 0.319716310713791 0.321239184545779 0.322795652907017 0.324383504643788 0.326000400663055 0.327643871638735 0.329311316246568 0.330999999999999 0.329311316246568 0.327643871638735 0.326000400663055 0.324383504643788 0.322795652907017 0.321239184545779 0.319716310713791 0.318229117377851 0.316779568461839 0.315369509318565 0.314000670469294 0.312674671554589 0.311393025444010 0.310157142456130 0.308968334644356 0.307827820107779 0.306736727290161 0.305696099233669 0.304706897757464 0.303770007534442 0.302886240042480 0.302056337369329 0.301280975852880 0.300560769540902 0.299896273456491 0.299287986657397 0.298736355079134 0.298241774153324 0.297804591194066 0.297425107546333 0.297103580491441 0.296840224905538 0.296635214667837 0.296488683816026 0.296400727446839 0.296371402360333 0.296400727446839 0.296488683816027 0.296635214667837 0.296840224905538 0.297103580491441 0.297425107546333 0.297804591194066 0.298241774153324 0.298736355079134 0.299287986657397 0.299896273456491 0.300560769540902 0.301280975852880 0.302056337369330 0.302886240042481 0.303770007534442 0.304706897757464 0.305696099233669 0.306736727290161 0.307827820107779 0.308968334644356 0.310157142456131 0.311393025444009 0.312674671554590 0.314000670469294 0.315369509318565 0.316779568461839 0.318229117377851 0.319716310713791 0.321239184545779 0.322795652907017 0.324383504643788 0.326000400663055 0.327643871638735 0.329311316246568 0.330999999999999 0.329311316246568 0.327643871638735 0.326000400663055 0.324383504643788 0.322795652907017 0.321239184545779 0.319716310713791 0.318229117377851 0.316779568461839 0.315369509318565 0.314000670469294 0.312674671554590 0.311393025444009 0.310157142456130 0.308968334644356 0.307827820107779 0.306736727290161 0.305696099233669 0.304706897757464 0.303770007534442 0.302886240042481 0.302056337369330 0.301280975852880 0.300560769540902 0.299896273456491 0.299287986657397 0.298736355079134 0.298241774153324 0.297804591194066 0.297425107546333 0.297103580491441 0.296840224905538 0.296635214667837 0.296488683816027 0.296400727446839 0.296371402360333 +0.293519222323024 0.293550638792651 0.293644871224280 0.293801868538224 0.294021545108651 0.294303780024354 0.294648416054467 0.295055258319839 0.295524072671102 0.296054583774879 0.296646472910081 0.297299375476892 0.298012878221810 0.298786516183096 0.299619769362074 0.300512059127115 0.301462744358684 0.302471117345645 0.303536399445106 0.304657736520436 0.305834194174719 0.307064752799893 0.308348302465038 0.309683637670881 0.311069452001478 0.312504332708172 0.313986755265475 0.315515077943226 0.317087536444313 0.318702238662535 0.320357159620333 0.322050136651576 0.323778864899894 0.325540893208293 0.327333620480790 0.329154292601390 0.331000000000003 0.329154292601391 0.327333620480790 0.325540893208293 0.323778864899894 0.322050136651576 0.320357159620333 0.318702238662536 0.317087536444313 0.315515077943226 0.313986755265476 0.312504332708172 0.311069452001477 0.309683637670881 0.308348302465038 0.307064752799893 0.305834194174719 0.304657736520436 0.303536399445106 0.302471117345645 0.301462744358684 0.300512059127115 0.299619769362073 0.298786516183096 0.298012878221810 0.297299375476892 0.296646472910081 0.296054583774879 0.295524072671102 0.295055258319839 0.294648416054467 0.294303780024354 0.294021545108651 0.293801868538224 0.293644871224280 0.293550638792651 0.293519222323024 0.293550638792651 0.293644871224280 0.293801868538224 0.294021545108651 0.294303780024354 0.294648416054467 0.295055258319839 0.295524072671102 0.296054583774879 0.296646472910081 0.297299375476892 0.298012878221810 0.298786516183096 0.299619769362074 0.300512059127115 0.301462744358684 0.302471117345645 0.303536399445106 0.304657736520436 0.305834194174719 0.307064752799894 0.308348302465038 0.309683637670881 0.311069452001478 0.312504332708172 0.313986755265476 0.315515077943226 0.317087536444313 0.318702238662535 0.320357159620333 0.322050136651576 0.323778864899894 0.325540893208293 0.327333620480790 0.329154292601390 0.331000000000003 0.329154292601390 0.327333620480790 0.325540893208293 0.323778864899894 0.322050136651576 0.320357159620333 0.318702238662535 0.317087536444313 0.315515077943226 0.313986755265476 0.312504332708172 0.311069452001478 0.309683637670881 0.308348302465038 0.307064752799894 0.305834194174719 0.304657736520436 0.303536399445106 0.302471117345645 0.301462744358684 0.300512059127115 0.299619769362074 0.298786516183096 0.298012878221810 0.297299375476892 0.296646472910081 0.296054583774879 0.295524072671102 0.295055258319839 0.294648416054467 0.294303780024354 0.294021545108651 0.293801868538224 0.293644871224280 0.293550638792651 0.293519222323024 +0.290514492697176 0.290548059068246 0.290648743712383 0.290816503055366 0.291051263916784 0.291352922674754 0.291721344096101 0.292156359831716 0.292657766576791 0.293225323895808 0.293858751712404 0.294557727464653 0.295321882926885 0.296150800699940 0.297044010372742 0.298000984359354 0.299021133417166 0.300103801853719 0.301248262431797 0.302453710984947 0.303719260758437 0.305043936493974 0.306426668280164 0.307866285194849 0.309361508769990 0.310910946314803 0.312513084138256 0.313328784724157 0.313157535460519 0.313223093086578 0.313526274816502 0.314068423813693 0.314851414022711 0.315877656591936 0.317150107883626 0.318672279063368 0.320448247254780 0.318672279063367 0.317150107883626 0.315877656591936 0.314851414022711 0.314068423813693 0.313526274816505 0.313223093086578 0.313157535460519 0.313328784724157 0.312513084138256 0.310910946314803 0.309361508769990 0.307866285194849 0.306426668280164 0.305043936493974 0.303719260758437 0.302453710984947 0.301248262431797 0.300103801853719 0.299021133417166 0.298000984359354 0.297044010372742 0.296150800699940 0.295321882926885 0.294557727464653 0.293858751712404 0.293225323895808 0.292657766576791 0.292156359831716 0.291721344096101 0.291352922674754 0.291051263916785 0.290816503055366 0.290648743712383 0.290548059068246 0.290514492697176 0.290548059068246 0.290648743712383 0.290816503055366 0.291051263916785 0.291352922674754 0.291721344096101 0.292156359831716 0.292657766576791 0.293225323895808 0.293858751712404 0.294557727464653 0.295321882926885 0.296150800699940 0.297044010372742 0.298000984359354 0.299021133417166 0.300103801853719 0.301248262431797 0.302453710984947 0.303719260758437 0.305043936493974 0.306426668280164 0.307866285194849 0.309361508769990 0.310910946314803 0.312513084138256 0.313328784724157 0.313157535460520 0.313223093086577 0.313526274816505 0.314068423813693 0.314851414022711 0.315877656591936 0.317150107883626 0.318672279063367 0.320448247254780 0.318672279063367 0.317150107883626 0.315877656591936 0.314851414022711 0.314068423813693 0.313526274816505 0.313223093086577 0.313157535460520 0.313328784724157 0.312513084138256 0.310910946314803 0.309361508769990 0.307866285194849 0.306426668280164 0.305043936493974 0.303719260758437 0.302453710984947 0.301248262431797 0.300103801853719 0.299021133417166 0.298000984359354 0.297044010372742 0.296150800699940 0.295321882926885 0.294557727464653 0.293858751712404 0.293225323895808 0.292657766576791 0.292156359831716 0.291721344096101 0.291352922674754 0.291051263916785 0.290816503055366 0.290648743712383 0.290548059068246 0.290514492697176 +0.287332196122138 0.287367979767098 0.287475319421036 0.287654181055348 0.287904507336146 0.288226216694035 0.288619202020046 0.289083328986039 0.289618433987614 0.290224321707288 0.290900762295654 0.291647488168291 0.292464190416494 0.293350514830363 0.294306057533546 0.295330360230009 0.296422905064517 0.297583109100284 0.298810318419336 0.300103801853720 0.301462744358679 0.302886240042479 0.304373284871604 0.305515499686307 0.304357341252597 0.303443797519170 0.302773393624361 0.302345247001486 0.302159064802766 0.302215143588933 0.302514371290190 0.303058231449578 0.303848809764817 0.304888802949706 0.306181529940567 0.307730945476885 0.309541656087916 0.307730945476886 0.306181529940567 0.304888802949706 0.303848809764817 0.303058231449578 0.302514371290190 0.302215143588933 0.302159064802766 0.302345247001486 0.302773393624361 0.303443797519170 0.304357341252596 0.305515499686308 0.304373284871604 0.302886240042479 0.301462744358680 0.300103801853720 0.298810318419336 0.297583109100284 0.296422905064517 0.295330360230009 0.294306057533546 0.293350514830363 0.292464190416494 0.291647488168291 0.290900762295654 0.290224321707288 0.289618433987614 0.289083328986039 0.288619202020046 0.288226216694035 0.287904507336146 0.287654181055348 0.287475319421036 0.287367979767098 0.287332196122138 0.287367979767098 0.287475319421036 0.287654181055348 0.287904507336146 0.288226216694035 0.288619202020046 0.289083328986039 0.289618433987614 0.290224321707288 0.290900762295654 0.291647488168291 0.292464190416494 0.293350514830363 0.294306057533546 0.295330360230009 0.296422905064517 0.297583109100283 0.298810318419335 0.300103801853720 0.301462744358679 0.302886240042479 0.304373284871604 0.305515499686308 0.304357341252596 0.303443797519170 0.302773393624361 0.302345247001486 0.302159064802766 0.302215143588933 0.302514371290190 0.303058231449579 0.303848809764817 0.304888802949705 0.306181529940567 0.307730945476885 0.309541656087916 0.307730945476885 0.306181529940567 0.304888802949705 0.303848809764817 0.303058231449579 0.302514371290190 0.302215143588933 0.302159064802766 0.302345247001486 0.302773393624361 0.303443797519170 0.304357341252596 0.305515499686308 0.304373284871604 0.302886240042479 0.301462744358679 0.300103801853720 0.298810318419335 0.297583109100283 0.296422905064517 0.295330360230009 0.294306057533546 0.293350514830363 0.292464190416494 0.291647488168291 0.290900762295654 0.290224321707288 0.289618433987614 0.289083328986039 0.288619202020046 0.288226216694035 0.287904507336146 0.287654181055348 0.287475319421036 0.287367979767098 0.287332196122138 +0.283942822862789 0.283980900548321 0.284095126297654 0.284285477985314 0.284551918056052 0.284894392503895 0.285312829439345 0.285807137241362 0.286377202289956 0.287022886274490 0.287744023072317 0.288540415191911 0.289411829774559 0.290357994148734 0.291378590931643 0.292473252673121 0.293641556038139 0.294883015525614 0.296197076723220 0.297583109100282 0.299040398343903 0.297556410369628 0.295855721649565 0.294410168330153 0.293216708736186 0.292272982291229 0.291577299479520 0.291128634915998 0.290926623494746 0.290971559601626 0.291264399392408 0.291806766153595 0.292600958778839 0.293649963409745 0.294957468305665 0.296527882022521 0.298366354996084 0.296527882022522 0.294957468305666 0.293649963409745 0.292600958778839 0.291806766153598 0.291264399392408 0.290971559601626 0.290926623494746 0.291128634915997 0.291577299479520 0.292272982291229 0.293216708736186 0.294410168330153 0.295855721649561 0.297556410369628 0.299040398343904 0.297583109100281 0.296197076723220 0.294883015525614 0.293641556038139 0.292473252673122 0.291378590931643 0.290357994148734 0.289411829774559 0.288540415191911 0.287744023072317 0.287022886274490 0.286377202289955 0.285807137241362 0.285312829439345 0.284894392503895 0.284551918056052 0.284285477985314 0.284095126297654 0.283980900548321 0.283942822862789 0.283980900548321 0.284095126297654 0.284285477985314 0.284551918056052 0.284894392503895 0.285312829439344 0.285807137241362 0.286377202289956 0.287022886274490 0.287744023072317 0.288540415191911 0.289411829774559 0.290357994148734 0.291378590931643 0.292473252673122 0.293641556038139 0.294883015525614 0.296197076723220 0.297583109100282 0.299040398343904 0.297556410369628 0.295855721649561 0.294410168330152 0.293216708736186 0.292272982291229 0.291577299479521 0.291128634915998 0.290926623494746 0.290971559601626 0.291264399392408 0.291806766153597 0.292600958778840 0.293649963409745 0.294957468305665 0.296527882022521 0.298366354996084 0.296527882022521 0.294957468305665 0.293649963409745 0.292600958778840 0.291806766153597 0.291264399392408 0.290971559601626 0.290926623494746 0.291128634915998 0.291577299479521 0.292272982291229 0.293216708736186 0.294410168330152 0.295855721649565 0.297556410369628 0.299040398343904 0.297583109100281 0.296197076723220 0.294883015525614 0.293641556038139 0.292473252673122 0.291378590931643 0.290357994148734 0.289411829774559 0.288540415191911 0.287744023072317 0.287022886274490 0.286377202289956 0.285807137241362 0.285312829439344 0.284894392503895 0.284551918056052 0.284285477985314 0.284095126297654 0.283980900548321 0.283942822862789 +0.280311196832751 0.280351655234919 0.280473028024988 0.280675307733822 0.280958481179301 0.281322528363173 0.281767420921067 0.282293120120202 0.282899574397907 0.283586716432755 0.284354459738984 0.285202694773896 0.286131284547156 0.287140059720445 0.288228813185677 0.289397294110196 0.290645201437875 0.291972176836085 0.293080344018813 0.290527969203060 0.288250773164198 0.286242930240341 0.284499441065169 0.283016106231658 0.281789504404975 0.280816974728461 0.280096603397575 0.279627214307275 0.279408363708330 0.279440338837802 0.279724160518542 0.280261589752295 0.281055138360756 0.282108083759452 0.283424487980074 0.285009221088627 0.286867989179473 0.285009221088627 0.283424487980074 0.282108083759452 0.281055138360756 0.280261589752294 0.279724160518542 0.279440338837802 0.279408363708330 0.279627214307275 0.280096603397575 0.280816974728461 0.281789504404975 0.283016106231658 0.284499441065169 0.286242930240342 0.288250773164199 0.290527969203060 0.293080344018813 0.291972176836085 0.290645201437875 0.289397294110196 0.288228813185677 0.287140059720445 0.286131284547156 0.285202694773896 0.284354459738984 0.283586716432755 0.282899574397907 0.282293120120202 0.281767420921067 0.281322528363173 0.280958481179301 0.280675307733822 0.280473028024988 0.280351655234919 0.280311196832751 0.280351655234919 0.280473028024988 0.280675307733822 0.280958481179301 0.281322528363173 0.281767420921067 0.282293120120202 0.282899574397907 0.283586716432755 0.284354459738984 0.285202694773896 0.286131284547156 0.287140059720445 0.288228813185677 0.289397294110196 0.290645201437875 0.291972176836085 0.293080344018813 0.290527969203060 0.288250773164199 0.286242930240341 0.284499441065169 0.283016106231658 0.281789504404975 0.280816974728461 0.280096603397575 0.279627214307275 0.279408363708330 0.279440338837802 0.279724160518542 0.280261589752295 0.281055138360756 0.282108083759452 0.283424487980073 0.285009221088626 0.286867989179473 0.285009221088626 0.283424487980074 0.282108083759452 0.281055138360756 0.280261589752295 0.279724160518542 0.279440338837802 0.279408363708330 0.279627214307275 0.280096603397573 0.280816974728461 0.281789504404975 0.283016106231658 0.284499441065169 0.286242930240341 0.288250773164199 0.290527969203060 0.293080344018813 0.291972176836085 0.290645201437875 0.289397294110196 0.288228813185677 0.287140059720445 0.286131284547156 0.285202694773896 0.284354459738984 0.283586716432755 0.282899574397907 0.282293120120202 0.281767420921067 0.281322528363173 0.280958481179301 0.280675307733822 0.280473028024988 0.280351655234919 0.280311196832751 +0.276394928325097 0.276437864437384 0.276566676330394 0.276781374439586 0.277081975379617 0.277468500773611 0.277940975606027 0.278499426091116 0.279143877046798 0.279874348761741 0.280690853341493 0.281593390517795 0.282581942903652 0.283656470675439 0.284816905662350 0.286063144822834 0.287395043087490 0.284457479546302 0.281561737897254 0.278954573822834 0.276628521320974 0.274577081439090 0.272794682144113 0.271276644324330 0.270019153600952 0.269019237684375 0.268274749063906 0.267784352871216 0.267547519807360 0.267564524071429 0.267836446276591 0.268365181386822 0.269153451755497 0.270204825396109 0.271523739666048 0.273115530597224 0.274986468163133 0.273115530597224 0.271523739666048 0.270204825396109 0.269153451755497 0.268365181386822 0.267836446276591 0.267564524071427 0.267547519807360 0.267784352871213 0.268274749063905 0.269019237684375 0.270019153600951 0.271276644324330 0.272794682144113 0.274577081439090 0.276628521320974 0.278954573822834 0.281561737897254 0.284457479546302 0.287395043087490 0.286063144822834 0.284816905662349 0.283656470675439 0.282581942903652 0.281593390517795 0.280690853341493 0.279874348761741 0.279143877046798 0.278499426091116 0.277940975606027 0.277468500773611 0.277081975379617 0.276781374439586 0.276566676330394 0.276437864437384 0.276394928325097 0.276437864437384 0.276566676330394 0.276781374439586 0.277081975379617 0.277468500773611 0.277940975606027 0.278499426091116 0.279143877046798 0.279874348761741 0.280690853341493 0.281593390517795 0.282581942903651 0.283656470675439 0.284816905662349 0.286063144822835 0.287395043087490 0.284457479546302 0.281561737897254 0.278954573822834 0.276628521320974 0.274577081439090 0.272794682144113 0.271276644324329 0.270019153600952 0.269019237684375 0.268274749063904 0.267784352871213 0.267547519807360 0.267564524071428 0.267836446276591 0.268365181386822 0.269153451755498 0.270204825396109 0.271523739666048 0.273115530597223 0.274986468163133 0.273115530597223 0.271523739666048 0.270204825396109 0.269153451755498 0.268365181386822 0.267836446276591 0.267564524071428 0.267547519807360 0.267784352871213 0.268274749063904 0.269019237684375 0.270019153600952 0.271276644324329 0.272794682144112 0.274577081439090 0.276628521320974 0.278954573822834 0.281561737897254 0.284457479546302 0.287395043087490 0.286063144822835 0.284816905662349 0.283656470675439 0.282581942903651 0.281593390517795 0.280690853341493 0.279874348761741 0.279143877046798 0.278499426091116 0.277940975606027 0.277468500773611 0.277081975379617 0.276781374439586 0.276566676330394 0.276437864437384 0.276394928325097 +0.272142345069208 0.272187866360688 0.272324441052437 0.272552101354958 0.272870900146106 0.273280909756065 0.273782220255229 0.274374937233998 0.275059179060410 0.275835073598592 0.276702754368148 0.277662356121859 0.278714009816549 0.279857836949608 0.281093943231610 0.279380915849414 0.275812804493896 0.272559228618224 0.269609558640224 0.266954375118111 0.264585400440914 0.262495439702016 0.260678330052285 0.259128897937861 0.257842923726604 0.256817113317582 0.256049076411809 0.255537311200885 0.255281195304774 0.255280982861769 0.255537807744009 0.256053692941803 0.256831566230783 0.257875282308503 0.259189651662857 0.260780476514929 0.262654594264822 0.260780476514929 0.259189651662857 0.257875282308503 0.256831566230782 0.256053692941803 0.255537807744009 0.255280982861769 0.255281195304774 0.255537311200885 0.256049076411809 0.256817113317583 0.257842923726604 0.259128897937861 0.260678330052285 0.262495439702016 0.264585400440914 0.266954375118110 0.269609558640223 0.272559228618224 0.275812804493896 0.279380915849414 0.281093943231610 0.279857836949608 0.278714009816549 0.277662356121859 0.276702754368148 0.275835073598592 0.275059179060410 0.274374937233998 0.273782220255229 0.273280909756065 0.272870900146107 0.272552101354958 0.272324441052437 0.272187866360688 0.272142345069208 0.272187866360688 0.272324441052437 0.272552101354958 0.272870900146107 0.273280909756065 0.273782220255229 0.274374937233998 0.275059179060410 0.275835073598592 0.276702754368147 0.277662356121858 0.278714009816549 0.279857836949608 0.281093943231610 0.279380915849414 0.275812804493896 0.272559228618224 0.269609558640223 0.266954375118111 0.264585400440914 0.262495439702015 0.260678330052285 0.259128897937861 0.257842923726604 0.256817113317582 0.256049076411809 0.255537311200885 0.255281195304774 0.255280982861769 0.255537807744009 0.256053692941803 0.256831566230782 0.257875282308502 0.259189651662856 0.260780476514929 0.262654594264822 0.260780476514929 0.259189651662856 0.257875282308502 0.256831566230782 0.256053692941803 0.255537807744009 0.255280982861769 0.255281195304774 0.255537311200885 0.256049076411809 0.256817113317582 0.257842923726604 0.259128897937861 0.260678330052284 0.262495439702015 0.264585400440914 0.266954375118111 0.269609558640223 0.272559228618224 0.275812804493896 0.279380915849414 0.281093943231610 0.279857836949608 0.278714009816549 0.277662356121858 0.276702754368148 0.275835073598592 0.275059179060410 0.274374937233998 0.273782220255229 0.273280909756065 0.272870900146107 0.272552101354958 0.272324441052437 0.272187866360688 0.272142345069208 +0.267489682116030 0.267537906192402 0.267682598049778 0.267923816330285 0.268261657959905 0.268696256924905 0.269227782544347 0.269856437224282 0.270582453675048 0.271406091569108 0.272327633612820 0.273347381001625 0.274465648224289 0.275349881250827 0.271038791231645 0.267077325707730 0.263450695090555 0.260145683645287 0.257150536671493 0.254454862180789 0.252049545628943 0.249926676477054 0.248079485546767 0.246502292301959 0.245190461338884 0.244140367500830 0.243349369155786 0.242815789288449 0.242538904163947 0.242518939421748 0.242757073556675 0.243255448841572 0.244017189845015 0.245046429799325 0.246348345181514 0.247929198984276 0.249796393278842 0.247929198984276 0.246348345181513 0.245046429799326 0.244017189845015 0.243255448841572 0.242757073556676 0.242518939421748 0.242538904163947 0.242815789288450 0.243349369155786 0.244140367500830 0.245190461338884 0.246502292301959 0.248079485546767 0.249926676477054 0.252049545628943 0.254454862180789 0.257150536671493 0.260145683645288 0.263450695090555 0.267077325707729 0.271038791231646 0.275349881250827 0.274465648224289 0.273347381001625 0.272327633612820 0.271406091569108 0.270582453675048 0.269856437224282 0.269227782544347 0.268696256924905 0.268261657959905 0.267923816330285 0.267682598049778 0.267537906192402 0.267489682116030 0.267537906192402 0.267682598049778 0.267923816330285 0.268261657959906 0.268696256924905 0.269227782544347 0.269856437224282 0.270582453675048 0.271406091569108 0.272327633612820 0.273347381001625 0.274465648224288 0.275349881250827 0.271038791231645 0.267077325707730 0.263450695090555 0.260145683645287 0.257150536671493 0.254454862180789 0.252049545628943 0.249926676477054 0.248079485546767 0.246502292301959 0.245190461338884 0.244140367500830 0.243349369155786 0.242815789288449 0.242538904163947 0.242518939421748 0.242757073556676 0.243255448841572 0.244017189845016 0.245046429799326 0.246348345181513 0.247929198984276 0.249796393278842 0.247929198984276 0.246348345181513 0.245046429799326 0.244017189845016 0.243255448841572 0.242757073556676 0.242518939421748 0.242538904163947 0.242815789288449 0.243349369155787 0.244140367500830 0.245190461338884 0.246502292301959 0.248079485546767 0.249926676477054 0.252049545628943 0.254454862180789 0.257150536671493 0.260145683645287 0.263450695090555 0.267077325707730 0.271038791231646 0.275349881250827 0.274465648224288 0.273347381001625 0.272327633612820 0.271406091569108 0.270582453675048 0.269856437224282 0.269227782544347 0.268696256924905 0.268261657959906 0.267923816330285 0.267682598049778 0.267537906192402 0.267489682116030 +0.262357199085740 0.262408252423413 0.262561442757171 0.262816860816159 0.263174657036104 0.263635040380980 0.264198276675152 0.264864686427796 0.265634642126088 0.266508564968385 0.267486921003248 0.268570216634803 0.267292587458292 0.262541346217646 0.258167008139821 0.254151275277381 0.250477797658890 0.247132011862216 0.244101000823696 0.241373372424363 0.238939154780909 0.236789706498703 0.234917640427830 0.233316759709072 0.231982005112055 0.230909412858562 0.230096082295328 0.229540152936711 0.229240790542716 0.229198182034934 0.229413539185907 0.229889111148664 0.230628206026443 0.231635221820347 0.232915687238706 0.234476313009562 0.236325054510703 0.234476313009563 0.232915687238706 0.231635221820347 0.230628206026443 0.229889111148664 0.229413539185908 0.229198182034934 0.229240790542715 0.229540152936711 0.230096082295326 0.230909412858562 0.231982005112057 0.233316759709072 0.234917640427830 0.236789706498703 0.238939154780909 0.241373372424363 0.244101000823696 0.247132011862216 0.250477797658890 0.254151275277381 0.258167008139821 0.262541346217647 0.267292587458292 0.268570216634804 0.267486921003248 0.266508564968385 0.265634642126088 0.264864686427796 0.264198276675152 0.263635040380980 0.263174657036104 0.262816860816159 0.262561442757171 0.262408252423413 0.262357199085740 0.262408252423412 0.262561442757171 0.262816860816159 0.263174657036104 0.263635040380980 0.264198276675152 0.264864686427796 0.265634642126088 0.266508564968385 0.267486921003248 0.268570216634803 0.267292587458292 0.262541346217646 0.258167008139821 0.254151275277381 0.250477797658890 0.247132011862216 0.244101000823696 0.241373372424363 0.238939154780908 0.236789706498703 0.234917640427830 0.233316759709073 0.231982005112056 0.230909412858562 0.230096082295325 0.229540152936711 0.229240790542716 0.229198182034934 0.229413539185908 0.229889111148664 0.230628206026443 0.231635221820347 0.232915687238706 0.234476313009562 0.236325054510703 0.234476313009562 0.232915687238706 0.231635221820347 0.230628206026443 0.229889111148664 0.229413539185908 0.229198182034934 0.229240790542716 0.229540152936711 0.230096082295325 0.230909412858562 0.231982005112056 0.233316759709073 0.234917640427831 0.236789706498703 0.238939154780908 0.241373372424363 0.244101000823696 0.247132011862216 0.250477797658889 0.254151275277381 0.258167008139821 0.262541346217646 0.267292587458292 0.268570216634803 0.267486921003248 0.266508564968385 0.265634642126088 0.264864686427796 0.264198276675152 0.263635040380980 0.263174657036104 0.262816860816159 0.262561442757171 0.262408252423412 0.262357199085740 +0.256643712651299 0.256697727650221 0.256859815965231 0.257130107343615 0.257508817336238 0.257996246244679 0.258592777625264 0.259298876327892 0.260115086041036 0.261042026307622 0.262080388969659 0.259003684590322 0.253786128517079 0.248977843137468 0.244556198334719 0.240501010168617 0.236794310091470 0.233420145704844 0.230364408911624 0.227614688005358 0.225160140812080 0.222991386481761 0.221100413934279 0.219480505313442 0.218126173103108 0.217033109822402 0.216198149449616 0.215619239934379 0.215295426350352 0.215226844421860 0.215414724332147 0.215861404892888 0.216570358329106 0.217546226114754 0.218794866487487 0.220323414481409 0.222140355550074 0.220323414481409 0.218794866487487 0.217546226114754 0.216570358329106 0.215861404892888 0.215414724332147 0.215226844421859 0.215295426350351 0.215619239934379 0.216198149449616 0.217033109822402 0.218126173103109 0.219480505313439 0.221100413934279 0.222991386481759 0.225160140812080 0.227614688005358 0.230364408911624 0.233420145704844 0.236794310091470 0.240501010168616 0.244556198334720 0.248977843137468 0.253786128517079 0.259003684590323 0.262080388969659 0.261042026307622 0.260115086041036 0.259298876327892 0.258592777625264 0.257996246244679 0.257508817336238 0.257130107343615 0.256859815965231 0.256697727650221 0.256643712651299 0.256697727650221 0.256859815965231 0.257130107343615 0.257508817336238 0.257996246244679 0.258592777625264 0.259298876327892 0.260115086041036 0.261042026307622 0.262080388969659 0.259003684590323 0.253786128517079 0.248977843137468 0.244556198334719 0.240501010168616 0.236794310091470 0.233420145704844 0.230364408911624 0.227614688005358 0.225160140812080 0.222991386481758 0.221100413934279 0.219480505313442 0.218126173103108 0.217033109822402 0.216198149449616 0.215619239934380 0.215295426350351 0.215226844421859 0.215414724332147 0.215861404892888 0.216570358329106 0.217546226114754 0.218794866487487 0.220323414481409 0.222140355550074 0.220323414481409 0.218794866487487 0.217546226114754 0.216570358329106 0.215861404892888 0.215414724332147 0.215226844421859 0.215295426350351 0.215619239934379 0.216198149449616 0.217033109822402 0.218126173103108 0.219480505313442 0.221100413934279 0.222991386481758 0.225160140812080 0.227614688005358 0.230364408911624 0.233420145704844 0.236794310091470 0.240501010168616 0.244556198334719 0.248977843137468 0.253786128517079 0.259003684590323 0.262080388969659 0.261042026307622 0.260115086041036 0.259298876327892 0.258592777625264 0.257996246244679 0.257508817336238 0.257130107343615 0.256859815965231 0.256697727650221 0.256643712651299 +0.250218732541881 0.250275841552998 0.250447227749870 0.250733068465049 0.251133658722572 0.251649410430026 0.252280851222161 0.253028622930456 0.253893479645353 0.254876285329871 0.250356241400494 0.244643530062279 0.239378785911581 0.234533963081321 0.230084136242088 0.226007169246718 0.222283431392438 0.218895554311475 0.215828223734016 0.213068001373659 0.210603173012844 0.208423619550576 0.206520708346325 0.204887202675425 0.203517187521259 0.202406010282910 0.201550235286337 0.200947611262837 0.200597051209280 0.200498624278535 0.200653559572055 0.201064261927068 0.201734340014080 0.202668647293518 0.203873336630025 0.205355929637280 0.207125402133746 0.205355929637279 0.203873336630025 0.202668647293518 0.201734340014081 0.201064261927067 0.200653559572055 0.200498624278535 0.200597051209281 0.200947611262837 0.201550235286337 0.202406010282910 0.203517187521259 0.204887202675425 0.206520708346324 0.208423619550576 0.210603173012843 0.213068001373659 0.215828223734016 0.218895554311475 0.222283431392435 0.226007169246718 0.230084136242088 0.234533963081322 0.239378785911581 0.244643530062280 0.250356241400493 0.254876285329872 0.253893479645353 0.253028622930456 0.252280851222161 0.251649410430026 0.251133658722572 0.250733068465049 0.250447227749870 0.250275841552998 0.250218732541881 0.250275841552998 0.250447227749870 0.250733068465049 0.251133658722572 0.251649410430026 0.252280851222161 0.253028622930456 0.253893479645353 0.254876285329872 0.250356241400495 0.244643530062280 0.239378785911581 0.234533963081322 0.230084136242088 0.226007169246718 0.222283431392438 0.218895554311475 0.215828223734017 0.213068001373659 0.210603173012843 0.208423619550576 0.206520708346325 0.204887202675426 0.203517187521259 0.202406010282910 0.201550235286337 0.200947611262837 0.200597051209280 0.200498624278536 0.200653559572055 0.201064261927067 0.201734340014081 0.202668647293519 0.203873336630025 0.205355929637279 0.207125402133746 0.205355929637279 0.203873336630025 0.202668647293519 0.201734340014081 0.201064261927067 0.200653559572055 0.200498624278536 0.200597051209281 0.200947611262837 0.201550235286337 0.202406010282910 0.203517187521259 0.204887202675426 0.206520708346325 0.208423619550576 0.210603173012843 0.213068001373659 0.215828223734017 0.218895554311475 0.222283431392434 0.226007169246718 0.230084136242088 0.234533963081322 0.239378785911581 0.244643530062280 0.250356241400493 0.254876285329872 0.253893479645353 0.253028622930456 0.252280851222161 0.251649410430026 0.251133658722572 0.250733068465049 0.250447227749870 0.250275841552998 0.250218732541881 +0.242910876983901 0.242971200865855 0.243152251064478 0.243454263164981 0.243877629561976 0.244422899074876 0.245090776382307 0.245882121247894 0.246797947501286 0.241185319409037 0.234946091381067 0.229201437744481 0.223916447420706 0.219060258805244 0.214605579739058 0.210528280746951 0.206807049656947 0.203423097960091 0.200359911063303 0.197603036030153 0.195139901572556 0.192959666010132 0.191053089698777 0.189412429082503 0.188031350070722 0.186904858909772 0.186029249121218 0.185402063434878 0.185022069965156 0.184889252175306 0.185004812456345 0.185371189424069 0.185992089318497 0.186872532183800 0.188018913823654 0.189439084877525 0.191142448760655 0.189439084877525 0.188018913823655 0.186872532183800 0.185992089318496 0.185371189424068 0.185004812456345 0.184889252175306 0.185022069965156 0.185402063434878 0.186029249121218 0.186904858909772 0.188031350070722 0.189412429082503 0.191053089698777 0.192959666010132 0.195139901572556 0.197603036030153 0.200359911063304 0.203423097960091 0.206807049656947 0.210528280746951 0.214605579739058 0.219060258805244 0.223916447420701 0.229201437744481 0.234946091381067 0.241185319409037 0.246797947501286 0.245882121247894 0.245090776382307 0.244422899074876 0.243877629561976 0.243454263164981 0.243152251064478 0.242971200865855 0.242910876983901 0.242971200865855 0.243152251064478 0.243454263164981 0.243877629561976 0.244422899074876 0.245090776382307 0.245882121247894 0.246797947501286 0.241185319409037 0.234946091381067 0.229201437744481 0.223916447420706 0.219060258805244 0.214605579739058 0.210528280746951 0.206807049656947 0.203423097960091 0.200359911063304 0.197603036030153 0.195139901572556 0.192959666010132 0.191053089698776 0.189412429082503 0.188031350070722 0.186904858909772 0.186029249121219 0.185402063434879 0.185022069965156 0.184889252175306 0.185004812456345 0.185371189424068 0.185992089318496 0.186872532183800 0.188018913823654 0.189439084877525 0.191142448760655 0.189439084877525 0.188018913823654 0.186872532183800 0.185992089318496 0.185371189424068 0.185004812456345 0.184889252175306 0.185022069965156 0.185402063434879 0.186029249121219 0.186904858909772 0.188031350070722 0.189412429082503 0.191053089698777 0.192959666010132 0.195139901572556 0.197603036030153 0.200359911063304 0.203423097960091 0.206807049656947 0.210528280746951 0.214605579739058 0.219060258805244 0.223916447420706 0.229201437744481 0.234946091381067 0.241185319409037 0.246797947501286 0.245882121247894 0.245090776382307 0.244422899074876 0.243877629561976 0.243454263164981 0.243152251064478 0.242971200865855 0.242910876983901 +0.234490336073720 0.234553962709811 0.234744944992251 0.235063590108523 0.235510410250763 0.236086122922610 0.236791651343247 0.237628124922433 0.231271195982904 0.224472342823035 0.218224607732236 0.212484242086143 0.207212851070934 0.202376688876131 0.197946069131921 0.193894870047706 0.190200117886551 0.186841635671303 0.183801746582271 0.181065023538063 0.178618078073698 0.176449382935767 0.174549123875246 0.172909076988043 0.171522508674958 0.170384095899144 0.169489864937319 0.168837147272490 0.168424551678614 0.168251951916790 0.168320489812013 0.168632593821225 0.169192013550312 0.170003871041489 0.171074730047177 0.172412684946779 0.174027471466271 0.172412684946779 0.171074730047176 0.170003871041489 0.169192013550312 0.168632593821225 0.168320489812013 0.168251951916790 0.168424551678613 0.168837147272491 0.169489864937319 0.170384095899144 0.171522508674958 0.172909076988043 0.174549123875246 0.176449382935767 0.178618078073695 0.181065023538063 0.183801746582270 0.186841635671303 0.190200117886552 0.193894870047706 0.197946069131924 0.202376688876131 0.207212851070934 0.212484242086142 0.218224607732236 0.224472342823035 0.231271195982904 0.237628124922433 0.236791651343247 0.236086122922610 0.235510410250763 0.235063590108524 0.234744944992251 0.234553962709811 0.234490336073720 0.234553962709811 0.234744944992251 0.235063590108524 0.235510410250763 0.236086122922609 0.236791651343247 0.237628124922433 0.231271195982904 0.224472342823035 0.218224607732236 0.212484242086144 0.207212851070938 0.202376688876131 0.197946069131924 0.193894870047706 0.190200117886551 0.186841635671306 0.183801746582270 0.181065023538063 0.178618078073695 0.176449382935765 0.174549123875246 0.172909076988043 0.171522508674958 0.170384095899144 0.169489864937319 0.168837147272491 0.168424551678614 0.168251951916790 0.168320489812013 0.168632593821225 0.169192013550312 0.170003871041489 0.171074730047177 0.172412684946779 0.174027471466271 0.172412684946779 0.171074730047177 0.170003871041489 0.169192013550312 0.168632593821225 0.168320489812013 0.168251951916790 0.168424551678614 0.168837147272491 0.169489864937319 0.170384095899144 0.171522508674958 0.172909076988043 0.174549123875246 0.176449382935765 0.178618078073695 0.181065023538063 0.183801746582270 0.186841635671306 0.190200117886549 0.193894870047706 0.197946069131924 0.202376688876131 0.207212851070938 0.212484242086144 0.218224607732236 0.224472342823035 0.231271195982904 0.237628124922433 0.236791651343247 0.236086122922609 0.235510410250763 0.235063590108524 0.234744944992251 0.234553962709811 0.234490336073720 +0.224641478933792 0.224708422885677 0.224909386480475 0.225244765218899 0.225715219210759 0.226321674579748 0.227065325413518 0.220312926586071 0.212921649383271 0.206150551326092 0.199944316172900 0.194254851975911 0.189040237548618 0.184263854915549 0.179893671403275 0.175901643026968 0.172263216911998 0.168956915160988 0.165963986192662 0.163268112400808 0.160855165202551 0.158713000308092 0.156831287456221 0.155201370002815 0.153816150685075 0.152670000661028 0.151758689579143 0.151079334997376 0.150630369969159 0.150411528066562 0.150423845536336 0.150669680699517 0.151152751125809 0.151878189556625 0.152852620033248 0.154084256229363 0.155583024613956 0.154084256229363 0.152852620033248 0.151878189556625 0.151152751125809 0.150669680699517 0.150423845536336 0.150411528066563 0.150630369969159 0.151079334997376 0.151758689579143 0.152670000661028 0.153816150685075 0.155201370002815 0.156831287456221 0.158713000308092 0.160855165202550 0.163268112400809 0.165963986192662 0.168956915160986 0.172263216911998 0.175901643026968 0.179893671403275 0.184263854915549 0.189040237548618 0.194254851975911 0.199944316172896 0.206150551326092 0.212921649383271 0.220312926586071 0.227065325413518 0.226321674579748 0.225715219210759 0.225244765218899 0.224909386480475 0.224708422885677 0.224641478933792 0.224708422885677 0.224909386480475 0.225244765218899 0.225715219210759 0.226321674579747 0.227065325413518 0.220312926586071 0.212921649383271 0.206150551326092 0.199944316172900 0.194254851975911 0.189040237548618 0.184263854915549 0.179893671403275 0.175901643026968 0.172263216911998 0.168956915160989 0.165963986192662 0.163268112400809 0.160855165202551 0.158713000308092 0.156831287456221 0.155201370002815 0.153816150685075 0.152670000661028 0.151758689579144 0.151079334997376 0.150630369969159 0.150411528066562 0.150423845536336 0.150669680699517 0.151152751125810 0.151878189556625 0.152852620033248 0.154084256229363 0.155583024613956 0.154084256229363 0.152852620033248 0.151878189556625 0.151152751125810 0.150669680699517 0.150423845536336 0.150411528066562 0.150630369969159 0.151079334997376 0.151758689579144 0.152670000661028 0.153816150685074 0.155201370002815 0.156831287456222 0.158713000308092 0.160855165202551 0.163268112400809 0.165963986192662 0.168956915160989 0.172263216911998 0.175901643026968 0.179893671403275 0.184263854915549 0.189040237548618 0.194254851975911 0.199944316172895 0.206150551326092 0.212921649383271 0.220312926586071 0.227065325413518 0.226321674579747 0.225715219210759 0.225244765218899 0.224909386480475 0.224708422885677 0.224641478933792 +0.212918471534926 0.212988597087250 0.213199141711221 0.213550609931651 0.214043844703739 0.214680030537510 0.207885086618161 0.199873641858518 0.192567161706288 0.185894922347673 0.179796169468403 0.174218507648436 0.169116599009373 0.164451104849602 0.160187819849109 0.156296960148783 0.152752575369647 0.149532061247540 0.146615754592595 0.143986596150945 0.141629849945330 0.139532870017832 0.137684907351921 0.136076951230899 0.134701600485532 0.133552961063101 0.132626567166360 0.131919323905198 0.131429470009829 0.131156559699661 0.131101463310799 0.131266386779002 0.131654910574903 0.132272049215680 0.133124333055446 0.134219914711807 0.135568703250008 0.134219914711808 0.133124333055446 0.132272049215680 0.131654910574903 0.131266386779002 0.131101463310799 0.131156559699661 0.131429470009829 0.131919323905198 0.132626567166360 0.133552961063102 0.134701600485532 0.136076951230899 0.137684907351921 0.139532870017832 0.141629849945330 0.143986596150945 0.146615754592595 0.149532061247540 0.152752575369647 0.156296960148784 0.160187819849109 0.164451104849602 0.169116599009373 0.174218507648436 0.179796169468403 0.185894922347673 0.192567161706288 0.199873641858521 0.207885086618161 0.214680030537511 0.214043844703739 0.213550609931651 0.213199141711221 0.212988597087250 0.212918471534926 0.212988597087250 0.213199141711221 0.213550609931651 0.214043844703739 0.214680030537510 0.207885086618161 0.199873641858518 0.192567161706288 0.185894922347673 0.179796169468403 0.174218507648436 0.169116599009373 0.164451104849602 0.160187819849109 0.156296960148783 0.152752575369647 0.149532061247540 0.146615754592595 0.143986596150945 0.141629849945330 0.139532870017832 0.137684907351922 0.136076951230899 0.134701600485532 0.133552961063101 0.132626567166359 0.131919323905197 0.131429470009829 0.131156559699661 0.131101463310799 0.131266386779002 0.131654910574903 0.132272049215680 0.133124333055446 0.134219914711808 0.135568703250008 0.134219914711808 0.133124333055446 0.132272049215680 0.131654910574903 0.131266386779002 0.131101463310799 0.131156559699661 0.131429470009829 0.131919323905197 0.132626567166359 0.133552961063101 0.134701600485532 0.136076951230898 0.137684907351921 0.139532870017832 0.141629849945330 0.143986596150945 0.146615754592595 0.149532061247540 0.152752575369647 0.156296960148783 0.160187819849109 0.164451104849602 0.169116599009373 0.174218507648436 0.179796169468403 0.185894922347673 0.192567161706288 0.199873641858518 0.207885086618161 0.214680030537510 0.214043844703739 0.213550609931651 0.213199141711221 0.212988597087250 0.212918471534926 +0.198670192248349 0.198743062334798 0.198961884994301 0.199327298578694 0.199840370854200 0.193363745424136 0.184719985441384 0.176885393911858 0.169768372370455 0.163291421968744 0.157388613555314 0.152003590182047 0.147087976579026 0.142600102925176 0.138503973708526 0.134768429474005 0.131366461719691 0.128274650436216 0.125472700696028 0.122943059924700 0.120670601475379 0.118642363202403 0.116847332124430 0.115276268152046 0.113921561356546 0.112777118470108 0.111838275305334 0.111101732619902 0.110565513674372 0.110228942374020 0.110092641480116 0.110158550949840 0.110429967043386 0.110911603448936 0.111609676350186 0.112532016130854 0.113688209316801 0.112532016130854 0.111609676350186 0.110911603448936 0.110429967043386 0.110158550949841 0.110092641480116 0.110228942374020 0.110565513674373 0.111101732619901 0.111838275305334 0.112777118470109 0.113921561356546 0.115276268152046 0.116847332124430 0.118642363202403 0.120670601475379 0.122943059924701 0.125472700696027 0.128274650436216 0.131366461719691 0.134768429474005 0.138503973708526 0.142600102925176 0.147087976579026 0.152003590182047 0.157388613555314 0.163291421968744 0.169768372370456 0.176885393911859 0.184719985441384 0.193363745424136 0.199840370854200 0.199327298578694 0.198961884994301 0.198743062334798 0.198670192248349 0.198743062334798 0.198961884994301 0.199327298578694 0.199840370854200 0.193363745424140 0.184719985441384 0.176885393911858 0.169768372370455 0.163291421968744 0.157388613555316 0.152003590182047 0.147087976579026 0.142600102925176 0.138503973708526 0.134768429474004 0.131366461719691 0.128274650436216 0.125472700696028 0.122943059924700 0.120670601475379 0.118642363202403 0.116847332124430 0.115276268152046 0.113921561356546 0.112777118470109 0.111838275305334 0.111101732619901 0.110565513674373 0.110228942374020 0.110092641480116 0.110158550949841 0.110429967043387 0.110911603448936 0.111609676350186 0.112532016130854 0.113688209316801 0.112532016130854 0.111609676350186 0.110911603448936 0.110429967043387 0.110158550949841 0.110092641480116 0.110228942374020 0.110565513674373 0.111101732619901 0.111838275305334 0.112777118470109 0.113921561356546 0.115276268152046 0.116847332124430 0.118642363202403 0.120670601475379 0.122943059924700 0.125472700696028 0.128274650436216 0.131366461719691 0.134768429474004 0.138503973708526 0.142600102925176 0.147087976579026 0.152003590182047 0.157388613555314 0.163291421968744 0.169768372370455 0.176885393911858 0.184719985441384 0.193363745424140 0.199840370854200 0.199327298578694 0.198961884994301 0.198743062334798 0.198670192248349 +0.180906434270191 0.180981000985485 0.181204966794970 0.181579130651309 0.175792725762269 0.166543681093954 0.158230700602094 0.150733522043279 0.143952351097575 0.137803760881318 0.132217545353252 0.127134278171618 0.122503399951661 0.118281706000354 0.114432140927217 0.110922830846437 0.107726301338494 0.104818842019745 0.102179987887189 0.099792094529522 0.097639989494616 0.095710686048618 0.093993148587301 0.092478101306811 0.091157873583513 0.090026276980312 0.089078509986195 0.088311087580296 0.087721793548798 0.087309654218619 0.087074932944497 0.087019145330137 0.087145095811506 0.087456936914115 0.087960253251557 0.088662173201289 0.089571512225776 0.088662173201289 0.087960253251557 0.087456936914115 0.087145095811506 0.087019145330136 0.087074932944496 0.087309654218619 0.087721793548799 0.088311087580295 0.089078509986195 0.090026276980312 0.091157873583514 0.092478101306811 0.093993148587301 0.095710686048617 0.097639989494616 0.099792094529522 0.102179987887189 0.104818842019745 0.107726301338494 0.110922830846437 0.114432140927217 0.118281706000354 0.122503399951659 0.127134278171618 0.132217545353252 0.137803760881318 0.143952351097575 0.150733522043279 0.158230700602093 0.166543681093954 0.175792725762269 0.181579130651309 0.181204966794970 0.180981000985485 0.180906434270191 0.180981000985485 0.181204966794970 0.181579130651310 0.175792725762269 0.166543681093954 0.158230700602094 0.150733522043279 0.143952351097575 0.137803760881318 0.132217545353254 0.127134278171618 0.122503399951660 0.118281706000354 0.114432140927217 0.110922830846437 0.107726301338494 0.104818842019745 0.102179987887190 0.099792094529522 0.097639989494615 0.095710686048617 0.093993148587301 0.092478101306812 0.091157873583513 0.090026276980312 0.089078509986195 0.088311087580295 0.087721793548798 0.087309654218619 0.087074932944496 0.087019145330137 0.087145095811506 0.087456936914115 0.087960253251557 0.088662173201289 0.089571512225776 0.088662173201289 0.087960253251557 0.087456936914115 0.087145095811506 0.087019145330137 0.087074932944496 0.087309654218619 0.087721793548799 0.088311087580295 0.089078509986195 0.090026276980312 0.091157873583513 0.092478101306812 0.093993148587301 0.095710686048617 0.097639989494615 0.099792094529522 0.102179987887190 0.104818842019745 0.107726301338494 0.110922830846437 0.114432140927217 0.118281706000354 0.122503399951660 0.127134278171618 0.132217545353251 0.137803760881318 0.143952351097575 0.150733522043279 0.158230700602094 0.166543681093954 0.175792725762269 0.181579130651310 0.181204966794970 0.180981000985485 0.180906434270191 +0.158043801291114 0.158117733483479 0.158339855152079 0.153625239518019 0.143891934220221 0.135243572238250 0.127520501529787 0.120593538862890 0.114357098137145 0.108724103448275 0.103622169216790 0.098990694563268 0.094778627183627 0.090942724195375 0.087446186538524 0.084257577457220 0.081349959396734 0.078700200582721 0.076288414747539 0.074097506363186 0.072112800302102 0.070321739742750 0.068713639830902 0.067279487427486 0.066011779453839 0.064904394054600 0.063952490161798 0.063152432154052 0.062501737233369 0.061999043944878 0.061644100988175 0.061437776152685 0.061382085890805 0.061480246758917 0.061736750748238 0.062157467442102 0.062749777031599 0.062157467442102 0.061736750748238 0.061480246758917 0.061382085890805 0.061437776152685 0.061644100988174 0.061999043944878 0.062501737233369 0.063152432154051 0.063952490161798 0.064904394054600 0.066011779453839 0.067279487427486 0.068713639830902 0.070321739742750 0.072112800302102 0.074097506363186 0.076288414747539 0.078700200582721 0.081349959396734 0.084257577457219 0.087446186538524 0.090942724195375 0.094778627183626 0.098990694563268 0.103622169216790 0.108724103448274 0.114357098137146 0.120593538862891 0.127520501529787 0.135243572238250 0.143891934220221 0.153625239518018 0.158339855152079 0.158117733483479 0.158043801291114 0.158117733483479 0.158339855152079 0.153625239518018 0.143891934220220 0.135243572238251 0.127520501529787 0.120593538862891 0.114357098137146 0.108724103448274 0.103622169216792 0.098990694563268 0.094778627183627 0.090942724195375 0.087446186538524 0.084257577457219 0.081349959396734 0.078700200582721 0.076288414747539 0.074097506363186 0.072112800302101 0.070321739742750 0.068713639830902 0.067279487427486 0.066011779453839 0.064904394054600 0.063952490161798 0.063152432154051 0.062501737233369 0.061999043944878 0.061644100988174 0.061437776152685 0.061382085890805 0.061480246758917 0.061736750748238 0.062157467442102 0.062749777031599 0.062157467442102 0.061736750748238 0.061480246758917 0.061382085890805 0.061437776152685 0.061644100988174 0.061999043944878 0.062501737233369 0.063152432154051 0.063952490161798 0.064904394054600 0.066011779453839 0.067279487427486 0.068713639830903 0.070321739742750 0.072112800302101 0.074097506363186 0.076288414747539 0.078700200582721 0.081349959396734 0.084257577457219 0.087446186538524 0.090942724195375 0.094778627183627 0.098990694563268 0.103622169216790 0.108724103448274 0.114357098137146 0.120593538862891 0.127520501529787 0.135243572238251 0.143891934220220 0.153625239518018 0.158339855152079 0.158117733483479 0.158043801291114 +0.127382839067040 0.127450940016079 0.124180525860161 0.114314255439868 0.105686026187280 0.098084307503329 0.091343602442236 0.085332619907597 0.079945919312482 0.075097894317199 0.070718366260318 0.066749306810854 0.063142366639337 0.059856988550224 0.056858950573399 0.054119229582580 0.051613106823623 0.049319458138258 0.047220186751878 0.045299767268961 0.043544877316128 0.041944098983782 0.040487676450803 0.039167319353165 0.037976043870717 0.036908045365643 0.035958597861677 0.035123976815220 0.034401402580552 0.033789002774776 0.033285792454682 0.032891671670077 0.032607440594999 0.032434833097289 0.032376570328849 0.032436436750025 0.032619381999602 0.032436436750025 0.032376570328849 0.032434833097289 0.032607440594999 0.032891671670077 0.033285792454682 0.033789002774776 0.034401402580552 0.035123976815220 0.035958597861677 0.036908045365643 0.037976043870717 0.039167319353165 0.040487676450803 0.041944098983781 0.043544877316128 0.045299767268962 0.047220186751878 0.049319458138258 0.051613106823623 0.054119229582579 0.056858950573399 0.059856988550225 0.063142366639336 0.066749306810854 0.070718366260317 0.075097894317199 0.079945919312483 0.085332619907598 0.091343602442233 0.098084307503329 0.105686026187280 0.114314255439863 0.124180525860161 0.127450940016079 0.127382839067040 0.127450940016079 0.124180525860161 0.114314255439863 0.105686026187280 0.098084307503329 0.091343602442236 0.085332619907597 0.079945919312483 0.075097894317199 0.070718366260318 0.066749306810854 0.063142366639337 0.059856988550224 0.056858950573399 0.054119229582579 0.051613106823624 0.049319458138258 0.047220186751878 0.045299767268961 0.043544877316128 0.041944098983781 0.040487676450802 0.039167319353165 0.037976043870717 0.036908045365643 0.035958597861677 0.035123976815220 0.034401402580552 0.033789002774776 0.033285792454682 0.032891671670077 0.032607440594999 0.032434833097289 0.032376570328849 0.032436436750025 0.032619381999602 0.032436436750025 0.032376570328849 0.032434833097289 0.032607440594999 0.032891671670077 0.033285792454682 0.033789002774776 0.034401402580552 0.035123976815220 0.035958597861677 0.036908045365643 0.037976043870717 0.039167319353165 0.040487676450803 0.041944098983781 0.043544877316128 0.045299767268961 0.047220186751878 0.049319458138258 0.051613106823623 0.054119229582579 0.056858950573399 0.059856988550224 0.063142366639337 0.066749306810854 0.070718366260317 0.075097894317199 0.079945919312483 0.085332619907597 0.091343602442236 0.098084307503329 0.105686026187280 0.114314255439863 0.124180525860161 0.127450940016079 0.127382839067040 +0.083913773988589 0.082366122445240 0.073323796185293 0.065591199132830 0.058903181686961 0.053061799308286 0.047916307264104 0.043349901449800 0.039270692688029 0.035605417415278 0.032294963644286 0.029291129215476 0.026554233971051 0.024051334710180 0.021754872828855 0.019641637316926 0.017691960831317 0.015889090265255 0.014218689529359 0.012668443637777 0.011227741249292 0.009887418594852 0.008639551924462 0.007477288696796 0.006394710035534 0.005386718710285 0.004448948224050 0.003577689615593 0.002769833395406 0.002022824688308 0.001334630200349 0.000703716098675 0.000129036320923 -0.000389968757435 -0.000853362946765 -0.001260693344996 -0.001610956569497 -0.001260693344996 -0.000853362946765 -0.000389968757435 0.000129036320923 0.000703716098676 0.001334630200349 0.002022824688308 0.002769833395406 0.003577689615593 0.004448948224050 0.005386718710286 0.006394710035534 0.007477288696796 0.008639551924462 0.009887418594852 0.011227741249292 0.012668443637777 0.014218689529359 0.015889090265255 0.017691960831317 0.019641637316926 0.021754872828856 0.024051334710180 0.026554233971050 0.029291129215476 0.032294963644286 0.035605417415278 0.039270692688029 0.043349901449800 0.047916307264104 0.053061799308286 0.058903181686960 0.065591199132830 0.073323796185298 0.082366122445235 0.083913773988589 0.082366122445240 0.073323796185294 0.065591199132830 0.058903181686960 0.053061799308286 0.047916307264105 0.043349901449800 0.039270692688029 0.035605417415278 0.032294963644286 0.029291129215477 0.026554233971051 0.024051334710180 0.021754872828856 0.019641637316925 0.017691960831317 0.015889090265256 0.014218689529359 0.012668443637777 0.011227741249292 0.009887418594852 0.008639551924462 0.007477288696796 0.006394710035534 0.005386718710285 0.004448948224049 0.003577689615593 0.002769833395406 0.002022824688308 0.001334630200349 0.000703716098676 0.000129036320923 -0.000389968757435 -0.000853362946765 -0.001260693344996 -0.001610956569497 -0.001260693344996 -0.000853362946765 -0.000389968757435 0.000129036320923 0.000703716098675 0.001334630200349 0.002022824688308 0.002769833395406 0.003577689615593 0.004448948224049 0.005386718710285 0.006394710035534 0.007477288696796 0.008639551924462 0.009887418594852 0.011227741249292 0.012668443637777 0.014218689529359 0.015889090265256 0.017691960831317 0.019641637316925 0.021754872828856 0.024051334710180 0.026554233971051 0.029291129215477 0.032294963644286 0.035605417415278 0.039270692688029 0.043349901449800 0.047916307264105 0.053061799308286 0.058903181686960 0.065591199132830 0.073323796185294 0.082366122445240 0.083913773988589 +0.017171201467441 0.011720908663013 0.007188672448943 0.003347069621862 0.000037714077591 -0.002853128733758 -0.005409275719466 -0.007693889685481 -0.009755504291292 -0.011632058961814 -0.013353670955649 -0.014944583208343 -0.016424560742345 -0.017809909964242 -0.019114234970392 -0.020349007212656 -0.021524000621980 -0.022647628382896 -0.023727206923523 -0.024769165460678 -0.025779214452472 -0.026762482821118 -0.027723631338118 -0.028666947798333 -0.029596428339502 -0.030515848348608 -0.031428825740543 -0.032338878932882 -0.033249481529569 -0.034164115537714 -0.035086324858709 -0.036019770810376 -0.036968291552030 -0.037935967509503 -0.038927195252111 -0.039946772791246 -0.041000000000000 -0.039946772791246 -0.038927195252111 -0.037935967509503 -0.036968291552030 -0.036019770810376 -0.035086324858709 -0.034164115537714 -0.033249481529569 -0.032338878932882 -0.031428825740543 -0.030515848348608 -0.029596428339502 -0.028666947798333 -0.027723631338118 -0.026762482821119 -0.025779214452472 -0.024769165460678 -0.023727206923523 -0.022647628382896 -0.021524000621981 -0.020349007212656 -0.019114234970391 -0.017809909964242 -0.016424560742345 -0.014944583208343 -0.013353670955648 -0.011632058961815 -0.009755504291292 -0.007693889685481 -0.005409275719466 -0.002853128733758 0.000037714077591 0.003347069621862 0.007188672448943 0.011720908663013 0.017171201467441 0.011720908663014 0.007188672448943 0.003347069621862 0.000037714077591 -0.002853128733758 -0.005409275719466 -0.007693889685481 -0.009755504291292 -0.011632058961815 -0.013353670955649 -0.014944583208343 -0.016424560742345 -0.017809909964242 -0.019114234970392 -0.020349007212656 -0.021524000621980 -0.022647628382896 -0.023727206923522 -0.024769165460678 -0.025779214452472 -0.026762482821119 -0.027723631338118 -0.028666947798333 -0.029596428339502 -0.030515848348608 -0.031428825740543 -0.032338878932882 -0.033249481529569 -0.034164115537714 -0.035086324858709 -0.036019770810376 -0.036968291552030 -0.037935967509503 -0.038927195252111 -0.039946772791245 -0.041000000000000 -0.039946772791245 -0.038927195252111 -0.037935967509503 -0.036968291552030 -0.036019770810376 -0.035086324858709 -0.034164115537714 -0.033249481529569 -0.032338878932882 -0.031428825740543 -0.030515848348608 -0.029596428339502 -0.028666947798333 -0.027723631338118 -0.026762482821119 -0.025779214452472 -0.024769165460678 -0.023727206923522 -0.022647628382896 -0.021524000621981 -0.020349007212656 -0.019114234970392 -0.017809909964242 -0.016424560742345 -0.014944583208343 -0.013353670955649 -0.011632058961815 -0.009755504291292 -0.007693889685481 -0.005409275719466 -0.002853128733758 0.000037714077591 0.003347069621862 0.007188672448943 0.011720908663014 0.017171201467441 +-0.023448258032435 -0.023702731344187 -0.025073530154246 -0.026311019557744 -0.027443446684273 -0.028492035695081 -0.029473086019947 -0.030399364011796 -0.031281051283127 -0.032126406601398 -0.032942237881532 -0.033734245394343 -0.034507275878005 -0.035265513917503 -0.036012628474181 -0.036751886928695 -0.037486245340311 -0.038218421156093 -0.038950952912531 -0.039686250299741 -0.040426637137881 -0.041174389238113 -0.041931768714833 -0.042701056034086 -0.043484580893440 -0.044284752910044 -0.045104093032745 -0.045945266583185 -0.046811118866327 -0.047704714373312 -0.048629380732867 -0.049588758759776 -0.050586860212631 -0.051628135226776 -0.052717551858011 -0.053860690795187 -0.055063859126721 -0.053860690795187 -0.052717551858011 -0.051628135226776 -0.050586860212631 -0.049588758759776 -0.048629380732867 -0.047704714373312 -0.046811118866327 -0.045945266583185 -0.045104093032746 -0.044284752910044 -0.043484580893440 -0.042701056034086 -0.041931768714833 -0.041174389238113 -0.040426637137881 -0.039686250299741 -0.038950952912531 -0.038218421156093 -0.037486245340311 -0.036751886928695 -0.036012628474181 -0.035265513917503 -0.034507275878006 -0.033734245394343 -0.032942237881532 -0.032126406601398 -0.031281051283127 -0.030399364011796 -0.029473086019947 -0.028492035695081 -0.027443446684273 -0.026311019557744 -0.025073530154246 -0.023702731344187 -0.023448258032435 -0.023702731344186 -0.025073530154246 -0.026311019557744 -0.027443446684273 -0.028492035695081 -0.029473086019946 -0.030399364011797 -0.031281051283127 -0.032126406601398 -0.032942237881532 -0.033734245394343 -0.034507275878005 -0.035265513917502 -0.036012628474181 -0.036751886928695 -0.037486245340311 -0.038218421156093 -0.038950952912530 -0.039686250299741 -0.040426637137881 -0.041174389238112 -0.041931768714833 -0.042701056034086 -0.043484580893440 -0.044284752910044 -0.045104093032746 -0.045945266583185 -0.046811118866327 -0.047704714373312 -0.048629380732867 -0.049588758759776 -0.050586860212631 -0.051628135226776 -0.052717551858011 -0.053860690795187 -0.055063859126721 -0.053860690795187 -0.052717551858011 -0.051628135226776 -0.050586860212631 -0.049588758759776 -0.048629380732867 -0.047704714373312 -0.046811118866327 -0.045945266583185 -0.045104093032746 -0.044284752910044 -0.043484580893440 -0.042701056034086 -0.041931768714833 -0.041174389238112 -0.040426637137881 -0.039686250299741 -0.038950952912530 -0.038218421156093 -0.037486245340311 -0.036751886928695 -0.036012628474181 -0.035265513917502 -0.034507275878006 -0.033734245394342 -0.032942237881532 -0.032126406601398 -0.031281051283127 -0.030399364011797 -0.029473086019946 -0.028492035695081 -0.027443446684273 -0.026311019557744 -0.025073530154246 -0.023702731344186 -0.023448258032435 +-0.049902878698464 -0.049944323538614 -0.049882029523211 -0.049526094401366 -0.049283434573546 -0.049136002477938 -0.049069819040910 -0.049073936227335 -0.049139705161727 -0.049260250184521 -0.049430084738069 -0.049644826870007 -0.049900985976975 -0.050195801356435 -0.050527119038639 -0.050893297343063 -0.051293134324012 -0.051725812164694 -0.052190854920323 -0.052688096976006 -0.053217660291976 -0.053779939036357 -0.054375590608523 -0.055005532372464 -0.055670943676727 -0.056373272955756 -0.057114249902541 -0.057895902887153 -0.058720581981388 -0.059590988147097 -0.060510209366218 -0.061481764746754 -0.062509657946250 -0.063598441631897 -0.064753295168972 -0.065980118329882 -0.067285644588812 -0.065980118329882 -0.064753295168972 -0.063598441631897 -0.062509657946250 -0.061481764746753 -0.060510209366218 -0.059590988147097 -0.058720581981388 -0.057895902887153 -0.057114249902541 -0.056373272955756 -0.055670943676726 -0.055005532372463 -0.054375590608523 -0.053779939036357 -0.053217660291976 -0.052688096976005 -0.052190854920323 -0.051725812164694 -0.051293134324012 -0.050893297343064 -0.050527119038638 -0.050195801356434 -0.049900985976975 -0.049644826870007 -0.049430084738069 -0.049260250184521 -0.049139705161727 -0.049073936227334 -0.049069819040908 -0.049136002477939 -0.049283434573546 -0.049526094401364 -0.049882029523211 -0.049944323538614 -0.049902878698464 -0.049944323538614 -0.049882029523211 -0.049526094401364 -0.049283434573546 -0.049136002477940 -0.049069819040910 -0.049073936227334 -0.049139705161727 -0.049260250184521 -0.049430084738068 -0.049644826870007 -0.049900985976975 -0.050195801356434 -0.050527119038639 -0.050893297343064 -0.051293134324012 -0.051725812164694 -0.052190854920323 -0.052688096976006 -0.053217660291976 -0.053779939036357 -0.054375590608523 -0.055005532372464 -0.055670943676727 -0.056373272955756 -0.057114249902541 -0.057895902887153 -0.058720581981388 -0.059590988147097 -0.060510209366218 -0.061481764746753 -0.062509657946250 -0.063598441631897 -0.064753295168972 -0.065980118329882 -0.067285644588812 -0.065980118329882 -0.064753295168972 -0.063598441631897 -0.062509657946250 -0.061481764746753 -0.060510209366218 -0.059590988147097 -0.058720581981388 -0.057895902887153 -0.057114249902541 -0.056373272955756 -0.055670943676727 -0.055005532372464 -0.054375590608523 -0.053779939036357 -0.053217660291976 -0.052688096976006 -0.052190854920323 -0.051725812164694 -0.051293134324012 -0.050893297343064 -0.050527119038638 -0.050195801356434 -0.049900985976975 -0.049644826870007 -0.049430084738068 -0.049260250184521 -0.049139705161727 -0.049073936227334 -0.049069819040910 -0.049136002477940 -0.049283434573546 -0.049526094401364 -0.049882029523211 -0.049944323538614 -0.049902878698464 +-0.068562392368782 -0.068607385409838 -0.068742562366162 -0.068256284241643 -0.067119098961823 -0.066174207679859 -0.065394539153920 -0.064758320087378 -0.064247887563064 -0.063848810831239 -0.063549232812499 -0.063339370236669 -0.063211130062453 -0.063157812336993 -0.063173878167795 -0.063254767366113 -0.063396754453517 -0.063596834666524 -0.063852633719030 -0.064162336637253 -0.064524632135435 -0.064938669868827 -0.065404028564460 -0.065920693547821 -0.066489042596191 -0.067109839387937 -0.067784234104799 -0.068513770999545 -0.069300402979408 -0.070146513489999 -0.071054946227425 -0.072029043471479 -0.073072694134243 -0.074190392973499 -0.075387312849916 -0.076669392438128 -0.078043442469597 -0.076669392438128 -0.075387312849916 -0.074190392973499 -0.073072694134243 -0.072029043471478 -0.071054946227424 -0.070146513489999 -0.069300402979408 -0.068513770999545 -0.067784234104799 -0.067109839387937 -0.066489042596191 -0.065920693547821 -0.065404028564460 -0.064938669868828 -0.064524632135435 -0.064162336637252 -0.063852633719030 -0.063596834666524 -0.063396754453516 -0.063254767366114 -0.063173878167795 -0.063157812336992 -0.063211130062453 -0.063339370236669 -0.063549232812499 -0.063848810831239 -0.064247887563064 -0.064758320087379 -0.065394539153920 -0.066174207679857 -0.067119098961823 -0.068256284241643 -0.068742562366159 -0.068607385409837 -0.068562392368782 -0.068607385409835 -0.068742562366162 -0.068256284241643 -0.067119098961823 -0.066174207679859 -0.065394539153920 -0.064758320087378 -0.064247887563064 -0.063848810831239 -0.063549232812499 -0.063339370236669 -0.063211130062453 -0.063157812336992 -0.063173878167795 -0.063254767366114 -0.063396754453517 -0.063596834666524 -0.063852633719030 -0.064162336637253 -0.064524632135435 -0.064938669868828 -0.065404028564460 -0.065920693547821 -0.066489042596191 -0.067109839387937 -0.067784234104799 -0.068513770999545 -0.069300402979408 -0.070146513489999 -0.071054946227425 -0.072029043471479 -0.073072694134243 -0.074190392973499 -0.075387312849916 -0.076669392438128 -0.078043442469597 -0.076669392438128 -0.075387312849916 -0.074190392973499 -0.073072694134243 -0.072029043471479 -0.071054946227424 -0.070146513489999 -0.069300402979408 -0.068513770999545 -0.067784234104799 -0.067109839387937 -0.066489042596191 -0.065920693547821 -0.065404028564460 -0.064938669868828 -0.064524632135435 -0.064162336637253 -0.063852633719030 -0.063596834666524 -0.063396754453516 -0.063254767366114 -0.063173878167795 -0.063157812336992 -0.063211130062453 -0.063339370236669 -0.063549232812499 -0.063848810831239 -0.064247887563064 -0.064758320087378 -0.065394539153920 -0.066174207679859 -0.067119098961823 -0.068256284241643 -0.068742562366162 -0.068607385409835 -0.068562392368782 +-0.082475878143057 -0.082521256905075 -0.082657554856490 -0.082885258187108 -0.082011147673620 -0.080525696968365 -0.079252252845364 -0.078164700349041 -0.077241489295465 -0.076464726311956 -0.075819478917139 -0.075293236496061 -0.074875488883236 -0.074557394180777 -0.074331515066016 -0.074191608249036 -0.074132455623267 -0.074149728476438 -0.074239878208004 -0.074400048548007 -0.074628005440001 -0.074922081642416 -0.075281133793062 -0.075704510224802 -0.076192028256037 -0.076743960037483 -0.077361026339312 -0.078044397927979 -0.078795704424664 -0.079617050769937 -0.080511041653757 -0.081480814517954 -0.082530082012266 -0.083663185099164 -0.084885158373758 -0.086201809614419 -0.087619816134106 -0.086201809614419 -0.084885158373758 -0.083663185099165 -0.082530082012266 -0.081480814517954 -0.080511041653757 -0.079617050769937 -0.078795704424664 -0.078044397927979 -0.077361026339312 -0.076743960037483 -0.076192028256037 -0.075704510224802 -0.075281133793062 -0.074922081642416 -0.074628005440001 -0.074400048548007 -0.074239878208004 -0.074149728476438 -0.074132455623267 -0.074191608249036 -0.074331515066017 -0.074557394180777 -0.074875488883236 -0.075293236496061 -0.075819478917139 -0.076464726311956 -0.077241489295464 -0.078164700349043 -0.079252252845364 -0.080525696968366 -0.082011147673620 -0.082885258187108 -0.082657554856490 -0.082521256905078 -0.082475878143057 -0.082521256905075 -0.082657554856490 -0.082885258187111 -0.082011147673621 -0.080525696968367 -0.079252252845364 -0.078164700349041 -0.077241489295464 -0.076464726311957 -0.075819478917140 -0.075293236496061 -0.074875488883236 -0.074557394180777 -0.074331515066017 -0.074191608249036 -0.074132455623266 -0.074149728476438 -0.074239878208004 -0.074400048548007 -0.074628005440001 -0.074922081642416 -0.075281133793062 -0.075704510224802 -0.076192028256037 -0.076743960037483 -0.077361026339312 -0.078044397927979 -0.078795704424664 -0.079617050769937 -0.080511041653758 -0.081480814517954 -0.082530082012266 -0.083663185099165 -0.084885158373757 -0.086201809614419 -0.087619816134106 -0.086201809614419 -0.084885158373757 -0.083663185099164 -0.082530082012266 -0.081480814517954 -0.080511041653758 -0.079617050769937 -0.078795704424664 -0.078044397927979 -0.077361026339312 -0.076743960037483 -0.076192028256037 -0.075704510224802 -0.075281133793062 -0.074922081642416 -0.074628005440001 -0.074400048548007 -0.074239878208004 -0.074149728476438 -0.074132455623267 -0.074191608249036 -0.074331515066017 -0.074557394180777 -0.074875488883236 -0.075293236496061 -0.075819478917139 -0.076464726311957 -0.077241489295464 -0.078164700349041 -0.079252252845364 -0.080525696968367 -0.082011147673621 -0.082885258187111 -0.082657554856490 -0.082521256905075 -0.082475878143057 +-0.093286256149551 -0.093330602073276 -0.093463769094912 -0.093686145666397 -0.093998381548068 -0.092822895272788 -0.091205186881963 -0.089797031010891 -0.088575727234778 -0.087522178574856 -0.086620250707091 -0.085856266758922 -0.085218605814841 -0.084697381592627 -0.084284183723849 -0.083971868401214 -0.083754388330176 -0.083626654276667 -0.083584422267946 -0.083624201840870 -0.083743181756415 -0.083939170392974 -0.084210548653853 -0.084556233720190 -0.084975652382164 -0.085468723013478 -0.086035845536089 -0.086677898969220 -0.087396246381331 -0.088192747277059 -0.089069777662945 -0.090030258255797 -0.091077691536084 -0.092216208616947 -0.093450627210516 -0.094786522343278 -0.096230311921454 -0.094786522343278 -0.093450627210516 -0.092216208616947 -0.091077691536083 -0.090030258255796 -0.089069777662944 -0.088192747277059 -0.087396246381332 -0.086677898969220 -0.086035845536089 -0.085468723013477 -0.084975652382164 -0.084556233720190 -0.084210548653853 -0.083939170392975 -0.083743181756415 -0.083624201840871 -0.083584422267946 -0.083626654276667 -0.083754388330176 -0.083971868401214 -0.084284183723848 -0.084697381592627 -0.085218605814841 -0.085856266758922 -0.086620250707091 -0.087522178574856 -0.088575727234778 -0.089797031010891 -0.091205186881964 -0.092822895272788 -0.093998381548069 -0.093686145666397 -0.093463769094911 -0.093330602073276 -0.093286256149551 -0.093330602073278 -0.093463769094912 -0.093686145666397 -0.093998381548069 -0.092822895272789 -0.091205186881965 -0.089797031010891 -0.088575727234778 -0.087522178574856 -0.086620250707091 -0.085856266758922 -0.085218605814841 -0.084697381592627 -0.084284183723849 -0.083971868401214 -0.083754388330177 -0.083626654276667 -0.083584422267946 -0.083624201840871 -0.083743181756415 -0.083939170392975 -0.084210548653853 -0.084556233720190 -0.084975652382164 -0.085468723013477 -0.086035845536089 -0.086677898969220 -0.087396246381331 -0.088192747277059 -0.089069777662944 -0.090030258255796 -0.091077691536083 -0.092216208616947 -0.093450627210516 -0.094786522343278 -0.096230311921454 -0.094786522343278 -0.093450627210516 -0.092216208616947 -0.091077691536083 -0.090030258255796 -0.089069777662944 -0.088192747277059 -0.087396246381331 -0.086677898969220 -0.086035845536089 -0.085468723013477 -0.084975652382164 -0.084556233720190 -0.084210548653853 -0.083939170392975 -0.083743181756415 -0.083624201840871 -0.083584422267946 -0.083626654276667 -0.083754388330176 -0.083971868401214 -0.084284183723848 -0.084697381592627 -0.085218605814841 -0.085856266758922 -0.086620250707092 -0.087522178574856 -0.088575727234778 -0.089797031010891 -0.091205186881965 -0.092822895272789 -0.093998381548069 -0.093686145666397 -0.093463769094912 -0.093330602073278 -0.093286256149551 +-0.101957183736670 -0.101999859189790 -0.102127987759292 -0.102341876455164 -0.102642038226518 -0.103029193862551 -0.101658030253773 -0.100022090505239 -0.098585192364948 -0.097328292063281 -0.096235129475777 -0.095291783481445 -0.094486313344577 -0.093808467747159 -0.093249447501617 -0.092801711231843 -0.092458815746754 -0.092215284670467 -0.092066500296287 -0.092008614711972 -0.092038477083880 -0.092153574647925 -0.092351985480290 -0.092632341543964 -0.092993800853511 -0.093436027889685 -0.093959181642491 -0.094563910878542 -0.095251356426170 -0.096023160458448 -0.096881482938226 -0.097829025578236 -0.098869063871235 -0.100005487968838 -0.101242853443209 -0.102586443265061 -0.104042342689273 -0.102586443265061 -0.101242853443209 -0.100005487968838 -0.098869063871236 -0.097829025578236 -0.096881482938226 -0.096023160458448 -0.095251356426170 -0.094563910878542 -0.093959181642491 -0.093436027889685 -0.092993800853511 -0.092632341543964 -0.092351985480290 -0.092153574647925 -0.092038477083880 -0.092008614711972 -0.092066500296287 -0.092215284670467 -0.092458815746754 -0.092801711231843 -0.093249447501617 -0.093808467747159 -0.094486313344576 -0.095291783481445 -0.096235129475777 -0.097328292063282 -0.098585192364948 -0.100022090505238 -0.101658030253771 -0.103029193862553 -0.102642038226520 -0.102341876455163 -0.102127987759292 -0.101999859189789 -0.101957183736670 -0.101999859189788 -0.102127987759292 -0.102341876455166 -0.102642038226520 -0.103029193862551 -0.101658030253773 -0.100022090505239 -0.098585192364948 -0.097328292063281 -0.096235129475777 -0.095291783481445 -0.094486313344577 -0.093808467747159 -0.093249447501617 -0.092801711231843 -0.092458815746754 -0.092215284670467 -0.092066500296287 -0.092008614711972 -0.092038477083880 -0.092153574647925 -0.092351985480290 -0.092632341543964 -0.092993800853511 -0.093436027889685 -0.093959181642490 -0.094563910878542 -0.095251356426170 -0.096023160458448 -0.096881482938226 -0.097829025578236 -0.098869063871236 -0.100005487968838 -0.101242853443209 -0.102586443265061 -0.104042342689273 -0.102586443265061 -0.101242853443209 -0.100005487968838 -0.098869063871236 -0.097829025578236 -0.096881482938226 -0.096023160458448 -0.095251356426170 -0.094563910878542 -0.093959181642490 -0.093436027889685 -0.092993800853511 -0.092632341543964 -0.092351985480290 -0.092153574647925 -0.092038477083880 -0.092008614711972 -0.092066500296287 -0.092215284670467 -0.092458815746754 -0.092801711231843 -0.093249447501617 -0.093808467747159 -0.094486313344577 -0.095291783481445 -0.096235129475777 -0.097328292063281 -0.098585192364948 -0.100022090505239 -0.101658030253773 -0.103029193862551 -0.102642038226520 -0.102341876455166 -0.102127987759292 -0.101999859189788 -0.101957183736670 +-0.109091294244386 -0.109132033310974 -0.109254330674411 -0.109458426998057 -0.109744723960517 -0.110113785110194 -0.110566337051535 -0.109113309927513 -0.107521451880449 -0.106115754816785 -0.104880448261397 -0.103801911426158 -0.102868364104876 -0.102069612704092 -0.101396840686406 -0.100842435069788 -0.100399842428722 -0.100063449227729 -0.099828482391039 -0.099690926851416 -0.099647457483257 -0.099695383352928 -0.099832602644285 -0.100057566964295 -0.100369254020586 -0.100767147904933 -0.101251226424933 -0.101821955110516 -0.102480287689817 -0.103227672987609 -0.104066068354942 -0.104997959897022 -0.106026389933930 -0.107154992311987 -0.108388036390126 -0.109730480764216 -0.111188038073614 -0.109730480764216 -0.108388036390126 -0.107154992311987 -0.106026389933931 -0.104997959897022 -0.104066068354941 -0.103227672987609 -0.102480287689817 -0.101821955110517 -0.101251226424933 -0.100767147904933 -0.100369254020586 -0.100057566964295 -0.099832602644285 -0.099695383352928 -0.099647457483258 -0.099690926851416 -0.099828482391039 -0.100063449227728 -0.100399842428722 -0.100842435069788 -0.101396840686405 -0.102069612704092 -0.102868364104876 -0.103801911426158 -0.104880448261397 -0.106115754816785 -0.107521451880449 -0.109113309927513 -0.110566337051535 -0.110113785110196 -0.109744723960518 -0.109458426998058 -0.109254330674410 -0.109132033310974 -0.109091294244386 -0.109132033310972 -0.109254330674411 -0.109458426998061 -0.109744723960518 -0.110113785110194 -0.110566337051535 -0.109113309927513 -0.107521451880449 -0.106115754816785 -0.104880448261397 -0.103801911426158 -0.102868364104876 -0.102069612704092 -0.101396840686405 -0.100842435069788 -0.100399842428722 -0.100063449227729 -0.099828482391039 -0.099690926851416 -0.099647457483258 -0.099695383352928 -0.099832602644285 -0.100057566964295 -0.100369254020586 -0.100767147904933 -0.101251226424933 -0.101821955110517 -0.102480287689817 -0.103227672987609 -0.104066068354942 -0.104997959897022 -0.106026389933931 -0.107154992311987 -0.108388036390126 -0.109730480764215 -0.111188038073614 -0.109730480764215 -0.108388036390126 -0.107154992311987 -0.106026389933931 -0.104997959897022 -0.104066068354942 -0.103227672987609 -0.102480287689817 -0.101821955110517 -0.101251226424933 -0.100767147904933 -0.100369254020586 -0.100057566964295 -0.099832602644285 -0.099695383352928 -0.099647457483258 -0.099690926851416 -0.099828482391039 -0.100063449227729 -0.100399842428722 -0.100842435069788 -0.101396840686405 -0.102069612704092 -0.102868364104876 -0.103801911426158 -0.104880448261397 -0.106115754816785 -0.107521451880449 -0.109113309927513 -0.110566337051535 -0.110113785110194 -0.109744723960518 -0.109458426998061 -0.109254330674411 -0.109132033310972 -0.109091294244386 +-0.115084851823703 -0.115123571963011 -0.115239794674818 -0.115433706880271 -0.115705620244068 -0.116055971360945 -0.116485322001208 -0.116994359399357 -0.115577421241556 -0.114064207496795 -0.112724237951570 -0.111544508861543 -0.110513689646340 -0.109621906369818 -0.108860561119414 -0.108222180926570 -0.107700291169766 -0.107289309416578 -0.106984456460399 -0.106781681941587 -0.106677602450515 -0.106669450420079 -0.106755032449885 -0.106932695980659 -0.107201303468825 -0.107560213408181 -0.108009267716689 -0.108548785158702 -0.109179560612219 -0.109902870122412 -0.110720481811366 -0.111634672844217 -0.112648252788618 -0.113764593852182 -0.114987668647276 -0.116322096320247 -0.117773198100623 -0.116322096320247 -0.114987668647276 -0.113764593852182 -0.112648252788618 -0.111634672844217 -0.110720481811366 -0.109902870122413 -0.109179560612219 -0.108548785158702 -0.108009267716689 -0.107560213408181 -0.107201303468825 -0.106932695980659 -0.106755032449885 -0.106669450420078 -0.106677602450515 -0.106781681941586 -0.106984456460399 -0.107289309416576 -0.107700291169767 -0.108222180926570 -0.108860561119414 -0.109621906369818 -0.110513689646338 -0.111544508861543 -0.112724237951570 -0.114064207496793 -0.115577421241556 -0.116994359399357 -0.116485322001209 -0.116055971360944 -0.115705620244069 -0.115433706880271 -0.115239794674818 -0.115123571963011 -0.115084851823703 -0.115123571963011 -0.115239794674818 -0.115433706880271 -0.115705620244069 -0.116055971360944 -0.116485322001208 -0.116994359399357 -0.115577421241555 -0.114064207496794 -0.112724237951570 -0.111544508861543 -0.110513689646341 -0.109621906369818 -0.108860561119414 -0.108222180926570 -0.107700291169767 -0.107289309416578 -0.106984456460399 -0.106781681941586 -0.106677602450515 -0.106669450420079 -0.106755032449885 -0.106932695980659 -0.107201303468825 -0.107560213408181 -0.108009267716689 -0.108548785158702 -0.109179560612219 -0.109902870122412 -0.110720481811366 -0.111634672844217 -0.112648252788618 -0.113764593852182 -0.114987668647276 -0.116322096320248 -0.117773198100623 -0.116322096320248 -0.114987668647276 -0.113764593852182 -0.112648252788618 -0.111634672844217 -0.110720481811366 -0.109902870122412 -0.109179560612219 -0.108548785158702 -0.108009267716689 -0.107560213408181 -0.107201303468825 -0.106932695980659 -0.106755032449885 -0.106669450420079 -0.106677602450515 -0.106781681941586 -0.106984456460399 -0.107289309416578 -0.107700291169767 -0.108222180926570 -0.108860561119414 -0.109621906369818 -0.110513689646341 -0.111544508861543 -0.112724237951570 -0.114064207496794 -0.115577421241556 -0.116994359399357 -0.116485322001208 -0.116055971360944 -0.115705620244069 -0.115433706880271 -0.115239794674818 -0.115123571963011 -0.115084851823703 +-0.120209182924682 -0.120245893036569 -0.120356071169999 -0.120539860673772 -0.120797500311860 -0.121129324029218 -0.121535760607288 -0.122017333192571 -0.122574658676108 -0.121314668806656 -0.119899120912975 -0.118644783849759 -0.117540945972820 -0.116578212390703 -0.115748352009245 -0.115044168348586 -0.114459390309150 -0.113988579790503 -0.113627053648782 -0.113370817946811 -0.113216512831425 -0.113161366683864 -0.113203158446619 -0.113340187245248 -0.113571248605947 -0.113895616726476 -0.114313032395339 -0.114823696277373 -0.115428267396928 -0.116127866757050 -0.116924086137504 -0.117819002219969 -0.118815196298326 -0.119915779949583 -0.121124427170358 -0.122445413629639 -0.123883663856131 -0.122445413629639 -0.121124427170358 -0.119915779949584 -0.118815196298326 -0.117819002219969 -0.116924086137503 -0.116127866757050 -0.115428267396927 -0.114823696277373 -0.114313032395339 -0.113895616726476 -0.113571248605947 -0.113340187245248 -0.113203158446619 -0.113161366683865 -0.113216512831426 -0.113370817946811 -0.113627053648780 -0.113988579790503 -0.114459390309151 -0.115044168348586 -0.115748352009244 -0.116578212390703 -0.117540945972820 -0.118644783849759 -0.119899120912975 -0.121314668806656 -0.122574658676108 -0.122017333192571 -0.121535760607288 -0.121129324029218 -0.120797500311860 -0.120539860673772 -0.120356071169999 -0.120245893036569 -0.120209182924682 -0.120245893036569 -0.120356071169999 -0.120539860673772 -0.120797500311860 -0.121129324029219 -0.121535760607285 -0.122017333192572 -0.122574658676107 -0.121314668806656 -0.119899120912975 -0.118644783849759 -0.117540945972820 -0.116578212390703 -0.115748352009245 -0.115044168348586 -0.114459390309150 -0.113988579790503 -0.113627053648782 -0.113370817946811 -0.113216512831426 -0.113161366683865 -0.113203158446619 -0.113340187245248 -0.113571248605947 -0.113895616726476 -0.114313032395339 -0.114823696277372 -0.115428267396928 -0.116127866757050 -0.116924086137504 -0.117819002219969 -0.118815196298325 -0.119915779949584 -0.121124427170358 -0.122445413629639 -0.123883663856131 -0.122445413629639 -0.121124427170358 -0.119915779949584 -0.118815196298325 -0.117819002219969 -0.116924086137504 -0.116127866757050 -0.115428267396928 -0.114823696277372 -0.114313032395339 -0.113895616726476 -0.113571248605947 -0.113340187245248 -0.113203158446619 -0.113161366683865 -0.113216512831426 -0.113370817946811 -0.113627053648782 -0.113988579790503 -0.114459390309150 -0.115044168348586 -0.115748352009245 -0.116578212390703 -0.117540945972820 -0.118644783849759 -0.119899120912976 -0.121314668806656 -0.122574658676107 -0.122017333192572 -0.121535760607285 -0.121129324029219 -0.120797500311860 -0.120539860673772 -0.120356071169999 -0.120245893036569 -0.120209182924682 +-0.124656373356759 -0.124691126952619 -0.124795423739094 -0.124969371616724 -0.125213150096985 -0.125527009810504 -0.125911271803155 -0.126366326604491 -0.126892633048243 -0.127490716819763 -0.126511295312272 -0.125203446815185 -0.124045962702937 -0.123030020263418 -0.122147845761394 -0.121392605602721 -0.120758313501189 -0.120239751324467 -0.119832401709502 -0.119532390876356 -0.119336440348012 -0.119241826515167 -0.119246347178735 -0.119348294366755 -0.119546432863065 -0.119839984007099 -0.120228614432375 -0.120712429508775 -0.121291971343786 -0.121968221283492 -0.122742606937425 -0.123617013835237 -0.124593801909690 -0.125675827092590 -0.126866468410418 -0.128169661078068 -0.129589936215692 -0.128169661078068 -0.126866468410418 -0.125675827092590 -0.124593801909690 -0.123617013835236 -0.122742606937425 -0.121968221283491 -0.121291971343786 -0.120712429508775 -0.120228614432375 -0.119839984007099 -0.119546432863065 -0.119348294366755 -0.119246347178735 -0.119241826515168 -0.119336440348010 -0.119532390876356 -0.119832401709502 -0.120239751324467 -0.120758313501189 -0.121392605602721 -0.122147845761394 -0.123030020263418 -0.124045962702937 -0.125203446815185 -0.126511295312272 -0.127490716819760 -0.126892633048240 -0.126366326604490 -0.125911271803152 -0.125527009810505 -0.125213150096986 -0.124969371616724 -0.124795423739093 -0.124691126952619 -0.124656373356759 -0.124691126952619 -0.124795423739093 -0.124969371616725 -0.125213150096985 -0.125527009810504 -0.125911271803155 -0.126366326604490 -0.126892633048240 -0.127490716819760 -0.126511295312272 -0.125203446815184 -0.124045962702937 -0.123030020263418 -0.122147845761394 -0.121392605602721 -0.120758313501189 -0.120239751324467 -0.119832401709501 -0.119532390876356 -0.119336440348010 -0.119241826515168 -0.119246347178733 -0.119348294366755 -0.119546432863065 -0.119839984007099 -0.120228614432375 -0.120712429508775 -0.121291971343786 -0.121968221283492 -0.122742606937425 -0.123617013835236 -0.124593801909690 -0.125675827092590 -0.126866468410418 -0.128169661078068 -0.129589936215692 -0.128169661078068 -0.126866468410418 -0.125675827092590 -0.124593801909690 -0.123617013835236 -0.122742606937425 -0.121968221283492 -0.121291971343786 -0.120712429508775 -0.120228614432375 -0.119839984007099 -0.119546432863065 -0.119348294366755 -0.119246347178735 -0.119241826515168 -0.119336440348010 -0.119532390876356 -0.119832401709501 -0.120239751324467 -0.120758313501189 -0.121392605602721 -0.122147845761394 -0.123030020263417 -0.124045962702937 -0.125203446815184 -0.126511295312272 -0.127490716819760 -0.126892633048240 -0.126366326604490 -0.125911271803155 -0.125527009810504 -0.125213150096985 -0.124969371616725 -0.124795423739093 -0.124691126952619 -0.124656373356759 +-0.128566279375077 -0.128599150026978 -0.128697788339434 -0.128862273256402 -0.129092735928399 -0.129389359071677 -0.129752376057752 -0.130182069719763 -0.130678770858315 -0.131242856425271 -0.131874747359923 -0.131302548833021 -0.130107108648793 -0.129052406785297 -0.128131179142290 -0.127337007659250 -0.126664242490801 -0.126107935119797 -0.125663780988401 -0.125328070466045 -0.125097647172454 -0.124969872841814 -0.124942598056612 -0.125014138301901 -0.125183254896674 -0.125449140452225 -0.125811408590538 -0.126270087731483 -0.126825618827918 -0.127478856994714 -0.128231077043032 -0.129083982996462 -0.130039721732928 -0.131100900966914 -0.132270611862908 -0.133552456654918 -0.134950581740814 -0.133552456654918 -0.132270611862908 -0.131100900966914 -0.130039721732928 -0.129083982996462 -0.128231077043032 -0.127478856994714 -0.126825618827918 -0.126270087731483 -0.125811408590538 -0.125449140452225 -0.125183254896674 -0.125014138301901 -0.124942598056613 -0.124969872841814 -0.125097647172454 -0.125328070466045 -0.125663780988401 -0.126107935119797 -0.126664242490801 -0.127337007659250 -0.128131179142289 -0.129052406785299 -0.130107108648793 -0.131302548833021 -0.131874747359923 -0.131242856425271 -0.130678770858316 -0.130182069719765 -0.129752376057752 -0.129389359071677 -0.129092735928399 -0.128862273256402 -0.128697788339434 -0.128599150026978 -0.128566279375077 -0.128599150026980 -0.128697788339434 -0.128862273256401 -0.129092735928399 -0.129389359071677 -0.129752376057752 -0.130182069719763 -0.130678770858315 -0.131242856425271 -0.131874747359923 -0.131302548833021 -0.130107108648794 -0.129052406785300 -0.128131179142290 -0.127337007659250 -0.126664242490801 -0.126107935119797 -0.125663780988401 -0.125328070466045 -0.125097647172454 -0.124969872841814 -0.124942598056613 -0.125014138301901 -0.125183254896674 -0.125449140452225 -0.125811408590538 -0.126270087731483 -0.126825618827918 -0.127478856994714 -0.128231077043032 -0.129083982996462 -0.130039721732928 -0.131100900966914 -0.132270611862908 -0.133552456654918 -0.134950581740814 -0.133552456654918 -0.132270611862908 -0.131100900966914 -0.130039721732928 -0.129083982996462 -0.128231077043032 -0.127478856994714 -0.126825618827918 -0.126270087731484 -0.125811408590538 -0.125449140452225 -0.125183254896674 -0.125014138301901 -0.124942598056613 -0.124969872841814 -0.125097647172454 -0.125328070466045 -0.125663780988400 -0.126107935119797 -0.126664242490801 -0.127337007659250 -0.128131179142290 -0.129052406785300 -0.130107108648794 -0.131302548833021 -0.131874747359923 -0.131242856425271 -0.130678770858315 -0.130182069719763 -0.129752376057752 -0.129389359071677 -0.129092735928399 -0.128862273256401 -0.128697788339434 -0.128599150026980 -0.128566279375077 +-0.132043198866801 -0.132074267135539 -0.132167490389333 -0.132322923829080 -0.132540658981873 -0.132820822983854 -0.133163577565196 -0.133569117726039 -0.134037670089164 -0.134569490911845 -0.135164863736117 -0.135824096653417 -0.135789225133895 -0.134707690443160 -0.133758407245814 -0.132935402721160 -0.132233394635971 -0.131647735586242 -0.131174364817901 -0.130809766760008 -0.130550935542421 -0.130395344888274 -0.130340922873573 -0.130386031134785 -0.130529448183279 -0.130770356554639 -0.131108333583431 -0.131543345651375 -0.132075745810436 -0.132706274733586 -0.133436064995928 -0.134266648738736 -0.135199968819944 -0.136238393607915 -0.137384735632077 -0.138642274365792 -0.140014783485082 -0.138642274365792 -0.137384735632077 -0.136238393607915 -0.135199968819944 -0.134266648738736 -0.133436064995928 -0.132706274733586 -0.132075745810436 -0.131543345651375 -0.131108333583431 -0.130770356554639 -0.130529448183279 -0.130386031134785 -0.130340922873573 -0.130395344888274 -0.130550935542421 -0.130809766760008 -0.131174364817901 -0.131647735586242 -0.132233394635971 -0.132935402721160 -0.133758407245814 -0.134707690443159 -0.135789225133895 -0.135824096653415 -0.135164863736117 -0.134569490911846 -0.134037670089164 -0.133569117726039 -0.133163577565196 -0.132820822983854 -0.132540658981873 -0.132322923829081 -0.132167490389333 -0.132074267135540 -0.132043198866801 -0.132074267135539 -0.132167490389333 -0.132322923829081 -0.132540658981873 -0.132820822983854 -0.133163577565196 -0.133569117726040 -0.134037670089164 -0.134569490911845 -0.135164863736116 -0.135824096653417 -0.135789225133895 -0.134707690443159 -0.133758407245814 -0.132935402721160 -0.132233394635971 -0.131647735586243 -0.131174364817901 -0.130809766760008 -0.130550935542421 -0.130395344888274 -0.130340922873573 -0.130386031134785 -0.130529448183279 -0.130770356554639 -0.131108333583431 -0.131543345651375 -0.132075745810436 -0.132706274733586 -0.133436064995928 -0.134266648738736 -0.135199968819944 -0.136238393607916 -0.137384735632077 -0.138642274365792 -0.140014783485082 -0.138642274365792 -0.137384735632077 -0.136238393607916 -0.135199968819944 -0.134266648738736 -0.133436064995928 -0.132706274733586 -0.132075745810436 -0.131543345651375 -0.131108333583431 -0.130770356554639 -0.130529448183279 -0.130386031134785 -0.130340922873573 -0.130395344888274 -0.130550935542421 -0.130809766760008 -0.131174364817901 -0.131647735586243 -0.132233394635971 -0.132935402721160 -0.133758407245814 -0.134707690443159 -0.135789225133895 -0.135824096653417 -0.135164863736117 -0.134569490911845 -0.134037670089164 -0.133569117726040 -0.133163577565196 -0.132820822983854 -0.132540658981873 -0.132322923829081 -0.132167490389333 -0.132074267135539 -0.132043198866801 +-0.135166543994757 -0.135195890467166 -0.135283941825515 -0.135430733745509 -0.135636325193167 -0.135900797680184 -0.136224254212652 -0.136606817924291 -0.137048630383015 -0.137549849556989 -0.138110647424044 -0.138731207205874 -0.139411720206097 -0.140048165415702 -0.139080067742081 -0.138236749291102 -0.137513312398994 -0.136905429490245 -0.136409303191680 -0.136021631760608 -0.135739579303181 -0.135560750339423 -0.135483168341893 -0.135505257937019 -0.135625830513592 -0.135844073032825 -0.136159539879910 -0.136572147639244 -0.137082172715192 -0.137690251758323 -0.138397384894200 -0.139204941788917 -0.140114670623094 -0.141128710085139 -0.142249604535634 -0.143480322538891 -0.144824279005732 -0.143480322538891 -0.142249604535635 -0.141128710085139 -0.140114670623094 -0.139204941788917 -0.138397384894202 -0.137690251758323 -0.137082172715192 -0.136572147639244 -0.136159539879910 -0.135844073032825 -0.135625830513592 -0.135505257937019 -0.135483168341893 -0.135560750339422 -0.135739579303181 -0.136021631760608 -0.136409303191680 -0.136905429490245 -0.137513312398994 -0.138236749291102 -0.139080067742081 -0.140048165415701 -0.139411720206096 -0.138731207205874 -0.138110647424044 -0.137549849556989 -0.137048630383015 -0.136606817924291 -0.136224254212653 -0.135900797680185 -0.135636325193168 -0.135430733745509 -0.135283941825512 -0.135195890467167 -0.135166543994757 -0.135195890467166 -0.135283941825515 -0.135430733745508 -0.135636325193168 -0.135900797680184 -0.136224254212652 -0.136606817924291 -0.137048630383014 -0.137549849556989 -0.138110647424044 -0.138731207205870 -0.139411720206097 -0.140048165415702 -0.139080067742081 -0.138236749291102 -0.137513312398994 -0.136905429490245 -0.136409303191680 -0.136021631760608 -0.135739579303181 -0.135560750339422 -0.135483168341894 -0.135505257937019 -0.135625830513592 -0.135844073032825 -0.136159539879910 -0.136572147639244 -0.137082172715192 -0.137690251758323 -0.138397384894201 -0.139204941788917 -0.140114670623094 -0.141128710085139 -0.142249604535634 -0.143480322538891 -0.144824279005732 -0.143480322538891 -0.142249604535634 -0.141128710085139 -0.140114670623094 -0.139204941788917 -0.138397384894201 -0.137690251758323 -0.137082172715192 -0.136572147639244 -0.136159539879910 -0.135844073032825 -0.135625830513592 -0.135505257937019 -0.135483168341893 -0.135560750339422 -0.135739579303181 -0.136021631760608 -0.136409303191680 -0.136905429490245 -0.137513312398994 -0.138236749291102 -0.139080067742081 -0.140048165415702 -0.139411720206097 -0.138731207205870 -0.138110647424045 -0.137549849556989 -0.137048630383015 -0.136606817924291 -0.136224254212652 -0.135900797680184 -0.135636325193168 -0.135430733745508 -0.135283941825515 -0.135195890467166 -0.135166543994757 +-0.137997891413779 -0.138025593069038 -0.138108704614454 -0.138247245642050 -0.138441248314504 -0.138690756625735 -0.138995825358991 -0.139356518735715 -0.139772908746689 -0.140245073155011 -0.140773093158908 -0.141357050700519 -0.141997025405451 -0.142693091136302 -0.143445312142139 -0.143282783699785 -0.142544618660552 -0.141920641141147 -0.141407328518903 -0.141001605278680 -0.140700818403207 -0.140502716214239 -0.140405430400499 -0.140407461009830 -0.140507664220807 -0.140705242743513 -0.140999738731024 -0.141391029113118 -0.141879323291941 -0.142465163166703 -0.143149425481122 -0.143933326513810 -0.144818429158604 -0.145806652469321 -0.146900283772018 -0.148101993478137 -0.149414852764352 -0.148101993478137 -0.146900283772018 -0.145806652469321 -0.144818429158604 -0.143933326513809 -0.143149425481122 -0.142465163166703 -0.141879323291941 -0.141391029113118 -0.140999738731024 -0.140705242743513 -0.140507664220807 -0.140407461009830 -0.140405430400500 -0.140502716214240 -0.140700818403207 -0.141001605278682 -0.141407328518903 -0.141920641141147 -0.142544618660552 -0.143282783699785 -0.143445312142139 -0.142693091136302 -0.141997025405454 -0.141357050700518 -0.140773093158908 -0.140245073155012 -0.139772908746689 -0.139356518735715 -0.138995825358991 -0.138690756625735 -0.138441248314504 -0.138247245642050 -0.138108704614453 -0.138025593069039 -0.137997891413779 -0.138025593069038 -0.138108704614454 -0.138247245642051 -0.138441248314504 -0.138690756625735 -0.138995825358991 -0.139356518735715 -0.139772908746689 -0.140245073155012 -0.140773093158907 -0.141357050700519 -0.141997025405452 -0.142693091136302 -0.143445312142140 -0.143282783699785 -0.142544618660552 -0.141920641141147 -0.141407328518903 -0.141001605278682 -0.140700818403207 -0.140502716214240 -0.140405430400500 -0.140407461009830 -0.140507664220807 -0.140705242743513 -0.140999738731025 -0.141391029113118 -0.141879323291941 -0.142465163166703 -0.143149425481123 -0.143933326513810 -0.144818429158604 -0.145806652469321 -0.146900283772018 -0.148101993478136 -0.149414852764352 -0.148101993478136 -0.146900283772018 -0.145806652469321 -0.144818429158604 -0.143933326513810 -0.143149425481122 -0.142465163166703 -0.141879323291941 -0.141391029113118 -0.140999738731025 -0.140705242743513 -0.140507664220807 -0.140407461009830 -0.140405430400500 -0.140502716214240 -0.140700818403207 -0.141001605278682 -0.141407328518903 -0.141920641141147 -0.142544618660552 -0.143282783699785 -0.143445312142140 -0.142693091136302 -0.141997025405452 -0.141357050700519 -0.140773093158908 -0.140245073155012 -0.139772908746689 -0.139356518735715 -0.138995825358991 -0.138690756625735 -0.138441248314504 -0.138247245642051 -0.138108704614454 -0.138025593069038 -0.137997891413779 +-0.140585768171173 -0.140611896587962 -0.140690283999588 -0.140820936748063 -0.141003864930084 -0.141239081684608 -0.141526602190473 -0.141866442369289 -0.142258617287299 -0.142703139248887 -0.143200015573031 -0.143749246043121 -0.144350820019485 -0.145004713203262 -0.145710884039635 -0.146469269748036 -0.147279781966842 -0.146727646984192 -0.146202009072698 -0.145782624125487 -0.145467030038553 -0.145253127601541 -0.145139165705771 -0.145123728901722 -0.145205727178636 -0.145384387861300 -0.145659249540084 -0.146030157970369 -0.146497263896504 -0.147061022774107 -0.147722196382540 -0.148481856337473 -0.149341389531418 -0.150302505548543 -0.151367246118730 -0.152537996695529 -0.153817500262991 -0.152537996695529 -0.151367246118730 -0.150302505548543 -0.149341389531418 -0.148481856337473 -0.147722196382540 -0.147061022774107 -0.146497263896504 -0.146030157970369 -0.145659249540084 -0.145384387861300 -0.145205727178637 -0.145123728901722 -0.145139165705771 -0.145253127601541 -0.145467030038553 -0.145782624125487 -0.146202009072698 -0.146727646984192 -0.147279781966843 -0.146469269748036 -0.145710884039635 -0.145004713203263 -0.144350820019484 -0.143749246043120 -0.143200015573031 -0.142703139248888 -0.142258617287299 -0.141866442369289 -0.141526602190475 -0.141239081684608 -0.141003864930085 -0.140820936748063 -0.140690283999589 -0.140611896587962 -0.140585768171173 -0.140611896587962 -0.140690283999589 -0.140820936748060 -0.141003864930085 -0.141239081684607 -0.141526602190473 -0.141866442369289 -0.142258617287299 -0.142703139248888 -0.143200015573031 -0.143749246043121 -0.144350820019487 -0.145004713203262 -0.145710884039635 -0.146469269748036 -0.147279781966842 -0.146727646984192 -0.146202009072698 -0.145782624125487 -0.145467030038553 -0.145253127601541 -0.145139165705771 -0.145123728901722 -0.145205727178638 -0.145384387861300 -0.145659249540084 -0.146030157970369 -0.146497263896504 -0.147061022774107 -0.147722196382540 -0.148481856337473 -0.149341389531418 -0.150302505548543 -0.151367246118730 -0.152537996695529 -0.153817500262991 -0.152537996695529 -0.151367246118730 -0.150302505548543 -0.149341389531418 -0.148481856337473 -0.147722196382540 -0.147061022774107 -0.146497263896504 -0.146030157970369 -0.145659249540084 -0.145384387861300 -0.145205727178638 -0.145123728901722 -0.145139165705771 -0.145253127601541 -0.145467030038553 -0.145782624125487 -0.146202009072698 -0.146727646984192 -0.147279781966843 -0.146469269748036 -0.145710884039635 -0.145004713203262 -0.144350820019487 -0.143749246043121 -0.143200015573028 -0.142703139248888 -0.142258617287299 -0.141866442369289 -0.141526602190473 -0.141239081684607 -0.141003864930085 -0.140820936748060 -0.140690283999589 -0.140611896587962 -0.140585768171173 +-0.142968979130576 -0.142993599717206 -0.143067460004120 -0.143190555438572 -0.143362877986287 -0.143584415460109 -0.143855150576806 -0.144175059738600 -0.144544111535265 -0.144962264961818 -0.145429467346119 -0.145945651980095 -0.146510735447882 -0.147124614643813 -0.147787163473137 -0.148498229228396 -0.149257628634674 -0.150065143557727 -0.150822739791664 -0.150393579898524 -0.150066657979175 -0.149840032679314 -0.149712076158066 -0.149681463975824 -0.149747166714131 -0.149908443259152 -0.150164835692976 -0.150516165749130 -0.150962532800560 -0.151504313359884 -0.152142162083085 -0.152877014279050 -0.153710089938460 -0.154642899306757 -0.155677250037039 -0.156815255970106 -0.158059347600322 -0.156815255970106 -0.155677250037039 -0.154642899306757 -0.153710089938460 -0.152877014279050 -0.152142162083085 -0.151504313359884 -0.150962532800560 -0.150516165749130 -0.150164835692976 -0.149908443259152 -0.149747166714131 -0.149681463975824 -0.149712076158066 -0.149840032679314 -0.150066657979175 -0.150393579898523 -0.150822739791664 -0.150065143557727 -0.149257628634674 -0.148498229228395 -0.147787163473137 -0.147124614643812 -0.146510735447882 -0.145945651980098 -0.145429467346118 -0.144962264961818 -0.144544111535265 -0.144175059738600 -0.143855150576807 -0.143584415460109 -0.143362877986287 -0.143190555438572 -0.143067460004118 -0.142993599717207 -0.142968979130576 -0.142993599717209 -0.143067460004118 -0.143190555438572 -0.143362877986286 -0.143584415460109 -0.143855150576806 -0.144175059738601 -0.144544111535265 -0.144962264961818 -0.145429467346119 -0.145945651980096 -0.146510735447882 -0.147124614643813 -0.147787163473137 -0.148498229228394 -0.149257628634674 -0.150065143557727 -0.150822739791666 -0.150393579898524 -0.150066657979175 -0.149840032679314 -0.149712076158064 -0.149681463975824 -0.149747166714131 -0.149908443259152 -0.150164835692976 -0.150516165749130 -0.150962532800560 -0.151504313359884 -0.152142162083085 -0.152877014279050 -0.153710089938460 -0.154642899306757 -0.155677250037039 -0.156815255970106 -0.158059347600322 -0.156815255970106 -0.155677250037039 -0.154642899306757 -0.153710089938460 -0.152877014279050 -0.152142162083085 -0.151504313359884 -0.150962532800560 -0.150516165749130 -0.150164835692976 -0.149908443259152 -0.149747166714131 -0.149681463975824 -0.149712076158066 -0.149840032679314 -0.150066657979175 -0.150393579898524 -0.150822739791666 -0.150065143557727 -0.149257628634676 -0.148498229228394 -0.147787163473137 -0.147124614643813 -0.146510735447882 -0.145945651980096 -0.145429467346121 -0.144962264961818 -0.144544111535265 -0.144175059738601 -0.143855150576806 -0.143584415460109 -0.143362877986286 -0.143190555438572 -0.143067460004118 -0.142993599717209 -0.142968979130576 +-0.145178969928279 -0.145202141716805 -0.145271652633418 -0.145387489207280 -0.145549628573528 -0.145758037851979 -0.146012673275254 -0.146313479064206 -0.146660386048107 -0.147053310026741 -0.147492149870913 -0.147976785358065 -0.148507074739176 -0.149082852033546 -0.149703924047967 -0.150370067117453 -0.151081023565221 -0.151836497880511 -0.152636152614060 -0.153479603992526 -0.154366417255009 -0.154288371196617 -0.154148821853492 -0.154105082464642 -0.154156189231543 -0.154301438033730 -0.154540380213998 -0.154872819568706 -0.155298810522199 -0.155818657470565 -0.156432915285891 -0.157142390978234 -0.157948146518251 -0.158851502829135 -0.159854044961910 -0.160957628473352 -0.162164387030628 -0.160957628473352 -0.159854044961910 -0.158851502829135 -0.157948146518251 -0.157142390978234 -0.156432915285891 -0.155818657470565 -0.155298810522200 -0.154872819568707 -0.154540380213999 -0.154301438033730 -0.154156189231543 -0.154105082464642 -0.154148821853491 -0.154288371196617 -0.154366417255009 -0.153479603992526 -0.152636152614059 -0.151836497880512 -0.151081023565221 -0.150370067117453 -0.149703924047966 -0.149082852033546 -0.148507074739178 -0.147976785358067 -0.147492149870913 -0.147053310026741 -0.146660386048108 -0.146313479064205 -0.146012673275256 -0.145758037851979 -0.145549628573528 -0.145387489207280 -0.145271652633418 -0.145202141716805 -0.145178969928279 -0.145202141716805 -0.145271652633417 -0.145387489207281 -0.145549628573526 -0.145758037851979 -0.146012673275254 -0.146313479064205 -0.146660386048107 -0.147053310026739 -0.147492149870913 -0.147976785358065 -0.148507074739176 -0.149082852033546 -0.149703924047966 -0.150370067117453 -0.151081023565222 -0.151836497880512 -0.152636152614060 -0.153479603992526 -0.154366417255009 -0.154288371196618 -0.154148821853491 -0.154105082464642 -0.154156189231543 -0.154301438033730 -0.154540380213998 -0.154872819568707 -0.155298810522199 -0.155818657470565 -0.156432915285891 -0.157142390978234 -0.157948146518251 -0.158851502829135 -0.159854044961910 -0.160957628473352 -0.162164387030628 -0.160957628473352 -0.159854044961910 -0.158851502829135 -0.157948146518251 -0.157142390978234 -0.156432915285891 -0.155818657470565 -0.155298810522199 -0.154872819568707 -0.154540380213998 -0.154301438033730 -0.154156189231543 -0.154105082464642 -0.154148821853492 -0.154288371196618 -0.154366417255009 -0.153479603992526 -0.152636152614060 -0.151836497880512 -0.151081023565221 -0.150370067117453 -0.149703924047966 -0.149082852033546 -0.148507074739176 -0.147976785358065 -0.147492149870915 -0.147053310026739 -0.146660386048107 -0.146313479064205 -0.146012673275254 -0.145758037851979 -0.145549628573526 -0.145387489207281 -0.145271652633417 -0.145202141716805 -0.145178969928279 +-0.147241537138964 -0.147263312881715 -0.147328633243124 -0.147437477509626 -0.147589810781609 -0.147785583407344 -0.148024730189439 -0.148307169362756 -0.148632801342665 -0.149001507242136 -0.149413147156488 -0.149867558214195 -0.150364552392807 -0.150903914098910 -0.151485397511839 -0.152108723691274 -0.152773577449799 -0.153479603992530 -0.154226405327158 -0.155013536449379 -0.155840501310472 -0.156706748576005 -0.157611667186960 -0.158416587019710 -0.158454624745000 -0.158585053766030 -0.158807439422261 -0.159121572793017 -0.159527469070827 -0.160025366802300 -0.160615727988252 -0.161299239036897 -0.162076812565586 -0.162949590048221 -0.163918945306561 -0.164986488844535 -0.166154073024728 -0.164986488844536 -0.163918945306561 -0.162949590048221 -0.162076812565587 -0.161299239036896 -0.160615727988252 -0.160025366802300 -0.159527469070827 -0.159121572793017 -0.158807439422261 -0.158585053766030 -0.158454624745001 -0.158416587019710 -0.157611667186960 -0.156706748576005 -0.155840501310473 -0.155013536449379 -0.154226405327158 -0.153479603992530 -0.152773577449798 -0.152108723691273 -0.151485397511839 -0.150903914098910 -0.150364552392807 -0.149867558214195 -0.149413147156488 -0.149001507242136 -0.148632801342665 -0.148307169362756 -0.148024730189439 -0.147785583407344 -0.147589810781611 -0.147437477509626 -0.147328633243122 -0.147263312881715 -0.147241537138964 -0.147263312881715 -0.147328633243124 -0.147437477509624 -0.147589810781612 -0.147785583407344 -0.148024730189439 -0.148307169362756 -0.148632801342665 -0.149001507242137 -0.149413147156488 -0.149867558214197 -0.150364552392807 -0.150903914098910 -0.151485397511839 -0.152108723691274 -0.152773577449799 -0.153479603992530 -0.154226405327159 -0.155013536449379 -0.155840501310473 -0.156706748576005 -0.157611667186959 -0.158416587019710 -0.158454624745000 -0.158585053766030 -0.158807439422261 -0.159121572793017 -0.159527469070827 -0.160025366802300 -0.160615727988252 -0.161299239036896 -0.162076812565587 -0.162949590048221 -0.163918945306561 -0.164986488844535 -0.166154073024728 -0.164986488844535 -0.163918945306561 -0.162949590048221 -0.162076812565587 -0.161299239036897 -0.160615727988252 -0.160025366802300 -0.159527469070827 -0.159121572793017 -0.158807439422261 -0.158585053766030 -0.158454624745000 -0.158416587019710 -0.157611667186960 -0.156706748576005 -0.155840501310473 -0.155013536449379 -0.154226405327159 -0.153479603992530 -0.152773577449799 -0.152108723691274 -0.151485397511839 -0.150903914098910 -0.150364552392807 -0.149867558214197 -0.149413147156488 -0.149001507242137 -0.148632801342665 -0.148307169362756 -0.148024730189439 -0.147785583407344 -0.147589810781612 -0.147437477509624 -0.147328633243124 -0.147263312881715 -0.147241537138964 +-0.149178087378041 -0.149198513796162 -0.149259784243832 -0.149361872199340 -0.149504733121075 -0.149688303939243 -0.149912502343998 -0.150177225869867 -0.150482350776216 -0.150827730723726 -0.151213195246959 -0.151638548023297 -0.152103564939010 -0.152607991953527 -0.153151542763745 -0.153733896270862 -0.154354693853161 -0.155013536449375 -0.155709981458464 -0.156443539463143 -0.157213670786417 -0.158019781892194 -0.158861221643347 -0.159737277433216 -0.160647171209064 -0.161590055409428 -0.162565008840149 -0.163282023042590 -0.163668028688243 -0.164143898827418 -0.164710009149092 -0.165366932894921 -0.166115441807899 -0.166956507650142 -0.167891304277192 -0.168921210254028 -0.170047811994944 -0.168921210254029 -0.167891304277192 -0.166956507650142 -0.166115441807899 -0.165366932894921 -0.164710009149093 -0.164143898827418 -0.163668028688243 -0.163282023042590 -0.162565008840149 -0.161590055409428 -0.160647171209064 -0.159737277433216 -0.158861221643347 -0.158019781892194 -0.157213670786417 -0.156443539463144 -0.155709981458463 -0.155013536449375 -0.154354693853161 -0.153733896270862 -0.153151542763746 -0.152607991953527 -0.152103564939009 -0.151638548023297 -0.151213195246959 -0.150827730723726 -0.150482350776216 -0.150177225869864 -0.149912502343998 -0.149688303939243 -0.149504733121075 -0.149361872199340 -0.149259784243831 -0.149198513796159 -0.149178087378041 -0.149198513796162 -0.149259784243832 -0.149361872199340 -0.149504733121075 -0.149688303939243 -0.149912502343998 -0.150177225869867 -0.150482350776216 -0.150827730723726 -0.151213195246961 -0.151638548023297 -0.152103564939009 -0.152607991953528 -0.153151542763746 -0.153733896270862 -0.154354693853161 -0.155013536449375 -0.155709981458464 -0.156443539463143 -0.157213670786420 -0.158019781892194 -0.158861221643346 -0.159737277433216 -0.160647171209064 -0.161590055409428 -0.162565008840149 -0.163282023042589 -0.163668028688243 -0.164143898827418 -0.164710009149092 -0.165366932894921 -0.166115441807899 -0.166956507650143 -0.167891304277192 -0.168921210254028 -0.170047811994944 -0.168921210254028 -0.167891304277192 -0.166956507650143 -0.166115441807899 -0.165366932894921 -0.164710009149092 -0.164143898827418 -0.163668028688243 -0.163282023042589 -0.162565008840149 -0.161590055409428 -0.160647171209064 -0.159737277433216 -0.158861221643347 -0.158019781892194 -0.157213670786420 -0.156443539463143 -0.155709981458464 -0.155013536449375 -0.154354693853161 -0.153733896270862 -0.153151542763746 -0.152607991953528 -0.152103564939009 -0.151638548023297 -0.151213195246959 -0.150827730723726 -0.150482350776216 -0.150177225869867 -0.149912502343998 -0.149688303939243 -0.149504733121075 -0.149361872199340 -0.149259784243832 -0.149198513796162 -0.149178087378041 +-0.151006578924196 -0.151025697021327 -0.151083040979922 -0.151178579711594 -0.151312261102338 -0.151484011562732 -0.151693735398534 -0.151941314002233 -0.152226604866071 -0.152549440417493 -0.152909626678174 -0.153306941748236 -0.153741134117667 -0.154211920807634 -0.154718985344930 -0.155261975573867 -0.155840501310471 -0.156454131845483 -0.157102393303345 -0.157784765866318 -0.158500680874078 -0.159249517811198 -0.160030601196790 -0.160843197392695 -0.161686511349215 -0.162559683309569 -0.163461785497381 -0.164391818814031 -0.165348709575938 -0.166331306325049 -0.167338376748676 -0.168368604748629 -0.169420587702295 -0.170492833961852 -0.171583760640770 -0.172691691739463 -0.173833783555826 -0.172691691739463 -0.171583760640770 -0.170492833961852 -0.169420587702295 -0.168368604748629 -0.167338376748676 -0.166331306325049 -0.165348709575938 -0.164391818814032 -0.163461785497381 -0.162559683309569 -0.161686511349217 -0.160843197392695 -0.160030601196790 -0.159249517811198 -0.158500680874078 -0.157784765866318 -0.157102393303345 -0.156454131845483 -0.155840501310472 -0.155261975573867 -0.154718985344930 -0.154211920807630 -0.153741134117668 -0.153306941748236 -0.152909626678174 -0.152549440417493 -0.152226604866072 -0.151941314002235 -0.151693735398534 -0.151484011562729 -0.151312261102338 -0.151178579711593 -0.151083040979922 -0.151025697021328 -0.151006578924196 -0.151025697021328 -0.151083040979922 -0.151178579711592 -0.151312261102337 -0.151484011562732 -0.151693735398534 -0.151941314002233 -0.152226604866072 -0.152549440417493 -0.152909626678173 -0.153306941748236 -0.153741134117667 -0.154211920807630 -0.154718985344930 -0.155261975573867 -0.155840501310471 -0.156454131845483 -0.157102393303345 -0.157784765866318 -0.158500680874079 -0.159249517811198 -0.160030601196790 -0.160843197392695 -0.161686511349217 -0.162559683309569 -0.163461785497381 -0.164391818814032 -0.165348709575938 -0.166331306325049 -0.167338376748676 -0.168368604748629 -0.169420587702295 -0.170492833961851 -0.171583760640770 -0.172691691739463 -0.173861574802662 -0.172691691739463 -0.171583760640770 -0.170492833961851 -0.169420587702295 -0.168368604748629 -0.167338376748676 -0.166331306325049 -0.165348709575938 -0.164391818814032 -0.163461785497381 -0.162559683309569 -0.161686511349217 -0.160843197392695 -0.160030601196790 -0.159249517811198 -0.158500680874079 -0.157784765866318 -0.157102393303345 -0.156454131845483 -0.155840501310472 -0.155261975573867 -0.154718985344930 -0.154211920807630 -0.153741134117667 -0.153306941748236 -0.152909626678174 -0.152549440417493 -0.152226604866072 -0.151941314002233 -0.151693735398534 -0.151484011562732 -0.151312261102337 -0.151178579711592 -0.151083040979922 -0.151025697021328 -0.151006578924196 +-0.152742236164794 -0.152760081555878 -0.152813606232370 -0.152902775625425 -0.153027531858697 -0.153187793356247 -0.153383454294557 -0.153614383899490 -0.153880425589327 -0.154181395965620 -0.154517083653680 -0.154887247995307 -0.155291617596662 -0.155729888735043 -0.156201723628848 -0.156706748576009 -0.157244551966965 -0.157814682179511 -0.158416645363687 -0.159049903126575 -0.159713870128065 -0.160407911600229 -0.161131340804739 -0.161883416444633 -0.162663340048482 -0.163470253347417 -0.164303235667414 -0.165161301361568 -0.166043397309632 -0.166948400514107 -0.167875115825114 -0.168822273827974 -0.169788528930482 -0.170772457688400 -0.171772557410073 -0.172787245082742 -0.173814856664630 -0.172787245082742 -0.171772557410073 -0.170772457688400 -0.169788528930482 -0.168822273827973 -0.167875115825114 -0.166948400514107 -0.166043397309631 -0.165161301361568 -0.164303235667414 -0.163470253347417 -0.162663340048482 -0.161883416444633 -0.161131340804739 -0.160407911600229 -0.159713870128065 -0.159049903126575 -0.158416645363687 -0.157814682179511 -0.157244551966965 -0.156706748576006 -0.156201723628847 -0.155729888735043 -0.155291617596663 -0.154887247995307 -0.154517083653680 -0.154181395965620 -0.153880425589327 -0.153614383899491 -0.153383454294557 -0.153187793356247 -0.153027531858697 -0.152902775625425 -0.152813606232371 -0.152760081555878 -0.152742236164794 -0.152760081555878 -0.152813606232370 -0.152902775625425 -0.153027531858697 -0.153187793356247 -0.153383454294558 -0.153614383899491 -0.153880425589326 -0.154181395965620 -0.154517083653680 -0.154887247995307 -0.155291617596663 -0.155729888735043 -0.156201723628848 -0.156706748576005 -0.157244551966966 -0.157814682179511 -0.158416645363687 -0.159049903126575 -0.159713870128064 -0.160407911600229 -0.161131340804739 -0.161883416444633 -0.162663340048482 -0.163470253347417 -0.164303235667412 -0.165161301361568 -0.166043397309633 -0.166948400514107 -0.167875115825114 -0.168822273827973 -0.169788528930483 -0.170772457688400 -0.171772557410072 -0.172787245082742 -0.173814856664630 -0.172787245082742 -0.171772557410072 -0.170772457688400 -0.169788528930483 -0.168822273827974 -0.167875115825114 -0.166948400514107 -0.166043397309633 -0.165161301361568 -0.164303235667413 -0.163470253347417 -0.162663340048482 -0.161883416444633 -0.161131340804739 -0.160407911600229 -0.159713870128064 -0.159049903126575 -0.158416645363687 -0.157814682179511 -0.157244551966965 -0.156706748576005 -0.156201723628848 -0.155729888735043 -0.155291617596663 -0.154887247995307 -0.154517083653680 -0.154181395965620 -0.153880425589326 -0.153614383899491 -0.153383454294558 -0.153187793356247 -0.153027531858697 -0.152902775625425 -0.152813606232370 -0.152760081555878 -0.152742236164794 +-0.154398099065029 -0.154414702291929 -0.154464499632506 -0.154547453999019 -0.154663503354241 -0.154812560375537 -0.154994511985738 -0.155209218752104 -0.155456514154865 -0.155736203727501 -0.156048064071194 -0.156391841746582 -0.156767252046345 -0.157173977653021 -0.157611667186965 -0.158079933650318 -0.158578352773666 -0.159106461273013 -0.159663755025883 -0.160249687176364 -0.160863666180252 -0.161505053802790 -0.162173163082945 -0.162867256279595 -0.163586542816748 -0.164330177246472 -0.165097257249957 -0.165886821698932 -0.166697848801432 -0.167529254357605 -0.168379890153153 -0.169248542519436 -0.170133931091113 -0.171034707793358 -0.171949456092103 -0.172876690541624 -0.173814856664633 -0.172876690541625 -0.171949456092103 -0.171034707793358 -0.170133931091113 -0.169248542519436 -0.168379890153153 -0.167529254357605 -0.166697848801432 -0.165886821698932 -0.165097257249956 -0.164330177246472 -0.163586542816748 -0.162867256279595 -0.162173163082945 -0.161505053802790 -0.160863666180252 -0.160249687176364 -0.159663755025883 -0.159106461273013 -0.158578352773666 -0.158079933650318 -0.157611667186964 -0.157173977653021 -0.156767252046345 -0.156391841746582 -0.156048064071194 -0.155736203727501 -0.155456514154865 -0.155209218752102 -0.154994511985738 -0.154812560375537 -0.154663503354245 -0.154547453999019 -0.154464499632505 -0.154414702291929 -0.154398099065029 -0.154414702291929 -0.154464499632506 -0.154547453999019 -0.154663503354245 -0.154812560375537 -0.154994511985738 -0.155209218752102 -0.155456514154864 -0.155736203727501 -0.156048064071195 -0.156391841746582 -0.156767252046345 -0.157173977653022 -0.157611667186965 -0.158079933650319 -0.158578352773666 -0.159106461273012 -0.159663755025883 -0.160249687176364 -0.160863666180252 -0.161505053802790 -0.162173163082945 -0.162867256279595 -0.163586542816748 -0.164330177246472 -0.165097257249956 -0.165886821698932 -0.166697848801431 -0.167529254357605 -0.168379890153153 -0.169248542519436 -0.170133931091113 -0.171034707793358 -0.171949456092103 -0.172876690541624 -0.173814856664633 -0.172876690541624 -0.171949456092103 -0.171034707793358 -0.170133931091113 -0.169248542519436 -0.168379890153153 -0.167529254357605 -0.166697848801431 -0.165886821698932 -0.165097257249957 -0.164330177246472 -0.163586542816748 -0.162867256279595 -0.162173163082945 -0.161505053802790 -0.160863666180252 -0.160249687176364 -0.159663755025883 -0.159106461273012 -0.158578352773666 -0.158079933650319 -0.157611667186965 -0.157173977653022 -0.156767252046345 -0.156391841746582 -0.156048064071194 -0.155736203727501 -0.155456514154864 -0.155209218752102 -0.154994511985738 -0.154812560375537 -0.154663503354245 -0.154547453999019 -0.154464499632506 -0.154414702291929 -0.154398099065029 +-0.155985451249698 -0.156000838067807 -0.156046985625996 -0.156123855179234 -0.156231381963883 -0.156369474915502 -0.156538016275147 -0.156736861085626 -0.156965836579496 -0.157224741461182 -0.157513345086042 -0.157831386539679 -0.158178573621597 -0.158554581737652 -0.158959052706690 -0.159391593487362 -0.159851774831978 -0.160339129875116 -0.160853152665660 -0.161393296651886 -0.161958973130396 -0.162549549670630 -0.163164348528110 -0.163802645060600 -0.164463666162713 -0.165146588735819 -0.165850538211400 -0.166574587147303 -0.167317753917683 -0.168079001518695 -0.168857236513116 -0.169651308138332 -0.170460007603066 -0.171282067598927 -0.172116162053782 -0.172960906154244 -0.173814856664631 -0.172960906154244 -0.172116162053782 -0.171282067598927 -0.170460007603066 -0.169651308138332 -0.168857236513116 -0.168079001518695 -0.167317753917683 -0.166574587147303 -0.165850538211400 -0.165146588735819 -0.164463666162712 -0.163802645060600 -0.163164348528110 -0.162549549670630 -0.161958973130396 -0.161393296651886 -0.160853152665660 -0.160339129875116 -0.159851774831978 -0.159391593487363 -0.158959052706689 -0.158554581737652 -0.158178573621597 -0.157831386539680 -0.157513345086042 -0.157224741461182 -0.156965836579496 -0.156736861085626 -0.156538016275147 -0.156369474915502 -0.156231381963883 -0.156123855179234 -0.156046985625996 -0.156000838067807 -0.155985451249698 -0.156000838067807 -0.156046985625995 -0.156123855179234 -0.156231381963883 -0.156369474915502 -0.156538016275147 -0.156736861085626 -0.156965836579496 -0.157224741461183 -0.157513345086042 -0.157831386539680 -0.158178573621599 -0.158554581737652 -0.158959052706690 -0.159391593487363 -0.159851774831977 -0.160339129875116 -0.160853152665660 -0.161393296651886 -0.161958973130395 -0.162549549670629 -0.163164348528110 -0.163802645060600 -0.164463666162713 -0.165146588735819 -0.165850538211400 -0.166574587147303 -0.167317753917683 -0.168079001518695 -0.168857236513116 -0.169651308138332 -0.170460007603067 -0.171282067598927 -0.172116162053782 -0.172960906154244 -0.173814856664631 -0.172960906154244 -0.172116162053782 -0.171282067598927 -0.170460007603067 -0.169651308138332 -0.168857236513116 -0.168079001518695 -0.167317753917683 -0.166574587147303 -0.165850538211400 -0.165146588735819 -0.164463666162713 -0.163802645060600 -0.163164348528110 -0.162549549670629 -0.161958973130396 -0.161393296651886 -0.160853152665660 -0.160339129875116 -0.159851774831978 -0.159391593487363 -0.158959052706690 -0.158554581737652 -0.158178573621599 -0.157831386539680 -0.157513345086042 -0.157224741461183 -0.156965836579496 -0.156736861085626 -0.156538016275147 -0.156369474915502 -0.156231381963883 -0.156123855179234 -0.156046985625995 -0.156000838067807 -0.155985451249698 +-0.157514157736117 -0.157528349363578 -0.157570911054720 -0.157641803189313 -0.157740959578860 -0.157868287235155 -0.158023666047759 -0.158206948371897 -0.158417958528744 -0.158656492220535 -0.158922315863468 -0.159215165841876 -0.159534747687712 -0.159880735190008 -0.160252769439615 -0.160650457815137 -0.161073372916837 -0.161521051455898 -0.161992993107340 -0.162488659335681 -0.163007472203335 -0.163548813172651 -0.164112021913459 -0.164696395128913 -0.165301185413436 -0.165925600157605 -0.166568800515650 -0.167229900452369 -0.167907965887021 -0.168602013952773 -0.169311012390889 -0.170033879099789 -0.170769481859294 -0.171516638251293 -0.172274115797793 -0.173040632337904 -0.173814856664632 -0.173040632337904 -0.172274115797793 -0.171516638251293 -0.170769481859294 -0.170033879099788 -0.169311012390889 -0.168602013952773 -0.167907965887021 -0.167229900452369 -0.166568800515649 -0.165925600157605 -0.165301185413436 -0.164696395128913 -0.164112021913459 -0.163548813172651 -0.163007472203335 -0.162488659335681 -0.161992993107340 -0.161521051455898 -0.161073372916837 -0.160650457815137 -0.160252769439615 -0.159880735190008 -0.159534747687712 -0.159215165841876 -0.158922315863468 -0.158656492220535 -0.158417958528745 -0.158206948371896 -0.158023666047759 -0.157868287235155 -0.157740959578860 -0.157641803189313 -0.157570911054719 -0.157528349363578 -0.157514157736117 -0.157528349363578 -0.157570911054719 -0.157641803189313 -0.157740959578861 -0.157868287235155 -0.158023666047759 -0.158206948371897 -0.158417958528745 -0.158656492220535 -0.158922315863468 -0.159215165841876 -0.159534747687712 -0.159880735190008 -0.160252769439615 -0.160650457815137 -0.161073372916837 -0.161521051455898 -0.161992993107339 -0.162488659335681 -0.163007472203335 -0.163548813172651 -0.164112021913459 -0.164696395128912 -0.165301185413436 -0.165925600157605 -0.166568800515650 -0.167229900452369 -0.167907965887022 -0.168602013952773 -0.169311012390889 -0.170033879099788 -0.170769481859294 -0.171516638251293 -0.172274115797793 -0.173040632337904 -0.173814856664632 -0.173040632337904 -0.172274115797793 -0.171516638251293 -0.170769481859294 -0.170033879099788 -0.169311012390889 -0.168602013952773 -0.167907965887022 -0.167229900452369 -0.166568800515650 -0.165925600157605 -0.165301185413436 -0.164696395128913 -0.164112021913459 -0.163548813172651 -0.163007472203336 -0.162488659335681 -0.161992993107339 -0.161521051455898 -0.161073372916837 -0.160650457815137 -0.160252769439615 -0.159880735190008 -0.159534747687712 -0.159215165841876 -0.158922315863468 -0.158656492220535 -0.158417958528745 -0.158206948371897 -0.158023666047759 -0.157868287235155 -0.157740959578861 -0.157641803189313 -0.157570911054719 -0.157528349363578 -0.157514157736117 +-0.158992934755866 -0.159005948081209 -0.159044974810976 -0.159109975169370 -0.159200882740177 -0.159317604282659 -0.159460019475332 -0.159627980589097 -0.159821312091783 -0.160039810186371 -0.160283242286017 -0.160551346429172 -0.160843830638727 -0.161160372229841 -0.161500617071313 -0.161864178806337 -0.162250638038870 -0.162659541492524 -0.163090401149714 -0.163542693379246 -0.164015858061456 -0.164509297720659 -0.165022376675372 -0.165554420217497 -0.166104713832577 -0.166672502473634 -0.167256989902087 -0.167857338109761 -0.168472666836594 -0.169102053199281 -0.169744531446524 -0.170399092856881 -0.171064685795528 -0.171740215946391 -0.172424546735942 -0.173116499965081 -0.173814856664631 -0.173116499965081 -0.172424546735942 -0.171740215946391 -0.171064685795528 -0.170399092856881 -0.169744531446524 -0.169102053199281 -0.168472666836594 -0.167857338109761 -0.167256989902087 -0.166672502473634 -0.166104713832577 -0.165554420217497 -0.165022376675372 -0.164509297720659 -0.164015858061457 -0.163542693379247 -0.163090401149714 -0.162659541492524 -0.162250638038870 -0.161864178806337 -0.161500617071313 -0.161160372229844 -0.160843830638727 -0.160551346429172 -0.160283242286017 -0.160039810186371 -0.159821312091784 -0.159627980589096 -0.159460019475332 -0.159317604282659 -0.159200882740177 -0.159109975169369 -0.159044974810976 -0.159005948081209 -0.158992934755866 -0.159005948081209 -0.159044974810976 -0.159109975169369 -0.159200882740177 -0.159317604282659 -0.159460019475332 -0.159627980589097 -0.159821312091784 -0.160039810186371 -0.160283242286018 -0.160551346429172 -0.160843830638727 -0.161160372229842 -0.161500617071313 -0.161864178806337 -0.162250638038872 -0.162659541492524 -0.163090401149713 -0.163542693379246 -0.164015858061456 -0.164509297720659 -0.165022376675372 -0.165554420217497 -0.166104713832577 -0.166672502473634 -0.167256989902086 -0.167857338109761 -0.168472666836594 -0.169102053199280 -0.169744531446524 -0.170399092856881 -0.171064685795528 -0.171740215946390 -0.172424546735942 -0.173116499965081 -0.173814856664631 -0.173116499965081 -0.172424546735942 -0.171740215946391 -0.171064685795528 -0.170399092856881 -0.169744531446524 -0.169102053199280 -0.168472666836594 -0.167857338109761 -0.167256989902086 -0.166672502473634 -0.166104713832577 -0.165554420217497 -0.165022376675372 -0.164509297720659 -0.164015858061457 -0.163542693379246 -0.163090401149713 -0.162659541492524 -0.162250638038870 -0.161864178806337 -0.161500617071313 -0.161160372229842 -0.160843830638727 -0.160551346429172 -0.160283242286017 -0.160039810186371 -0.159821312091784 -0.159627980589097 -0.159460019475332 -0.159317604282659 -0.159200882740177 -0.159109975169369 -0.159044974810976 -0.159005948081209 -0.158992934755866 +-0.160429568123712 -0.160441415869836 -0.160476946031066 -0.160536119347678 -0.160618870292639 -0.160725106931021 -0.160854710724728 -0.161007536283799 -0.161183411066388 -0.161382135029505 -0.161603480233508 -0.161847190403374 -0.162112980450608 -0.162400535959843 -0.162709512644927 -0.163039535779593 -0.163390199608500 -0.163761066744892 -0.164151667561654 -0.164561499583175 -0.164990026885914 -0.165436679516139 -0.165900852933948 -0.166381907493007 -0.166879167966311 -0.167391923128373 -0.167919425405069 -0.168460890602569 -0.169015497727178 -0.169582388908438 -0.170160669437628 -0.170749407934544 -0.171347636654805 -0.171954351950577 -0.172568514896702 -0.173189052094502 -0.173814856664634 -0.173189052094502 -0.172568514896701 -0.171954351950577 -0.171347636654805 -0.170749407934544 -0.170160669437627 -0.169582388908438 -0.169015497727178 -0.168460890602569 -0.167919425405069 -0.167391923128373 -0.166879167966311 -0.166381907493007 -0.165900852933948 -0.165436679516139 -0.164990026885914 -0.164561499583175 -0.164151667561654 -0.163761066744892 -0.163390199608500 -0.163039535779593 -0.162709512644927 -0.162400535959843 -0.162112980450608 -0.161847190403374 -0.161603480233507 -0.161382135029505 -0.161183411066389 -0.161007536283799 -0.160854710724728 -0.160725106931021 -0.160618870292637 -0.160536119347678 -0.160476946031066 -0.160441415869836 -0.160429568123712 -0.160441415869836 -0.160476946031066 -0.160536119347678 -0.160618870292636 -0.160725106931021 -0.160854710724728 -0.161007536283798 -0.161183411066388 -0.161382135029504 -0.161603480233508 -0.161847190403375 -0.162112980450608 -0.162400535959843 -0.162709512644927 -0.163039535779593 -0.163390199608499 -0.163761066744892 -0.164151667561654 -0.164561499583175 -0.164990026885914 -0.165436679516139 -0.165900852933947 -0.166381907493007 -0.166879167966311 -0.167391923128373 -0.167919425405069 -0.168460890602569 -0.169015497727178 -0.169582388908438 -0.170160669437628 -0.170749407934544 -0.171347636654805 -0.171954351950577 -0.172568514896702 -0.173189052094502 -0.173814856664634 -0.173189052094502 -0.172568514896702 -0.171954351950577 -0.171347636654805 -0.170749407934544 -0.170160669437628 -0.169582388908438 -0.169015497727178 -0.168460890602569 -0.167919425405069 -0.167391923128373 -0.166879167966311 -0.166381907493007 -0.165900852933948 -0.165436679516139 -0.164990026885914 -0.164561499583175 -0.164151667561654 -0.163761066744892 -0.163390199608500 -0.163039535779593 -0.162709512644927 -0.162400535959843 -0.162112980450608 -0.161847190403375 -0.161603480233508 -0.161382135029504 -0.161183411066388 -0.161007536283798 -0.160854710724728 -0.160725106931021 -0.160618870292636 -0.160536119347678 -0.160476946031066 -0.160441415869836 -0.160429568123712 +-0.161831092400999 -0.161841783244658 -0.161873843079962 -0.161927233799426 -0.162001891822733 -0.162097727995574 -0.162214627449388 -0.162352449423312 -0.162511027050066 -0.162690167107884 -0.162889649741019 -0.163109228151719 -0.163348628267043 -0.163607548384200 -0.163885658798634 -0.164182601419422 -0.164497989376995 -0.164831406628669 -0.165182407567834 -0.165550516643127 -0.165935227994360 -0.166336005112273 -0.166752280529757 -0.167183455552420 -0.167628900036756 -0.168087952224626 -0.168559918642848 -0.169044074077134 -0.169539661629604 -0.170045892869520 -0.170561948086591 -0.171086976656525 -0.171620097528192 -0.172160399841694 -0.172706943686224 -0.173258761006328 -0.173814856664631 -0.173258761006328 -0.172706943686224 -0.172160399841694 -0.171620097528192 -0.171086976656525 -0.170561948086591 -0.170045892869520 -0.169539661629604 -0.169044074077135 -0.168559918642848 -0.168087952224626 -0.167628900036756 -0.167183455552420 -0.166752280529757 -0.166336005112273 -0.165935227994360 -0.165550516643127 -0.165182407567835 -0.164831406628669 -0.164497989376995 -0.164182601419422 -0.163885658798632 -0.163607548384198 -0.163348628267043 -0.163109228151718 -0.162889649741019 -0.162690167107884 -0.162511027050067 -0.162352449423312 -0.162214627449387 -0.162097727995574 -0.162001891822733 -0.161927233799426 -0.161873843079962 -0.161841783244662 -0.161831092400999 -0.161841783244662 -0.161873843079961 -0.161927233799426 -0.162001891822732 -0.162097727995571 -0.162214627449388 -0.162352449423312 -0.162511027050067 -0.162690167107884 -0.162889649741019 -0.163109228151719 -0.163348628267043 -0.163607548384200 -0.163885658798630 -0.164182601419422 -0.164497989376995 -0.164831406628669 -0.165182407567834 -0.165550516643127 -0.165935227994360 -0.166336005112273 -0.166752280529756 -0.167183455552420 -0.167628900036756 -0.168087952224626 -0.168559918642848 -0.169044074077135 -0.169539661629604 -0.170045892869520 -0.170561948086591 -0.171086976656525 -0.171620097528192 -0.172160399841694 -0.172706943686224 -0.173258761006328 -0.173814856664631 -0.173258761006328 -0.172706943686224 -0.172160399841694 -0.171620097528192 -0.171086976656525 -0.170561948086591 -0.170045892869520 -0.169539661629604 -0.169044074077135 -0.168559918642848 -0.168087952224626 -0.167628900036756 -0.167183455552420 -0.166752280529757 -0.166336005112273 -0.165935227994360 -0.165550516643127 -0.165182407567834 -0.164831406628669 -0.164497989376995 -0.164182601419422 -0.163885658798630 -0.163607548384200 -0.163348628267043 -0.163109228151719 -0.162889649741018 -0.162690167107884 -0.162511027050067 -0.162352449423312 -0.162214627449388 -0.162097727995571 -0.162001891822732 -0.161927233799426 -0.161873843079961 -0.161841783244662 -0.161831092400999 +-0.163203940104890 -0.163213478751031 -0.163242082579443 -0.163289715246677 -0.163356316135800 -0.163441800290183 -0.163546058322020 -0.163668956296662 -0.163810335594391 -0.163970012751377 -0.164147779282104 -0.164343401485722 -0.164556620239265 -0.164787150780909 -0.165034682486855 -0.165298878645727 -0.165579376234749 -0.165875785702243 -0.166187690761364 -0.166514648200304 -0.166856187714443 -0.167211811766311 -0.167580995479453 -0.167963186572415 -0.168357805339595 -0.168764244685568 -0.169181870219823 -0.169610020418943 -0.170048006863375 -0.170495114555747 -0.170950602327927 -0.171413703343717 -0.171883625704008 -0.172359553160841 -0.172840645946655 -0.173326041724541 -0.173814856664631 -0.173326041724541 -0.172840645946655 -0.172359553160841 -0.171883625704008 -0.171413703343716 -0.170950602327927 -0.170495114555747 -0.170048006863375 -0.169610020418943 -0.169181870219823 -0.168764244685568 -0.168357805339595 -0.167963186572415 -0.167580995479453 -0.167211811766311 -0.166856187714443 -0.166514648200305 -0.166187690761364 -0.165875785702243 -0.165579376234750 -0.165298878645727 -0.165034682486855 -0.164787150780910 -0.164556620239265 -0.164343401485722 -0.164147779282104 -0.163970012751377 -0.163810335594390 -0.163668956296663 -0.163546058322020 -0.163441800290182 -0.163356316135800 -0.163289715246678 -0.163242082579443 -0.163213478751031 -0.163203940104890 -0.163213478751032 -0.163242082579443 -0.163289715246678 -0.163356316135800 -0.163441800290183 -0.163546058322020 -0.163668956296662 -0.163810335594390 -0.163970012751377 -0.164147779282104 -0.164343401485722 -0.164556620239265 -0.164787150780909 -0.165034682486855 -0.165298878645727 -0.165579376234749 -0.165875785702243 -0.166187690761364 -0.166514648200305 -0.166856187714443 -0.167211811766310 -0.167580995479453 -0.167963186572415 -0.168357805339595 -0.168764244685568 -0.169181870219823 -0.169610020418941 -0.170048006863375 -0.170495114555747 -0.170950602327927 -0.171413703343716 -0.171883625704008 -0.172359553160842 -0.172840645946655 -0.173326041724541 -0.173814856664631 -0.173326041724541 -0.172840645946655 -0.172359553160842 -0.171883625704008 -0.171413703343716 -0.170950602327927 -0.170495114555747 -0.170048006863375 -0.169610020418942 -0.169181870219823 -0.168764244685568 -0.168357805339595 -0.167963186572415 -0.167580995479453 -0.167211811766310 -0.166856187714443 -0.166514648200305 -0.166187690761364 -0.165875785702243 -0.165579376234750 -0.165298878645727 -0.165034682486855 -0.164787150780909 -0.164556620239265 -0.164343401485722 -0.164147779282104 -0.163970012751377 -0.163810335594390 -0.163668956296662 -0.163546058322020 -0.163441800290183 -0.163356316135800 -0.163289715246678 -0.163242082579443 -0.163213478751032 -0.163203940104890 +-0.164554068065179 -0.164562455275302 -0.164587605580788 -0.164629484999632 -0.164688036870789 -0.164763181818095 -0.164854817700758 -0.164962819551373 -0.165087039502780 -0.165227306705240 -0.165383427235799 -0.165555184001928 -0.165742336641834 -0.165944621423988 -0.166161751148976 -0.166393415056573 -0.166639278741743 -0.166898984082997 -0.167172149187150 -0.167458368354576 -0.167757212069233 -0.168068227018064 -0.168390936144382 -0.168724838740150 -0.169069410582042 -0.169424104116473 -0.169788348698498 -0.170161550889956 -0.170543094821757 -0.170932342625646 -0.171328634940059 -0.171731291495268 -0.172139611782067 -0.172552875808544 -0.172970344948918 -0.173391262888013 -0.173814856664638 -0.173391262888013 -0.172970344948919 -0.172552875808544 -0.172139611782067 -0.171731291495268 -0.171328634940058 -0.170932342625646 -0.170543094821757 -0.170161550889956 -0.169788348698498 -0.169424104116473 -0.169069410582042 -0.168724838740150 -0.168390936144381 -0.168068227018065 -0.167757212069233 -0.167458368354576 -0.167172149187150 -0.166898984082997 -0.166639278741743 -0.166393415056573 -0.166161751148976 -0.165944621423987 -0.165742336641834 -0.165555184001928 -0.165383427235799 -0.165227306705240 -0.165087039502779 -0.164962819551373 -0.164854817700758 -0.164763181818095 -0.164688036870789 -0.164629484999632 -0.164587605580788 -0.164562455275301 -0.164554068065179 -0.164562455275302 -0.164587605580788 -0.164629484999631 -0.164688036870789 -0.164763181818095 -0.164854817700758 -0.164962819551373 -0.165087039502780 -0.165227306705240 -0.165383427235799 -0.165555184001928 -0.165742336641834 -0.165944621423987 -0.166161751148976 -0.166393415056573 -0.166639278741743 -0.166898984082997 -0.167172149187150 -0.167458368354576 -0.167757212069233 -0.168068227018065 -0.168390936144381 -0.168724838740150 -0.169069410582042 -0.169424104116473 -0.169788348698498 -0.170161550889956 -0.170543094821757 -0.170932342625646 -0.171328634940058 -0.171731291495268 -0.172139611782067 -0.172552875808544 -0.172970344948918 -0.173391262888013 -0.173814856664638 -0.173391262888013 -0.172970344948918 -0.172552875808544 -0.172139611782067 -0.171731291495268 -0.171328634940058 -0.170932342625646 -0.170543094821757 -0.170161550889956 -0.169788348698498 -0.169424104116473 -0.169069410582042 -0.168724838740150 -0.168390936144382 -0.168068227018065 -0.167757212069233 -0.167458368354576 -0.167172149187150 -0.166898984082997 -0.166639278741743 -0.166393415056573 -0.166161751148976 -0.165944621423987 -0.165742336641834 -0.165555184001928 -0.165383427235798 -0.165227306705240 -0.165087039502780 -0.164962819551373 -0.164854817700758 -0.164763181818095 -0.164688036870789 -0.164629484999631 -0.164587605580788 -0.164562455275302 -0.164554068065179 +-0.165887066481820 -0.165894299055102 -0.165915986433005 -0.165952097587393 -0.166002580797006 -0.166067363636353 -0.166146352960909 -0.166239434889413 -0.166346474784288 -0.166467317231374 -0.166601786020407 -0.166749684127912 -0.166910793704296 -0.167084876067243 -0.167271671703664 -0.167470900282525 -0.167682260681315 -0.167905431028782 -0.168140068766996 -0.168385810735661 -0.168642273282071 -0.168909052399827 -0.169185723899879 -0.169471843617281 -0.169766947657229 -0.170070552683913 -0.170382156255809 -0.170701237210766 -0.171027256104621 -0.171359655706386 -0.171697861553558 -0.172041282570365 -0.172389311751979 -0.172741326917227 -0.173096691532169 -0.173454755606526 -0.173814856664633 -0.173454755606526 -0.173096691532169 -0.172741326917227 -0.172389311751979 -0.172041282570365 -0.171697861553558 -0.171359655706386 -0.171027256104621 -0.170701237210766 -0.170382156255809 -0.170070552683913 -0.169766947657229 -0.169471843617281 -0.169185723899878 -0.168909052399826 -0.168642273282072 -0.168385810735662 -0.168140068766996 -0.167905431028783 -0.167682260681315 -0.167470900282525 -0.167271671703663 -0.167084876067244 -0.166910793704296 -0.166749684127912 -0.166601786020407 -0.166467317231374 -0.166346474784289 -0.166239434889413 -0.166146352960909 -0.166067363636353 -0.166002580797006 -0.165952097587393 -0.165915986433005 -0.165894299055102 -0.165887066481820 -0.165894299055102 -0.165915986433006 -0.165952097587394 -0.166002580797007 -0.166067363636354 -0.166146352960909 -0.166239434889413 -0.166346474784288 -0.166467317231374 -0.166601786020407 -0.166749684127912 -0.166910793704296 -0.167084876067244 -0.167271671703664 -0.167470900282525 -0.167682260681315 -0.167905431028782 -0.168140068766996 -0.168385810735662 -0.168642273282072 -0.168909052399826 -0.169185723899878 -0.169471843617281 -0.169766947657229 -0.170070552683913 -0.170382156255809 -0.170701237210767 -0.171027256104621 -0.171359655706386 -0.171697861553558 -0.172041282570365 -0.172389311751979 -0.172741326917227 -0.173096691532169 -0.173454755606526 -0.173814856664633 -0.173454755606526 -0.173096691532169 -0.172741326917227 -0.172389311751979 -0.172041282570365 -0.171697861553558 -0.171359655706386 -0.171027256104621 -0.170701237210767 -0.170382156255809 -0.170070552683913 -0.169766947657229 -0.169471843617281 -0.169185723899880 -0.168909052399826 -0.168642273282072 -0.168385810735662 -0.168140068766996 -0.167905431028782 -0.167682260681315 -0.167470900282525 -0.167271671703664 -0.167084876067244 -0.166910793704296 -0.166749684127912 -0.166601786020407 -0.166467317231374 -0.166346474784288 -0.166239434889413 -0.166146352960909 -0.166067363636354 -0.166002580797007 -0.165952097587394 -0.165915986433006 -0.165894299055102 -0.165887066481820 +-0.167208255122333 -0.167214325827367 -0.167232528782651 -0.167262836510279 -0.167305203219063 -0.167359564812664 -0.167425838901715 -0.167503924820277 -0.167593703647473 -0.167695038235145 -0.167807773242605 -0.167931735179591 -0.168066732458849 -0.168212555459716 -0.168368976604366 -0.168535750448403 -0.168712613787618 -0.168899285782881 -0.169095468105199 -0.169300845102975 -0.169515083993768 -0.169737835082665 -0.169968732009655 -0.170207392028170 -0.170453416317224 -0.170706390329300 -0.170965884176383 -0.171231453056129 -0.171502637720498 -0.171778964988672 -0.172059948306237 -0.172345088352297 -0.172633873696090 -0.172925781504436 -0.173220278301063 -0.173516820778727 -0.173814856664636 -0.173516820778727 -0.173220278301063 -0.172925781504436 -0.172633873696090 -0.172345088352297 -0.172059948306237 -0.171778964988672 -0.171502637720497 -0.171231453056129 -0.170965884176383 -0.170706390329300 -0.170453416317224 -0.170207392028170 -0.169968732009655 -0.169737835082665 -0.169515083993768 -0.169300845102975 -0.169095468105199 -0.168899285782881 -0.168712613787618 -0.168535750448403 -0.168368976604366 -0.168212555459716 -0.168066732458850 -0.167931735179591 -0.167807773242605 -0.167695038235145 -0.167593703647473 -0.167503924820277 -0.167425838901717 -0.167359564812664 -0.167305203219063 -0.167262836510279 -0.167232528782650 -0.167214325827365 -0.167208255122333 -0.167214325827367 -0.167232528782650 -0.167262836510279 -0.167305203219064 -0.167359564812664 -0.167425838901713 -0.167503924820277 -0.167593703647473 -0.167695038235145 -0.167807773242605 -0.167931735179592 -0.168066732458849 -0.168212555459715 -0.168368976604366 -0.168535750448403 -0.168712613787618 -0.168899285782881 -0.169095468105199 -0.169300845102975 -0.169515083993768 -0.169737835082665 -0.169968732009655 -0.170207392028170 -0.170453416317224 -0.170706390329300 -0.170965884176383 -0.171231453056129 -0.171502637720498 -0.171778964988672 -0.172059948306237 -0.172345088352297 -0.172633873696091 -0.172925781504436 -0.173220278301063 -0.173516820778727 -0.173814856664636 -0.173516820778727 -0.173220278301063 -0.172925781504436 -0.172633873696091 -0.172345088352297 -0.172059948306237 -0.171778964988672 -0.171502637720498 -0.171231453056129 -0.170965884176383 -0.170706390329300 -0.170453416317224 -0.170207392028170 -0.169968732009655 -0.169737835082665 -0.169515083993768 -0.169300845102975 -0.169095468105199 -0.168899285782881 -0.168712613787618 -0.168535750448403 -0.168368976604366 -0.168212555459715 -0.168066732458849 -0.167931735179592 -0.167807773242605 -0.167695038235145 -0.167593703647473 -0.167503924820277 -0.167425838901713 -0.167359564812664 -0.167305203219064 -0.167262836510279 -0.167232528782650 -0.167214325827367 -0.167208255122333 +-0.168522770305171 -0.168527667759218 -0.168542352347146 -0.168566800750573 -0.168600974119686 -0.168644818094716 -0.168698262836306 -0.168761223065209 -0.168833598111838 -0.168915271976049 -0.169006113398079 -0.169105975941158 -0.169214698086824 -0.169332103343721 -0.169458000370981 -0.169592183117272 -0.169734430976510 -0.169884508961623 -0.170042167897431 -0.170207144634034 -0.170379162281916 -0.170557930470120 -0.170743145628872 -0.170934491297808 -0.171131638461259 -0.171334245911733 -0.171541960642873 -0.171754418272939 -0.171971243499987 -0.172192050589676 -0.172416443896463 -0.172644018419067 -0.172874360390778 -0.173107047904860 -0.173341651575645 -0.173577735235046 -0.173814856664633 -0.173577735235046 -0.173341651575645 -0.173107047904860 -0.172874360390778 -0.172644018419067 -0.172416443896463 -0.172192050589676 -0.171971243499987 -0.171754418272939 -0.171541960642873 -0.171334245911733 -0.171131638461259 -0.170934491297808 -0.170743145628872 -0.170557930470120 -0.170379162281916 -0.170207144634034 -0.170042167897431 -0.169884508961623 -0.169734430976510 -0.169592183117272 -0.169458000370981 -0.169332103343721 -0.169214698086824 -0.169105975941158 -0.169006113398079 -0.168915271976049 -0.168833598111839 -0.168761223065209 -0.168698262836306 -0.168644818094716 -0.168600974119686 -0.168566800750573 -0.168542352347147 -0.168527667759218 -0.168522770305171 -0.168527667759218 -0.168542352347147 -0.168566800750573 -0.168600974119686 -0.168644818094716 -0.168698262836306 -0.168761223065209 -0.168833598111838 -0.168915271976049 -0.169006113398079 -0.169105975941158 -0.169214698086824 -0.169332103343721 -0.169458000370981 -0.169592183117272 -0.169734430976510 -0.169884508961623 -0.170042167897431 -0.170207144634034 -0.170379162281916 -0.170557930470121 -0.170743145628872 -0.170934491297808 -0.171131638461259 -0.171334245911733 -0.171541960642873 -0.171754418272939 -0.171971243499987 -0.172192050589676 -0.172416443896463 -0.172644018419067 -0.172874360390778 -0.173107047904860 -0.173341651575645 -0.173577735235046 -0.173814856664633 -0.173577735235046 -0.173341651575645 -0.173107047904860 -0.172874360390778 -0.172644018419067 -0.172416443896463 -0.172192050589676 -0.171971243499987 -0.171754418272939 -0.171541960642873 -0.171334245911733 -0.171131638461259 -0.170934491297808 -0.170743145628872 -0.170557930470121 -0.170379162281916 -0.170207144634034 -0.170042167897431 -0.169884508961623 -0.169734430976510 -0.169592183117272 -0.169458000370981 -0.169332103343721 -0.169214698086824 -0.169105975941158 -0.169006113398080 -0.168915271976049 -0.168833598111838 -0.168761223065209 -0.168698262836306 -0.168644818094716 -0.168600974119686 -0.168566800750573 -0.168542352347147 -0.168527667759218 -0.168522770305171 +-0.169835645767357 -0.169839354258664 -0.169850473554856 -0.169868985128261 -0.169894858118050 -0.169928049358245 -0.169968503417096 -0.170016152648091 -0.170070917252782 -0.170132705355769 -0.170201413092126 -0.170276924707726 -0.170359112672866 -0.170447837809674 -0.170542949433744 -0.170644285510678 -0.170751672827901 -0.170864927182503 -0.170983853585573 -0.171108246483711 -0.171237889998256 -0.171372558182846 -0.171512015299900 -0.171656016116534 -0.171804306220549 -0.171956622356767 -0.172112692784443 -0.172272237655905 -0.172434969416860 -0.172600593228629 -0.172768807412451 -0.172939303915968 -0.173111768801939 -0.173285882758938 -0.173461321633986 -0.173637756986733 -0.173814856664629 -0.173637756986733 -0.173461321633986 -0.173285882758938 -0.173111768801939 -0.172939303915968 -0.172768807412451 -0.172600593228629 -0.172434969416860 -0.172272237655905 -0.172112692784443 -0.171956622356767 -0.171804306220549 -0.171656016116534 -0.171512015299900 -0.171372558182846 -0.171237889998256 -0.171108246483712 -0.170983853585573 -0.170864927182503 -0.170751672827901 -0.170644285510678 -0.170542949433744 -0.170447837809674 -0.170359112672870 -0.170276924707726 -0.170201413092126 -0.170132705355769 -0.170070917252782 -0.170016152648092 -0.169968503417095 -0.169928049358246 -0.169894858118049 -0.169868985128262 -0.169850473554856 -0.169839354258664 -0.169835645767357 -0.169839354258664 -0.169850473554856 -0.169868985128262 -0.169894858118049 -0.169928049358245 -0.169968503417096 -0.170016152648092 -0.170070917252782 -0.170132705355769 -0.170201413092126 -0.170276924707726 -0.170359112672866 -0.170447837809674 -0.170542949433744 -0.170644285510678 -0.170751672827901 -0.170864927182503 -0.170983853585573 -0.171108246483712 -0.171237889998256 -0.171372558182846 -0.171512015299900 -0.171656016116534 -0.171804306220549 -0.171956622356767 -0.172112692784443 -0.172272237655905 -0.172434969416860 -0.172600593228629 -0.172768807412451 -0.172939303915968 -0.173111768801939 -0.173285882758938 -0.173461321633986 -0.173637756986733 -0.173814856664629 -0.173637756986733 -0.173461321633986 -0.173285882758938 -0.173111768801939 -0.172939303915968 -0.172768807412451 -0.172600593228629 -0.172434969416860 -0.172272237655905 -0.172112692784443 -0.171956622356767 -0.171804306220549 -0.171656016116534 -0.171512015299901 -0.171372558182846 -0.171237889998256 -0.171108246483712 -0.170983853585573 -0.170864927182503 -0.170751672827901 -0.170644285510678 -0.170542949433744 -0.170447837809674 -0.170359112672866 -0.170276924707726 -0.170201413092126 -0.170132705355769 -0.170070917252782 -0.170016152648092 -0.169968503417096 -0.169928049358245 -0.169894858118049 -0.169868985128262 -0.169850473554856 -0.169839354258664 -0.169835645767357 +-0.171151890160369 -0.171154389407662 -0.171161882789662 -0.171174357232183 -0.171191790963027 -0.171214153539169 -0.171241405884932 -0.171273500341101 -0.171310380725161 -0.171351982402682 -0.171398232370005 -0.171449049348265 -0.171504343889006 -0.171564018491408 -0.171627967731291 -0.171696078402067 -0.171768229667851 -0.171844293228656 -0.171924133498058 -0.172007607793366 -0.172094566538308 -0.172184853478573 -0.172278305910020 -0.172374754919901 -0.172474025640889 -0.172575937518133 -0.172680304589124 -0.172786935776552 -0.172895635193797 -0.173006202463161 -0.173118433046529 -0.173232118588199 -0.173347047269767 -0.173463004176592 -0.173579771675439 -0.173697129803003 -0.173814856664633 -0.173697129803003 -0.173579771675439 -0.173463004176592 -0.173347047269767 -0.173232118588199 -0.173118433046529 -0.173006202463161 -0.172895635193797 -0.172786935776552 -0.172680304589124 -0.172575937518133 -0.172474025640889 -0.172374754919901 -0.172278305910020 -0.172184853478573 -0.172094566538308 -0.172007607793366 -0.171924133498058 -0.171844293228656 -0.171768229667851 -0.171696078402067 -0.171627967731291 -0.171564018491409 -0.171504343889006 -0.171449049348265 -0.171398232370005 -0.171351982402681 -0.171310380725161 -0.171273500341101 -0.171241405884932 -0.171214153539169 -0.171191790963027 -0.171174357232183 -0.171161882789662 -0.171154389407662 -0.171151890160369 -0.171154389407662 -0.171161882789662 -0.171174357232183 -0.171191790963027 -0.171214153539169 -0.171241405884932 -0.171273500341101 -0.171310380725161 -0.171351982402681 -0.171398232370005 -0.171449049348265 -0.171504343889006 -0.171564018491408 -0.171627967731291 -0.171696078402067 -0.171768229667851 -0.171844293228656 -0.171924133498059 -0.172007607793366 -0.172094566538308 -0.172184853478573 -0.172278305910020 -0.172374754919901 -0.172474025640889 -0.172575937518133 -0.172680304589124 -0.172786935776552 -0.172895635193797 -0.173006202463161 -0.173118433046529 -0.173232118588199 -0.173347047269767 -0.173463004176592 -0.173579771675439 -0.173697129803003 -0.173814856664633 -0.173697129803003 -0.173579771675439 -0.173463004176592 -0.173347047269767 -0.173232118588199 -0.173118433046529 -0.173006202463161 -0.172895635193797 -0.172786935776552 -0.172680304589124 -0.172575937518133 -0.172474025640889 -0.172374754919901 -0.172278305910020 -0.172184853478573 -0.172094566538308 -0.172007607793366 -0.171924133498059 -0.171844293228656 -0.171768229667852 -0.171696078402067 -0.171627967731291 -0.171564018491409 -0.171504343889006 -0.171449049348265 -0.171398232370005 -0.171351982402681 -0.171310380725161 -0.171273500341101 -0.171241405884932 -0.171214153539169 -0.171191790963027 -0.171174357232183 -0.171161882789662 -0.171154389407662 -0.171151890160369 +-0.172476563726892 -0.172477828568088 -0.172481620785078 -0.172487933461774 -0.172496755083484 -0.172508069555132 -0.172521856226706 -0.172538089925998 -0.172556740998568 -0.172577775354889 -0.172601154524827 -0.172626835719099 -0.172654771898040 -0.172684911847386 -0.172717200261115 -0.172751577831303 -0.172787981344944 -0.172826343787625 -0.172866594453980 -0.172908659064948 -0.172952459891522 -0.172997915885148 -0.173044942814404 -0.173093453408073 -0.173143357504187 -0.173194562205193 -0.173246972038826 -0.173300489124627 -0.173355013345840 -0.173410442526555 -0.173466672613776 -0.173523597864232 -0.173581111035592 -0.173639103581887 -0.173697465852720 -0.173756087296158 -0.173814856664633 -0.173756087296158 -0.173697465852720 -0.173639103581887 -0.173581111035591 -0.173523597864232 -0.173466672613776 -0.173410442526555 -0.173355013345840 -0.173300489124627 -0.173246972038826 -0.173194562205193 -0.173143357504187 -0.173093453408073 -0.173044942814404 -0.172997915885148 -0.172952459891523 -0.172908659064948 -0.172866594453980 -0.172826343787625 -0.172787981344944 -0.172751577831303 -0.172717200261116 -0.172684911847386 -0.172654771898040 -0.172626835719099 -0.172601154524827 -0.172577775354889 -0.172556740998568 -0.172538089925998 -0.172521856226706 -0.172508069555132 -0.172496755083483 -0.172487933461774 -0.172481620785078 -0.172477828568088 -0.172476563726892 -0.172477828568088 -0.172481620785078 -0.172487933461774 -0.172496755083482 -0.172508069555132 -0.172521856226706 -0.172538089925998 -0.172556740998568 -0.172577775354889 -0.172601154524827 -0.172626835719099 -0.172654771898040 -0.172684911847386 -0.172717200261115 -0.172751577831305 -0.172787981344944 -0.172826343787625 -0.172866594453980 -0.172908659064948 -0.172952459891523 -0.172997915885148 -0.173044942814404 -0.173093453408073 -0.173143357504187 -0.173194562205193 -0.173246972038826 -0.173300489124626 -0.173355013345840 -0.173410442526555 -0.173466672613776 -0.173523597864232 -0.173581111035591 -0.173639103581887 -0.173697465852720 -0.173756087296158 -0.173814856664633 -0.173756087296158 -0.173697465852720 -0.173639103581887 -0.173581111035591 -0.173523597864232 -0.173466672613776 -0.173410442526555 -0.173355013345840 -0.173300489124627 -0.173246972038826 -0.173194562205193 -0.173143357504187 -0.173093453408073 -0.173044942814404 -0.172997915885148 -0.172952459891523 -0.172908659064948 -0.172866594453980 -0.172826343787625 -0.172787981344944 -0.172751577831305 -0.172717200261115 -0.172684911847386 -0.172654771898040 -0.172626835719099 -0.172601154524827 -0.172577775354889 -0.172556740998568 -0.172538089925998 -0.172521856226706 -0.172508069555132 -0.172496755083482 -0.172487933461774 -0.172481620785078 -0.172477828568088 -0.172476563726892 +-0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 -0.173814856664631 \ No newline at end of file diff --git a/simulations/Tutorial/xhps_integration/surface_tables/ref_area.txt b/simulations/Tutorial/xhps_integration/surface_tables/ref_area.txt new file mode 100644 index 0000000000000000000000000000000000000000..4f6fd1eb8c0795c31b8783d0bbde8a077286e7c2 --- /dev/null +++ b/simulations/Tutorial/xhps_integration/surface_tables/ref_area.txt @@ -0,0 +1,73 @@ +6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 6.071039999999961 +6.108065419973884 6.108024680331416 6.107902538954261 6.107699228345424 6.107415135518254 6.107050801259562 6.106606919100334 6.106084333995455 6.105484040715438 6.104807181952613 6.104055046146123 6.103229065029217 6.102330810903870 6.101361993647921 6.100324457460004 6.099220177349360 6.098051255375773 6.096819916648800 6.095528505091553 6.094179478979434 6.092775406260282 6.091318959666348 6.089812911626484 6.088260128988726 6.086663567563083 6.085026266494972 6.083351342480059 6.081641983831372 6.079901444410240 6.078133037432377 6.076340129161069 6.074526132499003 6.072694500491941 6.070848719755596 6.068992303838360 6.067128786533567 6.065261715152283 6.067128786533567 6.068992303838360 6.070848719755596 6.072694500491941 6.074526132499003 6.076340129161069 6.078133037432377 6.079901444410240 6.081641983831372 6.083351342480059 6.085026266494972 6.086663567563083 6.088260128988726 6.089812911626484 6.091318959666348 6.092775406260282 6.094179478979434 6.095528505091553 6.096819916648800 6.098051255375773 6.099220177349360 6.100324457460004 6.101361993647921 6.102330810903870 6.103229065029217 6.104055046146123 6.104807181952613 6.105484040715438 6.106084333995455 6.106606919100334 6.107050801259562 6.107415135518254 6.107699228345424 6.107902538954261 6.108024680331416 6.108065419973884 6.108024680331416 6.107902538954261 6.107699228345424 6.107415135518254 6.107050801259562 6.106606919100334 6.106084333995455 6.105484040715438 6.104807181952613 6.104055046146123 6.103229065029217 6.102330810903870 6.101361993647921 6.100324457460004 6.099220177349360 6.098051255375773 6.096819916648800 6.095528505091553 6.094179478979434 6.092775406260282 6.091318959666348 6.089812911626484 6.088260128988726 6.086663567563083 6.085026266494972 6.083351342480059 6.081641983831372 6.079901444410240 6.078133037432377 6.076340129161069 6.074526132499003 6.072694500491941 6.070848719755596 6.068992303838360 6.067128786533567 6.065261715152283 6.067128786533567 6.068992303838360 6.070848719755596 6.072694500491941 6.074526132499003 6.076340129161069 6.078133037432377 6.079901444410240 6.081641983831372 6.083351342480059 6.085026266494972 6.086663567563083 6.088260128988726 6.089812911626484 6.091318959666348 6.092775406260282 6.094179478979434 6.095528505091553 6.096819916648800 6.098051255375773 6.099220177349360 6.100324457460004 6.101361993647921 6.102330810903870 6.103229065029217 6.104055046146123 6.104807181952613 6.105484040715438 6.106084333995455 6.106606919100334 6.107050801259562 6.107415135518254 6.107699228345424 6.107902538954261 6.108024680331416 6.108065419973884 +6.133463790261244 6.133382388526528 6.133138338275232 6.132732104070882 6.132164459203362 6.131436484216956 6.130549564853425 6.129505389414157 6.128305945546471 6.126953516459953 6.125450676580208 6.123800286648387 6.122005488275491 6.120069697962294 6.117996600595640 6.115790142434189 6.113454523596499 6.110994190065711 6.108413825226573 6.105718340950236 6.102912868244167 6.100002747485100 6.096993518253464 6.093890908787946 6.090700825082082 6.087429339641530 6.084082679924723 6.080667216488665 6.077189450862146 6.073656003169686 6.070073599529797 6.066449059251412 6.062789281852927 6.059101233928697 6.055391935887518 6.051668448589028 6.047937859902949 6.051668448589028 6.055391935887518 6.059101233928697 6.062789281852927 6.066449059251412 6.070073599529797 6.073656003169686 6.077189450862146 6.080667216488665 6.084082679924723 6.087429339641530 6.090700825082082 6.093890908787946 6.096993518253464 6.100002747485099 6.102912868244167 6.105718340950236 6.108413825226573 6.110994190065711 6.113454523596499 6.115790142434189 6.117996600595640 6.120069697962294 6.122005488275491 6.123800286648387 6.125450676580208 6.126953516459953 6.128305945546471 6.129505389414157 6.130549564853425 6.131436484216956 6.132164459203362 6.132732104070882 6.133138338275232 6.133382388526528 6.133463790261244 6.133382388526528 6.133138338275232 6.132732104070882 6.132164459203362 6.131436484216956 6.130549564853425 6.129505389414157 6.128305945546471 6.126953516459953 6.125450676580209 6.123800286648387 6.122005488275491 6.120069697962294 6.117996600595640 6.115790142434189 6.113454523596499 6.110994190065711 6.108413825226573 6.105718340950236 6.102912868244167 6.100002747485099 6.096993518253464 6.093890908787946 6.090700825082082 6.087429339641530 6.084082679924723 6.080667216488665 6.077189450862163 6.073656003169686 6.070073599529797 6.066449059251412 6.062789281852927 6.059101233928697 6.055391935887518 6.051668448589028 6.047937859902949 6.051668448589028 6.055391935887518 6.059101233928697 6.062789281852927 6.066449059251412 6.070073599529797 6.073656003169686 6.077189450862163 6.080667216488665 6.084082679924723 6.087429339641530 6.090700825082082 6.093890908787946 6.096993518253464 6.100002747485099 6.102912868244167 6.105718340950236 6.108413825226573 6.110994190065711 6.113454523596499 6.115790142434189 6.117996600595640 6.120069697962294 6.122005488275491 6.123800286648387 6.125450676580208 6.126953516459953 6.128305945546471 6.129505389414157 6.130549564853425 6.131436484216956 6.132164459203362 6.132732104070882 6.133138338275232 6.133382388526528 6.133463790261244 +6.147186763620415 6.147064854746258 6.146699360184429 6.146090975674428 6.145240859310851 6.144150629338498 6.142822361072061 6.141258582945690 6.139462271699933 6.137436846715337 6.135186163503484 6.132714506367809 6.130026580248088 6.127127501764504 6.124022789477746 6.120718353384081 6.117220483665387 6.113535838715547 6.109671432465673 6.105634621032580 6.101433088716366 6.097074833372600 6.092568151187904 6.087921620888097 6.083144087407665 6.078244645053104 6.073232620191447 6.068117553496799 6.062909181789414 6.057617419500801 6.052252339801298 6.046824155424980 6.041343199229352 6.035819904526155 6.030264785220639 6.024688415798206 6.019101411194893 6.024688415798203 6.030264785220639 6.035819904526155 6.041343199229352 6.046824155425015 6.052252339801298 6.057617419500801 6.062909181789414 6.068117553496799 6.073232620191447 6.078244645053105 6.083144087407665 6.087921620888094 6.092568151187904 6.097074833372600 6.101433088716348 6.105634621032580 6.109671432465673 6.113535838715529 6.117220483665387 6.120718353384081 6.124022789477746 6.127127501764504 6.130026580248088 6.132714506367809 6.135186163503484 6.137436846715337 6.139462271699933 6.141258582945690 6.142822361072061 6.144150629338498 6.145240859310851 6.146090975674428 6.146699360184429 6.147064854746258 6.147186763620415 6.147064854746258 6.146699360184429 6.146090975674428 6.145240859310851 6.144150629338498 6.142822361072061 6.141258582945690 6.139462271699933 6.137436846715337 6.135186163503484 6.132714506367809 6.130026580248088 6.127127501764504 6.124022789477746 6.120718353384081 6.117220483665387 6.113535838715547 6.109671432465673 6.105634621032580 6.101433088716348 6.097074833372600 6.092568151187904 6.087921620888097 6.083144087407665 6.078244645053104 6.073232620191447 6.068117553496799 6.062909181789430 6.057617419500802 6.052252339801298 6.046824155425015 6.041343199229352 6.035819904526155 6.030264785220639 6.024688415798206 6.019101411194893 6.024688415798206 6.030264785220639 6.035819904526155 6.041343199229352 6.046824155425015 6.052252339801298 6.057617419500802 6.062909181789430 6.068117553496799 6.073232620191447 6.078244645053104 6.083144087407665 6.087921620888097 6.092568151187904 6.097074833372600 6.101433088716348 6.105634621032580 6.109671432465673 6.113535838715547 6.117220483665387 6.120718353384081 6.124022789477746 6.127127501764504 6.130026580248088 6.132714506367809 6.135186163503484 6.137436846715337 6.139462271699933 6.141258582945690 6.142822361072061 6.144150629338498 6.145240859310851 6.146090975674428 6.146699360184429 6.147064854746258 6.147186763620415 +6.149208217591809 6.149046033638739 6.148559790505910 6.147750413784805 6.146619444169985 6.145169034526384 6.143401945791180 6.141321541718247 6.138931782474965 6.136237217103886 6.133242974863329 6.129954755463593 6.126378818217183 6.122521970123940 6.118391552913340 6.113995429069356 6.109341966863568 6.104440024425781 6.099298932881989 6.093928478592230 6.088338884521362 6.082540790779505 6.076545234367600 6.070363628168000 6.064007739219531 6.057489666317965 6.050821816985593 6.044016883852540 6.037087820495852 6.030047816781416 6.022910273756424 6.015688778139712 6.008397076458649 6.001049048881708 5.993658682797227 5.986240046186907 5.978807260847247 5.986240046186907 5.993658682797227 6.001049048881708 6.008397076458649 6.015688778139729 6.022910273756424 6.030047816781416 6.037087820495852 6.044016883852540 6.050821816985593 6.057489666317966 6.064007739219531 6.070363628167999 6.076545234367600 6.082540790779505 6.088338884521362 6.093928478592230 6.099298932881989 6.104440024425781 6.109341966863568 6.113995429069354 6.118391552913340 6.122521970123941 6.126378818217183 6.129954755463592 6.133242974863329 6.136237217103885 6.138931782474965 6.141321541718247 6.143401945791180 6.145169034526384 6.146619444169985 6.147750413784805 6.148559790505910 6.149046033638739 6.149208217591809 6.149046033638739 6.148559790505910 6.147750413784805 6.146619444169985 6.145169034526384 6.143401945791180 6.141321541718247 6.138931782474965 6.136237217103885 6.133242974863329 6.129954755463593 6.126378818217183 6.122521970123940 6.118391552913340 6.113995429069354 6.109341966863568 6.104440024425781 6.099298932881990 6.093928478592230 6.088338884521361 6.082540790779505 6.076545234367600 6.070363628168000 6.064007739219531 6.057489666317966 6.050821816985593 6.044016883852540 6.037087820495852 6.030047816781416 6.022910273756424 6.015688778139712 6.008397076458629 6.001049048881708 5.993658682797227 5.986240046186907 5.978807260847247 5.986240046186907 5.993658682797227 6.001049048881708 6.008397076458629 6.015688778139712 6.022910273756424 6.030047816781416 6.037087820495852 6.044016883852540 6.050821816985593 6.057489666317966 6.064007739219531 6.070363628168000 6.076545234367600 6.082540790779505 6.088338884521361 6.093928478592230 6.099298932881990 6.104440024425781 6.109341966863568 6.113995429069354 6.118391552913340 6.122521970123940 6.126378818217183 6.129954755463593 6.133242974863329 6.136237217103885 6.138931782474965 6.141321541718247 6.143401945791180 6.145169034526384 6.146619444169985 6.147750413784805 6.148559790505910 6.149046033638739 6.149208217591809 +6.139524304222757 6.139322153917147 6.138716087804856 6.137707259567197 6.136297589566046 6.134489761188391 6.132287215738295 6.129694145886167 6.126715487687923 6.123356911188660 6.119624809629728 6.115526287278473 6.111069145905164 6.106261869931782 6.101113610281278 6.095634166958594 6.089833970395452 6.083724061595740 6.077316071118051 6.070622196936521 6.063655181221084 6.056428286082152 6.048955268325340 6.041250353264751 6.033328207644028 6.025203911717738 6.016892930544838 6.008411084550323 5.999774519410297 5.990999675317190 5.982103255685567 5.973102195355797 5.964013628357808 5.954854855295444 5.945643310413785 5.936396528412042 5.927132111065325 5.936396528412042 5.945643310413785 5.954854855295444 5.964013628357806 5.973102195355797 5.982103255685568 5.990999675317190 5.999774519410297 6.008411084550323 6.016892930544838 6.025203911717739 6.033328207644032 6.041250353264748 6.048955268325339 6.056428286082149 6.063655181221084 6.070622196936521 6.077316071118051 6.083724061595740 6.089833970395452 6.095634166958594 6.101113610281278 6.106261869931784 6.111069145905164 6.115526287278473 6.119624809629728 6.123356911188660 6.126715487687923 6.129694145886167 6.132287215738294 6.134489761188391 6.136297589566046 6.137707259567197 6.138716087804856 6.139322153917147 6.139524304222757 6.139322153917147 6.138716087804856 6.137707259567197 6.136297589566046 6.134489761188391 6.132287215738295 6.129694145886167 6.126715487687923 6.123356911188660 6.119624809629729 6.115526287278477 6.111069145905164 6.106261869931784 6.101113610281278 6.095634166958594 6.089833970395453 6.083724061595741 6.077316071118051 6.070622196936521 6.063655181221084 6.056428286082147 6.048955268325339 6.041250353264751 6.033328207644032 6.025203911717739 6.016892930544838 6.008411084550323 5.999774519410298 5.990999675317191 5.982103255685568 5.973102195355797 5.964013628357788 5.954854855295444 5.945643310413785 5.936396528412042 5.927132111065325 5.936396528412042 5.945643310413785 5.954854855295444 5.964013628357788 5.973102195355797 5.982103255685568 5.990999675317191 5.999774519410298 6.008411084550323 6.016892930544838 6.025203911717739 6.033328207644032 6.041250353264751 6.048955268325340 6.056428286082147 6.063655181221084 6.070622196936521 6.077316071118051 6.083724061595741 6.089833970395452 6.095634166958594 6.101113610281278 6.106261869931784 6.111069145905164 6.115526287278477 6.119624809629728 6.123356911188660 6.126715487687923 6.129694145886167 6.132287215738295 6.134489761188391 6.136297589566046 6.137707259567197 6.138716087804856 6.139322153917147 6.139524304222757 +6.118153457393139 6.117911725539544 6.117186990129051 6.115980630736727 6.114294943736232 6.112133137928604 6.109499328434034 6.106398528858595 6.102836641750530 6.098820447364387 6.094357590754468 6.089456567221936 6.084126706143674 6.078378153213127 6.072221851127627 6.065669518757999 6.058733628841356 6.051427384238364 6.043764692800876 6.035760140897560 6.027428965647918 6.018787025917577 6.009850772129948 6.000637214952032 5.991163892913582 5.981448839021549 5.971510546433144 5.961367933253188 5.951040306522330 5.940547325465057 5.929908964067212 5.919145473054277 5.908277341343211 5.897325257040442 5.886310068060860 5.875252742442818 5.864174328434034 5.875252742442818 5.886310068060860 5.897325257040440 5.908277341343211 5.919145473054278 5.929908964067218 5.940547325465057 5.951040306522330 5.961367933253188 5.971510546433144 5.981448839021549 5.991163892913582 6.000637214952032 6.009850772129948 6.018787025917576 6.027428965647917 6.035760140897578 6.043764692800876 6.051427384238364 6.058733628841356 6.065669518757998 6.072221851127628 6.078378153213127 6.084126706143674 6.089456567221936 6.094357590754468 6.098820447364387 6.102836641750531 6.106398528858595 6.109499328434034 6.112133137928604 6.114294943736232 6.115980630736727 6.117186990129051 6.117911725539544 6.118153457393139 6.117911725539544 6.117186990129051 6.115980630736727 6.114294943736232 6.112133137928604 6.109499328434034 6.106398528858595 6.102836641750530 6.098820447364386 6.094357590754468 6.089456567221936 6.084126706143674 6.078378153213127 6.072221851127627 6.065669518757998 6.058733628841356 6.051427384238364 6.043764692800876 6.035760140897567 6.027428965647917 6.018787025917576 6.009850772129946 6.000637214952034 5.991163892913582 5.981448839021549 5.971510546433144 5.961367933253188 5.951040306522330 5.940547325465057 5.929908964067218 5.919145473054278 5.908277341343211 5.897325257040440 5.886310068060878 5.875252742442818 5.864174328434034 5.875252742442818 5.886310068060878 5.897325257040440 5.908277341343211 5.919145473054278 5.929908964067218 5.940547325465057 5.951040306522330 5.961367933253188 5.971510546433144 5.981448839021549 5.991163892913582 6.000637214952032 6.009850772129948 6.018787025917576 6.027428965647917 6.035760140897578 6.043764692800876 6.051427384238364 6.058733628841354 6.065669518757998 6.072221851127627 6.078378153213127 6.084126706143674 6.089456567221936 6.094357590754461 6.098820447364387 6.102836641750530 6.106398528858595 6.109499328434034 6.112133137928604 6.114294943736232 6.115980630736727 6.117186990129051 6.117911725539544 6.118153457393139 +6.085136357724066 6.084855504472811 6.084013479339185 6.082611885165867 6.080653389967061 6.078141721849661 6.075081661916699 6.071479035166155 6.067340699402847 6.062674532184084 6.057489415824390 6.051795220487423 6.045602785397672 6.038923898207305 6.031771272557650 6.024158523878168 6.016100143468667 6.007611470914287 5.998708664885651 5.989408672380068 5.979729196461819 5.969688662563472 5.959306183411993 5.948601522646544 5.937595057197278 5.926307738496762 5.914761052597691 5.902976979272917 5.890977950175741 5.878786806140122 5.866426753701536 5.853921320922379 5.841294312604683 5.828569764976421 5.815771899937244 5.802925078950611 5.790053756670511 5.802925078950611 5.815771899937234 5.828569764976421 5.841294312604683 5.853921320922380 5.866426753701539 5.878786806140122 5.890977950175741 5.902976979272916 5.914761052597690 5.926307738496770 5.937595057197278 5.948601522646540 5.959306183411992 5.969688662563471 5.979729196461819 5.989408672380068 5.998708664885649 6.007611470914269 6.016100143468667 6.024158523878167 6.031771272557650 6.038923898207314 6.045602785397672 6.051795220487423 6.057489415824389 6.062674532184084 6.067340699402849 6.071479035166155 6.075081661916699 6.078141721849661 6.080653389967061 6.082611885165867 6.084013479339185 6.084855504472811 6.085136357724066 6.084855504472811 6.084013479339185 6.082611885165867 6.080653389967061 6.078141721849661 6.075081661916699 6.071479035166155 6.067340699402849 6.062674532184080 6.057489415824390 6.051795220487423 6.045602785397672 6.038923898207305 6.031771272557650 6.024158523878167 6.016100143468667 6.007611470914287 5.998708664885651 5.989408672380068 5.979729196461819 5.969688662563471 5.959306183411992 5.948601522646544 5.937595057197278 5.926307738496770 5.914761052597687 5.902976979272916 5.890977950175744 5.878786806140122 5.866426753701536 5.853921320922380 5.841294312604679 5.828569764976421 5.815771899937244 5.802925078950611 5.790053756670511 5.802925078950611 5.815771899937244 5.828569764976421 5.841294312604679 5.853921320922380 5.866426753701536 5.878786806140122 5.890977950175744 5.902976979272916 5.914761052597683 5.926307738496770 5.937595057197278 5.948601522646544 5.959306183411994 5.969688662563471 5.979729196461819 5.989408672380068 5.998708664885651 6.007611470914287 6.016100143468667 6.024158523878167 6.031771272557650 6.038923898207310 6.045602785397672 6.051795220487423 6.057489415824389 6.062674532184080 6.067340699402849 6.071479035166155 6.075081661916699 6.078141721849661 6.080653389967061 6.082611885165867 6.084013479339185 6.084855504472811 6.085136357724066 +6.040535855141594 6.040216415112813 6.039258703098747 6.037664542158614 6.035436966868398 6.032580217544242 6.029099732170884 6.025002136050051 6.020295229188821 6.014987971451941 6.009090465506148 6.002613937589234 5.995570716140175 5.987974208331265 5.979838874546961 5.971180200857447 5.962014669540198 5.952359727705073 5.942233754082565 5.931656024039013 5.920646672884725 5.909226657545361 5.897417716669205 5.885242329246384 5.872723671818852 5.859885574362548 5.846752474925664 5.833349373109404 5.819701782479790 5.805835682001341 5.791777466584408 5.777553896841087 5.763192048144720 5.748719259090639 5.734163079455310 5.719551217754071 5.704911488496112 5.719551217754071 5.734163079455309 5.748719259090639 5.763192048144718 5.777553896841087 5.791777466584408 5.805835682001341 5.819701782479786 5.833349373109401 5.846752474925664 5.859885574362548 5.872723671818852 5.885242329246384 5.897417716669205 5.909226657545355 5.920646672884708 5.931656024039015 5.942233754082565 5.952359727705073 5.962014669540198 5.971180200857447 5.979838874546963 5.987974208331266 5.995570716140175 6.002613937589234 6.009090465506147 6.014987971451940 6.020295229188824 6.025002136050052 6.029099732170884 6.032580217544242 6.035436966868398 6.037664542158614 6.039258703098747 6.040216415112813 6.040535855141594 6.040216415112813 6.039258703098747 6.037664542158614 6.035436966868396 6.032580217544243 6.029099732170885 6.025002136050051 6.020295229188821 6.014987971451940 6.009090465506148 6.002613937589235 5.995570716140175 5.987974208331265 5.979838874546963 5.971180200857445 5.962014669540198 5.952359727705073 5.942233754082565 5.931656024039013 5.920646672884707 5.909226657545355 5.897417716669205 5.885242329246385 5.872723671818852 5.859885574362548 5.846752474925664 5.833349373109383 5.819701782479790 5.805835682001344 5.791777466584408 5.777553896841087 5.763192048144718 5.748719259090639 5.734163079455327 5.719551217754071 5.704911488496112 5.719551217754071 5.734163079455327 5.748719259090639 5.763192048144718 5.777553896841087 5.791777466584408 5.805835682001344 5.819701782479790 5.833349373109383 5.846752474925664 5.859885574362548 5.872723671818852 5.885242329246385 5.897417716669205 5.909226657545355 5.920646672884707 5.931656024039013 5.942233754082565 5.952359727705073 5.962014669540198 5.971180200857445 5.979838874546963 5.987974208331265 5.995570716140175 6.002613937589235 6.009090465506147 6.014987971451940 6.020295229188821 6.025002136050051 6.029099732170885 6.032580217544243 6.035436966868396 6.037664542158614 6.039258703098747 6.040216415112813 6.040535855141594 +5.984436849237162 5.984079430503117 5.983007854667836 5.981224161536836 5.978731746471403 5.975535353925223 5.971641068413198 5.967056302929141 5.961789784834719 5.955851539246483 5.949252869952386 5.942006337894486 5.934125737258428 5.925626069215418 5.916523513366659 5.906835396944594 5.896580161829426 5.885777329444104 5.874447463594047 5.862612131322824 5.850293861858162 5.837516103726035 5.824303180115334 5.810680242577112 5.796673223147244 5.782308784983337 5.767614271609823 5.752617654868123 5.737347481670583 5.721832819659703 5.706103201876468 5.690188570542326 5.674119220062611 5.657925739359223 5.641638953643037 5.625289865736411 5.608909597057319 5.625289865736397 5.641638953643036 5.657925739359223 5.674119220062611 5.690188570542327 5.706103201876472 5.721832819659703 5.737347481670583 5.752617654868121 5.767614271609822 5.782308784983337 5.796673223147249 5.810680242577112 5.824303180115334 5.837516103726035 5.850293861858144 5.862612131322826 5.874447463594047 5.885777329444104 5.896580161829424 5.906835396944593 5.916523513366667 5.925626069215418 5.934125737258428 5.942006337894486 5.949252869952386 5.955851539246482 5.961789784834719 5.967056302929141 5.971641068413198 5.975535353925223 5.978731746471403 5.981224161536836 5.983007854667836 5.984079430503117 5.984436849237162 5.984079430503117 5.983007854667836 5.981224161536836 5.978731746471403 5.975535353925223 5.971641068413198 5.967056302929141 5.961789784834719 5.955851539246482 5.949252869952387 5.942006337894489 5.934125737258429 5.925626069215418 5.916523513366660 5.906835396944593 5.896580161829426 5.885777329444105 5.874447463594047 5.862612131322824 5.850293861858144 5.837516103726032 5.824303180115328 5.810680242577113 5.796673223147244 5.782308784983337 5.767614271609822 5.752617654868117 5.737347481670584 5.721832819659717 5.706103201876471 5.690188570542326 5.674119220062610 5.657925739359223 5.641638953643037 5.625289865736411 5.608909597057319 5.625289865736411 5.641638953643037 5.657925739359223 5.674119220062610 5.690188570542326 5.706103201876468 5.721832819659717 5.737347481670584 5.752617654868117 5.767614271609822 5.782308784983337 5.796673223147244 5.810680242577113 5.824303180115334 5.837516103726032 5.850293861858144 5.862612131322825 5.874447463594047 5.885777329444105 5.896580161829424 5.906835396944593 5.916523513366660 5.925626069215418 5.934125737258429 5.942006337894489 5.949252869952386 5.955851539246482 5.961789784834719 5.967056302929141 5.971641068413198 5.975535353925223 5.978731746471403 5.981224161536836 5.983007854667836 5.984079430503117 5.984436849237162 +5.916946127657230 5.916551410584787 5.915368010733811 5.913398180773227 5.910645670386276 5.907115719132944 5.902815046476058 5.897751838990481 5.891935734779396 5.885377805127766 5.878090533427407 5.870087791414170 5.861384812762331 5.851998164086400 5.841945713405636 5.831246596131237 5.819921178641051 5.807991019510969 5.795478828476948 5.782408423205762 5.768804683956740 5.754693506220693 5.740101751426510 5.725057195808756 5.709588477534139 5.693725042187087 5.677497086718378 5.660935501963577 5.644071813840617 5.626938123338235 5.609567045410174 5.591991646890577 5.574245383549409 5.556362036407614 5.538375647432828 5.520320454738836 5.502230827411061 5.520320454738836 5.538375647432827 5.556362036407614 5.574245383549409 5.591991646890578 5.609567045410174 5.626938123338235 5.644071813840613 5.660935501963573 5.677497086718378 5.693725042187087 5.709588477534140 5.725057195808755 5.740101751426508 5.754693506220693 5.768804683956740 5.782408423205766 5.795478828476948 5.807991019510969 5.819921178641051 5.831246596131237 5.841945713405637 5.851998164086409 5.861384812762331 5.870087791414170 5.878090533427407 5.885377805127766 5.891935734779397 5.897751838990481 5.902815046476058 5.907115719132944 5.910645670386276 5.913398180773227 5.915368010733811 5.916551410584787 5.916946127657230 5.916551410584787 5.915368010733811 5.913398180773227 5.910645670386276 5.907115719132946 5.902815046476058 5.897751838990481 5.891935734779397 5.885377805127766 5.878090533427407 5.870087791414170 5.861384812762331 5.851998164086400 5.841945713405636 5.831246596131235 5.819921178641052 5.807991019510969 5.795478828476949 5.782408423205762 5.768804683956739 5.754693506220691 5.740101751426507 5.725057195808757 5.709588477534140 5.693725042187087 5.677497086718377 5.660935501963573 5.644071813840617 5.626938123338238 5.609567045410174 5.591991646890578 5.574245383549409 5.556362036407614 5.538375647432828 5.520320454738837 5.502230827411061 5.520320454738837 5.538375647432828 5.556362036407614 5.574245383549409 5.591991646890578 5.609567045410174 5.626938123338235 5.644071813840617 5.660935501963573 5.677497086718377 5.693725042187087 5.709588477534140 5.725057195808757 5.740101751426510 5.754693506220691 5.768804683956739 5.782408423205762 5.795478828476949 5.807991019510969 5.819921178641051 5.831246596131235 5.841945713405636 5.851998164086400 5.861384812762331 5.870087791414170 5.878090533427407 5.885377805127766 5.891935734779397 5.897751838990481 5.902815046476058 5.907115719132946 5.910645670386276 5.913398180773227 5.915368010733811 5.916551410584787 5.916946127657230 +5.838192162825759 5.837760898781293 5.836467927583519 5.834315710476595 5.831308344328122 5.827451553830470 5.822752680603571 5.817220669219680 5.810866050176879 5.803700919853687 5.795738917482915 5.786995199188624 5.777486409135514 5.767230647845919 5.756247437744333 5.744557685995483 5.732183644706160 5.719148868567283 5.705478170016084 5.691197572004219 5.676334258461678 5.660916522550597 5.644973712807515 5.628536177276954 5.611635205741996 5.594302970162589 5.576572463434259 5.558477436584263 5.540052334524673 5.521332230484485 5.502352759245754 5.483150049310654 5.463760654128962 5.444221482516454 5.424569728396819 5.404842800000937 5.385078248658243 5.404842800000937 5.424569728396819 5.444221482516454 5.463760654128961 5.483150049310655 5.502352759245755 5.521332230484485 5.540052334524673 5.558477436584263 5.576572463434257 5.594302970162592 5.611635205742000 5.628536177276954 5.644973712807515 5.660916522550597 5.676334258461678 5.691197572004221 5.705478170016084 5.719148868567283 5.732183644706160 5.744557685995483 5.756247437744334 5.767230647845920 5.777486409135513 5.786995199188624 5.795738917482915 5.803700919853684 5.810866050176879 5.817220669219680 5.822752680603571 5.827451553830470 5.831308344328122 5.834315710476595 5.836467927583519 5.837760898781293 5.838192162825759 5.837760898781293 5.836467927583519 5.834315710476595 5.831308344328122 5.827451553830470 5.822752680603571 5.817220669219680 5.810866050176879 5.803700919853682 5.795738917482915 5.786995199188624 5.777486409135514 5.767230647845919 5.756247437744334 5.744557685995473 5.732183644706160 5.719148868567285 5.705478170016085 5.691197572004219 5.676334258461678 5.660916522550596 5.644973712807515 5.628536177276955 5.611635205742000 5.594302970162589 5.576572463434257 5.558477436584262 5.540052334524674 5.521332230484495 5.502352759245754 5.483150049310655 5.463760654128961 5.444221482516451 5.424569728396819 5.404842800000937 5.385078248658243 5.404842800000937 5.424569728396819 5.444221482516451 5.463760654128961 5.483150049310655 5.502352759245754 5.521332230484495 5.540052334524674 5.558477436584262 5.576572463434257 5.594302970162589 5.611635205741999 5.628536177276955 5.644973712807515 5.660916522550596 5.676334258461678 5.691197572004219 5.705478170016085 5.719148868567285 5.732183644706160 5.744557685995473 5.756247437744334 5.767230647845919 5.777486409135514 5.786995199188624 5.795738917482914 5.803700919853682 5.810866050176879 5.817220669219680 5.822752680603571 5.827451553830470 5.831308344328122 5.834315710476595 5.836467927583519 5.837760898781293 5.838192162825759 +5.748324867391430 5.747857877310564 5.746457796010138 5.744127288624489 5.740870791406858 5.736694503284826 5.731606374060157 5.725616089276043 5.718735051780031 5.710976360018083 5.702354783100962 5.692886732690321 5.682590231758263 5.671484880279520 5.659591817921828 5.646933683805321 5.633534573407753 5.619419992697313 5.604616809580611 5.589153202758058 5.573058608084135 5.556363662534562 5.539100145887065 5.521300920226798 5.502999867391423 5.484231824475192 5.465032517514500 5.445438493481364 5.425487050714167 5.405216167918192 5.384664431870967 5.363870963970135 5.342875345763713 5.321717543604199 5.300437832570570 5.279076719802232 5.257674867391429 5.279076719802231 5.300437832570567 5.321717543604195 5.342875345763713 5.363870963970140 5.384664431870967 5.405216167918192 5.425487050714167 5.445438493481363 5.465032517514500 5.484231824475200 5.502999867391430 5.521300920226798 5.539100145887063 5.556363662534559 5.573058608084135 5.589153202758059 5.604616809580603 5.619419992697312 5.633534573407752 5.646933683805320 5.659591817921829 5.671484880279523 5.682590231758263 5.692886732690321 5.702354783100961 5.710976360018083 5.718735051780031 5.725616089276043 5.731606374060157 5.736694503284826 5.740870791406858 5.744127288624489 5.746457796010138 5.747857877310564 5.748324867391430 5.747857877310564 5.746457796010138 5.744127288624489 5.740870791406857 5.736694503284826 5.731606374060157 5.725616089276043 5.718735051780031 5.710976360018082 5.702354783100962 5.692886732690321 5.682590231758263 5.671484880279522 5.659591817921828 5.646933683805319 5.633534573407754 5.619419992697313 5.604616809580614 5.589153202758058 5.573058608084133 5.556363662534559 5.539100145887062 5.521300920226798 5.502999867391424 5.484231824475196 5.465032517514500 5.445438493481358 5.425487050714167 5.405216167918193 5.384664431870967 5.363870963970140 5.342875345763713 5.321717543604195 5.300437832570571 5.279076719802232 5.257674867391429 5.279076719802232 5.300437832570571 5.321717543604195 5.342875345763713 5.363870963970140 5.384664431870967 5.405216167918193 5.425487050714167 5.445438493481358 5.465032517514500 5.484231824475195 5.502999867391424 5.521300920226798 5.539100145887065 5.556363662534559 5.573058608084133 5.589153202758058 5.604616809580614 5.619419992697313 5.633534573407752 5.646933683805319 5.659591817921828 5.671484880279522 5.682590231758263 5.692886732690321 5.702354783100961 5.710976360018082 5.718735051780031 5.725616089276043 5.731606374060157 5.736694503284826 5.740870791406857 5.744127288624489 5.746457796010138 5.747857877310564 5.748324867391430 +5.647515308858657 5.647013481683571 5.645508955414813 5.643004594003692 5.639505164644479 5.635017328699833 5.629549629020583 5.623112473683793 5.615718116180545 5.607380632090599 5.598115892288783 5.587941532733894 5.576876920897606 5.564943118897452 5.552162843403787 5.538560422397393 5.524161748859767 5.508994231484366 5.493086742502583 5.476469562723817 5.459174323894208 5.441233948483895 5.422682587017121 5.403555553064841 5.383889256023282 5.363721131806630 5.343089571585605 5.322033848707712 5.300594043938180 5.278810969163938 5.256726089705904 5.234381445387329 5.211819570508668 5.189083412881113 5.166216252072904 5.143261617024349 5.120263203187908 5.143261617024348 5.166216252072904 5.189083412881109 5.211819570508666 5.234381445387333 5.256726089705909 5.278810969163935 5.300594043938176 5.322033848707708 5.343089571585605 5.363721131806632 5.383889256023289 5.403555553064840 5.422682587017119 5.441233948483893 5.459174323894206 5.476469562723818 5.493086742502582 5.508994231484366 5.524161748859767 5.538560422397393 5.552162843403789 5.564943118897456 5.576876920897606 5.587941532733893 5.598115892288782 5.607380632090598 5.615718116180549 5.623112473683798 5.629549629020582 5.635017328699833 5.639505164644479 5.643004594003692 5.645508955414813 5.647013481683571 5.647515308858657 5.647013481683571 5.645508955414813 5.643004594003692 5.639505164644475 5.635017328699833 5.629549629020583 5.623112473683797 5.615718116180546 5.607380632090597 5.598115892288783 5.587941532733898 5.576876920897607 5.564943118897453 5.552162843403787 5.538560422397391 5.524161748859768 5.508994231484367 5.493086742502584 5.476469562723817 5.459174323894204 5.441233948483891 5.422682587017119 5.403555553064842 5.383889256023282 5.363721131806631 5.343089571585600 5.322033848707707 5.300594043938180 5.278810969163940 5.256726089705909 5.234381445387332 5.211819570508666 5.189083412881108 5.166216252072908 5.143261617024353 5.120263203187908 5.143261617024353 5.166216252072908 5.189083412881108 5.211819570508666 5.234381445387332 5.256726089705904 5.278810969163940 5.300594043938180 5.322033848707707 5.343089571585600 5.363721131806631 5.383889256023282 5.403555553064842 5.422682587017121 5.441233948483891 5.459174323894204 5.476469562723817 5.493086742502584 5.508994231484367 5.524161748859766 5.538560422397391 5.552162843403787 5.564943118897453 5.576876920897607 5.587941532733898 5.598115892288782 5.607380632090597 5.615718116180546 5.623112473683797 5.629549629020583 5.635017328699833 5.639505164644475 5.643004594003692 5.645508955414813 5.647013481683571 5.647515308858657 +5.535955383951609 5.535419674938833 5.533813567653034 5.531140119410719 5.527404419272580 5.522613578356149 5.516776716299387 5.509904943900993 5.502011341970275 5.493110936427146 5.483220669699443 5.472359368471992 5.460547707848994 5.447808171997783 5.434165011348925 5.419644196434136 5.404273368449917 5.388081786640945 5.371100272603480 5.353361151614658 5.334898191099472 5.315746536352687 5.295942643637581 5.275524210789522 5.254530105455952 5.233000291109597 5.210975750975753 5.188498410018341 5.165611055133401 5.142357253701802 5.118781270656216 5.094927984220339 5.070842800480665 5.046571566953319 5.022160485310818 4.997656023434507 4.973104826960309 4.997656023434506 5.022160485310814 5.046571566953319 5.070842800480665 5.094927984220345 5.118781270656217 5.142357253701801 5.165611055133396 5.188498410018333 5.210975750975752 5.233000291109597 5.254530105455954 5.275524210789520 5.295942643637577 5.315746536352684 5.334898191099472 5.353361151614661 5.371100272603480 5.388081786640944 5.404273368449917 5.419644196434136 5.434165011348927 5.447808171997787 5.460547707848993 5.472359368471992 5.483220669699441 5.493110936427146 5.502011341970276 5.509904943900994 5.516776716299383 5.522613578356149 5.527404419272579 5.531140119410719 5.533813567653034 5.535419674938833 5.535955383951609 5.535419674938833 5.533813567653034 5.531140119410719 5.527404419272579 5.522613578356149 5.516776716299387 5.509904943900994 5.502011341970276 5.493110936427146 5.483220669699444 5.472359368471992 5.460547707848994 5.447808171997784 5.434165011348927 5.419644196434136 5.404273368449918 5.388081786640946 5.371100272603482 5.353361151614658 5.334898191099471 5.315746536352684 5.295942643637575 5.275524210789523 5.254530105455952 5.233000291109597 5.210975750975750 5.188498410018332 5.165611055133401 5.142357253701805 5.118781270656217 5.094927984220345 5.070842800480665 5.046571566953318 5.022160485310821 4.997656023434510 4.973104826960309 4.997656023434510 5.022160485310821 5.046571566953318 5.070842800480665 5.094927984220340 5.118781270656217 5.142357253701805 5.165611055133401 5.188498410018332 5.210975750975750 5.233000291109597 5.254530105455952 5.275524210789523 5.295942643637581 5.315746536352684 5.334898191099471 5.353361151614660 5.371100272603482 5.388081786640946 5.404273368449916 5.419644196434136 5.434165011348927 5.447808171997784 5.460547707848994 5.472359368471992 5.483220669699441 5.493110936427146 5.502011341970276 5.509904943900994 5.516776716299387 5.522613578356149 5.527404419272579 5.531140119410719 5.533813567653034 5.535419674938833 5.535955383951609 +5.413857453327952 5.413288882230044 5.411584251243686 5.408746805230875 5.404781945431352 5.399697219181096 5.393502305545521 5.386208996894831 5.377831176456559 5.368384791888084 5.357887824919324 5.346360257123514 5.333824031881132 5.320303012609441 5.305822937337114 5.290411369710434 5.274097646524292 5.256912821878000 5.238889608061995 5.220062313288135 5.200466776382111 5.180140298562150 5.159121572434065 5.137450608337679 5.115168658184833 5.092318136934066 5.068942541851332 5.045086369710435 5.020795032090951 4.996114768934669 4.971092560525247 4.945776038058535 4.920213392973989 4.894453285219380 4.868544750623911 4.842537107555778 4.816479863041717 4.842537107555778 4.868544750623910 4.894453285219378 4.920213392973987 4.945776038058542 4.971092560525249 4.996114768934669 5.020795032090951 5.045086369710435 5.068942541851332 5.092318136934068 5.115168658184837 5.137450608337677 5.159121572434064 5.180140298562150 5.200466776382110 5.220062313288139 5.238889608061995 5.256912821877997 5.274097646524292 5.290411369710431 5.305822937337118 5.320303012609442 5.333824031881132 5.346360257123513 5.357887824919323 5.368384791888082 5.377831176456559 5.386208996894831 5.393502305545519 5.399697219181096 5.404781945431351 5.408746805230875 5.411584251243687 5.413288882230044 5.413857453327952 5.413288882230044 5.411584251243686 5.408746805230875 5.404781945431351 5.399697219181096 5.393502305545521 5.386208996894831 5.377831176456559 5.368384791888082 5.357887824919324 5.346360257123514 5.333824031881133 5.320303012609441 5.305822937337116 5.290411369710427 5.274097646524295 5.256912821878001 5.238889608061996 5.220062313288137 5.200466776382108 5.180140298562149 5.159121572434063 5.137450608337682 5.115168658184835 5.092318136934067 5.068942541851330 5.045086369710433 5.020795032090953 4.996114768934670 4.971092560525247 4.945776038058536 4.920213392973978 4.894453285219377 4.868544750623911 4.842537107555778 4.816479863041717 4.842537107555778 4.868544750623911 4.894453285219377 4.920213392973978 4.945776038058536 4.971092560525247 4.996114768934670 5.020795032090953 5.045086369710433 5.068942541851329 5.092318136934066 5.115168658184835 5.137450608337681 5.159121572434072 5.180140298562149 5.200466776382108 5.220062313288137 5.238889608061996 5.256912821878001 5.274097646524291 5.290411369710427 5.305822937337116 5.320303012609441 5.333824031881133 5.346360257123514 5.357887824919318 5.368384791888082 5.377831176456559 5.386208996894831 5.393502305545521 5.399697219181096 5.404781945431351 5.408746805230875 5.411584251243686 5.413288882230044 5.413857453327952 +5.281453937338380 5.280853586462735 5.279053676637807 5.276057634094242 5.271871161969313 5.266502229450650 5.259961056606452 5.252260094931006 5.243414003642555 5.233439621778653 5.222355936142073 5.210184045158379 5.196947118713871 5.182670354050373 5.167380927800854 5.151107944257184 5.133882379968427 5.115737024775241 5.096706419392564 5.076826789659357 5.056135977580714 5.034673369293402 5.012479820092148 4.989597576659285 4.966070196645696 4.941942465756444 4.917260312498666 4.892070720753845 4.866421640341598 4.840361895744297 4.813941093166890 4.787209526108758 4.760218079627118 4.733018133474469 4.705661464294217 4.678200147061006 4.650686455952999 4.678200147060996 4.705661464294217 4.733018133474469 4.760218079627117 4.787209526108765 4.813941093166891 4.840361895744285 4.866421640341598 4.892070720753845 4.917260312498665 4.941942465756447 4.966070196645701 4.989597576659283 5.012479820092146 5.034673369293401 5.056135977580712 5.076826789659362 5.096706419392564 5.115737024775240 5.133882379968427 5.151107944257183 5.167380927800857 5.182670354050374 5.196947118713871 5.210184045158378 5.222355936142072 5.233439621778653 5.243414003642560 5.252260094931009 5.259961056606452 5.266502229450646 5.271871161969313 5.276057634094242 5.279053676637808 5.280853586462735 5.281453937338380 5.280853586462735 5.279053676637808 5.276057634094242 5.271871161969313 5.266502229450654 5.259961056606453 5.252260094931007 5.243414003642556 5.233439621778652 5.222355936142073 5.210184045158380 5.196947118713875 5.182670354050374 5.167380927800855 5.151107944257183 5.133882379968428 5.115737024775242 5.096706419392568 5.076826789659357 5.056135977580711 5.034673369293398 5.012479820092145 4.989597576659285 4.966070196645699 4.941942465756446 4.917260312498663 4.892070720753845 4.866421640341598 4.840361895744297 4.813941093166891 4.787209526108759 4.760218079627117 4.733018133474464 4.705661464294217 4.678200147061006 4.650686455952999 4.678200147061006 4.705661464294217 4.733018133474464 4.760218079627116 4.787209526108759 4.813941093166891 4.840361895744297 4.866421640341598 4.892070720753845 4.917260312498663 4.941942465756446 4.966070196645699 4.989597576659285 5.012479820092150 5.034673369293399 5.056135977580711 5.076826789659357 5.096706419392568 5.115737024775242 5.133882379968425 5.151107944257183 5.167380927800855 5.182670354050374 5.196947118713875 5.210184045158380 5.222355936142072 5.233439621778652 5.243414003642556 5.252260094931007 5.259961056606453 5.266502229450654 5.271871161969313 5.276057634094242 5.279053676637808 5.280853586462735 5.281453937338380 +5.138996873600917 5.138365885749558 5.136474123316691 5.133325187379643 5.128925072116943 5.123282153398072 5.116407172839538 5.108313217357586 5.099015694256504 5.088532301899952 5.076882996021116 5.064089951735840 5.050177521331030 5.035172187908692 5.019102514973844 5.001999092062263 4.983894476511550 4.964823131486401 4.944821360376025 4.923927237688547 4.902180536574066 4.879622653114130 4.856296527522033 4.832246562403594 4.807518538234326 4.782159526213689 4.756217798662396 4.740922016844012 4.738786527140182 4.733411522727090 4.724807235231132 4.712990043402527 4.697982441937691 4.679812998658901 4.658516300134106 4.634132885839397 4.606709170989774 4.634132885839396 4.658516300134106 4.679812998658901 4.697982441937691 4.712990043402533 4.724807235231088 4.733411522727091 4.738786527140181 4.740922016844012 4.756217798662394 4.782159526213691 4.807518538234327 4.832246562403594 4.856296527522032 4.879622653114130 4.902180536574064 4.923927237688551 4.944821360376024 4.964823131486401 4.983894476511549 5.001999092062263 5.019102514973851 5.035172187908697 5.050177521331029 5.064089951735839 5.076882996021114 5.088532301899952 5.099015694256505 5.108313217357586 5.116407172839538 5.123282153398072 5.128925072116942 5.133325187379643 5.136474123316691 5.138365885749558 5.138996873600917 5.138365885749558 5.136474123316691 5.133325187379643 5.128925072116942 5.123282153398072 5.116407172839538 5.108313217357586 5.099015694256504 5.088532301899948 5.076882996021116 5.064089951735840 5.050177521331033 5.035172187908696 5.019102514973847 5.001999092062262 4.983894476511550 4.964823131486402 4.944821360376026 4.923927237688548 4.902180536574059 4.879622653114128 4.856296527522029 4.832246562403595 4.807518538234327 4.782159526213689 4.756217798662391 4.740922016844009 4.738786527140182 4.733411522727094 4.724807235231088 4.712990043402532 4.697982441937690 4.679812998658894 4.658516300134107 4.634132885839406 4.606709170989774 4.634132885839406 4.658516300134107 4.679812998658894 4.697982441937690 4.712990043402532 4.724807235231088 4.733411522727094 4.738786527140182 4.740922016844010 4.756217798662391 4.782159526213689 4.807518538234327 4.832246562403595 4.856296527522034 4.879622653114128 4.902180536574059 4.923927237688549 4.944821360376026 4.964823131486402 4.983894476511548 5.001999092062262 5.019102514973847 5.035172187908696 5.050177521331033 5.064089951735840 5.076882996021114 5.088532301899948 5.099015694256504 5.108313217357586 5.116407172839538 5.123282153398072 5.128925072116942 5.133325187379643 5.136474123316691 5.138365885749558 5.138996873600917 +4.986757437233104 4.986097013527253 4.984116999563773 4.980821164411768 4.976215781880772 4.970309618578206 4.963113917221571 4.954642375237412 4.944911118687351 4.933938671571343 4.921745920566091 4.908356075266129 4.893794624003030 4.878089285326874 4.861269955242467 4.843368650300575 4.824419446652608 4.804458415184691 4.783523552854752 4.761654710363088 4.738893516294336 4.715283297875052 4.690868998497921 4.671180816859726 4.682486219674064 4.690422709520606 4.694975178839782 4.696134961747491 4.693899850531128 4.688274099851823 4.679268418645822 4.666899949739133 4.651192237215287 4.632175181597865 4.609884982933057 4.584364071880915 4.555661028946166 4.584364071880908 4.609884982933057 4.632175181597860 4.651192237215287 4.666899949739131 4.679268418645830 4.688274099851816 4.693899850531128 4.696134961747491 4.694975178839782 4.690422709520607 4.682486219674072 4.671180816859723 4.690868998497920 4.715283297875051 4.738893516294333 4.761654710363095 4.783523552854751 4.804458415184691 4.824419446652603 4.843368650300574 4.861269955242470 4.878089285326876 4.893794624003028 4.908356075266127 4.921745920566091 4.933938671571341 4.944911118687352 4.954642375237412 4.963113917221571 4.970309618578206 4.976215781880772 4.980821164411768 4.984116999563774 4.986097013527252 4.986757437233104 4.986097013527253 4.984116999563773 4.980821164411768 4.976215781880772 4.970309618578206 4.963113917221571 4.954642375237412 4.944911118687352 4.933938671571341 4.921745920566092 4.908356075266131 4.893794624003031 4.878089285326875 4.861269955242470 4.843368650300574 4.824419446652609 4.804458415184693 4.783523552854754 4.761654710363090 4.738893516294332 4.715283297875049 4.690868998497918 4.671180816859712 4.682486219674071 4.690422709520606 4.694975178839777 4.696134961747491 4.693899850531129 4.688274099851824 4.679268418645830 4.666899949739124 4.651192237215286 4.632175181597860 4.609884982933057 4.584364071880915 4.555661028946166 4.584364071880915 4.609884982933057 4.632175181597860 4.651192237215286 4.666899949739124 4.679268418645830 4.688274099851824 4.693899850531129 4.696134961747491 4.694975178839777 4.690422709520606 4.682486219674072 4.671180816859712 4.690868998497922 4.715283297875049 4.738893516294332 4.761654710363090 4.783523552854754 4.804458415184693 4.824419446652601 4.843368650300574 4.861269955242470 4.878089285326875 4.893794624003031 4.908356075266131 4.921745920566091 4.933938671571341 4.944911118687352 4.954642375237412 4.963113917221571 4.970309618578206 4.976215781880772 4.980821164411768 4.984116999563773 4.986097013527253 4.986757437233104 +4.825025424654745 4.824336822248479 4.822272325823485 4.818835865266067 4.814033982074190 4.807875816905439 4.800373092177229 4.791540089752500 4.781393623753397 4.769953008554650 4.757240022017520 4.743278864034436 4.728096110463133 4.711720662537958 4.694183691854755 4.675518581033962 4.655760860174874 4.634948139222104 4.613120036372905 4.590318102661677 4.566585742865222 4.582372542973173 4.601111673211507 4.616389668256976 4.628177445577630 4.636452566469328 4.641199278769133 4.642408546840446 4.640078068772746 4.634212280763419 4.624822348673415 4.611926146772158 4.595548223712886 4.575719755803045 4.552478487658238 4.525868660353353 4.495940927207047 4.525868660353350 4.552478487658229 4.575719755803041 4.595548223712886 4.611926146772127 4.624822348673416 4.634212280763419 4.640078068772746 4.642408546840445 4.641199278769131 4.636452566469332 4.628177445577632 4.616389668256976 4.601111673211567 4.582372542973172 4.566585742865217 4.590318102661682 4.613120036372904 4.634948139222103 4.655760860174873 4.675518581033961 4.694183691854757 4.711720662537963 4.728096110463133 4.743278864034436 4.757240022017519 4.769953008554648 4.781393623753399 4.791540089752500 4.800373092177228 4.807875816905438 4.814033982074190 4.818835865266067 4.822272325823485 4.824336822248479 4.825025424654745 4.824336822248479 4.822272325823485 4.818835865266065 4.814033982074188 4.807875816905439 4.800373092177229 4.791540089752500 4.781393623753397 4.769953008554646 4.757240022017521 4.743278864034438 4.728096110463134 4.711720662537962 4.694183691854756 4.675518581033960 4.655760860174875 4.634948139222105 4.613120036372907 4.590318102661678 4.566585742865216 4.582372542973172 4.601111673211564 4.616389668256976 4.628177445577632 4.636452566469329 4.641199278769130 4.642408546840444 4.640078068772747 4.634212280763418 4.624822348673416 4.611926146772127 4.595548223712881 4.575719755803040 4.552478487658238 4.525868660353358 4.495940927207047 4.525868660353358 4.552478487658238 4.575719755803040 4.595548223712881 4.611926146772127 4.624822348673416 4.634212280763418 4.640078068772747 4.642408546840444 4.641199278769130 4.636452566469329 4.628177445577631 4.616389668256976 4.601111673211507 4.582372542973172 4.566585742865216 4.590318102661680 4.613120036372907 4.634948139222105 4.655760860174870 4.675518581033960 4.694183691854756 4.711720662537962 4.728096110463134 4.743278864034438 4.757240022017518 4.769953008554646 4.781393623753397 4.791540089752500 4.800373092177229 4.807875816905439 4.814033982074188 4.818835865266065 4.822272325823485 4.824336822248479 4.825025424654745 +4.654108701944131 4.653393231631257 4.651248182631052 4.647677638166191 4.642688394971012 4.636289950353500 4.628494484116650 4.619316835373509 4.608774474300081 4.596887468879863 4.583678446703281 4.569172551894796 4.553397397249656 4.536383011671304 4.518161783009738 4.498768396409342 4.478239768283752 4.456614976043376 4.437882999308903 4.467892445623611 4.494437140025243 4.517466553179217 4.536936847288770 4.552810959542359 4.565058672665163 4.573656672439092 4.578588592082919 4.579845043407294 4.577423634685715 4.571328975207241 4.561572666502704 4.548173280260103 4.531156322972805 4.510554187386212 4.486406090836260 4.458758000597321 4.427662546380526 4.458758000597321 4.486406090836259 4.510554187386211 4.531156322972804 4.548173280260112 4.561572666502705 4.571328975207241 4.577423634685715 4.579845043407293 4.578588592082914 4.573656672439094 4.565058672665167 4.552810959542356 4.536936847288769 4.517466553179214 4.494437140025243 4.467892445623610 4.437882999308903 4.456614976043376 4.478239768283748 4.498768396409340 4.518161783009742 4.536383011671306 4.553397397249653 4.569172551894795 4.583678446703281 4.596887468879863 4.608774474300082 4.619316835373510 4.628494484116650 4.636289950353500 4.642688394971011 4.647677638166191 4.651248182631052 4.653393231631257 4.654108701944131 4.653393231631257 4.651248182631052 4.647677638166189 4.642688394971011 4.636289950353500 4.628494484116650 4.619316835373510 4.608774474300082 4.596887468879861 4.583678446703282 4.569172551894797 4.553397397249657 4.536383011671305 4.518161783009740 4.498768396409338 4.478239768283752 4.456614976043377 4.437882999308904 4.467892445623611 4.494437140025241 4.517466553179228 4.536936847288770 4.552810959542363 4.565058672665167 4.573656672439093 4.578588592082914 4.579845043407292 4.577423634685717 4.571328975207244 4.561572666502705 4.548173280260103 4.531156322972804 4.510554187386211 4.486406090836266 4.458758000597331 4.427662546380526 4.458758000597331 4.486406090836266 4.510554187386211 4.531156322972804 4.548173280260103 4.561572666502705 4.571328975207244 4.577423634685717 4.579845043407292 4.578588592082938 4.573656672439093 4.565058672665164 4.552810959542362 4.536936847288771 4.517466553179225 4.494437140025242 4.467892445623611 4.437882999308904 4.456614976043377 4.478239768283748 4.498768396409338 4.518161783009740 4.536383011671305 4.553397397249657 4.569172551894797 4.583678446703281 4.596887468879861 4.608774474300082 4.619316835373510 4.628494484116650 4.636289950353500 4.642688394971011 4.647677638166189 4.651248182631052 4.653393231631257 4.654108701944131 +4.474332618796935 4.473591642515863 4.471370124163129 4.467672292525161 4.462505186634665 4.455878642371380 4.447805273738938 4.438300448853392 4.427382260689133 4.415071492637881 4.401391578946308 4.386368560107661 4.370031033292137 4.352410097910599 4.333539296415056 4.313454550448702 4.292194092467016 4.326932295889082 4.361540662485525 4.392619922557101 4.420110914965835 4.443961309045162 4.464125704214400 4.480565716401246 4.493250051108199 4.502154562983131 4.507262301781583 4.508563544632512 4.506055814546184 4.499743885129273 4.489639771498263 4.475762707407704 4.458139108637755 4.436802522710413 4.411793565029609 4.383159841567758 4.350955858244936 4.383159841567758 4.411793565029605 4.436802522710413 4.458139108637755 4.475762707407706 4.489639771498265 4.499743885129306 4.506055814546189 4.508563544632550 4.507262301781582 4.502154562983137 4.493250051108205 4.480565716401246 4.464125704214399 4.443961309045160 4.420110914965831 4.392619922557101 4.361540662485525 4.326932295889081 4.292194092467013 4.313454550448698 4.333539296415058 4.352410097910601 4.370031033292136 4.386368560107659 4.401391578946307 4.415071492637881 4.427382260689136 4.438300448853393 4.447805273738937 4.455878642371380 4.462505186634665 4.467672292525161 4.471370124163129 4.473591642515863 4.474332618796935 4.473591642515863 4.471370124163129 4.467672292525161 4.462505186634665 4.455878642371380 4.447805273738938 4.438300448853392 4.427382260689134 4.415071492637879 4.401391578946311 4.386368560107662 4.370031033292139 4.352410097910600 4.333539296415057 4.313454550448694 4.292194092467017 4.326932295889085 4.361540662485525 4.392619922557102 4.420110914965833 4.443961309045157 4.464125704214397 4.480565716401255 4.493250051108200 4.502154562983133 4.507262301781599 4.508563544632558 4.506055814546187 4.499743885129274 4.489639771498264 4.475762707407706 4.458139108637750 4.436802522710412 4.411793565029610 4.383159841567764 4.350955858244936 4.383159841567764 4.411793565029610 4.436802522710412 4.458139108637749 4.475762707407705 4.489639771498264 4.499743885129274 4.506055814546187 4.508563544632558 4.507262301781599 4.502154562983133 4.493250051108200 4.480565716401253 4.464125704214402 4.443961309045157 4.420110914965833 4.392619922557102 4.361540662485525 4.326932295889085 4.292194092467011 4.313454550448694 4.333539296415057 4.352410097910600 4.370031033292139 4.386368560107662 4.401391578946307 4.415071492637879 4.427382260689134 4.438300448853392 4.447805273738938 4.455878642371380 4.462505186634665 4.467672292525161 4.471370124163129 4.473591642515863 4.474332618796935 +4.286039389205386 4.285274317446586 4.282980558527762 4.279162478749383 4.273827346043312 4.266985316137887 4.258649413225907 4.248835505172345 4.237562273308970 4.224851176873364 4.210726412160041 4.195214866461426 4.178346066886385 4.160152124153663 4.140667671467332 4.159041831192378 4.201852477113437 4.241162104458379 4.276895885117282 4.308985797807773 4.337370757557043 4.361996731981035 4.382816844137716 4.399791461760270 4.412888272699251 4.422082346430732 4.427356181512775 4.428699738900540 4.426110461056163 4.419593276817258 4.409160592014354 4.394832265855951 4.376635573125328 4.354605152261245 4.328782939421952 4.299218088657251 4.265966878340985 4.299218088657253 4.328782939421952 4.354605152261244 4.376635573125326 4.394832265855955 4.409160592014355 4.419593276817253 4.426110461056162 4.428699738900538 4.427356181512771 4.422082346430734 4.412888272699254 4.399791461760268 4.382816844137714 4.361996731981034 4.337370757557044 4.308985797807778 4.276895885117296 4.241162104458379 4.201852477113438 4.159041831192378 4.140667671467336 4.160152124153666 4.178346066886382 4.195214866461425 4.210726412160041 4.224851176873363 4.237562273308972 4.248835505172345 4.258649413225907 4.266985316137887 4.273827346043310 4.279162478749382 4.282980558527763 4.285274317446586 4.286039389205386 4.285274317446586 4.282980558527763 4.279162478749382 4.273827346043308 4.266985316137887 4.258649413225907 4.248835505172345 4.237562273308972 4.224851176873362 4.210726412160042 4.195214866461427 4.178346066886387 4.160152124153665 4.140667671467333 4.159041831192377 4.201852477113439 4.241162104458381 4.276895885117288 4.308985797807774 4.337370757557041 4.361996731981048 4.382816844137714 4.399791461760269 4.412888272699254 4.422082346430733 4.427356181512770 4.428699738900532 4.426110461056164 4.419593276817260 4.409160592014355 4.394832265855950 4.376635573125324 4.354605152261244 4.328782939421953 4.299218088657251 4.265966878340985 4.299218088657251 4.328782939421953 4.354605152261244 4.376635573125324 4.394832265855951 4.409160592014354 4.419593276817260 4.426110461056163 4.428699738900534 4.427356181512770 4.422082346430732 4.412888272699252 4.399791461760267 4.382816844137719 4.361996731981048 4.337370757557041 4.308985797807775 4.276895885117288 4.241162104458381 4.201852477113437 4.159041831192377 4.140667671467333 4.160152124153665 4.178346066886387 4.195214866461427 4.210726412160039 4.224851176873362 4.237562273308972 4.248835505172345 4.258649413225907 4.266985316137887 4.273827346043308 4.279162478749382 4.282980558527763 4.285274317446586 4.286039389205386 +4.089587440034168 4.088799729155217 4.086438095970779 4.082507035983844 4.077014032190539 4.069969540835769 4.061386971509228 4.051282661619420 4.039675845294512 4.026588616769069 4.012045888326415 3.996075342876698 3.978707381260889 3.964141907645438 4.015170176458271 4.062768338331562 4.106845787458709 4.147318619910197 4.184109793349109 4.217149273685779 4.246374168391446 4.271728846218127 4.293165043095382 4.310641954004177 4.324126310651261 4.333592444797393 4.339022337118127 4.340405651504864 4.337739754740076 4.331029721509706 4.320288324743390 4.305536011300478 4.286800863047919 4.264118543405346 4.237532229457348 4.207092529763624 4.172857388022581 4.207092529763623 4.237532229457347 4.264118543405345 4.286800863047908 4.305536011300477 4.320288324743391 4.331029721509703 4.337739754740073 4.340405651504862 4.339022337118125 4.333592444797391 4.324126310651263 4.310641954004173 4.293165043095381 4.271728846218128 4.246374168391446 4.217149273685781 4.184109793349107 4.147318619910194 4.106845787458705 4.062768338331561 4.015170176458271 3.964141907645439 3.978707381260888 3.996075342876697 4.012045888326413 4.026588616769068 4.039675845294513 4.051282661619420 4.061386971509227 4.069969540835769 4.077014032190539 4.082507035983844 4.086438095970779 4.088799729155217 4.089587440034168 4.088799729155217 4.086438095970779 4.082507035983844 4.077014032190538 4.069969540835774 4.061386971509229 4.051282661619420 4.039675845294513 4.026588616769066 4.012045888326416 3.996075342876698 3.978707381260892 3.964141907645439 4.015170176458273 4.062768338331560 4.106845787458708 4.147318619910202 4.184109793349109 4.217149273685783 4.246374168391446 4.271728846218126 4.293165043095381 4.310641954004177 4.324126310651263 4.333592444797394 4.339022337118125 4.340405651504865 4.337739754740079 4.331029721509712 4.320288324743391 4.305536011300476 4.286800863047908 4.264118543405340 4.237532229457358 4.207092529763626 4.172857388022581 4.207092529763625 4.237532229457358 4.264118543405340 4.286800863047908 4.305536011300476 4.320288324743391 4.331029721509707 4.337739754740079 4.340405651504865 4.339022337118122 4.333592444797394 4.324126310651263 4.310641954004177 4.293165043095382 4.271728846218126 4.246374168391446 4.217149273685783 4.184109793349109 4.147318619910202 4.106845787458704 4.062768338331560 4.015170176458272 3.964141907645439 3.978707381260892 3.996075342876698 4.012045888326411 4.026588616769066 4.039675845294513 4.051282661619420 4.061386971509229 4.069969540835774 4.077014032190538 4.082507035983844 4.086438095970779 4.088799729155217 4.089587440034168 +3.885350728733633 3.884541878186954 3.882116866239893 3.878080309040521 3.872439890404904 3.865206347190468 3.856393448857875 3.846017971259983 3.834099664708106 3.820661216376156 3.805728207114322 3.789329062754472 3.801667758744093 3.857487882987485 3.909885589085236 3.958761135025777 4.004021483429424 4.045580478650614 4.083359010779795 4.117285166233967 4.147294364647982 4.173329481806993 4.195340958385745 4.213286894287582 4.227133128403471 4.236853303639875 4.242428917090655 4.243849355258838 4.241111914259560 4.234221804967436 4.223192143096986 4.208043924236551 4.188805983881694 4.165514942545213 4.138215136048205 4.106958531123854 4.071804626496170 4.106958531123848 4.138215136048205 4.165514942545210 4.188805983881693 4.208043924236551 4.223192143096977 4.234221804967434 4.241111914259580 4.243849355258835 4.242428917090692 4.236853303639860 4.227133128403457 4.213286894287578 4.195340958385742 4.173329481806992 4.147294364647998 4.117285166233970 4.083359010779796 4.045580478650618 4.004021483429424 3.958761135025777 3.909885589085238 3.857487882987489 3.801667758744093 3.789329062754470 3.805728207114321 3.820661216376155 3.834099664708106 3.846017971259985 3.856393448857875 3.865206347190467 3.872439890404903 3.878080309040521 3.882116866239893 3.884541878186954 3.885350728733633 3.884541878186954 3.882116866239893 3.878080309040521 3.872439890404898 3.865206347190469 3.856393448857875 3.846017971259983 3.834099664708106 3.820661216376154 3.805728207114322 3.789329062754472 3.801667758744093 3.857487882987488 3.909885589085239 3.958761135025776 4.004021483429425 4.045580478650615 4.083359010779798 4.117285166233970 4.147294364647996 4.173329481806991 4.195340958385741 4.213286894287582 4.227133128403465 4.236853303639863 4.242428917090695 4.243849355258830 4.241111914259565 4.234221804967432 4.223192143096983 4.208043924236550 4.188805983881692 4.165514942545210 4.138215136048205 4.106958531123855 4.071804626496170 4.106958531123855 4.138215136048205 4.165514942545210 4.188805983881692 4.208043924236550 4.223192143096983 4.234221804967431 4.241111914259564 4.243849355258830 4.242428917090695 4.236853303639870 4.227133128403467 4.213286894287582 4.195340958385746 4.173329481806991 4.147294364647996 4.117285166233970 4.083359010779798 4.045580478650615 4.004021483429423 3.958761135025776 3.909885589085238 3.857487882987488 3.801667758744093 3.789329062754472 3.805728207114320 3.820661216376154 3.834099664708106 3.846017971259983 3.856393448857875 3.865206347190469 3.872439890404898 3.878080309040521 3.882116866239893 3.884541878186954 3.885350728733633 +3.673718031492169 3.672889580970751 3.670405806409138 3.666271435813383 3.660494339192894 3.653085513579441 3.644059062093666 3.633432167099000 3.621225057494063 3.607460970205798 3.592166105956650 3.625748890356111 3.686318159733968 3.743490910899079 3.797158312270170 3.847218204898343 3.893575296932866 3.936141345014197 3.974835322250639 4.009583572457177 4.040319950364680 4.066985947530760 4.089530803714355 4.107911603500180 4.122093357991329 4.132049071411944 4.137759792495733 4.139214650560548 4.136410876201336 4.129353806562029 4.118056875175677 4.102541586393356 4.082837474449019 4.058982047239648 4.031020714926871 3.999006703495862 3.963000953437051 3.999006703495865 4.031020714926870 4.058982047239646 4.082837474449021 4.102541586393361 4.118056875175684 4.129353806562028 4.136410876201335 4.139214650560552 4.137759792495732 4.132049071411942 4.122093357991298 4.107911603500229 4.089530803714352 4.066985947530800 4.040319950364681 4.009583572457180 3.974835322250641 3.936141345014200 3.893575296932863 3.847218204898360 3.797158312270171 3.743490910899077 3.686318159733968 3.625748890356110 3.592166105956649 3.607460970205798 3.621225057494066 3.633432167099002 3.644059062093666 3.653085513579439 3.660494339192893 3.666271435813383 3.670405806409139 3.672889580970750 3.673718031492169 3.672889580970751 3.670405806409138 3.666271435813383 3.660494339192893 3.653085513579441 3.644059062093667 3.633432167099001 3.621225057494064 3.607460970205796 3.592166105956652 3.625748890356111 3.686318159733969 3.743490910899078 3.797158312270172 3.847218204898359 3.893575296932867 3.936141345014198 3.974835322250642 4.009583572457178 4.040319950364681 4.066985947530818 4.089530803714346 4.107911603500184 4.122093357991330 4.132049071411942 4.137759792495732 4.139214650560542 4.136410876201343 4.129353806562030 4.118056875175682 4.102541586393361 4.082837474449023 4.058982047239637 4.031020714926873 3.999006703495864 3.963000953437051 3.999006703495863 4.031020714926873 4.058982047239637 4.082837474449023 4.102541586393356 4.118056875175681 4.129353806562029 4.136410876201343 4.139214650560547 4.137759792495734 4.132049071411939 4.122093357991330 4.107911603500184 4.089530803714350 4.066985947530818 4.040319950364681 4.009583572457178 3.974835322250642 3.936141345014198 3.893575296932865 3.847218204898359 3.797158312270172 3.743490910899077 3.686318159733969 3.625748890356111 3.592166105956649 3.607460970205796 3.621225057494064 3.633432167099002 3.644059062093667 3.653085513579441 3.660494339192893 3.666271435813383 3.670405806409138 3.672889580970751 3.673718031492169 +3.455092203177267 3.454245729683763 3.451707920513644 3.447483606530914 3.441580828957330 3.434010824065496 3.424788001789974 3.413929918297154 3.401457242566102 3.387393717043973 3.436824928136875 3.502064488491110 3.563951444590167 3.622367991095668 3.677202928791196 3.728351876256257 3.775717468562129 3.819209542611895 3.858745308770646 3.894249508460357 3.925654557419019 3.952900674351037 3.975935994724250 3.994716669497097 4.009206948587694 4.019379248926183 4.025214206960835 4.026700715517245 4.023835944942014 4.016625348488660 4.005082651937401 3.989229827467190 3.969097051830390 3.944722648909681 3.916153016766410 3.883442539319123 3.846653482820799 3.883442539319122 3.916153016766410 3.944722648909680 3.969097051830385 3.989229827467204 4.005082651937402 4.016625348488660 4.023835944942014 4.026700715517246 4.025214206960833 4.019379248926190 4.009206948587694 3.994716669497095 3.975935994724267 3.952900674351038 3.925654557419019 3.894249508460356 3.858745308770645 3.819209542611893 3.775717468562181 3.728351876256272 3.677202928791194 3.622367991095652 3.563951444590166 3.502064488491109 3.436824928136874 3.387393717043969 3.401457242566103 3.413929918297156 3.424788001789974 3.434010824065496 3.441580828957330 3.447483606530913 3.451707920513644 3.454245729683763 3.455092203177267 3.454245729683763 3.451707920513644 3.447483606530913 3.441580828957330 3.434010824065496 3.424788001789975 3.413929918297156 3.401457242566102 3.387393717043969 3.436824928136853 3.502064488491102 3.563951444590164 3.622367991095651 3.677202928791196 3.728351876256271 3.775717468562129 3.819209542611898 3.858745308770648 3.894249508460355 3.925654557419020 3.952900674351031 3.975935994724265 3.994716669497098 4.009206948587699 4.019379248926186 4.025214206960832 4.026700715517245 4.023835944942015 4.016625348488654 4.005082651937401 3.989229827467204 3.969097051830384 3.944722648909673 3.916153016766410 3.883442539319129 3.846653482820799 3.883442539319129 3.916153016766410 3.944722648909673 3.969097051830384 3.989229827467206 4.005082651937400 4.016625348488658 4.023835944942014 4.026700715517245 4.025214206960832 4.019379248926183 4.009206948587699 3.994716669497098 3.975935994724253 3.952900674351032 3.925654557419020 3.894249508460355 3.858745308770648 3.819209542611898 3.775717468562195 3.728351876256271 3.677202928791195 3.622367991095651 3.563951444590164 3.502064488491102 3.436824928136875 3.387393717043969 3.401457242566102 3.413929918297156 3.424788001789975 3.434010824065496 3.441580828957330 3.447483606530913 3.451707920513644 3.454245729683763 3.455092203177267 +3.229889410479147 3.229026525323958 3.226439512409333 3.222133296261389 3.216116074007306 3.208399299771652 3.198997662872774 3.187929059860861 3.175214560450845 3.235413811436391 3.305209264874549 3.371713707828045 3.434800545309913 3.494349687939407 3.550247780538954 3.602388417912232 3.650672347392504 3.695007657775723 3.735309954278816 3.771502519189637 3.803516457903929 3.831290830069729 3.854772765591004 3.873917565268950 3.888688785889172 3.899058309593781 3.905006397404916 3.906521726799479 3.903601413261760 3.896251015774598 3.884484526237333 3.868324342831642 3.847801227385053 3.822954246814314 3.793830698759127 3.760486021548485 3.722983688670686 3.760486021548485 3.793830698759120 3.822954246814309 3.847801227385053 3.868324342831649 3.884484526237340 3.896251015774597 3.903601413261759 3.906521726799474 3.905006397404915 3.899058309593781 3.888688785889175 3.873917565268949 3.854772765591003 3.831290830069729 3.803516457903927 3.771502519189636 3.735309954278814 3.695007657775722 3.650672347392504 3.602388417912232 3.550247780538956 3.494349687939405 3.434800545309981 3.371713707828047 3.305209264874550 3.235413811436390 3.175214560450846 3.187929059860864 3.198997662872773 3.208399299771652 3.216116074007306 3.222133296261387 3.226439512409335 3.229026525323958 3.229889410479147 3.229026525323958 3.226439512409334 3.222133296261387 3.216116074007304 3.208399299771653 3.198997662872776 3.187929059860863 3.175214560450845 3.235413811436391 3.305209264874549 3.371713707828045 3.434800545309915 3.494349687939404 3.550247780538955 3.602388417912231 3.650672347392507 3.695007657775724 3.735309954278818 3.771502519189634 3.803516457903928 3.831290830069726 3.854772765591004 3.873917565268953 3.888688785889174 3.899058309593777 3.905006397404915 3.906521726799472 3.903601413261763 3.896251015774598 3.884484526237339 3.868324342831644 3.847801227385051 3.822954246814306 3.793830698759128 3.760486021548485 3.722983688670686 3.760486021548485 3.793830698759128 3.822954246814307 3.847801227385051 3.868324342831644 3.884484526237339 3.896251015774598 3.903601413261763 3.906521726799473 3.905006397404915 3.899058309593776 3.888688785889174 3.873917565268953 3.854772765591006 3.831290830069727 3.803516457903927 3.771502519189634 3.735309954278818 3.695007657775724 3.650672347392508 3.602388417912231 3.550247780538955 3.494349687939404 3.434800545309915 3.371713707828045 3.305209264874549 3.235413811436391 3.175214560450845 3.187929059860863 3.198997662872776 3.208399299771653 3.216116074007304 3.222133296261387 3.226439512409334 3.229026525323958 3.229889410479147 +2.998538339713145 2.997660685447211 2.995029393314195 2.990649472128224 2.984529259318208 2.976680405057083 2.967117850085040 2.955859797268962 3.022109602522828 3.096311878055169 3.167301947920572 3.234944678486356 3.299111307970355 3.359679691546197 3.416534533853438 3.469567608468180 3.518677963918753 3.563772115852397 3.604764224987743 3.641576260515373 3.674138148633274 3.702387905936818 3.726271757407339 3.745744238776066 3.760768283067996 3.771315291160886 3.777365186225387 3.778906451942439 3.775936154425021 3.768459947803439 3.756492063461792 3.740055282948199 3.719180894608549 3.693908634027468 3.664286608389387 3.630371204903666 3.592226983468496 3.630371204903665 3.664286608389386 3.693908634027467 3.719180894608547 3.740055282948200 3.756492063461792 3.768459947803432 3.775936154425041 3.778906451942432 3.777365186225385 3.771315291160887 3.760768283068002 3.745744238776063 3.726271757407339 3.702387905936817 3.674138148633325 3.641576260515375 3.604764224987743 3.563772115852396 3.518677963918750 3.469567608468183 3.416534533853375 3.359679691546196 3.299111307970355 3.234944678486371 3.167301947920574 3.096311878055169 3.022109602522828 2.955859797268964 2.967117850085039 2.976680405057083 2.984529259318207 2.990649472128224 2.995029393314195 2.997660685447211 2.998538339713145 2.997660685447212 2.995029393314195 2.990649472128223 2.984529259318207 2.976680405057085 2.967117850085041 2.955859797268964 3.022109602522828 3.096311878055167 3.167301947920572 3.234944678486355 3.299111307970292 3.359679691546195 3.416534533853375 3.469567608468183 3.518677963918753 3.563772115852335 3.604764224987744 3.641576260515372 3.674138148633329 3.702387905936875 3.726271757407337 3.745744238776067 3.760768283067999 3.771315291160885 3.777365186225386 3.778906451942430 3.775936154425023 3.768459947803441 3.756492063461791 3.740055282948199 3.719180894608547 3.693908634027460 3.664286608389391 3.630371204903668 3.592226983468496 3.630371204903667 3.664286608389391 3.693908634027460 3.719180894608547 3.740055282948199 3.756492063461792 3.768459947803440 3.775936154425023 3.778906451942431 3.777365186225386 3.771315291160885 3.760768283067999 3.745744238776067 3.726271757407340 3.702387905936875 3.674138148633329 3.641576260515372 3.604764224987744 3.563772115852335 3.518677963918806 3.469567608468183 3.416534533853375 3.359679691546195 3.299111307970292 3.234944678486355 3.167301947920573 3.096311878055167 3.022109602522828 2.955859797268964 2.967117850085041 2.976680405057085 2.984529259318207 2.990649472128223 2.995029393314195 2.997660685447212 2.998538339713145 +2.761479380791687 2.760588628079788 2.757918065542506 2.753472776747421 2.747261223554405 2.739295230008000 2.729589959829679 2.797579752465972 2.876006240525636 2.951315939031135 3.023365491691037 3.092017748086908 3.157142024746688 3.218614353908372 3.276317719499470 3.330142279884041 3.379985576952117 3.425752731154814 3.467356622112994 3.504718054455477 3.537765908572345 3.566437275994979 3.590677579145975 3.610440675230474 3.625688944071819 3.636393359723690 3.642533545722426 3.644097813875037 3.641083186508135 3.633495402136289 3.621348904538321 3.604666815262733 3.583480889614655 3.557831456207654 3.527767340196084 3.493345770333428 3.454632270034354 3.493345770333427 3.527767340196084 3.557831456207653 3.583480889614657 3.604666815262747 3.621348904538325 3.633495402136286 3.641083186508132 3.644097813875035 3.642533545722424 3.636393359723692 3.625688944071816 3.610440675230476 3.590677579145972 3.566437275994979 3.537765908572364 3.504718054455475 3.467356622112992 3.425752731154867 3.379985576952116 3.330142279884044 3.276317719499469 3.218614353908373 3.157142024746689 3.092017748086910 3.023365491691097 2.951315939031137 2.876006240525634 2.797579752465973 2.729589959829678 2.739295230007999 2.747261223554404 2.753472776747421 2.757918065542506 2.760588628079788 2.761479380791687 2.760588628079788 2.757918065542506 2.753472776747420 2.747261223554403 2.739295230008002 2.729589959829679 2.797579752465973 2.876006240525634 2.951315939031137 3.023365491691036 3.092017748086908 3.157142024746685 3.218614353908373 3.276317719499472 3.330142279884045 3.379985576952115 3.425752731154815 3.467356622112994 3.504718054455477 3.537765908572363 3.566437275994977 3.590677579145973 3.610440675230477 3.625688944071821 3.636393359723691 3.642533545722421 3.644097813875034 3.641083186508136 3.633495402136290 3.621348904538324 3.604666815262747 3.583480889614651 3.557831456207651 3.527767340196084 3.493345770333436 3.454632270034354 3.493345770333436 3.527767340196084 3.557831456207651 3.583480889614651 3.604666815262747 3.621348904538324 3.633495402136290 3.641083186508137 3.644097813875034 3.642533545722421 3.636393359723691 3.625688944071821 3.610440675230477 3.590677579145972 3.566437275994977 3.537765908572363 3.504718054455476 3.467356622112994 3.425752731154815 3.379985576952116 3.330142279884045 3.276317719499472 3.218614353908373 3.157142024746685 3.092017748086908 3.023365491691096 2.951315939031137 2.876006240525634 2.797579752465974 2.729589959829679 2.739295230008002 2.747261223554403 2.753472776747420 2.757918065542506 2.760588628079788 2.761479380791687 +2.519163788916687 2.518261633357243 2.515556883983274 2.511054689438953 2.504763619907477 2.496695650797263 2.562561841084318 2.644997783296568 2.724428237188047 2.800702002375369 2.873673887411273 2.943204986165233 3.009162942238798 3.071422200913834 3.129864248152850 3.184377836197276 3.234859195333918 3.281212231426568 3.323348708836365 3.361188418383785 3.394659330031004 3.423697729995319 3.448248342031943 3.468264432655582 3.483707900099998 3.494549346847229 3.500768135587149 3.502352428501990 3.499299209800111 3.491614291456853 3.479312302151076 3.462416659418642 3.440959525075713 3.414981743997088 3.384532766365557 3.349670553540605 3.310461467725824 3.349670553540601 3.384532766365556 3.414981743997086 3.440959525075713 3.462416659418647 3.479312302151084 3.491614291456851 3.499299209800111 3.502352428501990 3.500768135587148 3.494549346847211 3.483707900099999 3.468264432655579 3.448248342031944 3.423697729995315 3.394659330031000 3.361188418383784 3.323348708836365 3.281212231426567 3.234859195333922 3.184377836197276 3.129864248152849 3.071422200913832 3.009162942238797 2.943204986165236 2.873673887411272 2.800702002375369 2.724428237188044 2.644997783296532 2.562561841084318 2.496695650797262 2.504763619907476 2.511054689438953 2.515556883983274 2.518261633357242 2.519163788916687 2.518261633357243 2.515556883983274 2.511054689438953 2.504763619907475 2.496695650797263 2.562561841084318 2.644997783296568 2.724428237188047 2.800702002375370 2.873673887411273 2.943204986165235 3.009162942238798 3.071422200913835 3.129864248152847 3.184377836197281 3.234859195333920 3.281212231426565 3.323348708836368 3.361188418383785 3.394659330030998 3.423697729995316 3.448248342031938 3.468264432655585 3.483707900099999 3.494549346847231 3.500768135587161 3.502352428501991 3.499299209800117 3.491614291456857 3.479312302151077 3.462416659418647 3.440959525075709 3.414981743997086 3.384532766365557 3.349670553540605 3.310461467725824 3.349670553540605 3.384532766365557 3.414981743997086 3.440959525075708 3.462416659418647 3.479312302151077 3.491614291456857 3.499299209800112 3.502352428501991 3.500768135587166 3.494549346847231 3.483707900099999 3.468264432655585 3.448248342031947 3.423697729995316 3.394659330030998 3.361188418383785 3.323348708836367 3.281212231426565 3.234859195333921 3.184377836197281 3.129864248152847 3.071422200913835 3.009162942238798 2.943204986165235 2.873673887411274 2.800702002375370 2.724428237188047 2.644997783296568 2.562561841084318 2.496695650797263 2.504763619907475 2.511054689438953 2.515556883983274 2.518261633357243 2.519163788916687 +2.272052825589528 2.271140984486910 2.268407196920416 2.263856666810060 2.257498056348541 2.317859812304983 2.404059935927914 2.487380910514720 2.567664129854552 2.644756770276490 2.718512081557785 2.788789666271432 2.855455747040617 2.918383421191538 2.977452902319847 3.032551748310989 3.083575075379986 3.130425757723727 3.173014612405636 3.211260569120201 3.245090824515014 3.274440980776210 3.299255168213138 3.319486151609714 3.335095420139192 3.346053260671719 3.352338814335006 3.353940116220497 3.350854118158980 3.343086694523148 3.330652631045411 3.313575596672302 3.291888098509312 3.265631419941827 3.234855542049875 3.199619048466195 3.159989013859011 3.199619048466190 3.234855542049874 3.265631419941826 3.291888098509312 3.313575596672287 3.330652631045417 3.343086694523146 3.350854118158977 3.353940116220491 3.352338814335003 3.346053260671700 3.335095420139189 3.319486151609714 3.299255168213139 3.274440980776210 3.245090824515014 3.211260569120180 3.173014612405634 3.130425757723725 3.083575075379985 3.032551748310988 2.977452902319845 2.918383421191536 2.855455747040615 2.788789666271433 2.718512081557785 2.644756770276500 2.567664129854552 2.487380910514719 2.404059935927913 2.317859812304983 2.257498056348540 2.263856666810059 2.268407196920416 2.271140984486910 2.272052825589528 2.271140984486910 2.268407196920416 2.263856666810059 2.257498056348539 2.317859812304934 2.404059935927914 2.487380910514719 2.567664129854553 2.644756770276499 2.718512081557751 2.788789666271434 2.855455747040615 2.918383421191536 2.977452902319845 3.032551748310987 3.083575075379987 3.130425757723729 3.173014612405638 3.211260569120201 3.245090824515009 3.274440980776216 3.299255168213137 3.319486151609714 3.335095420139193 3.346053260671696 3.352338814335003 3.353940116220492 3.350854118158959 3.343086694523147 3.330652631045415 3.313575596672286 3.291888098509305 3.265631419941826 3.234855542049877 3.199619048466197 3.159989013859011 3.199619048466197 3.234855542049877 3.265631419941826 3.291888098509305 3.313575596672286 3.330652631045415 3.343086694523147 3.350854118158958 3.353940116220492 3.352338814335002 3.346053260671696 3.335095420139193 3.319486151609714 3.299255168213139 3.274440980776216 3.245090824515011 3.211260569120201 3.173014612405638 3.130425757723729 3.083575075379988 3.032551748310987 2.977452902319845 2.918383421191536 2.855455747040615 2.788789666271434 2.718512081557784 2.644756770276500 2.567664129854553 2.487380910514719 2.404059935927914 2.317859812304934 2.257498056348539 2.263856666810059 2.268407196920416 2.271140984486910 2.272052825589528 +2.020616880573914 2.019697089669487 2.016939467830479 2.012349264346791 2.064339730067603 2.154030114666019 2.240981766045723 2.325029166796337 2.406012327913548 2.483777093347440 2.558175433447101 2.629065726743621 2.696313029534629 2.759789332757106 2.819373805660157 2.874953025813046 2.926421195011290 2.973680340669557 3.016640502318066 3.055219902847376 3.089345104175916 3.118951147043396 3.143981674664512 3.164389040007337 3.180134396492000 3.191187771937552 3.197528125615592 3.199143388302553 3.196030485254077 3.188195342058058 3.175652873354930 3.158426954446644 3.136550375848987 3.110064780872671 3.079020586353049 3.043476886678873 3.003501341302592 3.043476886678865 3.079020586353048 3.110064780872659 3.136550375848987 3.158426954446653 3.175652873354941 3.188195342058064 3.196030485254072 3.199143388302551 3.197528125615590 3.191187771937552 3.180134396491997 3.164389040007335 3.143981674664511 3.118951147043413 3.089345104175916 3.055219902847380 3.016640502318067 2.973680340669555 2.926421195011290 2.874953025813045 2.819373805660161 2.759789332757104 2.696313029534663 2.629065726743621 2.558175433447101 2.483777093347441 2.406012327913548 2.325029166796340 2.240981766045723 2.154030114666019 2.064339730067603 2.012349264346786 2.016939467830479 2.019697089669487 2.020616880573914 2.019697089669487 2.016939467830479 2.012349264346785 2.064339730067604 2.154030114666020 2.240981766045721 2.325029166796339 2.406012327913550 2.483777093347440 2.558175433447063 2.629065726743618 2.696313029534631 2.759789332757105 2.819373805660159 2.874953025813045 2.926421195011291 2.973680340669560 3.016640502318061 3.055219902847380 3.089345104175937 3.118951147043414 3.143981674664508 3.164389040007317 3.180134396492000 3.191187771937550 3.197528125615587 3.199143388302556 3.196030485254078 3.188195342058069 3.175652873354935 3.158426954446645 3.136550375848989 3.110064780872657 3.079020586353055 3.043476886678874 3.003501341302592 3.043476886678874 3.079020586353055 3.110064780872658 3.136550375848985 3.158426954446645 3.175652873354935 3.188195342058069 3.196030485254076 3.199143388302556 3.197528125615584 3.191187771937550 3.180134396492000 3.164389040007316 3.143981674664513 3.118951147043414 3.089345104175934 3.055219902847380 3.016640502318061 2.973680340669560 2.926421195011289 2.874953025813045 2.819373805660159 2.759789332757105 2.696313029534631 2.629065726743618 2.558175433447101 2.483777093347440 2.406012327913550 2.325029166796339 2.240981766045721 2.154030114666020 2.064339730067604 2.012349264346785 2.016939467830479 2.019697089669487 2.020616880573914 +1.765334576481746 1.764408586649784 1.761632379828160 1.802925083504019 1.895805245649162 1.986100098276724 2.073637760002761 2.158251597912897 2.239780544757478 2.318069405552392 2.392969153001535 2.464337211178512 2.532037726928395 2.595941828471489 2.655927870718516 2.711881666828667 2.763696705570839 2.811274354073793 2.854524045579457 2.893363451841951 2.927718639843904 2.957524212532378 2.982723433305698 3.003268334014905 3.019119806273819 3.030247675904017 3.036630760373210 3.038256909117314 3.035123026669780 3.027235078553981 3.014608079927426 2.997266066999740 2.975242051278133 2.948577956728313 2.917324539969741 2.881541293657563 2.841296333234880 2.881541293657563 2.917324539969733 2.948577956728313 2.975242051278133 2.997266066999743 3.014608079927435 3.027235078553979 3.035123026669775 3.038256909117317 3.036630760373206 3.030247675904019 3.019119806273818 3.003268334014904 2.982723433305694 2.957524212532375 2.927718639843922 2.893363451841955 2.854524045579453 2.811274354073795 2.763696705570840 2.711881666828671 2.655927870718516 2.595941828471487 2.532037726928393 2.464337211178513 2.392969153001535 2.318069405552392 2.239780544757477 2.158251597912884 2.073637760002762 1.986100098276724 1.895805245649158 1.802925083504020 1.761632379828160 1.764408586649784 1.765334576481746 1.764408586649784 1.761632379828160 1.802925083504018 1.895805245649159 1.986100098276722 2.073637760002762 2.158251597912884 2.239780544757476 2.318069405552391 2.392969153001506 2.464337211178512 2.532037726928395 2.595941828471487 2.655927870718514 2.711881666828670 2.763696705570835 2.811274354073794 2.854524045579458 2.893363451841951 2.927718639843924 2.957524212532372 2.982723433305694 3.003268334014900 3.019119806273822 3.030247675904018 3.036630760373203 3.038256909117314 3.035123026669784 3.027235078553980 3.014608079927429 2.997266066999743 2.975242051278131 2.948577956728313 2.917324539969742 2.881541293657570 2.841296333234880 2.881541293657570 2.917324539969742 2.948577956728313 2.975242051278131 2.997266066999742 3.014608079927429 3.027235078553980 3.035123026669782 3.038256909117314 3.036630760373203 3.030247675904018 3.019119806273822 3.003268334014903 2.982723433305676 2.957524212532372 2.927718639843925 2.893363451841951 2.854524045579458 2.811274354073794 2.763696705570836 2.711881666828670 2.655927870718514 2.595941828471487 2.532037726928395 2.464337211178512 2.392969153001537 2.318069405552391 2.239780544757476 2.158251597912884 2.073637760002762 1.986100098276722 1.895805245649159 1.802925083504018 1.761632379828160 1.764408586649784 1.765334576481746 +1.506691857688187 1.505761431602958 1.534591673514971 1.630336853644783 1.723661988195055 1.814389427467822 1.902346466625761 1.987365674445826 2.069285212033664 2.147949140893489 2.223207719765764 2.294917689668162 2.362942546597292 2.427152801371683 2.487426226121889 2.543648086958187 2.595711362373087 2.643516946962646 2.686973840079591 2.725999319057915 2.760519096680318 2.790467462588092 2.815787408364652 2.836430736054087 2.852358149908838 2.863539331191379 2.869952995887620 2.871586935222334 2.868438038899096 2.860512301021051 2.847824808680683 2.830399713240810 2.808270184360956 2.781478346857131 2.750075200514707 2.714120523007666 2.673682756108119 2.714120523007665 2.750075200514707 2.781478346857131 2.808270184360949 2.830399713240813 2.847824808680689 2.860512301021050 2.868438038899090 2.871586935222333 2.869952995887619 2.863539331191386 2.852358149908842 2.836430736054085 2.815787408364653 2.790467462588110 2.760519096680323 2.725999319057919 2.686973840079591 2.643516946962645 2.595711362373085 2.543648086958220 2.487426226121890 2.427152801371682 2.362942546597332 2.294917689668161 2.223207719765765 2.147949140893488 2.069285212033661 1.987365674445826 1.902346466625823 1.814389427467821 1.723661988195055 1.630336853644850 1.534591673514971 1.505761431602958 1.506691857688187 1.505761431602958 1.534591673514971 1.630336853644850 1.723661988195055 1.814389427467823 1.902346466625761 1.987365674445825 2.069285212033663 2.147949140893499 2.223207719765766 2.294917689668159 2.362942546597293 2.427152801371684 2.487426226121890 2.543648086958220 2.595711362373055 2.643516946962647 2.686973840079590 2.725999319057918 2.760519096680323 2.790467462588115 2.815787408364649 2.836430736054091 2.852358149908840 2.863539331191383 2.869952995887614 2.871586935222330 2.868438038899096 2.860512301021052 2.847824808680685 2.830399713240817 2.808270184360948 2.781478346857125 2.750075200514708 2.714120523007673 2.673682756108119 2.714120523007667 2.750075200514707 2.781478346857125 2.808270184360948 2.830399713240817 2.847824808680685 2.860512301021051 2.868438038899096 2.871586935222330 2.869952995887614 2.863539331191383 2.852358149908840 2.836430736054091 2.815787408364655 2.790467462588115 2.760519096680323 2.725999319057918 2.686973840079590 2.643516946962647 2.595711362373084 2.543648086958220 2.487426226121890 2.427152801371684 2.362942546597293 2.294917689668159 2.223207719765764 2.147949140893498 2.069285212033663 1.987365674445825 1.902346466625761 1.814389427467823 1.723661988195055 1.630336853644850 1.534591673514971 1.505761431602958 1.506691857688187 +1.245181065308769 1.260362116014029 1.358625750049941 1.454645184922428 1.548237642179932 1.639224963260574 1.727433948627306 1.812696687463028 1.894850877298293 1.973740132963499 2.049214284276597 2.121129661900996 2.189349370827968 2.253743550964194 2.314189624327882 2.370572528382766 2.422784935066499 2.470727455095355 2.514308827157575 2.553446091634465 2.588064748518629 2.618098899229123 2.643491372053027 2.664193830975091 2.680166867688175 2.691380076608984 2.697812112757039 2.699450732385948 2.696292816290119 2.688344375742331 2.675620541050931 2.658145532758438 2.635952615536301 2.609084034863887 2.577590936611573 2.541533269681808 2.500979671893036 2.541533269681808 2.577590936611575 2.609084034863891 2.635952615536294 2.658145532758418 2.675620541050933 2.688344375742332 2.696292816290116 2.699450732385943 2.697812112757037 2.691380076608984 2.680166867688180 2.664193830975093 2.643491372053025 2.618098899229123 2.588064748518627 2.553446091634439 2.514308827157578 2.470727455095353 2.422784935066497 2.370572528382793 2.314189624327846 2.253743550964193 2.189349370827968 2.121129661900996 2.049214284276595 1.973740132963498 1.894850877298292 1.812696687463026 1.727433948627306 1.639224963260573 1.548237642179931 1.454645184922428 1.358625750049875 1.260362116014095 1.245181065308769 1.260362116014029 1.358625750049941 1.454645184922428 1.548237642179931 1.639224963260575 1.727433948627306 1.812696687463025 1.894850877298291 1.973740132963500 2.049214284276596 2.121129661900997 2.189349370827967 2.253743550964196 2.314189624327883 2.370572528382791 2.422784935066495 2.470727455095357 2.514308827157576 2.553446091634437 2.588064748518626 2.618098899229126 2.643491372053026 2.664193830975094 2.680166867688178 2.691380076608986 2.697812112757030 2.699450732385943 2.696292816290121 2.688344375742329 2.675620541050932 2.658145532758435 2.635952615536294 2.609084034863891 2.577590936611573 2.541533269681815 2.500979671893036 2.541533269681815 2.577590936611573 2.609084034863891 2.635952615536294 2.658145532758439 2.675620541050932 2.688344375742328 2.696292816290121 2.699450732385944 2.697812112757030 2.691380076608986 2.680166867688178 2.664193830975094 2.643491372053026 2.618098899229127 2.588064748518626 2.553446091634438 2.514308827157576 2.470727455095356 2.422784935066494 2.370572528382791 2.314189624327879 2.253743550964196 2.189349370827967 2.121129661900997 2.049214284276596 1.973740132963500 1.894850877298291 1.812696687463025 1.727433948627306 1.639224963260575 1.548237642179931 1.454645184922428 1.358625750049941 1.260362116014029 1.245181065308769 +0.981300000000000 1.081716356908221 1.180073605250332 1.276184516413805 1.369866137816728 1.460940141168201 1.549233161926562 1.634577129308561 1.716809586221639 1.795773998510238 1.871320052927517 1.943303943265254 2.011588644096738 2.076044171613003 2.136547831053920 2.192984450265012 2.245246598933953 2.293234793090313 2.336857684479103 2.376032234447182 2.410683872012131 2.440746635812401 2.466163299668441 2.486885481515996 2.502873735504132 2.514097627082713 2.520535790936188 2.522175971653695 2.519015047058077 2.511059034148908 2.498323077648988 2.480831421175372 2.458617361090262 2.431723183119671 2.400200081859906 2.364108063325836 2.323515830726140 2.364108063325836 2.400200081859906 2.431723183119670 2.458617361090261 2.480831421175368 2.498323077648989 2.511059034148905 2.519015047058076 2.522175971653723 2.520535790936185 2.514097627082719 2.502873735504137 2.486885481515995 2.466163299668439 2.440746635812399 2.410683872012136 2.376032234447179 2.336857684479103 2.293234793090349 2.245246598933950 2.192984450265029 2.136547831053921 2.076044171613003 2.011588644096738 1.943303943265253 1.871320052927573 1.795773998510237 1.716809586221640 1.634577129308560 1.549233161926624 1.460940141168263 1.369866137816727 1.276184516413805 1.180073605250332 1.081716356908221 0.981300000000001 1.081716356908221 1.180073605250332 1.276184516413805 1.369866137816729 1.460940141168201 1.549233161926563 1.634577129308559 1.716809586221639 1.795773998510238 1.871320052927516 1.943303943265255 2.011588644096739 2.076044171613002 2.136547831053921 2.192984450265029 2.245246598933953 2.293234793090315 2.336857684479106 2.376032234447178 2.410683872012134 2.440746635812395 2.466163299668454 2.486885481515997 2.502873735504135 2.514097627082716 2.520535790936182 2.522175971653718 2.519015047058079 2.511059034148908 2.498323077648989 2.480831421175366 2.458617361090283 2.431723183119669 2.400200081859914 2.364108063325845 2.323515830726139 2.364108063325845 2.400200081859914 2.431723183119669 2.458617361090283 2.480831421175365 2.498323077648989 2.511059034148908 2.519015047058078 2.522175971653718 2.520535790936182 2.514097627082714 2.502873735504135 2.486885481515997 2.466163299668443 2.440746635812397 2.410683872012133 2.376032234447178 2.336857684479107 2.293234793090315 2.245246598933953 2.192984450265029 2.136547831053921 2.076044171613002 2.011588644096739 1.943303943265255 1.871320052927573 1.795773998510238 1.716809586221639 1.634577129308559 1.549233161926563 1.460940141168201 1.369866137816729 1.276184516413805 1.180073605250332 1.081716356908221 0.981300000000000 +1.245198357605579 1.260379408310835 1.358643042346681 1.454662477219233 1.548254934476736 1.639242255557378 1.727451240924111 1.812713979759832 1.894868169595097 1.973757425260249 2.049231576573400 2.121146954197799 2.189366663124771 2.253760843260995 2.314206916624649 2.370589820679569 2.422802227363301 2.470744747392156 2.514326119454382 2.553463383931242 2.588082040815431 2.618116191525890 2.643508664349794 2.664211123271894 2.680184159984974 2.691397368905764 2.697829405053814 2.699468024682711 2.696310108586882 2.688361668039108 2.675637833347712 2.658162825055189 2.635969907833067 2.609101327160650 2.577608228908335 2.541550561978577 2.500996964189797 2.541550561978576 2.577608228908336 2.609101327160654 2.635969907833061 2.658162825055189 2.675637833347708 2.688361668039109 2.696310108586879 2.699468024682706 2.697829405053811 2.691397368905765 2.680184159984979 2.664211123271894 2.643508664349812 2.618116191525889 2.588082040815428 2.553463383931238 2.514326119454380 2.470744747392154 2.422802227363300 2.370589820679570 2.314206916624650 2.253760843260955 2.189366663124771 2.121146954197798 2.049231576573399 1.973757425260247 1.894868169595100 1.812713979759772 1.727451240924113 1.639242255557378 1.548254934476736 1.454662477219233 1.358643042346680 1.260379408310837 1.245198357605579 1.260379408310835 1.358643042346681 1.454662477219234 1.548254934476735 1.639242255557380 1.727451240924110 1.812713979759772 1.894868169595099 1.973757425260305 2.049231576573397 2.121146954197800 2.189366663124755 2.253760843260997 2.314206916624652 2.370589820679568 2.422802227363301 2.470744747392158 2.514326119454383 2.553463383931237 2.588082040815427 2.618116191525929 2.643508664349829 2.664211123271901 2.680184159984977 2.691397368905764 2.697829405053807 2.699468024682707 2.696310108586885 2.688361668039086 2.675637833347712 2.658162825055194 2.635969907833061 2.609101327160654 2.577608228908313 2.541550561978584 2.500996964189797 2.541550561978584 2.577608228908313 2.609101327160654 2.635969907833060 2.658162825055194 2.675637833347712 2.688361668039086 2.696310108586885 2.699468024682707 2.697829405053804 2.691397368905764 2.680184159984977 2.664211123271901 2.643508664349794 2.618116191525930 2.588082040815427 2.553463383931237 2.514326119454383 2.470744747392158 2.422802227363297 2.370589820679568 2.314206916624652 2.253760843260997 2.189366663124755 2.121146954197800 2.049231576573399 1.973757425260305 1.894868169595099 1.812713979759772 1.727451240924110 1.639242255557380 1.548254934476735 1.454662477219234 1.358643042346681 1.260379408310835 1.245198357605579 +1.506726409364913 1.505795983279747 1.534626225191763 1.630371405321575 1.723696539871846 1.814423979144613 1.902381018302551 1.987400226122616 2.069319763710467 2.147983692570309 2.223242271442576 2.294952241345001 2.362977098274114 2.427187353048506 2.487460777798752 2.543682638635052 2.595745914049888 2.643551498639483 2.687008391756427 2.726033870734756 2.760553648357144 2.790502014264986 2.815821960041548 2.836465287730940 2.852392701585694 2.863573882868237 2.869987547564516 2.871621486899233 2.868472590575996 2.860546852697919 2.847859360357555 2.830434264917685 2.808304736037857 2.781512898533980 2.750109752191605 2.714155074684543 2.673717307785022 2.714155074684542 2.750109752191610 2.781512898534002 2.808304736037852 2.830434264917693 2.847859360357563 2.860546852697917 2.868472590575992 2.871621486899230 2.869987547564516 2.863573882868245 2.852392701585701 2.836465287730984 2.815821960041547 2.790502014264983 2.760553648357166 2.726033870734760 2.687008391756430 2.643551498639482 2.595745914049918 2.543682638635051 2.487460777798749 2.427187353048507 2.362977098274111 2.294952241345004 2.223242271442576 2.147983692570307 2.069319763710467 1.987400226122617 1.902381018302614 1.814423979144612 1.723696539871846 1.630371405321641 1.534626225191763 1.505795983279747 1.506726409364913 1.505795983279748 1.534626225191762 1.630371405321641 1.723696539871846 1.814423979144550 1.902381018302551 1.987400226122616 2.069319763710467 2.147983692570307 2.223242271442575 2.294952241345002 2.362977098274114 2.427187353048509 2.487460777798753 2.543682638635050 2.595745914049889 2.643551498639480 2.687008391756429 2.726033870734758 2.760553648357165 2.790502014265007 2.815821960041544 2.836465287730945 2.852392701585696 2.863573882868241 2.869987547564511 2.871621486899229 2.868472590575997 2.860546852697920 2.847859360357557 2.830434264917692 2.808304736037851 2.781512898533999 2.750109752191605 2.714155074684551 2.673717307785022 2.714155074684544 2.750109752191605 2.781512898533999 2.808304736037851 2.830434264917692 2.847859360357557 2.860546852697919 2.868472590575997 2.871621486899229 2.869987547564512 2.863573882868243 2.852392701585697 2.836465287730945 2.815821960041546 2.790502014265007 2.760553648357165 2.726033870734758 2.687008391756429 2.643551498639480 2.595745914049916 2.543682638635050 2.487460777798753 2.427187353048509 2.362977098274114 2.294952241345002 2.223242271442597 2.147983692570307 2.069319763710467 1.987400226122616 1.902381018302551 1.814423979144550 1.723696539871846 1.630371405321641 1.534626225191762 1.505795983279748 1.506726409364913 +1.765386321767423 1.764460331935389 1.761684125113767 1.802976828789695 1.895856990934772 1.986151843562336 2.073689505288433 2.158303343198558 2.239832290043132 2.318121150838067 2.393020898287178 2.464388956464190 2.532089472214038 2.595993573757129 2.655979616004190 2.711933412114315 2.763748450856464 2.811326099359420 2.854575790865133 2.893415197127577 2.927770385129576 2.957575957818047 2.982775178591344 3.003320079300549 3.019171551559446 3.030299421189683 3.036682505658853 3.038308654402945 3.035174771955445 3.027286823839643 3.014659825213093 2.997317812285373 2.975293796563798 2.948629702013967 2.917376285255409 2.881593038943199 2.841348078520543 2.881593038943199 2.917376285255401 2.948629702013975 2.975293796563798 2.997317812285376 3.014659825213099 3.027286823839642 3.035174771955447 3.038308654402942 3.036682505658868 3.030299421189661 3.019171551559446 3.003320079300554 2.982775178591344 2.957575957818046 2.927770385129576 2.893415197127577 2.854575790865128 2.811326099359418 2.763748450856515 2.711933412114314 2.655979616004195 2.595993573757128 2.532089472214035 2.464388956464190 2.393020898287180 2.318121150838067 2.239832290043130 2.158303343198506 2.073689505288432 1.986151843562400 1.895856990934774 1.802976828789696 1.761684125113837 1.764460331935389 1.765386321767423 1.764460331935459 1.761684125113767 1.802976828789695 1.895856990934770 1.986151843562336 2.073689505288431 2.158303343198558 2.239832290043132 2.318121150838066 2.393020898287177 2.464388956464191 2.532089472214034 2.595993573757130 2.655979616004193 2.711933412114315 2.763748450856465 2.811326099359421 2.854575790865130 2.893415197127576 2.927770385129573 2.957575957818048 2.982775178591344 3.003320079300549 3.019171551559444 3.030299421189660 3.036682505658868 3.038308654402940 3.035174771955448 3.027286823839641 3.014659825213094 2.997317812285376 2.975293796563797 2.948629702013974 2.917376285255409 2.881593038943207 2.841348078520543 2.881593038943207 2.917376285255409 2.948629702013974 2.975293796563797 2.997317812285375 3.014659825213097 3.027286823839642 3.035174771955448 3.038308654402940 3.036682505658868 3.030299421189660 3.019171551559444 3.003320079300549 2.982775178591345 2.957575957818047 2.927770385129573 2.893415197127576 2.854575790865130 2.811326099359422 2.763748450856512 2.711933412114315 2.655979616004193 2.595993573757130 2.532089472214034 2.464388956464191 2.393020898287180 2.318121150838066 2.239832290043132 2.158303343198559 2.073689505288431 1.986151843562336 1.895856990934770 1.802976828789695 1.761684125113767 1.764460331935459 1.765386321767423 +2.020685720968414 2.019765930064057 2.017008308224982 2.012418104741357 2.064408570462161 2.154098955060564 2.241050606440254 2.325098007190858 2.406081168308059 2.483845933741943 2.558244273841602 2.629134567138109 2.696381869929114 2.759858173151583 2.819442646054684 2.875021866207514 2.926490035405757 2.973749181064019 3.016709342712528 3.055288743241812 3.089413944570373 3.119019987437851 3.144050515058962 3.164457880401768 3.180203236886455 3.191256612332004 3.197596966010041 3.199212228697006 3.196099325648540 3.188264182452511 3.175721713749359 3.158495794841091 3.136619216243447 3.110133621267093 3.079089426747500 3.043545727073326 3.003570181697047 3.043545727073317 3.079089426747499 3.110133621267082 3.136619216243447 3.158495794841101 3.175721713749367 3.188264182452510 3.196099325648535 3.199212228697009 3.197596966010037 3.191256612332005 3.180203236886456 3.164457880401766 3.144050515058960 3.119019987437849 3.089413944570373 3.055288743241815 3.016709342712528 2.973749181064016 2.926490035405755 2.875021866207514 2.819442646054635 2.759858173151585 2.696381869929114 2.629134567138108 2.558244273841602 2.483845933741944 2.406081168308060 2.325098007190813 2.241050606440254 2.154098955060563 2.064408570462162 2.012418104741358 2.017008308224981 2.019765930063991 2.020685720968414 2.019765930064057 2.017008308224982 2.012418104741289 2.064408570462164 2.154098955060509 2.241050606440253 2.325098007190859 2.406081168308059 2.483845933741945 2.558244273841559 2.629134567138109 2.696381869929117 2.759858173151583 2.819442646054633 2.875021866207513 2.926490035405757 2.973749181063998 3.016709342712528 3.055288743241815 3.089413944570371 3.119019987437846 3.144050515058963 3.164457880401771 3.180203236886454 3.191256612332002 3.197596966010033 3.199212228697009 3.196099325648543 3.188264182452521 3.175721713749361 3.158495794841091 3.136619216243446 3.110133621267099 3.079089426747507 3.043545727073326 3.003570181697047 3.043545727073326 3.079089426747507 3.110133621267099 3.136619216243440 3.158495794841091 3.175721713749361 3.188264182452523 3.196099325648541 3.199212228697009 3.197596966010033 3.191256612332005 3.180203236886454 3.164457880401769 3.144050515058963 3.119019987437848 3.089413944570370 3.055288743241815 3.016709342712528 2.973749181063999 2.926490035405758 2.875021866207513 2.819442646054633 2.759858173151583 2.696381869929117 2.629134567138109 2.558244273841604 2.483845933741945 2.406081168308059 2.325098007190859 2.241050606440253 2.154098955060509 2.064408570462163 2.012418104741289 2.017008308224982 2.019765930064057 2.020685720968414 +2.272138630051301 2.271226788948683 2.268493001382188 2.263942471271830 2.257583860810254 2.317945616766698 2.404145740389638 2.487466714976438 2.567749934316312 2.644842574738222 2.718597886019507 2.788875470733159 2.855541551502314 2.918469225653233 2.977538706781569 3.032637552772718 3.083660879841680 3.130511562185479 3.173100416867364 3.211346373581931 3.245176628976745 3.274526785237942 3.299340972674868 3.319571956071435 3.335181224600919 3.346139065133392 3.352424618796724 3.354025920682207 3.350939922620652 3.343172498984844 3.330738435507108 3.313661401133971 3.291973902970975 3.265717224403535 3.234941346511555 3.199704852927872 3.160074818320724 3.199704852927865 3.234941346511555 3.265717224403534 3.291973902970994 3.313661401133973 3.330738435507115 3.343172498984842 3.350939922620646 3.354025920682207 3.352424618796719 3.346139065133395 3.335181224600918 3.319571956071438 3.299340972674866 3.274526785237942 3.245176628976746 3.211346373581871 3.173100416867364 3.130511562185476 3.083660879841677 3.032637552772717 2.977538706781571 2.918469225653235 2.855541551502315 2.788875470733158 2.718597886019507 2.644842574738221 2.567749934316311 2.487466714976439 2.404145740389638 2.317945616766698 2.257583860810255 2.263942471271830 2.268493001382188 2.271226788948679 2.272138630051301 2.271226788948630 2.268493001382188 2.263942471271829 2.257583860810255 2.317945616766667 2.404145740389596 2.487466714976439 2.567749934316313 2.644842574738221 2.718597886019508 2.788875470733159 2.855541551502315 2.918469225653233 2.977538706781571 3.032637552772738 3.083660879841658 3.130511562185458 3.173100416867368 3.211346373581871 3.245176628976739 3.274526785237942 3.299340972674866 3.319571956071434 3.335181224600916 3.346139065133393 3.352424618796720 3.354025920682208 3.350939922620653 3.343172498984844 3.330738435507114 3.313661401133973 3.291973902970992 3.265717224403538 3.234941346511556 3.199704852927873 3.160074818320724 3.199704852927873 3.234941346511556 3.265717224403537 3.291973902970992 3.313661401133973 3.330738435507114 3.343172498984845 3.350939922620653 3.354025920682208 3.352424618796719 3.346139065133393 3.335181224600916 3.319571956071434 3.299340972674868 3.274526785237942 3.245176628976739 3.211346373581871 3.173100416867368 3.130511562185458 3.083660879841678 3.032637552772738 2.977538706781571 2.918469225653234 2.855541551502315 2.788875470733159 2.718597886019506 2.644842574738221 2.567749934316313 2.487466714976439 2.404145740389596 2.317945616766667 2.257583860810255 2.263942471271829 2.268493001382188 2.271226788948630 2.272138630051301 +2.519266394111814 2.518364238552369 2.515659489178448 2.511157294634128 2.504866225102653 2.496798255992439 2.562664446279445 2.645100388491705 2.724530842383219 2.800804607570512 2.873776492606444 2.943307591360381 3.009265547433971 3.071524806108983 3.129966853347962 3.184480441392429 3.234961800529095 3.281314836621675 3.323451314031514 3.361291023578955 3.394761935226156 3.423800335190431 3.448350947227091 3.468367037850697 3.483810505295113 3.494651952042378 3.500870740782267 3.502455033697111 3.499401814995255 3.491716896652016 3.479414907346211 3.462519264613786 3.441062130270849 3.415084349192250 3.384635371560721 3.349773158735770 3.310564072920957 3.349773158735762 3.384635371560720 3.415084349192249 3.441062130270843 3.462519264613791 3.479414907346216 3.491716896652021 3.499401814995272 3.502455033697115 3.500870740782276 3.494651952042384 3.483810505295115 3.468367037850693 3.448350947227091 3.423800335190429 3.394761935226168 3.361291023578954 3.323451314031513 3.281314836621675 3.234961800529094 3.184480441392430 3.129966853347959 3.071524806108980 3.009265547433970 2.943307591360380 2.873776492606446 2.800804607570511 2.724530842383220 2.645100388491706 2.562664446279492 2.496798255992385 2.504866225102600 2.511157294634128 2.515659489178447 2.518364238552369 2.519266394111814 2.518364238552413 2.515659489178447 2.511157294634076 2.504866225102600 2.496798255992440 2.562664446279445 2.645100388491706 2.724530842383220 2.800804607570541 2.873776492606444 2.943307591360379 3.009265547433945 3.071524806108982 3.129966853347959 3.184480441392431 3.234961800529092 3.281314836621678 3.323451314031514 3.361291023578957 3.394761935226168 3.423800335190428 3.448350947227091 3.468367037850699 3.483810505295114 3.494651952042381 3.500870740782317 3.502455033697113 3.499401814995255 3.491716896652022 3.479414907346212 3.462519264613792 3.441062130270836 3.415084349192249 3.384635371560721 3.349773158735771 3.310564072920957 3.349773158735771 3.384635371560721 3.415084349192249 3.441062130270836 3.462519264613792 3.479414907346212 3.491716896652022 3.499401814995255 3.502455033697113 3.500870740782314 3.494651952042381 3.483810505295114 3.468367037850699 3.448350947227091 3.423800335190428 3.394761935226168 3.361291023578957 3.323451314031514 3.281314836621678 3.234961800529093 3.184480441392431 3.129966853347959 3.071524806108982 3.009265547433945 2.943307591360379 2.873776492606446 2.800804607570541 2.724530842383220 2.645100388491706 2.562664446279445 2.496798255992440 2.504866225102600 2.511157294634076 2.515659489178447 2.518364238552412 2.519266394111814 +2.761598591405606 2.760707838693670 2.758037276156393 2.753591987361310 2.747380434168328 2.739414440621891 2.729709170443563 2.797698963079865 2.876125451139505 2.951435149645037 3.023484702304943 3.092136958700844 3.157261235360628 3.218733564522291 3.276436930113393 3.330261490497926 3.380104787566045 3.425871941768744 3.467475832726927 3.504837265069366 3.537885119186304 3.566556486608913 3.590796789759916 3.610559885844381 3.625808154685756 3.636512570337599 3.642652756336388 3.644217024488989 3.641202397122090 3.633614612750268 3.621468115152269 3.604786025876692 3.583600100228622 3.557950666821621 3.527886550810061 3.493464980947401 3.454751480648354 3.493464980947401 3.527886550810062 3.557950666821640 3.583600100228621 3.604786025876706 3.621468115152270 3.633614612750266 3.641202397122085 3.644217024488987 3.642652756336388 3.636512570337601 3.625808154685761 3.610559885844379 3.590796789759911 3.566556486608911 3.537885119186303 3.504837265069364 3.467475832726930 3.425871941768759 3.380104787566045 3.330261490497926 3.276436930113393 3.218733564522293 3.157261235360628 3.092136958700847 3.023484702304970 2.951435149645040 2.876125451139503 2.797698963079866 2.729709170443565 2.739414440621849 2.747380434168292 2.753591987361310 2.758037276156430 2.760707838693669 2.761598591405606 2.760707838693707 2.758037276156393 2.753591987361244 2.747380434168292 2.739414440621891 2.729709170443565 2.797698963079865 2.876125451139502 2.951435149645039 3.023484702304944 3.092136958700847 3.157261235360625 3.218733564522292 3.276436930113392 3.330261490497926 3.380104787566045 3.425871941768744 3.467475832726928 3.504837265069367 3.537885119186300 3.566556486608909 3.590796789759911 3.610559885844380 3.625808154685758 3.636512570337599 3.642652756336386 3.644217024488988 3.641202397122091 3.633614612750247 3.621468115152269 3.604786025876705 3.583600100228614 3.557950666821641 3.527886550810061 3.493464980947410 3.454751480648354 3.493464980947410 3.527886550810061 3.557950666821641 3.583600100228614 3.604786025876706 3.621468115152269 3.633614612750247 3.641202397122090 3.644217024488988 3.642652756336386 3.636512570337599 3.625808154685758 3.610559885844380 3.590796789759918 3.566556486608910 3.537885119186301 3.504837265069367 3.467475832726928 3.425871941768744 3.380104787566044 3.330261490497926 3.276436930113392 3.218733564522292 3.157261235360625 3.092136958700847 3.023484702304970 2.951435149645039 2.876125451139502 2.797698963079865 2.729709170443565 2.739414440621891 2.747380434168292 2.753591987361244 2.758037276156393 2.760707838693707 2.761598591405606 +2.998673928821516 2.997796274555586 2.995164982422567 2.990785061236564 2.984664848426577 2.976815994165456 2.967253439193418 2.955995386377340 3.022245191631206 3.096447467163481 3.167437537028950 3.235080267594736 3.299246897078669 3.359815280654576 3.416670122961752 3.469703197576563 3.518813553027132 3.563907704960712 3.604899814096122 3.641711849623754 3.674273737741652 3.702523495045198 3.726407346515716 3.745879827884448 3.760903872176383 3.771450880269268 3.777500775333769 3.779042041050816 3.776071743533415 3.768595536911841 3.756627652570186 3.740190872056614 3.719316483716967 3.694044223135878 3.664422197497802 3.630506794012075 3.592362572576916 3.630506794012078 3.664422197497802 3.694044223135878 3.719316483716968 3.740190872056615 3.756627652570188 3.768595536911833 3.776071743533413 3.779042041050809 3.777500775333773 3.771450880269274 3.760903872176387 3.745879827884444 3.726407346515717 3.702523495045198 3.674273737741649 3.641711849623756 3.604899814096125 3.563907704960783 3.518813553027131 3.469703197576560 3.416670122961754 3.359815280654576 3.299246897078739 3.235080267594736 3.167437537028951 3.096447467163549 3.022245191631204 2.955995386377342 2.967253439193389 2.976815994165458 2.984664848426545 2.990785061236564 2.995164982422568 2.997796274555586 2.998673928821516 2.997796274555584 2.995164982422568 2.990785061236595 2.984664848426546 2.976815994165457 2.967253439193416 2.955995386377340 3.022245191631207 3.096447467163547 3.167437537028949 3.235080267594734 3.299246897078668 3.359815280654576 3.416670122961754 3.469703197576563 3.518813553027128 3.563907704960714 3.604899814096125 3.641711849623755 3.674273737741646 3.702523495045194 3.726407346515714 3.745879827884448 3.760903872176384 3.771450880269272 3.777500775333773 3.779042041050828 3.776071743533416 3.768595536911843 3.756627652570186 3.740190872056614 3.719316483716967 3.694044223135871 3.664422197497810 3.630506794012070 3.592362572576916 3.630506794012069 3.664422197497810 3.694044223135871 3.719316483716967 3.740190872056614 3.756627652570186 3.768595536911842 3.776071743533415 3.779042041050828 3.777500775333773 3.771450880269273 3.760903872176384 3.745879827884450 3.726407346515716 3.702523495045195 3.674273737741646 3.641711849623755 3.604899814096125 3.563907704960714 3.518813553027128 3.469703197576563 3.416670122961754 3.359815280654576 3.299246897078668 3.235080267594734 3.167437537028951 3.096447467163548 3.022245191631206 2.955995386377340 2.967253439193416 2.976815994165457 2.984664848426546 2.990785061236595 2.995164982422568 2.997796274555584 2.998673928821516 +3.230041119980430 3.229178234825274 3.226591221910643 3.222285005762619 3.216267783508618 3.208551009272886 3.199149372374002 3.188080769362090 3.175366269952159 3.235565520937624 3.305360974375775 3.371865417329340 3.434952254811202 3.494501397440691 3.550399490040165 3.602540127413442 3.650824056893712 3.695159367276994 3.735461663780017 3.771654228690906 3.803668167405128 3.831442539570932 3.854924475092268 3.874069274770148 3.888840495390430 3.899210019094977 3.905158106906168 3.906673436300669 3.903753122762973 3.896402725275784 3.884636235738566 3.868476052332822 3.847952936886228 3.823105956315525 3.793982408260336 3.760637731049695 3.723135398171861 3.760637731049695 3.793982408260328 3.823105956315517 3.847952936886227 3.868476052332829 3.884636235738571 3.896402725275783 3.903753122763002 3.906673436300664 3.905158106906168 3.899210019094979 3.888840495390433 3.874069274770147 3.854924475092266 3.831442539570932 3.803668167405127 3.771654228690905 3.735461663780086 3.695159367276993 3.650824056893709 3.602540127413441 3.550399490040166 3.494501397440689 3.434952254811201 3.371865417329342 3.305360974375774 3.235565520937622 3.175366269952157 3.188080769362089 3.199149372374001 3.208551009272886 3.216267783508617 3.222285005762619 3.226591221910645 3.229178234825245 3.230041119980430 3.229178234825273 3.226591221910644 3.222285005762620 3.216267783508616 3.208551009272859 3.199149372374089 3.188080769362064 3.175366269952160 3.235565520937620 3.305360974375776 3.371865417329342 3.434952254811203 3.494501397440689 3.550399490040165 3.602540127413441 3.650824056893713 3.695159367276995 3.735461663780019 3.771654228690904 3.803668167405124 3.831442539570929 3.854924475092269 3.874069274770150 3.888840495390432 3.899210019094977 3.905158106906167 3.906673436300715 3.903753122762949 3.896402725275785 3.884636235738570 3.868476052332824 3.847952936886266 3.823105956315517 3.793982408260336 3.760637731049695 3.723135398171861 3.760637731049695 3.793982408260336 3.823105956315517 3.847952936886265 3.868476052332823 3.884636235738570 3.896402725275784 3.903753122762949 3.906673436300695 3.905158106906167 3.899210019094976 3.888840495390432 3.874069274770150 3.854924475092273 3.831442539570929 3.803668167405124 3.771654228690904 3.735461663780019 3.695159367276995 3.650824056893712 3.602540127413441 3.550399490040165 3.494501397440689 3.434952254811203 3.371865417329342 3.305360974375775 3.235565520937620 3.175366269952160 3.188080769362064 3.199149372374089 3.208551009272859 3.216267783508616 3.222285005762620 3.226591221910644 3.229178234825273 3.230041119980430 +3.455259744284117 3.454413270790548 3.451875461620410 3.447651147637710 3.441748370064118 3.434178365172261 3.424955542896744 3.414097459403919 3.401624783672858 3.387561258150747 3.436992469243672 3.502232029597885 3.564118985696941 3.622535532202451 3.677370469898053 3.728519417363066 3.775885009668992 3.819377083718702 3.858912849877462 3.894417049567150 3.925822098525817 3.953068215457903 3.976103535831069 3.994884210603915 4.009374489694522 4.019546790033002 4.025381748067645 4.026868256624107 4.024003486048852 4.016792889595475 4.005250193044273 3.989397368574048 3.969264592937248 3.944890190016548 3.916320557873286 3.883610080425997 3.846821023927685 3.883610080425998 3.916320557873286 3.944890190016548 3.969264592937251 3.989397368574052 4.005250193044279 4.016792889595525 4.024003486048853 4.026868256624105 4.025381748067663 4.019546790033005 4.009374489694522 3.994884210603916 3.976103535831064 3.953068215457902 3.925822098525889 3.894417049567153 3.858912849877462 3.819377083718699 3.775885009668992 3.728519417363065 3.677370469898056 3.622535532202454 3.564118985696944 3.502232029597885 3.436992469243672 3.387561258150822 3.401624783672955 3.414097459403938 3.424955542896821 3.434178365172261 3.441748370064118 3.447651147637685 3.451875461620434 3.454413270790549 3.455259744284117 3.454413270790550 3.451875461620435 3.447651147637685 3.441748370064118 3.434178365172261 3.424955542896752 3.414097459403940 3.401624783672957 3.387561258150821 3.436992469243651 3.502232029597887 3.564118985696941 3.622535532202452 3.677370469898053 3.728519417363060 3.775885009668994 3.819377083718699 3.858912849877466 3.894417049567152 3.925822098525889 3.953068215457900 3.976103535831133 3.994884210603901 4.009374489694519 4.019546790033004 4.025381748067661 4.026868256624105 4.024003486048836 4.016792889595481 4.005250193044274 3.989397368574051 3.969264592937252 3.944890190016540 3.916320557873286 3.883610080426002 3.846821023927685 3.883610080426003 3.916320557873286 3.944890190016540 3.969264592937252 3.989397368574051 4.005250193044273 4.016792889595481 4.024003486048836 4.026868256624105 4.025381748067661 4.019546790033004 4.009374489694519 3.994884210603901 3.976103535831069 3.953068215457901 3.925822098525888 3.894417049567152 3.858912849877466 3.819377083718699 3.775885009669005 3.728519417363060 3.677370469898053 3.622535532202453 3.564118985696941 3.502232029597887 3.436992469243670 3.387561258150821 3.401624783672957 3.414097459403940 3.424955542896754 3.434178365172263 3.441748370064118 3.447651147637685 3.451875461620435 3.454413270790548 3.455259744284117 +3.673901085280177 3.673072634758848 3.670588860197147 3.666454489601395 3.660677392980928 3.653268567367541 3.644242115881762 3.633615220887101 3.621408111282101 3.607644023993899 3.592349159744659 3.625931944144123 3.686501213521983 3.743673964687166 3.797341366058186 3.847401258686370 3.893758350720885 3.936324398802212 3.975018376038657 4.009766626245188 4.040503004152681 4.067169001318811 4.089713857502336 4.108094657288217 4.122276411779306 4.132232125199908 4.137942846283702 4.139397704348526 4.136593929989308 4.129536860350016 4.118239928963664 4.102724640181353 4.083020528237027 4.059165101027657 4.031203768714894 3.999189757283904 3.963184007225077 3.999189757283903 4.031203768714894 4.059165101027651 4.083020528237027 4.102724640181359 4.118239928963670 4.129536860350014 4.136593929989308 4.139397704348525 4.137942846283702 4.132232125199911 4.122276411779311 4.108094657288215 4.089713857502326 4.067169001318811 4.040503004152680 4.009766626245186 3.975018376038657 3.936324398802219 3.893758350720879 3.847401258686373 3.797341366058188 3.743673964687090 3.686501213521983 3.625931944144122 3.592349159744662 3.607644023993900 3.621408111282080 3.633615220887040 3.644242115881763 3.653268567367540 3.660677392980928 3.666454489601395 3.670588860197147 3.673072634758848 3.673901085280177 3.673072634758771 3.670588860197147 3.666454489601415 3.660677392980928 3.653268567367541 3.644242115881763 3.633615220887101 3.621408111282101 3.607644023993901 3.592349159744661 3.625931944144124 3.686501213521981 3.743673964687089 3.797341366058187 3.847401258686371 3.893758350720887 3.936324398802212 3.975018376038658 4.009766626245189 4.040503004152678 4.067169001318814 4.089713857502325 4.108094657288217 4.122276411779306 4.132232125199908 4.137942846283701 4.139397704348523 4.136593929989317 4.129536860350015 4.118239928963670 4.102724640181354 4.083020528237026 4.059165101027644 4.031203768714895 3.999189757283904 3.963184007225077 3.999189757283904 4.031203768714895 4.059165101027644 4.083020528237026 4.102724640181354 4.118239928963670 4.129536860350015 4.136593929989313 4.139397704348515 4.137942846283701 4.132232125199908 4.122276411779306 4.108094657288216 4.089713857502336 4.067169001318814 4.040503004152678 4.009766626245189 3.975018376038658 3.936324398802212 3.893758350720892 3.847401258686371 3.797341366058187 3.743673964687089 3.686501213521981 3.625931944144124 3.592349159744661 3.607644023993901 3.621408111282101 3.633615220887101 3.644242115881763 3.653268567367541 3.660677392980928 3.666454489601415 3.670588860197147 3.673072634758776 3.673901085280177 +3.885548946749637 3.884740096202932 3.882315084255876 3.878278527056507 3.872638108420807 3.865404565206454 3.856591666873880 3.846216189275973 3.834297882724107 3.820859434392160 3.805926425130312 3.789527280770382 3.801865976760070 3.857686101003464 3.910083807101213 3.958959353041754 4.004219701445403 4.045778696666531 4.083557228795779 4.117483384249949 4.147492582663891 4.173527699822949 4.195539176401698 4.213485112303538 4.227331346419422 4.237051521655766 4.242627135106597 4.244047573274800 4.241310132275528 4.234420022983335 4.223390361112933 4.208242142252499 4.189004201897625 4.165713160561184 4.138413354064116 4.107156749139769 4.072002844512108 4.107156749139764 4.138413354064116 4.165713160561181 4.189004201897625 4.208242142252499 4.223390361112934 4.234420022983331 4.241310132275527 4.244047573274792 4.242627135106591 4.237051521655765 4.227331346419422 4.213485112303538 4.195539176401697 4.173527699822947 4.147492582663889 4.117483384249949 4.083557228795777 4.045778696666528 4.004219701445402 3.958959353041756 3.910083807101214 3.857686101003464 3.801865976760072 3.789527280770453 3.805926425130310 3.820859434392144 3.834297882724107 3.846216189275975 3.856591666873865 3.865404565206454 3.872638108420808 3.878278527056507 3.882315084255874 3.884740096202932 3.885548946749637 3.884740096202933 3.882315084255874 3.878278527056506 3.872638108420809 3.865404565206454 3.856591666873880 3.846216189275972 3.834297882724106 3.820859434392143 3.805926425130325 3.789527280770383 3.801865976760074 3.857686101003463 3.910083807101213 3.958959353041754 4.004219701445400 4.045778696666517 4.083557228795779 4.117483384249947 4.147492582663888 4.173527699822947 4.195539176401696 4.213485112303538 4.227331346419426 4.237051521655766 4.242627135106589 4.244047573274787 4.241310132275526 4.234420022983337 4.223390361112933 4.208242142252499 4.189004201897625 4.165713160561181 4.138413354064116 4.107156749139769 4.072002844512108 4.107156749139769 4.138413354064116 4.165713160561181 4.189004201897625 4.208242142252499 4.223390361112933 4.234420022983336 4.241310132275526 4.244047573274787 4.242627135106589 4.237051521655766 4.227331346419426 4.213485112303538 4.195539176401700 4.173527699822947 4.147492582663888 4.117483384249947 4.083557228795779 4.045778696666517 4.004219701445400 3.958959353041754 3.910083807101213 3.857686101003463 3.801865976760074 3.789527280770383 3.805926425130310 3.820859434392143 3.834297882724106 3.846216189275973 3.856591666873880 3.865404565206454 3.872638108420809 3.878278527056506 3.882315084255874 3.884740096202933 3.885548946749637 +4.089800444958711 4.089012734079681 4.086651100895228 4.082720040908312 4.077227037114992 4.070182545760309 4.061599976433691 4.051495666543876 4.039888850218979 4.026801621693523 4.012258893250887 3.996288347801146 3.978920386185346 3.964354912569900 4.015383181382814 4.062981343256041 4.107058792383190 4.147531624834686 4.184322798273612 4.217362278610276 4.246587173315953 4.271941851142636 4.293378048019891 4.310854958928709 4.324339315575792 4.333805449721910 4.339235342042652 4.340618656429405 4.337952759664621 4.331242726434215 4.320501329667944 4.305749016224999 4.287013867972454 4.264331548329841 4.237745234381832 4.207305534688091 4.173070392947061 4.207305534688091 4.237745234381832 4.264331548329842 4.287013867972448 4.305749016225000 4.320501329667887 4.331242726434211 4.337952759664619 4.340618656429404 4.339235342042668 4.333805449721912 4.324339315575793 4.310854958928707 4.293378048019889 4.271941851142645 4.246587173315957 4.217362278610282 4.184322798273611 4.147531624834685 4.107058792383190 4.062981343256038 4.015383181382814 3.964354912569899 3.978920386185344 3.996288347801147 4.012258893250876 4.026801621693525 4.039888850218979 4.051495666543874 4.061599976433690 4.070182545760309 4.077227037114993 4.082720040908312 4.086651100895317 4.089012734079681 4.089800444958711 4.089012734079700 4.086651100895229 4.082720040908315 4.077227037114996 4.070182545760310 4.061599976433691 4.051495666543877 4.039888850218980 4.026801621693524 4.012258893250887 3.996288347801260 3.978920386185348 3.964354912569900 4.015383181382814 4.062981343256054 4.107058792383187 4.147531624834685 4.184322798273612 4.217362278610278 4.246587173315956 4.271941851142643 4.293378048019890 4.310854958928696 4.324339315575792 4.333805449721911 4.339235342042667 4.340618656429398 4.337952759664625 4.331242726434220 4.320501329667908 4.305749016224999 4.287013867972448 4.264331548329839 4.237745234381835 4.207305534688091 4.173070392947061 4.207305534688091 4.237745234381835 4.264331548329839 4.287013867972448 4.305749016225000 4.320501329667917 4.331242726434220 4.337952759664624 4.340618656429398 4.339235342042667 4.333805449721911 4.324339315575792 4.310854958928695 4.293378048019893 4.271941851142644 4.246587173315956 4.217362278610278 4.184322798273612 4.147531624834685 4.107058792383187 4.062981343256054 4.015383181382814 3.964354912569900 3.978920386185348 3.996288347801260 4.012258893250875 4.026801621693524 4.039888850218980 4.051495666543877 4.061599976433691 4.070182545760310 4.077227037114996 4.082720040908315 4.086651100895229 4.089012734079700 4.089800444958711 +4.286266775571894 4.285501703813077 4.283207944894254 4.279389865115875 4.274054732409820 4.267212702504382 4.258876799592325 4.249062891538841 4.237789659675448 4.225078563239870 4.210953798526453 4.195442252827840 4.178573453252926 4.160379510520117 4.140895057833786 4.159269217558866 4.202079863479943 4.241389490824881 4.277123271483785 4.309213184174269 4.337598143923532 4.362224118347527 4.383044230504191 4.400018848126692 4.413115659065736 4.422309732797217 4.427583567879259 4.428927125267023 4.426337847422642 4.419820663183727 4.409387978380843 4.395059652222438 4.376862959491784 4.354832538627719 4.329010325788445 4.299445475023731 4.266194264707464 4.299445475023731 4.329010325788444 4.354832538627722 4.376862959491785 4.395059652222449 4.409387978380842 4.419820663183721 4.426337847422640 4.428927125267021 4.427583567879255 4.422309732797218 4.413115659065737 4.400018848126698 4.383044230504190 4.362224118347525 4.337598143923527 4.309213184174201 4.277123271483784 4.241389490824883 4.202079863479945 4.159269217558869 4.140895057833784 4.160379510520118 4.178573453252848 4.195442252827840 4.210953798526453 4.225078563239870 4.237789659675447 4.249062891538856 4.258876799592324 4.267212702504381 4.274054732409820 4.279389865115875 4.283207944894271 4.285501703813012 4.286266775571894 4.285501703813077 4.283207944894253 4.279389865115874 4.274054732409807 4.267212702504382 4.258876799592325 4.249062891538841 4.237789659675450 4.225078563239871 4.210953798526486 4.195442252827839 4.178573453252912 4.160379510520117 4.140895057833786 4.159269217558868 4.202079863479943 4.241389490824881 4.277123271483786 4.309213184174200 4.337598143923538 4.362224118347522 4.383044230504188 4.400018848126695 4.413115659065737 4.422309732797216 4.427583567879255 4.428927125267021 4.426337847422642 4.419820663183728 4.409387978380842 4.395059652222445 4.376862959491787 4.354832538627722 4.329010325788445 4.299445475023743 4.266194264707464 4.299445475023743 4.329010325788445 4.354832538627722 4.376862959491787 4.395059652222445 4.409387978380843 4.419820663183728 4.426337847422642 4.428927125267021 4.427583567879255 4.422309732797216 4.413115659065737 4.400018848126695 4.383044230504189 4.362224118347522 4.337598143923534 4.309213184174200 4.277123271483786 4.241389490824881 4.202079863479946 4.159269217558868 4.140895057833786 4.160379510520117 4.178573453252912 4.195442252827839 4.210953798526455 4.225078563239871 4.237789659675450 4.249062891538841 4.258876799592324 4.267212702504382 4.274054732409810 4.279389865115874 4.283207944894253 4.285501703813077 4.286266775571894 +4.474573953762201 4.473832977481084 4.471611459128364 4.467913627490377 4.462746521599924 4.456119977336601 4.448046608704233 4.438541783818639 4.427623595654417 4.415312827603119 4.401632913911548 4.386609895072905 4.370272368257420 4.352651432875883 4.333780631380283 4.313695885413880 4.292435427432244 4.327173630854301 4.361781997450793 4.392861257522357 4.420352249931027 4.444202644010346 4.464367039179590 4.480807051366482 4.493491386073447 4.502395897948325 4.507503636746828 4.508804879597744 4.506297149511385 4.499985220094492 4.489881106463506 4.476004042372881 4.458380443603001 4.437043857675618 4.412034899994892 4.383401176533045 4.351197193210162 4.383401176533044 4.412034899994890 4.437043857675618 4.458380443603001 4.476004042372882 4.489881106463513 4.499985220094494 4.506297149511383 4.508804879597744 4.507503636746828 4.502395897948333 4.493491386073388 4.480807051366480 4.464367039179588 4.444202644010347 4.420352249931026 4.392861257522359 4.361781997450792 4.327173630854298 4.292435427432244 4.313695885413880 4.333780631380281 4.352651432875882 4.370272368257418 4.386609895072928 4.401632913911547 4.415312827603120 4.427623595654417 4.438541783818638 4.448046608704156 4.456119977336602 4.462746521599923 4.467913627490376 4.471611459128349 4.473832977481083 4.474573953762201 4.473832977481083 4.471611459128348 4.467913627490451 4.462746521599908 4.456119977336615 4.448046608704233 4.438541783818640 4.427623595654418 4.415312827603119 4.401632913911548 4.386609895072908 4.370272368257344 4.352651432875881 4.333780631380281 4.313695885413882 4.292435427432244 4.327173630854301 4.361781997450793 4.392861257522357 4.420352249931040 4.444202644010342 4.464367039179587 4.480807051366487 4.493491386073386 4.502395897948331 4.507503636746828 4.508804879597741 4.506297149511370 4.499985220094491 4.489881106463512 4.476004042372882 4.458380443602997 4.437043857675617 4.412034899994892 4.383401176533048 4.351197193210162 4.383401176533048 4.412034899994892 4.437043857675617 4.458380443602997 4.476004042372882 4.489881106463512 4.499985220094491 4.506297149511369 4.508804879597741 4.507503636746828 4.502395897948331 4.493491386073384 4.480807051366487 4.464367039179595 4.444202644010343 4.420352249931040 4.392861257522357 4.361781997450793 4.327173630854301 4.292435427432242 4.313695885413882 4.333780631380281 4.352651432875881 4.370272368257344 4.386609895072908 4.401632913911619 4.415312827603119 4.427623595654418 4.438541783818640 4.448046608704233 4.456119977336615 4.462746521599908 4.467913627490451 4.471611459128348 4.473832977481083 4.474573953762201 +4.654363526113236 4.653648055800439 4.651503006800156 4.647932462335420 4.642943219140177 4.636544774522664 4.628749308285817 4.619571659542683 4.609029298469249 4.597142293049050 4.583933270872512 4.569427376064043 4.553652221418824 4.536637835840461 4.518416607178962 4.499023220578566 4.478494592452984 4.456869800212559 4.438137823478126 4.468147269792810 4.494691964194432 4.517721377348434 4.537191671457929 4.553065783711552 4.565313496834376 4.573911496608297 4.578843416252132 4.580099867576513 4.577678458854930 4.571583799376455 4.561827490671896 4.548428104429293 4.531411147142013 4.510809011555427 4.486660915005479 4.459012824766527 4.427917370549739 4.459012824766527 4.486660915005478 4.510809011555417 4.531411147142011 4.548428104429297 4.561827490671897 4.571583799376453 4.577678458854924 4.580099867576513 4.578843416252127 4.573911496608298 4.565313496834379 4.553065783711550 4.537191671457927 4.517721377348432 4.494691964194431 4.468147269792816 4.438137823478126 4.456869800212558 4.478494592452996 4.499023220578566 4.518416607178965 4.536637835840462 4.553652221418826 4.569427376063965 4.583933270872519 4.597142293049050 4.609029298469254 4.619571659542668 4.628749308285818 4.636544774522663 4.642943219140177 4.647932462335420 4.651503006800212 4.653648055800424 4.654363526113236 4.653648055800367 4.651503006800228 4.647932462335421 4.642943219140179 4.636544774522667 4.628749308285818 4.619571659542668 4.609029298469249 4.597142293049052 4.583933270872506 4.569427376064031 4.553652221418825 4.536637835840462 4.518416607178963 4.499023220578566 4.478494592452984 4.456869800212567 4.438137823478058 4.468147269792815 4.494691964194431 4.517721377348433 4.537191671457989 4.553065783711556 4.565313496834379 4.573911496608297 4.578843416252126 4.580099867576511 4.577678458854931 4.571583799376455 4.561827490671897 4.548428104429298 4.531411147142011 4.510809011555416 4.486660915005482 4.459012824766543 4.427917370549739 4.459012824766543 4.486660915005482 4.510809011555416 4.531411147142011 4.548428104429294 4.561827490671897 4.571583799376456 4.577678458854932 4.580099867576511 4.578843416252126 4.573911496608297 4.565313496834379 4.553065783711556 4.537191671457935 4.517721377348431 4.494691964194431 4.468147269792815 4.438137823478059 4.456869800212567 4.478494592452933 4.499023220578566 4.518416607178963 4.536637835840461 4.553652221418825 4.569427376064031 4.583933270872445 4.597142293049052 4.609029298469249 4.619571659542668 4.628749308285818 4.636544774522667 4.642943219140179 4.647932462335421 4.651503006800228 4.653648055800367 4.654363526113236 +4.825293252955819 4.824604650549564 4.822540154124563 4.819103693567158 4.814301810375201 4.808143645206463 4.800640920478326 4.791807918053522 4.781661452054500 4.770220836855684 4.757507850318619 4.743546692335448 4.728363938764243 4.711988490839042 4.694451520155761 4.675786409334985 4.656028688475964 4.635215967523203 4.613387864673963 4.590585930962782 4.566853571166331 4.582640371274181 4.601379501512564 4.616657496558031 4.628445273878621 4.636720394770308 4.641467107070177 4.642676375141438 4.640345897073725 4.634480109064429 4.625090176974425 4.612193975073142 4.595816052013847 4.575987584103972 4.552746315959222 4.526136488654343 4.496208755508065 4.526136488654333 4.552746315959230 4.575987584103969 4.595816052013847 4.612193975073142 4.625090176974422 4.634480109064429 4.640345897073718 4.642676375141437 4.641467107070176 4.636720394770313 4.628445273878619 4.616657496558031 4.601379501512577 4.582640371274180 4.566853571166331 4.590585930962789 4.613387864673996 4.635215967523197 4.656028688475964 4.675786409334985 4.694451520155764 4.711988490839046 4.728363938764182 4.743546692335448 4.757507850318619 4.770220836855684 4.781661452054487 4.791807918053508 4.800640920478259 4.808143645206462 4.814301810375198 4.819103693567156 4.822540154124576 4.824604650549564 4.825293252955819 4.824604650549551 4.822540154124576 4.819103693567156 4.814301810375266 4.808143645206463 4.800640920478327 4.791807918053522 4.781661452054500 4.770220836855729 4.757507850318621 4.743546692335451 4.728363938764245 4.711988490839040 4.694451520155764 4.675786409334984 4.656028688475966 4.635215967523200 4.613387864673963 4.590585930962784 4.566853571166330 4.582640371274179 4.601379501512574 4.616657496558032 4.628445273878621 4.636720394770309 4.641467107070176 4.642676375141436 4.640345897073725 4.634480109064429 4.625090176974426 4.612193975073142 4.595816052013853 4.575987584103967 4.552746315959222 4.526136488654352 4.496208755508065 4.526136488654352 4.552746315959222 4.575987584103967 4.595816052013853 4.612193975073142 4.625090176974426 4.634480109064429 4.640345897073725 4.642676375141436 4.641467107070176 4.636720394770309 4.628445273878621 4.616657496558032 4.601379501512565 4.582640371274179 4.566853571166330 4.590585930962784 4.613387864673963 4.635215967523200 4.656028688475964 4.675786409334984 4.694451520155764 4.711988490839040 4.728363938764245 4.743546692335451 4.757507850318551 4.770220836855724 4.781661452054500 4.791807918053522 4.800640920478327 4.808143645206463 4.814301810375266 4.819103693567156 4.822540154124576 4.824604650549551 4.825293252955819 +4.987037759839560 4.986377336133650 4.984397322170163 4.981101487018238 4.976496104487238 4.970589941184676 4.963394239827974 4.954922697843885 4.945191441293740 4.934218994177817 4.922026243172473 4.908636397872597 4.894074946609504 4.878369607933349 4.861550277848925 4.843648972906943 4.824699769258980 4.804738737791100 4.783803875461138 4.761935032969456 4.739173838900833 4.715563620481519 4.691149321104430 4.671461139466146 4.682766542280547 4.690703032127030 4.695255501446251 4.696415284353945 4.694180173137586 4.688554422458304 4.679548741252303 4.667180272345600 4.651472559821787 4.632455504204334 4.610165305539525 4.584644394487381 4.555941351552625 4.584644394487369 4.610165305539525 4.632455504204332 4.651472559821769 4.667180272345615 4.679548741252305 4.688554422458291 4.694180173137586 4.696415284353944 4.695255501446251 4.690703032127036 4.682766542280522 4.671461139466145 4.691149321104430 4.715563620481518 4.739173838900828 4.761935032969455 4.783803875461140 4.804738737791097 4.824699769258983 4.843648972906956 4.861550277848922 4.878369607933352 4.894074946609498 4.908636397872594 4.922026243172473 4.934218994177808 4.945191441293741 4.954922697843886 4.963394239827966 4.970589941184675 4.976496104487197 4.981101487018238 4.984397322170229 4.986377336133651 4.987037759839560 4.986377336133650 4.984397322170163 4.981101487018304 4.976496104487168 4.970589941184676 4.963394239827963 4.954922697843886 4.945191441293741 4.934218994177807 4.922026243172485 4.908636397872544 4.894074946609491 4.878369607933349 4.861550277848925 4.843648972906954 4.824699769258981 4.804738737791099 4.783803875461141 4.761935032969457 4.739173838900827 4.715563620481518 4.691149321104440 4.671461139466147 4.682766542280552 4.690703032127035 4.695255501446248 4.696415284353945 4.694180173137587 4.688554422458304 4.679548741252304 4.667180272345606 4.651472559821768 4.632455504204331 4.610165305539525 4.584644394487381 4.555941351552625 4.584644394487382 4.610165305539525 4.632455504204331 4.651472559821768 4.667180272345600 4.679548741252304 4.688554422458304 4.694180173137587 4.696415284353945 4.695255501446247 4.690703032127035 4.682766542280552 4.671461139466147 4.691149321104431 4.715563620481518 4.739173838900827 4.761935032969458 4.783803875461141 4.804738737791099 4.824699769258980 4.843648972906954 4.861550277848925 4.878369607933350 4.894074946609492 4.908636397872544 4.922026243172476 4.934218994177807 4.945191441293741 4.954922697843887 4.963394239827963 4.970589941184676 4.976496104487168 4.981101487018304 4.984397322170163 4.986377336133650 4.987037759839560 +5.139289156902747 5.138658169051361 5.136766406618496 5.133617470681447 5.129217355418827 5.123574436699871 5.116699456141333 5.108605500659376 5.099307977558295 5.088824585201837 5.077175279322990 5.064382235037712 5.050469804632912 5.035464471210498 5.019394798275735 5.002291375364059 4.984186759813312 4.965115414788314 4.945113643677942 4.924219520990356 4.902472819875831 4.879914936415859 4.856588810823871 4.832538845705315 4.807810821536263 4.782451809515615 4.756510081964117 4.741214300145830 4.739078810441995 4.733703806028904 4.725099518532948 4.713282326704347 4.698274725239528 4.680105281960716 4.658808583435931 4.634425169141203 4.607001454291586 4.634425169141203 4.658808583435931 4.680105281960716 4.698274725239528 4.713282326704345 4.725099518532912 4.733703806028904 4.739078810441994 4.741214300145829 4.756510081964118 4.782451809515613 4.807810821536260 4.832538845705315 4.856588810823871 4.879914936415859 4.902472819875828 4.924219520990361 4.945113643677941 4.965115414788315 4.984186759813311 5.002291375364059 5.019394798275733 5.035464471210491 5.050469804632914 5.064382235037712 5.077175279322989 5.088824585201837 5.099307977558297 5.108605500659484 5.116699456141335 5.123574436699873 5.129217355418827 5.133617470681449 5.136766406618497 5.138658169051444 5.139289156902747 5.138658169051361 5.136766406618495 5.133617470681449 5.129217355418827 5.123574436699871 5.116699456141333 5.108605500659377 5.099307977558296 5.088824585201838 5.077175279322930 5.064382235037712 5.050469804632912 5.035464471210486 5.019394798275735 5.002291375364052 4.984186759813312 4.965115414788318 4.945113643677940 4.924219520990357 4.902472819875783 4.879914936415859 4.856588810823900 4.832538845705312 4.807810821536263 4.782451809515613 4.756510081964111 4.741214300145829 4.739078810441995 4.733703806028904 4.725099518532929 4.713282326704345 4.698274725239527 4.680105281960712 4.658808583435932 4.634425169141210 4.607001454291586 4.634425169141209 4.658808583435931 4.680105281960712 4.698274725239514 4.713282326704348 4.725099518532932 4.733703806028904 4.739078810441995 4.741214300145829 4.756510081964111 4.782451809515613 4.807810821536263 4.832538845705312 4.856588810823883 4.879914936415859 4.902472819875783 4.924219520990357 4.945113643677941 4.965115414788317 4.984186759813310 5.002291375364052 5.019394798275734 5.035464471210486 5.050469804632912 5.064382235037712 5.077175279322989 5.088824585201838 5.099307977558296 5.108605500659377 5.116699456141333 5.123574436699871 5.129217355418827 5.133617470681449 5.136766406618495 5.138658169051361 5.139289156902747 +5.281757624957728 5.281157274082000 5.279357364257157 5.276361321713528 5.272174849588592 5.266805917069854 5.260264744225741 5.252563782550360 5.243717691261856 5.233743309397931 5.222659623761357 5.210487732777626 5.197250806333236 5.182974041669566 5.167684615420201 5.151411631876364 5.134186067587711 5.116040712394579 5.097010107011905 5.077130477278633 5.056439665199933 5.034977056912758 5.012783507711493 4.989901264278638 4.966373884264889 4.942246153375716 4.917564000118014 4.892374408373105 4.866725327960959 4.840665583363471 4.814244780786127 4.787513213728122 4.760521767246471 4.733321821093822 4.705965151913468 4.678503834680258 4.650024249293657 4.678503834680255 4.705965151913468 4.733321821093819 4.760521767246470 4.787513213728127 4.814244780786127 4.840665583363466 4.866725327960959 4.892374408373103 4.917564000118013 4.942246153375724 4.966373884264831 4.989901264278638 5.012783507711491 5.034977056912758 5.056439665199928 5.077130477278622 5.097010107011905 5.116040712394578 5.134186067587711 5.151411631876364 5.167684615420203 5.182974041669694 5.197250806333176 5.210487732777625 5.222659623761357 5.233743309397931 5.243717691261857 5.252563782550300 5.260264744225742 5.266805917069934 5.272174849588602 5.276361321713520 5.279357364257157 5.281157274081999 5.281757624957728 5.281157274081989 5.279357364257157 5.276361321713520 5.272174849588601 5.266805917069854 5.260264744225743 5.252563782550361 5.243717691261857 5.233743309397929 5.222659623761355 5.210487732777633 5.197250806333234 5.182974041669694 5.167684615420202 5.151411631876364 5.134186067587714 5.116040712394571 5.097010107011906 5.077130477278620 5.056439665199926 5.034977056912759 5.012783507711490 4.989901264278640 4.966373884264831 4.942246153375724 4.917564000118006 4.892374408373101 4.866725327960961 4.840665583363471 4.814244780786127 4.787513213728126 4.760521767246470 4.733321821093811 4.705965151913469 4.678503834680258 4.649684594162685 4.678503834680258 4.705965151913469 4.733321821093811 4.760521767246470 4.787513213728126 4.814244780786127 4.840665583363471 4.866725327960961 4.892374408373101 4.917564000118006 4.942246153375724 4.966373884264831 4.989901264278639 5.012783507711492 5.034977056912759 5.056439665199926 5.077130477278620 5.097010107011906 5.116040712394570 5.134186067587711 5.151411631876364 5.167684615420202 5.182974041669694 5.197250806333234 5.210487732777632 5.222659623761357 5.233743309397929 5.243717691261857 5.252563782550361 5.260264744225743 5.266805917069854 5.272174849588601 5.276361321713520 5.279357364257157 5.281157274081989 5.281757624957728 +5.414171967178005 5.413603396080145 5.411898765093689 5.409061319081030 5.405096459281450 5.400011733031102 5.393816819395603 5.386523510744824 5.378145690306643 5.368699305738091 5.358202338769415 5.346674770973510 5.334138545731114 5.320617526459536 5.306137451187236 5.290725883560436 5.274412160374382 5.257227335728122 5.239204121911960 5.220376827138262 5.200781290232192 5.180454812412155 5.159436086284157 5.137765122187677 5.115483172034773 5.092632650784150 5.069257055701341 5.045400883560590 5.021109545940874 4.996429282784839 4.971407074375231 4.946090551908596 4.920527906824130 4.894767799069424 4.868859264473850 4.842851621405856 4.816794376891831 4.842851621405856 4.868859264473849 4.894767799069423 4.920527906824130 4.946090551908598 4.971407074375231 4.996429282784829 5.021109545940906 5.045400883560586 5.069257055701343 5.092632650784150 5.115483172034772 5.137765122187676 5.159436086284157 5.180454812412155 5.200781290232192 5.220376827138262 5.239204121911960 5.257227335728121 5.274412160374380 5.290725883560502 5.306137451187234 5.320617526459537 5.334138545731115 5.346674770973510 5.358202338769416 5.368699305738091 5.378145690306643 5.386523510744812 5.393816819395605 5.400011733031093 5.405096459281457 5.409061319081025 5.411898765093677 5.413603396080145 5.414171967178005 5.413603396080134 5.411898765093689 5.409061319081027 5.405096459281456 5.400011733031102 5.393816819395604 5.386523510744816 5.378145690306643 5.368699305738091 5.358202338769416 5.346674770973510 5.334138545731115 5.320617526459537 5.306137451187236 5.290725883560500 5.274412160374383 5.257227335728111 5.239204121911960 5.220376827138262 5.200781290232191 5.180454812412153 5.159436086284156 5.137765122187664 5.115483172034771 5.092632650784151 5.069257055701381 5.045400883560585 5.021109545940875 4.996429282784839 4.971407074375231 4.946090551908598 4.920527906824114 4.894767799069422 4.868859264473850 4.842851621405856 4.816794376891831 4.842851621405856 4.868859264473850 4.894767799069423 4.920527906824114 4.946090551908596 4.971407074375231 4.996429282784839 5.021109545940875 5.045400883560586 5.069257055701373 5.092632650784151 5.115483172034773 5.137765122187664 5.159436086284158 5.180454812412154 5.200781290232191 5.220376827138262 5.239204121911960 5.257227335728111 5.274412160374379 5.290725883560500 5.306137451187236 5.320617526459537 5.334138545731115 5.346674770973510 5.358202338769417 5.368699305738091 5.378145690306643 5.386523510744816 5.393816819395604 5.400011733031102 5.405096459281456 5.409061319081027 5.411898765093689 5.413603396080134 5.414171967178005 +5.536280125337334 5.535744416324593 5.534138309038790 5.531464860796486 5.527729160658410 5.522938319741896 5.517101457685150 5.510229685286760 5.502336083356052 5.493435677812858 5.483545411085255 5.472684109857772 5.460872449234810 5.448132913383545 5.434489752734713 5.419968937819942 5.404598109835612 5.388406528026645 5.371425013989234 5.353685893000472 5.335222932485236 5.316071277738502 5.296267385023318 5.275848952175206 5.254854846841658 5.233325032495356 5.211300492361447 5.188823151404099 5.165935796519133 5.142681995087650 5.119106012042033 5.095252725606199 5.071167541866516 5.046896308339194 5.022485226696513 4.997980764820214 4.973429568346194 4.997980764820214 5.022485226696513 5.046896308339194 5.071167541866516 5.095252725606207 5.119106012042036 5.142681995087642 5.165935796519133 5.188823151404099 5.211300492361446 5.233325032495356 5.254854846841660 5.275848952175205 5.296267385023329 5.316071277738503 5.335222932485236 5.353685893000474 5.371425013989232 5.388406528026644 5.404598109835611 5.419968937819942 5.434489752734714 5.448132913383542 5.460872449234812 5.472684109857772 5.483545411085254 5.493435677812867 5.502336083356046 5.510229685286816 5.517101457685151 5.522938319741895 5.527729160658292 5.531464860796486 5.534138309038800 5.535744416324592 5.536280125337334 5.535744416324591 5.534138309038791 5.531464860796486 5.527729160658293 5.522938319741894 5.517101457685150 5.510229685286816 5.502336083356058 5.493435677812870 5.483545411085257 5.472684109857775 5.460872449234810 5.448132913383545 5.434489752734713 5.419968937819934 5.404598109835613 5.388406528026644 5.371425013989235 5.353685893000474 5.335222932485235 5.316071277738502 5.296267385023329 5.275848952175206 5.254854846841659 5.233325032495356 5.211300492361445 5.188823151404098 5.165935796519137 5.142681995087651 5.119106012042036 5.095252725606199 5.071167541866515 5.046896308339194 5.022485226696516 4.997980764820215 4.973429568346194 4.997980764820215 5.022485226696516 5.046896308339194 5.071167541866515 5.095252725606199 5.119106012042036 5.142681995087651 5.165935796519137 5.188823151404098 5.211300492361445 5.233325032495356 5.254854846841658 5.275848952175206 5.296267385023318 5.316071277738502 5.335222932485236 5.353685893000474 5.371425013989235 5.388406528026644 5.404598109835614 5.419968937819934 5.434489752734713 5.448132913383545 5.460872449234810 5.472684109857775 5.483545411085256 5.493435677812870 5.502336083356058 5.510229685286816 5.517101457685150 5.522938319741894 5.527729160658293 5.531464860796486 5.534138309038792 5.535744416324591 5.536280125337334 +5.647849659616759 5.647347832441556 5.645843306172820 5.643338944761692 5.639839515402522 5.635351679457852 5.629883979778581 5.623446824441785 5.616052466938542 5.607714982848703 5.598450243046777 5.588275883491954 5.577211271655648 5.565277469655466 5.552497194161757 5.538894773155382 5.524496099617749 5.509328582242389 5.493421093260582 5.476803913481945 5.459508674652285 5.441568299241892 5.423016937775127 5.403889903822838 5.384223606781279 5.364055482564650 5.343423922343607 5.322368199465723 5.300928394696339 5.279145319922047 5.257060440463825 5.234715796145377 5.212153921266729 5.189417763639107 5.166550602830942 5.143595967782339 5.120597553945907 5.143595967782339 5.166550602830942 5.189417763639105 5.212153921266729 5.234715796145379 5.257060440463828 5.279145319922046 5.300928394696339 5.322368199465724 5.343423922343607 5.364055482564651 5.384223606781283 5.403889903822837 5.423016937775127 5.441568299241890 5.459508674652285 5.476803913481943 5.493421093260581 5.509328582242388 5.524496099617751 5.538894773155382 5.552497194161805 5.565277469655467 5.577211271655648 5.588275883491953 5.598450243046780 5.607714982848703 5.616052466938531 5.623446824441774 5.629883979778581 5.635351679457854 5.639839515402522 5.643338944761694 5.645843306172820 5.647347832441556 5.647849659616759 5.647347832441556 5.645843306172820 5.643338944761694 5.639839515402522 5.635351679457852 5.629883979778571 5.623446824441776 5.616052466938542 5.607714982848705 5.598450243046777 5.588275883491915 5.577211271655600 5.565277469655459 5.552497194161769 5.538894773155381 5.524496099617793 5.509328582242388 5.493421093260583 5.476803913481943 5.459508674652284 5.441568299241888 5.423016937775129 5.403889903822838 5.384223606781283 5.364055482564652 5.343423922343606 5.322368199465722 5.300928394696342 5.279145319922043 5.257060440463825 5.234715796145377 5.212153921266729 5.189417763639104 5.166550602830942 5.143595967782341 5.120597553945907 5.143595967782341 5.166550602830942 5.189417763639104 5.212153921266729 5.234715796145377 5.257060440463825 5.279145319922043 5.300928394696337 5.322368199465722 5.343423922343606 5.364055482564652 5.384223606781283 5.403889903822838 5.423016937775127 5.441568299241888 5.459508674652284 5.476803913481943 5.493421093260583 5.509328582242388 5.524496099617763 5.538894773155381 5.552497194161771 5.565277469655459 5.577211271655598 5.588275883491917 5.598450243046776 5.607714982848705 5.616052466938542 5.623446824441777 5.629883979778571 5.635351679457852 5.639839515402522 5.643338944761694 5.645843306172820 5.647347832441556 5.647849659616759 +5.748668191066005 5.748201200985151 5.746801119684728 5.744470612299117 5.741214115081459 5.737037826959392 5.731949697734731 5.725959412950635 5.719078375454637 5.711319683692706 5.702698106775556 5.693230056364904 5.682933555432839 5.671828203954163 5.659935141596437 5.647277007479896 5.633877897082348 5.619763316371889 5.604960133255238 5.589496526432622 5.573401931758722 5.556706986209200 5.539443469561718 5.521644243901308 5.503343191065992 5.484575148149682 5.465375841189155 5.445781817155958 5.425830374388832 5.405559491592658 5.385007755545597 5.364214287644788 5.343218669438425 5.322060867278676 5.300781156245097 5.279420043476802 5.258018191066012 5.279420043476802 5.300781156245096 5.322060867278674 5.343218669438434 5.364214287644790 5.385007755545598 5.405559491592658 5.425830374388834 5.445781817155958 5.465375841189156 5.484575148149681 5.503343191065993 5.521644243901308 5.539443469561718 5.556706986209200 5.573401931758721 5.589496526432622 5.604960133255237 5.619763316371888 5.633877897082347 5.647277007479896 5.659935141596437 5.671828203954165 5.682933555432840 5.693230056364903 5.702698106775556 5.711319683692706 5.719078375454637 5.725959412950685 5.731949697734730 5.737037826959392 5.741214115081461 5.744470612299116 5.746801119684719 5.748201200985151 5.748668191066005 5.748201200985151 5.746801119684719 5.744470612299116 5.741214115081453 5.737037826959393 5.731949697734731 5.725959412950646 5.719078375454637 5.711319683692706 5.702698106775556 5.693230056364891 5.682933555432840 5.671828203954163 5.659935141596437 5.647277007479897 5.633877897082336 5.619763316371889 5.604960133255238 5.589496526432622 5.573401931758721 5.556706986209197 5.539443469561729 5.521644243901313 5.503343191065992 5.484575148149681 5.465375841189156 5.445781817155957 5.425830374388831 5.405559491592659 5.385007755545597 5.364214287644791 5.343218669438435 5.322060867278674 5.300781156245097 5.279420043476803 5.258018191066012 5.279420043476803 5.300781156245097 5.322060867278674 5.343218669438435 5.364214287644791 5.385007755545597 5.405559491592659 5.425830374388831 5.445781817155958 5.465375841189149 5.484575148149681 5.503343191065992 5.521644243901308 5.539443469561720 5.556706986209197 5.573401931758720 5.589496526432622 5.604960133255238 5.619763316371889 5.633877897082345 5.647277007479897 5.659935141596437 5.671828203954163 5.682933555432840 5.693230056364891 5.702698106775565 5.711319683692706 5.719078375454637 5.725959412950650 5.731949697734731 5.737037826959393 5.741214115081454 5.744470612299116 5.746801119684719 5.748201200985151 5.748668191066005 +5.838543805880843 5.838112541836207 5.836819570638428 5.834667353531631 5.831659987383159 5.827803196885505 5.823104323658487 5.817572312274712 5.811217693231796 5.804052562908609 5.796090560537960 5.787346842243529 5.777838052190533 5.767582290900928 5.756599080799361 5.744909329050534 5.732535287761098 5.719500511622289 5.705829813071137 5.691549215059100 5.676685901516570 5.661268165605664 5.645325355862514 5.628887820331990 5.611986848796997 5.594654613217450 5.576924106489326 5.558829079639260 5.540403977579590 5.521683873539393 5.502704402300664 5.483501692365641 5.464112297184046 5.444573125571419 5.424921371451815 5.405194443055746 5.385429891713158 5.405194443055745 5.424921371451815 5.444573125571420 5.464112297184046 5.483501692365643 5.502704402300664 5.521683873539380 5.540403977579590 5.558829079639261 5.576924106489325 5.594654613217454 5.611986848796997 5.628887820331989 5.645325355862514 5.661268165605662 5.676685901516568 5.691549215059100 5.705829813071135 5.719500511622289 5.732535287761098 5.744909329050534 5.756599080799358 5.767582290900839 5.777838052190537 5.787346842243537 5.796090560537961 5.804052562908605 5.811217693231796 5.817572312274713 5.823104323658481 5.827803196885504 5.831659987383158 5.834667353531631 5.836819570638429 5.838112541836199 5.838543805880843 5.838112541836208 5.836819570638428 5.834667353531629 5.831659987383160 5.827803196885506 5.823104323658487 5.817572312274713 5.811217693231796 5.804052562908605 5.796090560537959 5.787346842243525 5.777838052190534 5.767582290900930 5.756599080799361 5.744909329050532 5.732535287761054 5.719500511622291 5.705829813071139 5.691549215059100 5.676685901516568 5.661268165605660 5.645325355862513 5.628887820331991 5.611986848796997 5.594654613217453 5.576924106489324 5.558829079639261 5.540403977579590 5.521683873539406 5.502704402300664 5.483501692365641 5.464112297184046 5.444573125571419 5.424921371451815 5.405194443055746 5.385429891713158 5.405194443055746 5.424921371451815 5.444573125571419 5.464112297184046 5.483501692365641 5.502704402300664 5.521683873539400 5.540403977579590 5.558829079639261 5.576924106489324 5.594654613217453 5.611986848796997 5.628887820331991 5.645325355862514 5.661268165605660 5.676685901516568 5.691549215059100 5.705829813071139 5.719500511622291 5.732535287761097 5.744909329050532 5.756599080799361 5.767582290900930 5.777838052190534 5.787346842243525 5.796090560537961 5.804052562908605 5.811217693231796 5.817572312274713 5.823104323658487 5.827803196885506 5.831659987383160 5.834667353531629 5.836819570638428 5.838112541836208 5.838543805880843 +5.917305420719912 5.916910703647282 5.915727303796321 5.913757473835852 5.911004963448788 5.907475012195561 5.903174339538561 5.898111132053092 5.892295027841894 5.885737098190404 5.878449826490036 5.870447084476817 5.861744105824823 5.852357457148895 5.842305006468127 5.831605889193731 5.820280471703678 5.808350312573585 5.795838121539567 5.782767716268378 5.769163977019225 5.755052799283324 5.740461044489052 5.725416488871391 5.709947770596664 5.694084335249602 5.677856379781054 5.661294795026127 5.644431106903317 5.627297416400779 5.609926338472889 5.592350939953093 5.574604676612123 5.556721329470133 5.538734940495298 5.520679747801366 5.502590120473599 5.520679747801366 5.538734940495299 5.556721329470133 5.574604676612123 5.592350939953093 5.609926338472889 5.627297416400779 5.644431106903317 5.661294795026127 5.677856379781054 5.694084335249606 5.709947770596665 5.725416488871391 5.740461044489052 5.755052799283324 5.769163977019224 5.782767716268383 5.795838121539565 5.808350312573585 5.820280471703675 5.831605889193729 5.842305006468125 5.852357457148897 5.861744105824820 5.870447084476816 5.878449826490038 5.885737098190404 5.892295027841891 5.898111132053092 5.903174339538561 5.907475012195561 5.911004963448875 5.913757473835852 5.915727303796324 5.916910703647289 5.917305420719912 5.916910703647283 5.915727303796323 5.913757473835852 5.911004963448903 5.907475012195561 5.903174339538561 5.898111132053092 5.892295027841896 5.885737098190416 5.878449826490035 5.870447084476817 5.861744105824827 5.852357457148897 5.842305006468128 5.831605889193729 5.820280471703681 5.808350312573585 5.795838121539571 5.782767716268378 5.769163977019218 5.755052799283324 5.740461044489050 5.725416488871395 5.709947770596665 5.694084335249602 5.677856379781054 5.661294795026125 5.644431106903317 5.627297416400787 5.609926338472889 5.592350939953093 5.574604676612123 5.556721329470133 5.538734940495296 5.520679747801366 5.502590120473599 5.520679747801366 5.538734940495296 5.556721329470133 5.574604676612123 5.592350939953093 5.609926338472889 5.627297416400787 5.644431106903317 5.661294795026125 5.677856379781054 5.694084335249602 5.709947770596665 5.725416488871395 5.740461044489053 5.755052799283324 5.769163977019218 5.782767716268378 5.795838121539571 5.808350312573585 5.820280471703676 5.831605889193729 5.842305006468128 5.852357457148897 5.861744105824827 5.870447084476817 5.878449826490037 5.885737098190416 5.892295027841896 5.898111132053092 5.903174339538561 5.907475012195561 5.911004963448903 5.913757473835852 5.915727303796323 5.916910703647283 5.917305420719912 +5.984803108373047 5.984445689638992 5.983374113803596 5.981590420672597 5.979098005607153 5.975901613060963 5.972007327548960 5.967422562064903 5.962156043970469 5.956217798382241 5.949619129088120 5.942372597030260 5.934491996394195 5.925992328351135 5.916889772502396 5.907201656080312 5.896946420965201 5.886143588579906 5.874813722729795 5.862978390458657 5.850660120993873 5.837882362861738 5.824669439251174 5.811046501712855 5.797039482283015 5.782675044119076 5.767980530745681 5.752983914003888 5.737713740806416 5.722199078795551 5.706469461012284 5.690554829678114 5.674485479198482 5.658291998495078 5.642005212778739 5.625656124872202 5.609275856193103 5.625656124872182 5.642005212778739 5.658291998495079 5.674485479198482 5.690554829678113 5.706469461012287 5.722199078795549 5.737713740806415 5.752983914003885 5.767980530745681 5.782675044119076 5.797039482283020 5.811046501712856 5.824669439251174 5.837882362861737 5.850660120993873 5.862978390458657 5.874813722729795 5.886143588579907 5.896946420965203 5.907201656080312 5.916889772502467 5.925992328351207 5.934491996394198 5.942372597030261 5.949619129088120 5.956217798382241 5.962156043970468 5.967422562064899 5.972007327548948 5.975901613060958 5.979098005607152 5.981590420672597 5.983374113803595 5.984445689638866 5.984803108373047 5.984445689638870 5.983374113803626 5.981590420672597 5.979098005607153 5.975901613061075 5.972007327548951 5.967422562064909 5.962156043970468 5.956217798382241 5.949619129088120 5.942372597030260 5.934491996394196 5.925992328351135 5.916889772502555 5.907201656080312 5.896946420965201 5.886143588579906 5.874813722729795 5.862978390458657 5.850660120993873 5.837882362861739 5.824669439251177 5.811046501712856 5.797039482283020 5.782675044119076 5.767980530745678 5.752983914003885 5.737713740806416 5.722199078795551 5.706469461012287 5.690554829678113 5.674485479198481 5.658291998495079 5.642005212778739 5.625656124872202 5.609275856193103 5.625656124872202 5.642005212778739 5.658291998495079 5.674485479198481 5.690554829678114 5.706469461012287 5.722199078795551 5.737713740806416 5.752983914003885 5.767980530745678 5.782675044119076 5.797039482283020 5.811046501712856 5.824669439251174 5.837882362861738 5.850660120993873 5.862978390458657 5.874813722729795 5.886143588579906 5.896946420965203 5.907201656080312 5.916889772502533 5.925992328351135 5.934491996394196 5.942372597030260 5.949619129088132 5.956217798382241 5.962156043970468 5.967422562064909 5.972007327548953 5.975901613061080 5.979098005607153 5.981590420672597 5.983374113803615 5.984445689638870 5.984803108373047 +6.040908383155304 6.040588943126526 6.039631231112457 6.038037070172279 6.035809494881981 6.032952745557977 6.029472260184577 6.025374664063700 6.020667757202526 6.015360499465620 6.009462993519900 6.002986465602890 5.995943244153912 5.988346736344988 5.980211402560633 5.971552728871146 5.962387197553936 5.952732255718804 5.942606282096299 5.932028552052687 5.921019200898310 5.909599185559152 5.897790244682889 5.885614857260046 5.873096199832605 5.860258102376306 5.847125002939255 5.833721901123138 5.820074310493552 5.806208210015043 5.792149994598184 5.777926424854841 5.763564576158495 5.749091787104223 5.734535607469094 5.719923745767836 5.705284016509793 5.719923745767836 5.734535607469081 5.749091787104223 5.763564576158495 5.777926424854854 5.792149994598184 5.806208210015043 5.820074310493552 5.833721901123137 5.847125002939255 5.860258102376308 5.873096199832605 5.885614857260040 5.897790244682889 5.909599185559152 5.921019200898310 5.932028552052685 5.942606282096300 5.952732255718799 5.962387197553936 5.971552728871141 5.980211402560636 5.988346736344988 5.995943244153911 6.002986465602890 6.009462993519901 6.015360499465620 6.020667757202524 6.025374664063701 6.029472260184577 6.032952745557977 6.035809494881981 6.038037070172277 6.039631231112457 6.040588943126528 6.040908383155304 6.040588943126526 6.039631231112457 6.038037070172274 6.035809494881981 6.032952745557977 6.029472260184577 6.025374664063701 6.020667757202526 6.015360499465621 6.009462993519901 6.002986465602898 5.995943244153912 5.988346736344988 5.980211402560636 5.971552728871139 5.962387197553936 5.952732255718804 5.942606282096301 5.932028552052685 5.921019200898310 5.909599185559152 5.897790244682889 5.885614857260049 5.873096199832605 5.860258102376307 5.847125002939254 5.833721901123137 5.820074310493552 5.806208210015044 5.792149994598184 5.777926424854856 5.763564576158495 5.749091787104206 5.734535607469094 5.719923745767837 5.705284016509793 5.719923745767837 5.734535607469094 5.749091787104206 5.763564576158495 5.777926424854856 5.792149994598184 5.806208210015044 5.820074310493552 5.833721901123137 5.847125002939254 5.860258102376307 5.873096199832605 5.885614857260046 5.897790244682890 5.909599185559152 5.921019200898310 5.932028552052685 5.942606282096301 5.952732255718804 5.962387197553932 5.971552728871139 5.980211402560636 5.988346736344988 5.995943244153908 6.002986465602899 6.009462993519901 6.015360499465621 6.020667757202526 6.025374664063701 6.029472260184577 6.032952745557977 6.035809494881981 6.038037070172274 6.039631231112457 6.040588943126526 6.040908383155304 +6.085514445487583 6.085233592236361 6.084391567102733 6.082989972929429 6.081031477730604 6.078519809613200 6.075459749680095 6.071857122929570 6.067718787166269 6.063052619947493 6.057867503587800 6.052173308250987 6.045980873161066 6.039301985970851 6.032149360321052 6.024536611641704 6.016478231232210 6.007989558677655 5.999086752649045 5.989786760143406 5.980107284225340 5.970066750327005 5.959684271175540 5.948979610409894 5.937973144960857 5.926685826260348 5.915139140361259 5.903355067036246 5.891356037939275 5.879164893903492 5.866804841465049 5.854299408685915 5.841672400368091 5.828947852739781 5.816149987700620 5.803303166714211 5.790431844433867 5.803303166714211 5.816149987700602 5.828947852739781 5.841672400368089 5.854299408685891 5.866804841465052 5.879164893903487 5.891356037939275 5.903355067036246 5.915139140361259 5.926685826260349 5.937973144960857 5.948979610409894 5.959684271175582 5.970066750327004 5.980107284225340 5.989786760143406 5.999086752649048 6.007989558677655 6.016478231232210 6.024536611641706 6.032149360321051 6.039301985970855 6.045980873161066 6.052173308250987 6.057867503587799 6.063052619947494 6.067718787166259 6.071857122929575 6.075459749680095 6.078519809613200 6.081031477730604 6.082989972929431 6.084391567102732 6.085233592236370 6.085514445487583 6.085233592236361 6.084391567102733 6.082989972929438 6.081031477730604 6.078519809613200 6.075459749680095 6.071857122929569 6.067718787166265 6.063052619947495 6.057867503587801 6.052173308250987 6.045980873161065 6.039301985970855 6.032149360321052 6.024536611641706 6.016478231232211 6.007989558677655 5.999086752649045 5.989786760143406 5.980107284225340 5.970066750327011 5.959684271175581 5.948979610409895 5.937973144960857 5.926685826260349 5.915139140361258 5.903355067036246 5.891356037939275 5.879164893903492 5.866804841465052 5.854299408685914 5.841672400368089 5.828947852739783 5.816149987700621 5.803303166714211 5.790431844433867 5.803303166714211 5.816149987700621 5.828947852739783 5.841672400368089 5.854299408685913 5.866804841465052 5.879164893903492 5.891356037939275 5.903355067036246 5.915139140361258 5.926685826260349 5.937973144960857 5.948979610409895 5.959684271175529 5.970066750327007 5.980107284225340 5.989786760143406 5.999086752649045 6.007989558677655 6.016478231232210 6.024536611641706 6.032149360321052 6.039301985970855 6.045980873161065 6.052173308250986 6.057867503587800 6.063052619947495 6.067718787166265 6.071857122929569 6.075459749680095 6.078519809613200 6.081031477730604 6.082989972929438 6.084391567102733 6.085233592236361 6.085514445487583 +6.118536385194703 6.118294653341092 6.117569917930622 6.116363558538159 6.114677871537673 6.112516065730160 6.109882256235601 6.106781456660179 6.103219569552115 6.099203375165925 6.094740518556041 6.089839495023505 6.084509633945214 6.078761081014656 6.072604778929186 6.066052446559525 6.059116556642888 6.051810312039939 6.044147620602412 6.036143068699105 6.027811893449478 6.019169953719065 6.010233699931429 6.001020142753535 5.991546820715096 5.981831766823142 5.971893474234697 5.961750861054766 5.951423234323831 5.940930253266656 5.930291891868766 5.919528400855781 5.908660269144791 5.897708184841936 5.886692995862366 5.875635670244381 5.864557256235532 5.875635670244381 5.886692995862366 5.897708184841936 5.908660269144791 5.919528400855781 5.930291891868766 5.940930253266656 5.951423234323831 5.961750861054766 5.971893474234697 5.981831766823142 5.991546820715096 6.001020142753534 6.010233699931467 6.019169953719072 6.027811893449478 6.036143068699106 6.044147620602412 6.051810312039934 6.059116556642887 6.066052446559524 6.072604778929186 6.078761081014660 6.084509633945215 6.089839495023506 6.094740518556040 6.099203375165924 6.103219569552115 6.106781456660177 6.109882256235600 6.112516065730159 6.114677871537666 6.116363558538159 6.117569917930623 6.118294653341093 6.118536385194703 6.118294653341092 6.117569917930623 6.116363558538159 6.114677871537666 6.112516065730087 6.109882256235601 6.106781456660177 6.103219569552115 6.099203375165929 6.094740518556040 6.089839495023505 6.084509633945214 6.078761081014657 6.072604778929186 6.066052446559524 6.059116556642891 6.051810312039939 6.044147620602412 6.036143068699105 6.027811893449478 6.019169953719072 6.010233699931468 6.001020142753535 5.991546820715096 5.981831766823142 5.971893474234697 5.961750861054768 5.951423234323831 5.940930253266661 5.930291891868766 5.919528400855781 5.908660269144791 5.897708184841936 5.886692995862366 5.875635670244381 5.864557256235532 5.875635670244381 5.886692995862366 5.897708184841936 5.908660269144791 5.919528400855781 5.930291891868766 5.940930253266661 5.951423234323831 5.961750861054768 5.971893474234697 5.981831766823142 5.991546820715096 6.001020142753535 6.010233699931416 6.019169953719072 6.027811893449478 6.036143068699105 6.044147620602412 6.051810312039939 6.059116556642887 6.066052446559524 6.072604778929186 6.078761081014657 6.084509633945214 6.089839495023505 6.094740518556026 6.099203375165929 6.103219569552115 6.106781456660177 6.109882256235601 6.112516065730077 6.114677871537666 6.116363558538159 6.117569917930623 6.118294653341092 6.118536385194703 +6.139911343137856 6.139709192832256 6.139103126719919 6.138094298482421 6.136684628481126 6.134876800103500 6.132674254653397 6.130081184801246 6.127102526602990 6.123743950103743 6.120011848544795 6.115913326193525 6.111456184820216 6.106648908846832 6.101500649196353 6.096021205873640 6.090221009310487 6.084111100510807 6.077703110033154 6.071009235851621 6.064042220136104 6.056815324997207 6.049342307240433 6.041637392179796 6.033715246559044 6.025590950632814 6.017279969459885 6.008798123465435 6.000161558325413 5.991386714232256 5.982490294600605 5.973489234270873 5.964400667272815 5.955241894210496 5.946030349328824 5.936783567327072 5.927519149980408 5.936783567327072 5.946030349328824 5.955241894210496 5.964400667272815 5.973489234270873 5.982490294600604 5.991386714232256 6.000161558325447 6.008798123465430 6.017279969459888 6.025590950632828 6.033715246559044 6.041637392179796 6.049342307240433 6.056815324997207 6.064042220136104 6.071009235851622 6.077703110033168 6.084111100510809 6.090221009310487 6.096021205873640 6.101500649196353 6.106648908846835 6.111456184820216 6.115913326193524 6.120011848544795 6.123743950103743 6.127102526602990 6.130081184801246 6.132674254653342 6.134876800103500 6.136684628481126 6.138094298482421 6.139103126719914 6.139709192832256 6.139911343137856 6.139709192832256 6.139103126719919 6.138094298482421 6.136684628481126 6.134876800103500 6.132674254653511 6.130081184801246 6.127102526602990 6.123743950103743 6.120011848544795 6.115913326193525 6.111456184820216 6.106648908846835 6.101500649196353 6.096021205873640 6.090221009310487 6.084111100510808 6.077703110033154 6.071009235851621 6.064042220136104 6.056815324997207 6.049342307240433 6.041637392179797 6.033715246559044 6.025590950632814 6.017279969459896 6.008798123465430 6.000161558325396 5.991386714232256 5.982490294600604 5.973489234270873 5.964400667272813 5.955241894210496 5.946030349328824 5.936783567327072 5.927519149980408 5.936783567327072 5.946030349328824 5.955241894210496 5.964400667272813 5.973489234270873 5.982490294600604 5.991386714232256 6.000161558325396 6.008798123465430 6.017279969459898 6.025590950632814 6.033715246559044 6.041637392179797 6.049342307240433 6.056815324997207 6.064042220136104 6.071009235851621 6.077703110033154 6.084111100510808 6.090221009310484 6.096021205873640 6.101500649196353 6.106648908846835 6.111456184820216 6.115913326193525 6.120011848544795 6.123743950103743 6.127102526602990 6.130081184801246 6.132674254653511 6.134876800103500 6.136684628481126 6.138094298482421 6.139103126719919 6.139709192832256 6.139911343137856 +6.149598630869625 6.149436446916451 6.148950203783649 6.148140827062478 6.147009857447712 6.145559447804234 6.143792359068853 6.141711954996119 6.139322195752664 6.136627630381546 6.133633388141067 6.130345168741475 6.126769231495071 6.122912383401637 6.118781966191213 6.114385842347082 6.109732380141287 6.104830437703507 6.099689346159813 6.094318891870086 6.088729297799228 6.082931204057346 6.076935647645421 6.070754041445724 6.064398152497247 6.057880079595685 6.051212230263302 6.044407297130198 6.037478233773696 6.030438230059251 6.023300687034087 6.016079191417578 6.008787489736334 6.001439462159613 5.994049096074953 5.986630459464564 5.979197674124936 5.986630459464564 5.994049096074953 6.001439462159613 6.008787489736334 6.016079191417583 6.023300687034087 6.030438230059256 6.037478233773696 6.044407297130198 6.051212230263302 6.057880079595685 6.064398152497247 6.070754041445724 6.076935647645421 6.082931204057347 6.088729297799228 6.094318891870086 6.099689346159813 6.104830437703507 6.109732380141287 6.114385842347082 6.118781966191213 6.122912383401637 6.126769231495071 6.130345168741475 6.133633388141058 6.136627630381546 6.139322195752624 6.141711954996119 6.143792359068853 6.145559447804234 6.147009857447712 6.148140827062478 6.148950203783608 6.149436446916451 6.149598630869625 6.149436446916451 6.148950203783614 6.148140827062478 6.147009857447712 6.145559447804234 6.143792359068853 6.141711954996119 6.139322195752662 6.136627630381546 6.133633388141067 6.130345168741475 6.126769231495071 6.122912383401637 6.118781966191213 6.114385842347082 6.109732380141287 6.104830437703510 6.099689346159811 6.094318891870086 6.088729297799228 6.082931204057330 6.076935647645421 6.070754041445724 6.064398152497247 6.057880079595685 6.051212230263302 6.044407297130198 6.037478233773696 6.030438230059233 6.023300687034087 6.016079191417584 6.008787489736334 6.001439462159613 5.994049096074953 5.986630459464564 5.979197674124936 5.986630459464564 5.994049096074953 6.001439462159613 6.008787489736334 6.016079191417584 6.023300687034087 6.030438230059235 6.037478233773696 6.044407297130198 6.051212230263302 6.057880079595685 6.064398152497247 6.070754041445724 6.076935647645421 6.082931204057330 6.088729297799228 6.094318891870086 6.099689346159811 6.104830437703510 6.109732380141287 6.114385842347082 6.118781966191213 6.122912383401637 6.126769231495071 6.130345168741475 6.133633388141056 6.136627630381546 6.139322195752662 6.141711954996119 6.143792359068853 6.145559447804234 6.147009857447712 6.148140827062478 6.148950203783617 6.149436446916451 6.149598630869625 +6.147579808086985 6.147457899213003 6.147092404650931 6.146484020140973 6.145633903777528 6.144543673805176 6.143215405538723 6.141651627412211 6.139855316166617 6.137829891182002 6.135579207969999 6.133107550834292 6.130419624714768 6.127520546231052 6.124415833944421 6.121111397850794 6.117613528132098 6.113928883182229 6.110064476932318 6.106027665499267 6.101826133183045 6.097467877839223 6.092961195654427 6.088314665354778 6.083537131874190 6.078637689519624 6.073625664657948 6.068510597963323 6.063302226255923 6.058010463967316 6.052645384267809 6.047217199891699 6.041736243696043 6.036212948992651 6.030657829687316 6.025081460264706 6.019494455661577 6.025081460264706 6.030657829687316 6.036212948992651 6.041736243696043 6.047217199891699 6.052645384267809 6.058010463967316 6.063302226255923 6.068510597963323 6.073625664657949 6.078637689519624 6.083537131874193 6.088314665354778 6.092961195654427 6.097467877839223 6.101826133183045 6.106027665499266 6.110064476932318 6.113928883182229 6.117613528132098 6.121111397850794 6.124415833944421 6.127520546231052 6.130419624714645 6.133107550834292 6.135579207969999 6.137829891182002 6.139855316166617 6.141651627412211 6.143215405538760 6.144543673805186 6.145633903777528 6.146484020140973 6.147092404650931 6.147457899213003 6.147579808086985 6.147457899213003 6.147092404650931 6.146484020140973 6.145633903777528 6.144543673805176 6.143215405538719 6.141651627412211 6.139855316166617 6.137829891182002 6.135579207969999 6.133107550834292 6.130419624714771 6.127520546231052 6.124415833944421 6.121111397850794 6.117613528132098 6.113928883182229 6.110064476932318 6.106027665499267 6.101826133183048 6.097467877839223 6.092961195654427 6.088314665354778 6.083537131874193 6.078637689519624 6.073625664657949 6.068510597963323 6.063302226255923 6.058010463967316 6.052645384267809 6.047217199891699 6.041736243696043 6.036212948992651 6.030657829687316 6.025081460264706 6.019494455661577 6.025081460264706 6.030657829687316 6.036212948992651 6.041736243696043 6.047217199891699 6.052645384267809 6.058010463967316 6.063302226255923 6.068510597963323 6.073625664657949 6.078637689519624 6.083537131874193 6.088314665354778 6.092961195654427 6.097467877839223 6.101826133183048 6.106027665499267 6.110064476932318 6.113928883182229 6.117613528132098 6.121111397850794 6.124415833944421 6.127520546231052 6.130419624714771 6.133107550834292 6.135579207969999 6.137829891182002 6.139855316166617 6.141651627412211 6.143215405538719 6.144543673805176 6.145633903777528 6.146484020140973 6.147092404650931 6.147457899213003 6.147579808086985 +6.133858717734241 6.133777315999453 6.133533265748152 6.133127031543952 6.132559386676294 6.131831411690023 6.130944492326482 6.129900316887244 6.128700873019543 6.127348443933004 6.125845604053128 6.124195214121307 6.122400415748586 6.120464625435387 6.118391528068584 6.116185069907292 6.113849451069552 6.111389117538628 6.108808752699611 6.106113268423300 6.103307795717251 6.100397674958070 6.097388445726551 6.094285836261044 6.091095752555161 6.087824267114427 6.084477607397671 6.081062143961611 6.077584378335074 6.074050930642771 6.070468527002886 6.066843986724299 6.063184209326022 6.059496161401771 6.055786863360612 6.052063376061970 6.048332787375887 6.052063376061970 6.055786863360612 6.059496161401771 6.063184209326022 6.066843986724299 6.070468527002886 6.074050930642771 6.077584378335074 6.081062143961611 6.084477607397671 6.087824267114445 6.091095752555161 6.094285836261044 6.097388445726551 6.100397674958070 6.103307795717251 6.106113268423300 6.108808752699616 6.111389117538628 6.113849451069552 6.116185069907292 6.118391528068584 6.120464625435387 6.122400415748586 6.124195214121308 6.125845604053128 6.127348443933004 6.128700873019543 6.129900316887244 6.130944492326482 6.131831411690023 6.132559386676294 6.133127031543952 6.133533265748152 6.133777315999453 6.133858717734241 6.133777315999453 6.133533265748152 6.133127031543952 6.132559386676294 6.131831411690023 6.130944492326482 6.129900316887244 6.128700873019543 6.127348443933004 6.125845604053128 6.124195214121307 6.122400415748586 6.120464625435387 6.118391528068584 6.116185069907292 6.113849451069552 6.111389117538628 6.108808752699605 6.106113268423300 6.103307795717251 6.100397674958070 6.097388445726551 6.094285836261044 6.091095752555161 6.087824267114445 6.084477607397671 6.081062143961612 6.077584378335087 6.074050930642771 6.070468527002886 6.066843986724299 6.063184209326022 6.059496161401771 6.055786863360612 6.052063376061970 6.048332787375887 6.052063376061970 6.055786863360612 6.059496161401771 6.063184209326022 6.066843986724299 6.070468527002886 6.074050930642771 6.077584378335087 6.081062143961611 6.084477607397671 6.087824267114445 6.091095752555161 6.094285836261044 6.097388445726551 6.100397674958070 6.103307795717251 6.106113268423300 6.108808752699605 6.111389117538628 6.113849451069552 6.116185069907292 6.118391528068584 6.120464625435387 6.122400415748586 6.124195214121307 6.125845604053128 6.127348443933005 6.128700873019543 6.129900316887244 6.130944492326482 6.131831411690023 6.132559386676294 6.133127031543952 6.133533265748152 6.133777315999453 6.133858717734241 +6.108461478686548 6.108420739044019 6.108298597666779 6.108095287058044 6.107811194230729 6.107446859972143 6.107002977812935 6.106480392708137 6.105880099427926 6.105203240665305 6.104451104858567 6.103625123741688 6.102726869616500 6.101758052360445 6.100720516172639 6.099616236061869 6.098447314088306 6.097215975361404 6.095924563804231 6.094575537692042 6.093171464972975 6.091715018378952 6.090208970339091 6.088656187701250 6.087059626275598 6.085422325207572 6.083747401192658 6.082038042544031 6.080297503122759 6.078529096144928 6.076736187873535 6.074922191211586 6.073090559204622 6.071244778468050 6.069388362551043 6.067524845246175 6.065657773864888 6.067524845246175 6.069388362551043 6.071244778468050 6.073090559204622 6.074922191211586 6.076736187873535 6.078529096144928 6.080297503122759 6.082038042544031 6.083747401192658 6.085422325207572 6.087059626275598 6.088656187701250 6.090208970339091 6.091715018378952 6.093171464972975 6.094575537692042 6.095924563804231 6.097215975361404 6.098447314088306 6.099616236061864 6.100720516172639 6.101758052360445 6.102726869616500 6.103625123741688 6.104451104858567 6.105203240665305 6.105880099427926 6.106480392708137 6.107002977812935 6.107446859972143 6.107811194230751 6.108095287058044 6.108298597666779 6.108420739044019 6.108461478686548 6.108420739044019 6.108298597666779 6.108095287058044 6.107811194230773 6.107446859972143 6.107002977812935 6.106480392708137 6.105880099427926 6.105203240665305 6.104451104858567 6.103625123741684 6.102726869616500 6.101758052360445 6.100720516172639 6.099616236061838 6.098447314088306 6.097215975361404 6.095924563804231 6.094575537692042 6.093171464972975 6.091715018378952 6.090208970339091 6.088656187701250 6.087059626275598 6.085422325207572 6.083747401192658 6.082038042544031 6.080297503122759 6.078529096144928 6.076736187873535 6.074922191211586 6.073090559204622 6.071244778468050 6.069388362551043 6.067524845246175 6.065657773864888 6.067524845246175 6.069388362551043 6.071244778468050 6.073090559204622 6.074922191211586 6.076736187873535 6.078529096144928 6.080297503122759 6.082038042544031 6.083747401192658 6.085422325207572 6.087059626275598 6.088656187701250 6.090208970339091 6.091715018378952 6.093171464972975 6.094575537692042 6.095924563804231 6.097215975361404 6.098447314088306 6.099616236061837 6.100720516172639 6.101758052360445 6.102726869616500 6.103625123741684 6.104451104858567 6.105203240665305 6.105880099427926 6.106480392708137 6.107002977812935 6.107446859972143 6.107811194230773 6.108095287058044 6.108298597666779 6.108420739044019 6.108461478686548 +6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 6.071436436031939 \ No newline at end of file diff --git a/simulations/Tutorial/xhps_integration/surface_tables/results.txt b/simulations/Tutorial/xhps_integration/surface_tables/results.txt new file mode 100644 index 0000000000000000000000000000000000000000..77e28a6bf54ce045a5907a55a3f2d7b6e492b0b4 --- /dev/null +++ b/simulations/Tutorial/xhps_integration/surface_tables/results.txt @@ -0,0 +1,42344 @@ +***************************************************************** +* Summary of calculation results * +***************************************************************** + +Polar angle tht: 0.0000; Azimuth angle phi: 0.0000 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 0.0436 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 0.0873 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 0.1309 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 0.1745 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 0.2182 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 0.2618 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 0.3054 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 0.3491 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 0.3927 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 0.4363 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 0.4800 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 0.5236 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 0.5672 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 0.6109 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 0.6545 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 0.6981 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 0.7418 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 0.7854 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 0.8290 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 0.8727 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 0.9163 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 0.9599 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 1.0036 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 1.0472 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 1.0908 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 1.1345 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 1.1781 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 1.2217 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 1.2654 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 1.3090 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 1.3526 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 1.3963 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 1.4399 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 1.4835 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 1.5272 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 1.5708 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 1.6144 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 1.6581 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 1.7017 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 1.7453 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 1.7890 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 1.8326 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 1.8762 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 1.9199 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 1.9635 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 2.0071 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 2.0508 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 2.0944 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 2.1380 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 2.1817 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 2.2253 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 2.2689 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 2.3126 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 2.3562 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 2.3998 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 2.4435 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 2.4871 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 2.5307 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 2.5744 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 2.6180 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 2.6616 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 2.7053 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 2.7489 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 2.7925 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 2.8362 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 2.8798 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 2.9234 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 2.9671 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 3.0107 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 3.0543 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 3.0980 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 3.1416 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 3.1852 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 3.2289 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 3.2725 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 3.3161 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 3.3598 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 3.4034 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 3.4470 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 3.4907 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 3.5343 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 3.5779 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 3.6216 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 3.6652 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 3.7088 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 3.7525 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 3.7961 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 3.8397 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 3.8834 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 3.9270 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 3.9706 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 4.0143 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 4.0579 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 4.1015 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 4.1452 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 4.1888 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 4.2324 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 4.2761 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 4.3197 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 4.3633 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 4.4070 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 4.4506 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 4.4942 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 4.5379 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 4.5815 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 4.6251 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 4.6688 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 4.7124 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 4.7560 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 4.7997 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 4.8433 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 4.8869 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 4.9306 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 4.9742 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 5.0178 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 5.0615 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 5.1051 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 5.1487 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 5.1924 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 5.2360 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 5.2796 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 5.3233 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 5.3669 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 5.4105 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 5.4542 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 5.4978 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 5.5414 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 5.5851 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 5.6287 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 5.6723 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 5.7160 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 5.7596 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 5.8032 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 5.8469 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 5.8905 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 5.9341 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 5.9778 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 6.0214 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 6.0650 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 6.1087 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 6.1523 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 6.1959 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 6.2396 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0000; Azimuth angle phi: 6.2832 +Force: 0.000000 0.000000 -11.008819 +Torque: -0.000000 -0.000000 0.000000 + +Polar angle tht: 0.0436; Azimuth angle phi: 0.0000 +Force: -0.094693 0.000000 -11.014301 +Torque: -0.000000 0.011870 0.000000 + +Polar angle tht: 0.0436; Azimuth angle phi: 0.0436 +Force: -0.094601 -0.003742 -11.014276 +Torque: 0.001223 0.011859 -0.000076 + +Polar angle tht: 0.0436; Azimuth angle phi: 0.0873 +Force: -0.094323 -0.007476 -11.014203 +Torque: 0.002444 0.011825 -0.000152 + +Polar angle tht: 0.0436; Azimuth angle phi: 0.1309 +Force: -0.093861 -0.011195 -11.014081 +Torque: 0.003660 0.011769 -0.000226 + +Polar angle tht: 0.0436; Azimuth angle phi: 0.1745 +Force: -0.093216 -0.014893 -11.013911 +Torque: 0.004869 0.011690 -0.000299 + +Polar angle tht: 0.0436; Azimuth angle phi: 0.2182 +Force: -0.092388 -0.018561 -11.013693 +Torque: 0.006069 0.011590 -0.000370 + +Polar angle tht: 0.0436; Azimuth angle phi: 0.2618 +Force: -0.091381 -0.022192 -11.013426 +Torque: 0.007258 0.011467 -0.000437 + +Polar angle tht: 0.0436; Azimuth angle phi: 0.3054 +Force: -0.090195 -0.025779 -11.013113 +Torque: 0.008432 0.011322 -0.000502 + +Polar angle tht: 0.0436; Azimuth angle phi: 0.3491 +Force: -0.088835 -0.029316 -11.012753 +Torque: 0.009590 0.011157 -0.000562 + +Polar angle tht: 0.0436; Azimuth angle phi: 0.3927 +Force: -0.087301 -0.032794 -11.012348 +Torque: 0.010731 0.010969 -0.000618 + +Polar angle tht: 0.0436; Azimuth angle phi: 0.4363 +Force: -0.085599 -0.036208 -11.011897 +Torque: 0.011850 0.010762 -0.000670 + +Polar angle tht: 0.0436; Azimuth angle phi: 0.4800 +Force: -0.083732 -0.039551 -11.011402 +Torque: 0.012947 0.010533 -0.000716 + +Polar angle tht: 0.0436; Azimuth angle phi: 0.5236 +Force: -0.081704 -0.042815 -11.010863 +Torque: 0.014020 0.010285 -0.000757 + +Polar angle tht: 0.0436; Azimuth angle phi: 0.5672 +Force: -0.079518 -0.045996 -11.010283 +Torque: 0.015065 0.010017 -0.000793 + +Polar angle tht: 0.0436; Azimuth angle phi: 0.6109 +Force: -0.077181 -0.049085 -11.009661 +Torque: 0.016082 0.009730 -0.000822 + +Polar angle tht: 0.0436; Azimuth angle phi: 0.6545 +Force: -0.074697 -0.052079 -11.008999 +Torque: 0.017068 0.009424 -0.000845 + +Polar angle tht: 0.0436; Azimuth angle phi: 0.6981 +Force: -0.072071 -0.054970 -11.008298 +Torque: 0.018022 0.009101 -0.000861 + +Polar angle tht: 0.0436; Azimuth angle phi: 0.7418 +Force: -0.069309 -0.057754 -11.007560 +Torque: 0.018941 0.008760 -0.000871 + +Polar angle tht: 0.0436; Azimuth angle phi: 0.7854 +Force: -0.066417 -0.060424 -11.006786 +Torque: 0.019825 0.008403 -0.000875 + +Polar angle tht: 0.0436; Azimuth angle phi: 0.8290 +Force: -0.063401 -0.062976 -11.005977 +Torque: 0.020670 0.008029 -0.000871 + +Polar angle tht: 0.0436; Azimuth angle phi: 0.8727 +Force: -0.060268 -0.065405 -11.005135 +Torque: 0.021476 0.007640 -0.000861 + +Polar angle tht: 0.0436; Azimuth angle phi: 0.9163 +Force: -0.057023 -0.067706 -11.004262 +Torque: 0.022241 0.007237 -0.000845 + +Polar angle tht: 0.0436; Azimuth angle phi: 0.9599 +Force: -0.053675 -0.069876 -11.003360 +Torque: 0.022964 0.006819 -0.000822 + +Polar angle tht: 0.0436; Azimuth angle phi: 1.0036 +Force: -0.050229 -0.071909 -11.002429 +Torque: 0.023643 0.006389 -0.000793 + +Polar angle tht: 0.0436; Azimuth angle phi: 1.0472 +Force: -0.046693 -0.073803 -11.001472 +Torque: 0.024277 0.005946 -0.000757 + +Polar angle tht: 0.0436; Azimuth angle phi: 1.0908 +Force: -0.043075 -0.075553 -11.000490 +Torque: 0.024864 0.005492 -0.000716 + +Polar angle tht: 0.0436; Azimuth angle phi: 1.1345 +Force: -0.039381 -0.077157 -10.999486 +Torque: 0.025404 0.005027 -0.000670 + +Polar angle tht: 0.0436; Azimuth angle phi: 1.1781 +Force: -0.035620 -0.078612 -10.998462 +Torque: 0.025896 0.004553 -0.000618 + +Polar angle tht: 0.0436; Azimuth angle phi: 1.2217 +Force: -0.031799 -0.079915 -10.997418 +Torque: 0.026339 0.004070 -0.000562 + +Polar angle tht: 0.0436; Azimuth angle phi: 1.2654 +Force: -0.027925 -0.081063 -10.996358 +Torque: 0.026731 0.003579 -0.000502 + +Polar angle tht: 0.0436; Azimuth angle phi: 1.3090 +Force: -0.024007 -0.082055 -10.995284 +Torque: 0.027072 0.003081 -0.000437 + +Polar angle tht: 0.0436; Azimuth angle phi: 1.3526 +Force: -0.020052 -0.082890 -10.994196 +Torque: 0.027362 0.002577 -0.000370 + +Polar angle tht: 0.0436; Azimuth angle phi: 1.3963 +Force: -0.016068 -0.083566 -10.993098 +Torque: 0.027600 0.002068 -0.000299 + +Polar angle tht: 0.0436; Azimuth angle phi: 1.4399 +Force: -0.012063 -0.084081 -10.991992 +Torque: 0.027785 0.001554 -0.000226 + +Polar angle tht: 0.0436; Azimuth angle phi: 1.4835 +Force: -0.008045 -0.084435 -10.990879 +Torque: 0.027918 0.001038 -0.000152 + +Polar angle tht: 0.0436; Azimuth angle phi: 1.5272 +Force: -0.004021 -0.084628 -10.989762 +Torque: 0.027997 0.000520 -0.000076 + +Polar angle tht: 0.0436; Azimuth angle phi: 1.5708 +Force: 0.000000 -0.084660 -10.988643 +Torque: 0.028023 -0.000000 0.000000 + +Polar angle tht: 0.0436; Azimuth angle phi: 1.6144 +Force: 0.004021 -0.084628 -10.989762 +Torque: 0.027997 -0.000520 0.000076 + +Polar angle tht: 0.0436; Azimuth angle phi: 1.6581 +Force: 0.008045 -0.084435 -10.990879 +Torque: 0.027918 -0.001038 0.000152 + +Polar angle tht: 0.0436; Azimuth angle phi: 1.7017 +Force: 0.012063 -0.084081 -10.991992 +Torque: 0.027785 -0.001554 0.000226 + +Polar angle tht: 0.0436; Azimuth angle phi: 1.7453 +Force: 0.016068 -0.083566 -10.993098 +Torque: 0.027600 -0.002068 0.000299 + +Polar angle tht: 0.0436; Azimuth angle phi: 1.7890 +Force: 0.020052 -0.082890 -10.994196 +Torque: 0.027362 -0.002577 0.000370 + +Polar angle tht: 0.0436; Azimuth angle phi: 1.8326 +Force: 0.024007 -0.082055 -10.995284 +Torque: 0.027072 -0.003081 0.000437 + +Polar angle tht: 0.0436; Azimuth angle phi: 1.8762 +Force: 0.027925 -0.081063 -10.996358 +Torque: 0.026731 -0.003579 0.000502 + +Polar angle tht: 0.0436; Azimuth angle phi: 1.9199 +Force: 0.031799 -0.079915 -10.997418 +Torque: 0.026339 -0.004070 0.000562 + +Polar angle tht: 0.0436; Azimuth angle phi: 1.9635 +Force: 0.035620 -0.078612 -10.998462 +Torque: 0.025896 -0.004553 0.000618 + +Polar angle tht: 0.0436; Azimuth angle phi: 2.0071 +Force: 0.039381 -0.077157 -10.999486 +Torque: 0.025404 -0.005027 0.000670 + +Polar angle tht: 0.0436; Azimuth angle phi: 2.0508 +Force: 0.043075 -0.075553 -11.000490 +Torque: 0.024864 -0.005492 0.000716 + +Polar angle tht: 0.0436; Azimuth angle phi: 2.0944 +Force: 0.046693 -0.073803 -11.001472 +Torque: 0.024277 -0.005946 0.000757 + +Polar angle tht: 0.0436; Azimuth angle phi: 2.1380 +Force: 0.050229 -0.071909 -11.002429 +Torque: 0.023643 -0.006389 0.000793 + +Polar angle tht: 0.0436; Azimuth angle phi: 2.1817 +Force: 0.053675 -0.069876 -11.003360 +Torque: 0.022964 -0.006819 0.000822 + +Polar angle tht: 0.0436; Azimuth angle phi: 2.2253 +Force: 0.057023 -0.067706 -11.004262 +Torque: 0.022241 -0.007237 0.000845 + +Polar angle tht: 0.0436; Azimuth angle phi: 2.2689 +Force: 0.060268 -0.065405 -11.005135 +Torque: 0.021476 -0.007640 0.000861 + +Polar angle tht: 0.0436; Azimuth angle phi: 2.3126 +Force: 0.063401 -0.062976 -11.005977 +Torque: 0.020670 -0.008029 0.000871 + +Polar angle tht: 0.0436; Azimuth angle phi: 2.3562 +Force: 0.066417 -0.060424 -11.006786 +Torque: 0.019825 -0.008403 0.000875 + +Polar angle tht: 0.0436; Azimuth angle phi: 2.3998 +Force: 0.069309 -0.057754 -11.007560 +Torque: 0.018941 -0.008760 0.000871 + +Polar angle tht: 0.0436; Azimuth angle phi: 2.4435 +Force: 0.072071 -0.054970 -11.008298 +Torque: 0.018022 -0.009101 0.000861 + +Polar angle tht: 0.0436; Azimuth angle phi: 2.4871 +Force: 0.074697 -0.052079 -11.008999 +Torque: 0.017068 -0.009424 0.000845 + +Polar angle tht: 0.0436; Azimuth angle phi: 2.5307 +Force: 0.077181 -0.049085 -11.009661 +Torque: 0.016082 -0.009730 0.000822 + +Polar angle tht: 0.0436; Azimuth angle phi: 2.5744 +Force: 0.079518 -0.045996 -11.010283 +Torque: 0.015065 -0.010017 0.000793 + +Polar angle tht: 0.0436; Azimuth angle phi: 2.6180 +Force: 0.081704 -0.042815 -11.010863 +Torque: 0.014020 -0.010285 0.000757 + +Polar angle tht: 0.0436; Azimuth angle phi: 2.6616 +Force: 0.083732 -0.039551 -11.011402 +Torque: 0.012947 -0.010533 0.000716 + +Polar angle tht: 0.0436; Azimuth angle phi: 2.7053 +Force: 0.085599 -0.036208 -11.011897 +Torque: 0.011850 -0.010762 0.000670 + +Polar angle tht: 0.0436; Azimuth angle phi: 2.7489 +Force: 0.087301 -0.032794 -11.012348 +Torque: 0.010731 -0.010969 0.000618 + +Polar angle tht: 0.0436; Azimuth angle phi: 2.7925 +Force: 0.088835 -0.029316 -11.012753 +Torque: 0.009590 -0.011157 0.000562 + +Polar angle tht: 0.0436; Azimuth angle phi: 2.8362 +Force: 0.090195 -0.025779 -11.013113 +Torque: 0.008432 -0.011322 0.000502 + +Polar angle tht: 0.0436; Azimuth angle phi: 2.8798 +Force: 0.091381 -0.022192 -11.013426 +Torque: 0.007258 -0.011467 0.000437 + +Polar angle tht: 0.0436; Azimuth angle phi: 2.9234 +Force: 0.092388 -0.018561 -11.013693 +Torque: 0.006069 -0.011590 0.000370 + +Polar angle tht: 0.0436; Azimuth angle phi: 2.9671 +Force: 0.093216 -0.014893 -11.013911 +Torque: 0.004869 -0.011690 0.000299 + +Polar angle tht: 0.0436; Azimuth angle phi: 3.0107 +Force: 0.093861 -0.011195 -11.014081 +Torque: 0.003660 -0.011769 0.000226 + +Polar angle tht: 0.0436; Azimuth angle phi: 3.0543 +Force: 0.094323 -0.007476 -11.014203 +Torque: 0.002444 -0.011825 0.000152 + +Polar angle tht: 0.0436; Azimuth angle phi: 3.0980 +Force: 0.094601 -0.003742 -11.014276 +Torque: 0.001223 -0.011859 0.000076 + +Polar angle tht: 0.0436; Azimuth angle phi: 3.1416 +Force: 0.094693 0.000000 -11.014301 +Torque: -0.000000 -0.011870 -0.000000 + +Polar angle tht: 0.0436; Azimuth angle phi: 3.1852 +Force: 0.094601 0.003742 -11.014276 +Torque: -0.001223 -0.011859 -0.000076 + +Polar angle tht: 0.0436; Azimuth angle phi: 3.2289 +Force: 0.094323 0.007476 -11.014203 +Torque: -0.002444 -0.011825 -0.000152 + +Polar angle tht: 0.0436; Azimuth angle phi: 3.2725 +Force: 0.093861 0.011195 -11.014081 +Torque: -0.003660 -0.011769 -0.000226 + +Polar angle tht: 0.0436; Azimuth angle phi: 3.3161 +Force: 0.093216 0.014893 -11.013911 +Torque: -0.004869 -0.011690 -0.000299 + +Polar angle tht: 0.0436; Azimuth angle phi: 3.3598 +Force: 0.092388 0.018561 -11.013693 +Torque: -0.006069 -0.011590 -0.000370 + +Polar angle tht: 0.0436; Azimuth angle phi: 3.4034 +Force: 0.091381 0.022192 -11.013426 +Torque: -0.007258 -0.011467 -0.000437 + +Polar angle tht: 0.0436; Azimuth angle phi: 3.4470 +Force: 0.090195 0.025779 -11.013113 +Torque: -0.008432 -0.011322 -0.000502 + +Polar angle tht: 0.0436; Azimuth angle phi: 3.4907 +Force: 0.088835 0.029316 -11.012753 +Torque: -0.009590 -0.011157 -0.000562 + +Polar angle tht: 0.0436; Azimuth angle phi: 3.5343 +Force: 0.087301 0.032794 -11.012348 +Torque: -0.010731 -0.010969 -0.000618 + +Polar angle tht: 0.0436; Azimuth angle phi: 3.5779 +Force: 0.085599 0.036208 -11.011897 +Torque: -0.011850 -0.010762 -0.000670 + +Polar angle tht: 0.0436; Azimuth angle phi: 3.6216 +Force: 0.083732 0.039551 -11.011402 +Torque: -0.012947 -0.010533 -0.000716 + +Polar angle tht: 0.0436; Azimuth angle phi: 3.6652 +Force: 0.081704 0.042815 -11.010863 +Torque: -0.014020 -0.010285 -0.000757 + +Polar angle tht: 0.0436; Azimuth angle phi: 3.7088 +Force: 0.079518 0.045996 -11.010283 +Torque: -0.015065 -0.010017 -0.000793 + +Polar angle tht: 0.0436; Azimuth angle phi: 3.7525 +Force: 0.077181 0.049085 -11.009661 +Torque: -0.016082 -0.009730 -0.000822 + +Polar angle tht: 0.0436; Azimuth angle phi: 3.7961 +Force: 0.074697 0.052079 -11.008999 +Torque: -0.017068 -0.009424 -0.000845 + +Polar angle tht: 0.0436; Azimuth angle phi: 3.8397 +Force: 0.072071 0.054970 -11.008298 +Torque: -0.018022 -0.009101 -0.000861 + +Polar angle tht: 0.0436; Azimuth angle phi: 3.8834 +Force: 0.069309 0.057754 -11.007560 +Torque: -0.018941 -0.008760 -0.000871 + +Polar angle tht: 0.0436; Azimuth angle phi: 3.9270 +Force: 0.066417 0.060424 -11.006786 +Torque: -0.019825 -0.008403 -0.000875 + +Polar angle tht: 0.0436; Azimuth angle phi: 3.9706 +Force: 0.063401 0.062976 -11.005977 +Torque: -0.020670 -0.008029 -0.000871 + +Polar angle tht: 0.0436; Azimuth angle phi: 4.0143 +Force: 0.060268 0.065405 -11.005135 +Torque: -0.021476 -0.007640 -0.000861 + +Polar angle tht: 0.0436; Azimuth angle phi: 4.0579 +Force: 0.057023 0.067706 -11.004262 +Torque: -0.022241 -0.007237 -0.000845 + +Polar angle tht: 0.0436; Azimuth angle phi: 4.1015 +Force: 0.053675 0.069876 -11.003360 +Torque: -0.022964 -0.006819 -0.000822 + +Polar angle tht: 0.0436; Azimuth angle phi: 4.1452 +Force: 0.050229 0.071909 -11.002429 +Torque: -0.023643 -0.006389 -0.000793 + +Polar angle tht: 0.0436; Azimuth angle phi: 4.1888 +Force: 0.046693 0.073803 -11.001472 +Torque: -0.024277 -0.005946 -0.000757 + +Polar angle tht: 0.0436; Azimuth angle phi: 4.2324 +Force: 0.043075 0.075553 -11.000490 +Torque: -0.024864 -0.005492 -0.000716 + +Polar angle tht: 0.0436; Azimuth angle phi: 4.2761 +Force: 0.039381 0.077157 -10.999486 +Torque: -0.025404 -0.005027 -0.000670 + +Polar angle tht: 0.0436; Azimuth angle phi: 4.3197 +Force: 0.035620 0.078612 -10.998462 +Torque: -0.025896 -0.004553 -0.000618 + +Polar angle tht: 0.0436; Azimuth angle phi: 4.3633 +Force: 0.031799 0.079915 -10.997418 +Torque: -0.026339 -0.004070 -0.000562 + +Polar angle tht: 0.0436; Azimuth angle phi: 4.4070 +Force: 0.027925 0.081063 -10.996358 +Torque: -0.026731 -0.003579 -0.000502 + +Polar angle tht: 0.0436; Azimuth angle phi: 4.4506 +Force: 0.024007 0.082055 -10.995284 +Torque: -0.027072 -0.003081 -0.000437 + +Polar angle tht: 0.0436; Azimuth angle phi: 4.4942 +Force: 0.020052 0.082890 -10.994196 +Torque: -0.027362 -0.002577 -0.000370 + +Polar angle tht: 0.0436; Azimuth angle phi: 4.5379 +Force: 0.016068 0.083566 -10.993098 +Torque: -0.027600 -0.002068 -0.000299 + +Polar angle tht: 0.0436; Azimuth angle phi: 4.5815 +Force: 0.012063 0.084081 -10.991992 +Torque: -0.027785 -0.001554 -0.000226 + +Polar angle tht: 0.0436; Azimuth angle phi: 4.6251 +Force: 0.008045 0.084435 -10.990879 +Torque: -0.027918 -0.001038 -0.000152 + +Polar angle tht: 0.0436; Azimuth angle phi: 4.6688 +Force: 0.004021 0.084628 -10.989762 +Torque: -0.027997 -0.000520 -0.000076 + +Polar angle tht: 0.0436; Azimuth angle phi: 4.7124 +Force: 0.000000 0.084660 -10.988643 +Torque: -0.028023 -0.000000 -0.000000 + +Polar angle tht: 0.0436; Azimuth angle phi: 4.7560 +Force: -0.004021 0.084628 -10.989762 +Torque: -0.027997 0.000520 0.000076 + +Polar angle tht: 0.0436; Azimuth angle phi: 4.7997 +Force: -0.008045 0.084435 -10.990879 +Torque: -0.027918 0.001038 0.000152 + +Polar angle tht: 0.0436; Azimuth angle phi: 4.8433 +Force: -0.012063 0.084081 -10.991992 +Torque: -0.027785 0.001554 0.000226 + +Polar angle tht: 0.0436; Azimuth angle phi: 4.8869 +Force: -0.016068 0.083566 -10.993098 +Torque: -0.027600 0.002068 0.000299 + +Polar angle tht: 0.0436; Azimuth angle phi: 4.9306 +Force: -0.020052 0.082890 -10.994196 +Torque: -0.027362 0.002577 0.000370 + +Polar angle tht: 0.0436; Azimuth angle phi: 4.9742 +Force: -0.024007 0.082055 -10.995284 +Torque: -0.027072 0.003081 0.000437 + +Polar angle tht: 0.0436; Azimuth angle phi: 5.0178 +Force: -0.027925 0.081063 -10.996358 +Torque: -0.026731 0.003579 0.000502 + +Polar angle tht: 0.0436; Azimuth angle phi: 5.0615 +Force: -0.031799 0.079915 -10.997418 +Torque: -0.026339 0.004070 0.000562 + +Polar angle tht: 0.0436; Azimuth angle phi: 5.1051 +Force: -0.035620 0.078612 -10.998462 +Torque: -0.025896 0.004553 0.000618 + +Polar angle tht: 0.0436; Azimuth angle phi: 5.1487 +Force: -0.039381 0.077157 -10.999486 +Torque: -0.025404 0.005027 0.000670 + +Polar angle tht: 0.0436; Azimuth angle phi: 5.1924 +Force: -0.043075 0.075553 -11.000490 +Torque: -0.024864 0.005492 0.000716 + +Polar angle tht: 0.0436; Azimuth angle phi: 5.2360 +Force: -0.046693 0.073803 -11.001472 +Torque: -0.024277 0.005946 0.000757 + +Polar angle tht: 0.0436; Azimuth angle phi: 5.2796 +Force: -0.050229 0.071909 -11.002429 +Torque: -0.023643 0.006389 0.000793 + +Polar angle tht: 0.0436; Azimuth angle phi: 5.3233 +Force: -0.053675 0.069876 -11.003360 +Torque: -0.022964 0.006819 0.000822 + +Polar angle tht: 0.0436; Azimuth angle phi: 5.3669 +Force: -0.057023 0.067706 -11.004262 +Torque: -0.022241 0.007237 0.000845 + +Polar angle tht: 0.0436; Azimuth angle phi: 5.4105 +Force: -0.060268 0.065405 -11.005135 +Torque: -0.021476 0.007640 0.000861 + +Polar angle tht: 0.0436; Azimuth angle phi: 5.4542 +Force: -0.063401 0.062976 -11.005977 +Torque: -0.020670 0.008029 0.000871 + +Polar angle tht: 0.0436; Azimuth angle phi: 5.4978 +Force: -0.066417 0.060424 -11.006786 +Torque: -0.019825 0.008403 0.000875 + +Polar angle tht: 0.0436; Azimuth angle phi: 5.5414 +Force: -0.069309 0.057754 -11.007560 +Torque: -0.018941 0.008760 0.000871 + +Polar angle tht: 0.0436; Azimuth angle phi: 5.5851 +Force: -0.072071 0.054970 -11.008298 +Torque: -0.018022 0.009101 0.000861 + +Polar angle tht: 0.0436; Azimuth angle phi: 5.6287 +Force: -0.074697 0.052079 -11.008999 +Torque: -0.017068 0.009424 0.000845 + +Polar angle tht: 0.0436; Azimuth angle phi: 5.6723 +Force: -0.077181 0.049085 -11.009661 +Torque: -0.016082 0.009730 0.000822 + +Polar angle tht: 0.0436; Azimuth angle phi: 5.7160 +Force: -0.079518 0.045996 -11.010283 +Torque: -0.015065 0.010017 0.000793 + +Polar angle tht: 0.0436; Azimuth angle phi: 5.7596 +Force: -0.081704 0.042815 -11.010863 +Torque: -0.014020 0.010285 0.000757 + +Polar angle tht: 0.0436; Azimuth angle phi: 5.8032 +Force: -0.083732 0.039551 -11.011402 +Torque: -0.012947 0.010533 0.000716 + +Polar angle tht: 0.0436; Azimuth angle phi: 5.8469 +Force: -0.085599 0.036208 -11.011897 +Torque: -0.011850 0.010762 0.000670 + +Polar angle tht: 0.0436; Azimuth angle phi: 5.8905 +Force: -0.087301 0.032794 -11.012348 +Torque: -0.010731 0.010969 0.000618 + +Polar angle tht: 0.0436; Azimuth angle phi: 5.9341 +Force: -0.088835 0.029316 -11.012753 +Torque: -0.009590 0.011157 0.000562 + +Polar angle tht: 0.0436; Azimuth angle phi: 5.9778 +Force: -0.090195 0.025779 -11.013113 +Torque: -0.008432 0.011322 0.000502 + +Polar angle tht: 0.0436; Azimuth angle phi: 6.0214 +Force: -0.091381 0.022192 -11.013426 +Torque: -0.007258 0.011467 0.000437 + +Polar angle tht: 0.0436; Azimuth angle phi: 6.0650 +Force: -0.092388 0.018561 -11.013693 +Torque: -0.006069 0.011590 0.000370 + +Polar angle tht: 0.0436; Azimuth angle phi: 6.1087 +Force: -0.093216 0.014893 -11.013911 +Torque: -0.004869 0.011690 0.000299 + +Polar angle tht: 0.0436; Azimuth angle phi: 6.1523 +Force: -0.093861 0.011195 -11.014081 +Torque: -0.003660 0.011769 0.000226 + +Polar angle tht: 0.0436; Azimuth angle phi: 6.1959 +Force: -0.094323 0.007476 -11.014203 +Torque: -0.002444 0.011825 0.000152 + +Polar angle tht: 0.0436; Azimuth angle phi: 6.2396 +Force: -0.094601 0.003742 -11.014276 +Torque: -0.001223 0.011859 0.000076 + +Polar angle tht: 0.0436; Azimuth angle phi: 6.2832 +Force: -0.094693 0.000000 -11.014301 +Torque: -0.000000 0.011870 0.000000 + +Polar angle tht: 0.0873; Azimuth angle phi: 0.0000 +Force: -0.193936 0.000000 -10.979384 +Torque: -0.000000 0.023559 0.000000 + +Polar angle tht: 0.0873; Azimuth angle phi: 0.0436 +Force: -0.193742 -0.007552 -10.979335 +Torque: 0.002439 0.023537 -0.000304 + +Polar angle tht: 0.0873; Azimuth angle phi: 0.0873 +Force: -0.193159 -0.015089 -10.979189 +Torque: 0.004873 0.023470 -0.000606 + +Polar angle tht: 0.0873; Azimuth angle phi: 0.1309 +Force: -0.192189 -0.022595 -10.978946 +Torque: 0.007297 0.023359 -0.000904 + +Polar angle tht: 0.0873; Azimuth angle phi: 0.1745 +Force: -0.190834 -0.030055 -10.978607 +Torque: 0.009708 0.023204 -0.001194 + +Polar angle tht: 0.0873; Azimuth angle phi: 0.2182 +Force: -0.189098 -0.037453 -10.978172 +Torque: 0.012100 0.023005 -0.001476 + +Polar angle tht: 0.0873; Azimuth angle phi: 0.2618 +Force: -0.186985 -0.044775 -10.977642 +Torque: 0.014470 0.022762 -0.001746 + +Polar angle tht: 0.0873; Azimuth angle phi: 0.3054 +Force: -0.184500 -0.052004 -10.977018 +Torque: 0.016811 0.022476 -0.002003 + +Polar angle tht: 0.0873; Azimuth angle phi: 0.3491 +Force: -0.181649 -0.059128 -10.976301 +Torque: 0.019120 0.022148 -0.002245 + +Polar angle tht: 0.0873; Azimuth angle phi: 0.3927 +Force: -0.178440 -0.066131 -10.975492 +Torque: 0.021393 0.021778 -0.002469 + +Polar angle tht: 0.0873; Azimuth angle phi: 0.4363 +Force: -0.174880 -0.072999 -10.974594 +Torque: 0.023625 0.021367 -0.002675 + +Polar angle tht: 0.0873; Azimuth angle phi: 0.4800 +Force: -0.170978 -0.079718 -10.973608 +Torque: 0.025812 0.020915 -0.002860 + +Polar angle tht: 0.0873; Azimuth angle phi: 0.5236 +Force: -0.166743 -0.086275 -10.972535 +Torque: 0.027949 0.020423 -0.003024 + +Polar angle tht: 0.0873; Azimuth angle phi: 0.5672 +Force: -0.162186 -0.092656 -10.971378 +Torque: 0.030033 0.019893 -0.003165 + +Polar angle tht: 0.0873; Azimuth angle phi: 0.6109 +Force: -0.157317 -0.098850 -10.970139 +Torque: 0.032060 0.019325 -0.003281 + +Polar angle tht: 0.0873; Azimuth angle phi: 0.6545 +Force: -0.152149 -0.104843 -10.968820 +Torque: 0.034025 0.018720 -0.003373 + +Polar angle tht: 0.0873; Azimuth angle phi: 0.6981 +Force: -0.146693 -0.110625 -10.967424 +Torque: 0.035926 0.018079 -0.003439 + +Polar angle tht: 0.0873; Azimuth angle phi: 0.7418 +Force: -0.140963 -0.116184 -10.965953 +Torque: 0.037758 0.017404 -0.003479 + +Polar angle tht: 0.0873; Azimuth angle phi: 0.7854 +Force: -0.134972 -0.121508 -10.964411 +Torque: 0.039517 0.016696 -0.003492 + +Polar angle tht: 0.0873; Azimuth angle phi: 0.8290 +Force: -0.128734 -0.126589 -10.962800 +Torque: 0.041202 0.015955 -0.003479 + +Polar angle tht: 0.0873; Azimuth angle phi: 0.8727 +Force: -0.122264 -0.131416 -10.961123 +Torque: 0.042807 0.015184 -0.003439 + +Polar angle tht: 0.0873; Azimuth angle phi: 0.9163 +Force: -0.115575 -0.135980 -10.959383 +Torque: 0.044331 0.014384 -0.003373 + +Polar angle tht: 0.0873; Azimuth angle phi: 0.9599 +Force: -0.108685 -0.140273 -10.957585 +Torque: 0.045771 0.013557 -0.003281 + +Polar angle tht: 0.0873; Azimuth angle phi: 1.0036 +Force: -0.101607 -0.144287 -10.955730 +Torque: 0.047123 0.012703 -0.003165 + +Polar angle tht: 0.0873; Azimuth angle phi: 1.0472 +Force: -0.094359 -0.148014 -10.953824 +Torque: 0.048385 0.011824 -0.003024 + +Polar angle tht: 0.0873; Azimuth angle phi: 1.0908 +Force: -0.086956 -0.151449 -10.951868 +Torque: 0.049555 0.010923 -0.002860 + +Polar angle tht: 0.0873; Azimuth angle phi: 1.1345 +Force: -0.079415 -0.154585 -10.949868 +Torque: 0.050630 0.010000 -0.002675 + +Polar angle tht: 0.0873; Azimuth angle phi: 1.1781 +Force: -0.071751 -0.157418 -10.947826 +Torque: 0.051609 0.009058 -0.002469 + +Polar angle tht: 0.0873; Azimuth angle phi: 1.2217 +Force: -0.063982 -0.159941 -10.945748 +Torque: 0.052489 0.008098 -0.002245 + +Polar angle tht: 0.0873; Azimuth angle phi: 1.2654 +Force: -0.056123 -0.162152 -10.943636 +Torque: 0.053270 0.007122 -0.002003 + +Polar angle tht: 0.0873; Azimuth angle phi: 1.3090 +Force: -0.048192 -0.164047 -10.941494 +Torque: 0.053949 0.006132 -0.001746 + +Polar angle tht: 0.0873; Azimuth angle phi: 1.3526 +Force: -0.040206 -0.165623 -10.939328 +Torque: 0.054525 0.005129 -0.001476 + +Polar angle tht: 0.0873; Azimuth angle phi: 1.3963 +Force: -0.032179 -0.166878 -10.937140 +Torque: 0.054997 0.004117 -0.001194 + +Polar angle tht: 0.0873; Azimuth angle phi: 1.4399 +Force: -0.024129 -0.167812 -10.934936 +Torque: 0.055364 0.003095 -0.000904 + +Polar angle tht: 0.0873; Azimuth angle phi: 1.4835 +Force: -0.016072 -0.168422 -10.932719 +Torque: 0.055626 0.002068 -0.000606 + +Polar angle tht: 0.0873; Azimuth angle phi: 1.5272 +Force: -0.008024 -0.168710 -10.930493 +Torque: 0.055782 0.001035 -0.000304 + +Polar angle tht: 0.0873; Azimuth angle phi: 1.5708 +Force: 0.000000 -0.168676 -10.928263 +Torque: 0.055832 -0.000000 0.000000 + +Polar angle tht: 0.0873; Azimuth angle phi: 1.6144 +Force: 0.008024 -0.168710 -10.930493 +Torque: 0.055782 -0.001035 0.000304 + +Polar angle tht: 0.0873; Azimuth angle phi: 1.6581 +Force: 0.016072 -0.168422 -10.932719 +Torque: 0.055626 -0.002068 0.000606 + +Polar angle tht: 0.0873; Azimuth angle phi: 1.7017 +Force: 0.024129 -0.167812 -10.934936 +Torque: 0.055364 -0.003095 0.000904 + +Polar angle tht: 0.0873; Azimuth angle phi: 1.7453 +Force: 0.032179 -0.166878 -10.937140 +Torque: 0.054997 -0.004117 0.001194 + +Polar angle tht: 0.0873; Azimuth angle phi: 1.7890 +Force: 0.040206 -0.165623 -10.939328 +Torque: 0.054525 -0.005129 0.001476 + +Polar angle tht: 0.0873; Azimuth angle phi: 1.8326 +Force: 0.048192 -0.164047 -10.941494 +Torque: 0.053949 -0.006132 0.001746 + +Polar angle tht: 0.0873; Azimuth angle phi: 1.8762 +Force: 0.056123 -0.162152 -10.943636 +Torque: 0.053270 -0.007122 0.002003 + +Polar angle tht: 0.0873; Azimuth angle phi: 1.9199 +Force: 0.063982 -0.159941 -10.945748 +Torque: 0.052489 -0.008098 0.002245 + +Polar angle tht: 0.0873; Azimuth angle phi: 1.9635 +Force: 0.071751 -0.157418 -10.947826 +Torque: 0.051609 -0.009058 0.002469 + +Polar angle tht: 0.0873; Azimuth angle phi: 2.0071 +Force: 0.079415 -0.154585 -10.949868 +Torque: 0.050630 -0.010000 0.002675 + +Polar angle tht: 0.0873; Azimuth angle phi: 2.0508 +Force: 0.086956 -0.151449 -10.951868 +Torque: 0.049555 -0.010923 0.002860 + +Polar angle tht: 0.0873; Azimuth angle phi: 2.0944 +Force: 0.094359 -0.148014 -10.953824 +Torque: 0.048385 -0.011824 0.003024 + +Polar angle tht: 0.0873; Azimuth angle phi: 2.1380 +Force: 0.101607 -0.144287 -10.955730 +Torque: 0.047123 -0.012703 0.003165 + +Polar angle tht: 0.0873; Azimuth angle phi: 2.1817 +Force: 0.108685 -0.140273 -10.957585 +Torque: 0.045771 -0.013557 0.003281 + +Polar angle tht: 0.0873; Azimuth angle phi: 2.2253 +Force: 0.115575 -0.135980 -10.959383 +Torque: 0.044331 -0.014384 0.003373 + +Polar angle tht: 0.0873; Azimuth angle phi: 2.2689 +Force: 0.122264 -0.131416 -10.961123 +Torque: 0.042807 -0.015184 0.003439 + +Polar angle tht: 0.0873; Azimuth angle phi: 2.3126 +Force: 0.128734 -0.126589 -10.962800 +Torque: 0.041202 -0.015955 0.003479 + +Polar angle tht: 0.0873; Azimuth angle phi: 2.3562 +Force: 0.134972 -0.121508 -10.964411 +Torque: 0.039517 -0.016696 0.003492 + +Polar angle tht: 0.0873; Azimuth angle phi: 2.3998 +Force: 0.140963 -0.116184 -10.965953 +Torque: 0.037758 -0.017404 0.003479 + +Polar angle tht: 0.0873; Azimuth angle phi: 2.4435 +Force: 0.146693 -0.110625 -10.967424 +Torque: 0.035926 -0.018079 0.003439 + +Polar angle tht: 0.0873; Azimuth angle phi: 2.4871 +Force: 0.152149 -0.104843 -10.968820 +Torque: 0.034025 -0.018720 0.003373 + +Polar angle tht: 0.0873; Azimuth angle phi: 2.5307 +Force: 0.157317 -0.098850 -10.970139 +Torque: 0.032060 -0.019325 0.003281 + +Polar angle tht: 0.0873; Azimuth angle phi: 2.5744 +Force: 0.162186 -0.092656 -10.971378 +Torque: 0.030033 -0.019893 0.003165 + +Polar angle tht: 0.0873; Azimuth angle phi: 2.6180 +Force: 0.166743 -0.086275 -10.972535 +Torque: 0.027949 -0.020423 0.003024 + +Polar angle tht: 0.0873; Azimuth angle phi: 2.6616 +Force: 0.170978 -0.079718 -10.973608 +Torque: 0.025812 -0.020915 0.002860 + +Polar angle tht: 0.0873; Azimuth angle phi: 2.7053 +Force: 0.174880 -0.072999 -10.974594 +Torque: 0.023625 -0.021367 0.002675 + +Polar angle tht: 0.0873; Azimuth angle phi: 2.7489 +Force: 0.178440 -0.066131 -10.975492 +Torque: 0.021393 -0.021778 0.002469 + +Polar angle tht: 0.0873; Azimuth angle phi: 2.7925 +Force: 0.181649 -0.059128 -10.976301 +Torque: 0.019120 -0.022148 0.002245 + +Polar angle tht: 0.0873; Azimuth angle phi: 2.8362 +Force: 0.184500 -0.052004 -10.977018 +Torque: 0.016811 -0.022476 0.002003 + +Polar angle tht: 0.0873; Azimuth angle phi: 2.8798 +Force: 0.186985 -0.044775 -10.977642 +Torque: 0.014470 -0.022762 0.001746 + +Polar angle tht: 0.0873; Azimuth angle phi: 2.9234 +Force: 0.189098 -0.037453 -10.978172 +Torque: 0.012100 -0.023005 0.001476 + +Polar angle tht: 0.0873; Azimuth angle phi: 2.9671 +Force: 0.190834 -0.030055 -10.978607 +Torque: 0.009708 -0.023204 0.001194 + +Polar angle tht: 0.0873; Azimuth angle phi: 3.0107 +Force: 0.192189 -0.022595 -10.978946 +Torque: 0.007297 -0.023359 0.000904 + +Polar angle tht: 0.0873; Azimuth angle phi: 3.0543 +Force: 0.193159 -0.015089 -10.979189 +Torque: 0.004873 -0.023470 0.000606 + +Polar angle tht: 0.0873; Azimuth angle phi: 3.0980 +Force: 0.193742 -0.007552 -10.979335 +Torque: 0.002439 -0.023537 0.000304 + +Polar angle tht: 0.0873; Azimuth angle phi: 3.1416 +Force: 0.193936 0.000000 -10.979384 +Torque: -0.000000 -0.023559 -0.000000 + +Polar angle tht: 0.0873; Azimuth angle phi: 3.1852 +Force: 0.193742 0.007552 -10.979335 +Torque: -0.002439 -0.023537 -0.000304 + +Polar angle tht: 0.0873; Azimuth angle phi: 3.2289 +Force: 0.193159 0.015089 -10.979189 +Torque: -0.004873 -0.023470 -0.000606 + +Polar angle tht: 0.0873; Azimuth angle phi: 3.2725 +Force: 0.192189 0.022595 -10.978946 +Torque: -0.007297 -0.023359 -0.000904 + +Polar angle tht: 0.0873; Azimuth angle phi: 3.3161 +Force: 0.190834 0.030055 -10.978607 +Torque: -0.009708 -0.023204 -0.001194 + +Polar angle tht: 0.0873; Azimuth angle phi: 3.3598 +Force: 0.189098 0.037453 -10.978172 +Torque: -0.012100 -0.023005 -0.001476 + +Polar angle tht: 0.0873; Azimuth angle phi: 3.4034 +Force: 0.186985 0.044775 -10.977642 +Torque: -0.014470 -0.022762 -0.001746 + +Polar angle tht: 0.0873; Azimuth angle phi: 3.4470 +Force: 0.184500 0.052004 -10.977018 +Torque: -0.016811 -0.022476 -0.002003 + +Polar angle tht: 0.0873; Azimuth angle phi: 3.4907 +Force: 0.181649 0.059128 -10.976301 +Torque: -0.019120 -0.022148 -0.002245 + +Polar angle tht: 0.0873; Azimuth angle phi: 3.5343 +Force: 0.178440 0.066131 -10.975492 +Torque: -0.021393 -0.021778 -0.002469 + +Polar angle tht: 0.0873; Azimuth angle phi: 3.5779 +Force: 0.174880 0.072999 -10.974594 +Torque: -0.023625 -0.021367 -0.002675 + +Polar angle tht: 0.0873; Azimuth angle phi: 3.6216 +Force: 0.170978 0.079718 -10.973608 +Torque: -0.025812 -0.020915 -0.002860 + +Polar angle tht: 0.0873; Azimuth angle phi: 3.6652 +Force: 0.166743 0.086275 -10.972535 +Torque: -0.027949 -0.020423 -0.003024 + +Polar angle tht: 0.0873; Azimuth angle phi: 3.7088 +Force: 0.162186 0.092656 -10.971378 +Torque: -0.030033 -0.019893 -0.003165 + +Polar angle tht: 0.0873; Azimuth angle phi: 3.7525 +Force: 0.157317 0.098850 -10.970139 +Torque: -0.032060 -0.019325 -0.003281 + +Polar angle tht: 0.0873; Azimuth angle phi: 3.7961 +Force: 0.152149 0.104843 -10.968820 +Torque: -0.034025 -0.018720 -0.003373 + +Polar angle tht: 0.0873; Azimuth angle phi: 3.8397 +Force: 0.146693 0.110625 -10.967424 +Torque: -0.035926 -0.018079 -0.003439 + +Polar angle tht: 0.0873; Azimuth angle phi: 3.8834 +Force: 0.140963 0.116184 -10.965953 +Torque: -0.037758 -0.017404 -0.003479 + +Polar angle tht: 0.0873; Azimuth angle phi: 3.9270 +Force: 0.134972 0.121508 -10.964411 +Torque: -0.039517 -0.016696 -0.003492 + +Polar angle tht: 0.0873; Azimuth angle phi: 3.9706 +Force: 0.128734 0.126589 -10.962800 +Torque: -0.041202 -0.015955 -0.003479 + +Polar angle tht: 0.0873; Azimuth angle phi: 4.0143 +Force: 0.122264 0.131416 -10.961123 +Torque: -0.042807 -0.015184 -0.003439 + +Polar angle tht: 0.0873; Azimuth angle phi: 4.0579 +Force: 0.115575 0.135980 -10.959383 +Torque: -0.044331 -0.014384 -0.003373 + +Polar angle tht: 0.0873; Azimuth angle phi: 4.1015 +Force: 0.108685 0.140273 -10.957585 +Torque: -0.045771 -0.013557 -0.003281 + +Polar angle tht: 0.0873; Azimuth angle phi: 4.1452 +Force: 0.101607 0.144287 -10.955730 +Torque: -0.047123 -0.012703 -0.003165 + +Polar angle tht: 0.0873; Azimuth angle phi: 4.1888 +Force: 0.094359 0.148014 -10.953824 +Torque: -0.048385 -0.011824 -0.003024 + +Polar angle tht: 0.0873; Azimuth angle phi: 4.2324 +Force: 0.086956 0.151449 -10.951868 +Torque: -0.049555 -0.010923 -0.002860 + +Polar angle tht: 0.0873; Azimuth angle phi: 4.2761 +Force: 0.079415 0.154585 -10.949868 +Torque: -0.050630 -0.010000 -0.002675 + +Polar angle tht: 0.0873; Azimuth angle phi: 4.3197 +Force: 0.071751 0.157418 -10.947826 +Torque: -0.051609 -0.009058 -0.002469 + +Polar angle tht: 0.0873; Azimuth angle phi: 4.3633 +Force: 0.063982 0.159941 -10.945748 +Torque: -0.052489 -0.008098 -0.002245 + +Polar angle tht: 0.0873; Azimuth angle phi: 4.4070 +Force: 0.056123 0.162152 -10.943636 +Torque: -0.053270 -0.007122 -0.002003 + +Polar angle tht: 0.0873; Azimuth angle phi: 4.4506 +Force: 0.048192 0.164047 -10.941494 +Torque: -0.053949 -0.006132 -0.001746 + +Polar angle tht: 0.0873; Azimuth angle phi: 4.4942 +Force: 0.040206 0.165623 -10.939328 +Torque: -0.054525 -0.005129 -0.001476 + +Polar angle tht: 0.0873; Azimuth angle phi: 4.5379 +Force: 0.032179 0.166878 -10.937140 +Torque: -0.054997 -0.004117 -0.001194 + +Polar angle tht: 0.0873; Azimuth angle phi: 4.5815 +Force: 0.024129 0.167812 -10.934936 +Torque: -0.055364 -0.003095 -0.000904 + +Polar angle tht: 0.0873; Azimuth angle phi: 4.6251 +Force: 0.016072 0.168422 -10.932719 +Torque: -0.055626 -0.002068 -0.000606 + +Polar angle tht: 0.0873; Azimuth angle phi: 4.6688 +Force: 0.008024 0.168710 -10.930493 +Torque: -0.055782 -0.001035 -0.000304 + +Polar angle tht: 0.0873; Azimuth angle phi: 4.7124 +Force: 0.000000 0.168676 -10.928263 +Torque: -0.055832 -0.000000 -0.000000 + +Polar angle tht: 0.0873; Azimuth angle phi: 4.7560 +Force: -0.008024 0.168710 -10.930493 +Torque: -0.055782 0.001035 0.000304 + +Polar angle tht: 0.0873; Azimuth angle phi: 4.7997 +Force: -0.016072 0.168422 -10.932719 +Torque: -0.055626 0.002068 0.000606 + +Polar angle tht: 0.0873; Azimuth angle phi: 4.8433 +Force: -0.024129 0.167812 -10.934936 +Torque: -0.055364 0.003095 0.000904 + +Polar angle tht: 0.0873; Azimuth angle phi: 4.8869 +Force: -0.032179 0.166878 -10.937140 +Torque: -0.054997 0.004117 0.001194 + +Polar angle tht: 0.0873; Azimuth angle phi: 4.9306 +Force: -0.040206 0.165623 -10.939328 +Torque: -0.054525 0.005129 0.001476 + +Polar angle tht: 0.0873; Azimuth angle phi: 4.9742 +Force: -0.048192 0.164047 -10.941494 +Torque: -0.053949 0.006132 0.001746 + +Polar angle tht: 0.0873; Azimuth angle phi: 5.0178 +Force: -0.056123 0.162152 -10.943636 +Torque: -0.053270 0.007122 0.002003 + +Polar angle tht: 0.0873; Azimuth angle phi: 5.0615 +Force: -0.063982 0.159941 -10.945748 +Torque: -0.052489 0.008098 0.002245 + +Polar angle tht: 0.0873; Azimuth angle phi: 5.1051 +Force: -0.071751 0.157418 -10.947826 +Torque: -0.051609 0.009058 0.002469 + +Polar angle tht: 0.0873; Azimuth angle phi: 5.1487 +Force: -0.079415 0.154585 -10.949868 +Torque: -0.050630 0.010000 0.002675 + +Polar angle tht: 0.0873; Azimuth angle phi: 5.1924 +Force: -0.086956 0.151449 -10.951868 +Torque: -0.049555 0.010923 0.002860 + +Polar angle tht: 0.0873; Azimuth angle phi: 5.2360 +Force: -0.094359 0.148014 -10.953824 +Torque: -0.048385 0.011824 0.003024 + +Polar angle tht: 0.0873; Azimuth angle phi: 5.2796 +Force: -0.101607 0.144287 -10.955730 +Torque: -0.047123 0.012703 0.003165 + +Polar angle tht: 0.0873; Azimuth angle phi: 5.3233 +Force: -0.108685 0.140273 -10.957585 +Torque: -0.045771 0.013557 0.003281 + +Polar angle tht: 0.0873; Azimuth angle phi: 5.3669 +Force: -0.115575 0.135980 -10.959383 +Torque: -0.044331 0.014384 0.003373 + +Polar angle tht: 0.0873; Azimuth angle phi: 5.4105 +Force: -0.122264 0.131416 -10.961123 +Torque: -0.042807 0.015184 0.003439 + +Polar angle tht: 0.0873; Azimuth angle phi: 5.4542 +Force: -0.128734 0.126589 -10.962800 +Torque: -0.041202 0.015955 0.003479 + +Polar angle tht: 0.0873; Azimuth angle phi: 5.4978 +Force: -0.134972 0.121508 -10.964411 +Torque: -0.039517 0.016696 0.003492 + +Polar angle tht: 0.0873; Azimuth angle phi: 5.5414 +Force: -0.140963 0.116184 -10.965953 +Torque: -0.037758 0.017404 0.003479 + +Polar angle tht: 0.0873; Azimuth angle phi: 5.5851 +Force: -0.146693 0.110625 -10.967424 +Torque: -0.035926 0.018079 0.003439 + +Polar angle tht: 0.0873; Azimuth angle phi: 5.6287 +Force: -0.152149 0.104843 -10.968820 +Torque: -0.034025 0.018720 0.003373 + +Polar angle tht: 0.0873; Azimuth angle phi: 5.6723 +Force: -0.157317 0.098850 -10.970139 +Torque: -0.032060 0.019325 0.003281 + +Polar angle tht: 0.0873; Azimuth angle phi: 5.7160 +Force: -0.162186 0.092656 -10.971378 +Torque: -0.030033 0.019893 0.003165 + +Polar angle tht: 0.0873; Azimuth angle phi: 5.7596 +Force: -0.166743 0.086275 -10.972535 +Torque: -0.027949 0.020423 0.003024 + +Polar angle tht: 0.0873; Azimuth angle phi: 5.8032 +Force: -0.170978 0.079718 -10.973608 +Torque: -0.025812 0.020915 0.002860 + +Polar angle tht: 0.0873; Azimuth angle phi: 5.8469 +Force: -0.174880 0.072999 -10.974594 +Torque: -0.023625 0.021367 0.002675 + +Polar angle tht: 0.0873; Azimuth angle phi: 5.8905 +Force: -0.178440 0.066131 -10.975492 +Torque: -0.021393 0.021778 0.002469 + +Polar angle tht: 0.0873; Azimuth angle phi: 5.9341 +Force: -0.181649 0.059128 -10.976301 +Torque: -0.019120 0.022148 0.002245 + +Polar angle tht: 0.0873; Azimuth angle phi: 5.9778 +Force: -0.184500 0.052004 -10.977018 +Torque: -0.016811 0.022476 0.002003 + +Polar angle tht: 0.0873; Azimuth angle phi: 6.0214 +Force: -0.186985 0.044775 -10.977642 +Torque: -0.014470 0.022762 0.001746 + +Polar angle tht: 0.0873; Azimuth angle phi: 6.0650 +Force: -0.189098 0.037453 -10.978172 +Torque: -0.012100 0.023005 0.001476 + +Polar angle tht: 0.0873; Azimuth angle phi: 6.1087 +Force: -0.190834 0.030055 -10.978607 +Torque: -0.009708 0.023204 0.001194 + +Polar angle tht: 0.0873; Azimuth angle phi: 6.1523 +Force: -0.192189 0.022595 -10.978946 +Torque: -0.007297 0.023359 0.000904 + +Polar angle tht: 0.0873; Azimuth angle phi: 6.1959 +Force: -0.193159 0.015089 -10.979189 +Torque: -0.004873 0.023470 0.000606 + +Polar angle tht: 0.0873; Azimuth angle phi: 6.2396 +Force: -0.193742 0.007552 -10.979335 +Torque: -0.002439 0.023537 0.000304 + +Polar angle tht: 0.0873; Azimuth angle phi: 6.2832 +Force: -0.193936 0.000000 -10.979384 +Torque: -0.000000 0.023559 0.000000 + +Polar angle tht: 0.1309; Azimuth angle phi: 0.0000 +Force: -0.297015 0.000000 -10.904321 +Torque: -0.000000 0.034977 0.000000 + +Polar angle tht: 0.1309; Azimuth angle phi: 0.0436 +Force: -0.296711 -0.011403 -10.904248 +Torque: 0.003637 0.034944 -0.000683 + +Polar angle tht: 0.1309; Azimuth angle phi: 0.0873 +Force: -0.295797 -0.022783 -10.904031 +Torque: 0.007268 0.034846 -0.001360 + +Polar angle tht: 0.1309; Azimuth angle phi: 0.1309 +Force: -0.294276 -0.034113 -10.903669 +Torque: 0.010884 0.034681 -0.002027 + +Polar angle tht: 0.1309; Azimuth angle phi: 0.1745 +Force: -0.292153 -0.045372 -10.903163 +Torque: 0.014480 0.034452 -0.002679 + +Polar angle tht: 0.1309; Azimuth angle phi: 0.2182 +Force: -0.289433 -0.056534 -10.902515 +Torque: 0.018048 0.034158 -0.003310 + +Polar angle tht: 0.1309; Azimuth angle phi: 0.2618 +Force: -0.286125 -0.067577 -10.901724 +Torque: 0.021581 0.033799 -0.003916 + +Polar angle tht: 0.1309; Azimuth angle phi: 0.3054 +Force: -0.282236 -0.078477 -10.900794 +Torque: 0.025073 0.033376 -0.004492 + +Polar angle tht: 0.1309; Azimuth angle phi: 0.3491 +Force: -0.277777 -0.089211 -10.899726 +Torque: 0.028517 0.032891 -0.005034 + +Polar angle tht: 0.1309; Azimuth angle phi: 0.3927 +Force: -0.272760 -0.099756 -10.898521 +Torque: 0.031906 0.032343 -0.005538 + +Polar angle tht: 0.1309; Azimuth angle phi: 0.4363 +Force: -0.267200 -0.110092 -10.897182 +Torque: 0.035235 0.031734 -0.005999 + +Polar angle tht: 0.1309; Azimuth angle phi: 0.4800 +Force: -0.261110 -0.120196 -10.895712 +Torque: 0.038495 0.031066 -0.006415 + +Polar angle tht: 0.1309; Azimuth angle phi: 0.5236 +Force: -0.254507 -0.130048 -10.894113 +Torque: 0.041683 0.030338 -0.006783 + +Polar angle tht: 0.1309; Azimuth angle phi: 0.5672 +Force: -0.247409 -0.139627 -10.892388 +Torque: 0.044790 0.029553 -0.007098 + +Polar angle tht: 0.1309; Azimuth angle phi: 0.6109 +Force: -0.239833 -0.148915 -10.890541 +Torque: 0.047812 0.028711 -0.007359 + +Polar angle tht: 0.1309; Azimuth angle phi: 0.6545 +Force: -0.231801 -0.157892 -10.888575 +Torque: 0.050742 0.027815 -0.007565 + +Polar angle tht: 0.1309; Azimuth angle phi: 0.6981 +Force: -0.223332 -0.166541 -10.886495 +Torque: 0.053575 0.026866 -0.007713 + +Polar angle tht: 0.1309; Azimuth angle phi: 0.7418 +Force: -0.214449 -0.174845 -10.884303 +Torque: 0.056306 0.025866 -0.007802 + +Polar angle tht: 0.1309; Azimuth angle phi: 0.7854 +Force: -0.205174 -0.182788 -10.882004 +Torque: 0.058929 0.024816 -0.007832 + +Polar angle tht: 0.1309; Azimuth angle phi: 0.8290 +Force: -0.195531 -0.190354 -10.879603 +Torque: 0.061439 0.023718 -0.007802 + +Polar angle tht: 0.1309; Azimuth angle phi: 0.8727 +Force: -0.185544 -0.197529 -10.877103 +Torque: 0.063832 0.022575 -0.007713 + +Polar angle tht: 0.1309; Azimuth angle phi: 0.9163 +Force: -0.175237 -0.204300 -10.874511 +Torque: 0.066103 0.021389 -0.007565 + +Polar angle tht: 0.1309; Azimuth angle phi: 0.9599 +Force: -0.164636 -0.210655 -10.871830 +Torque: 0.068248 0.020160 -0.007359 + +Polar angle tht: 0.1309; Azimuth angle phi: 1.0036 +Force: -0.153767 -0.216581 -10.869066 +Torque: 0.070262 0.018893 -0.007098 + +Polar angle tht: 0.1309; Azimuth angle phi: 1.0472 +Force: -0.142656 -0.222069 -10.866224 +Torque: 0.072142 0.017589 -0.006783 + +Polar angle tht: 0.1309; Azimuth angle phi: 1.0908 +Force: -0.131329 -0.227110 -10.863309 +Torque: 0.073884 0.016251 -0.006415 + +Polar angle tht: 0.1309; Azimuth angle phi: 1.1345 +Force: -0.119813 -0.231695 -10.860328 +Torque: 0.075485 0.014880 -0.005999 + +Polar angle tht: 0.1309; Azimuth angle phi: 1.1781 +Force: -0.108134 -0.235817 -10.857285 +Torque: 0.076943 0.013480 -0.005538 + +Polar angle tht: 0.1309; Azimuth angle phi: 1.2217 +Force: -0.096318 -0.239470 -10.854187 +Torque: 0.078253 0.012053 -0.005034 + +Polar angle tht: 0.1309; Azimuth angle phi: 1.2654 +Force: -0.084392 -0.242649 -10.851039 +Torque: 0.079414 0.010602 -0.004492 + +Polar angle tht: 0.1309; Azimuth angle phi: 1.3090 +Force: -0.072383 -0.245349 -10.847847 +Torque: 0.080424 0.009130 -0.003916 + +Polar angle tht: 0.1309; Azimuth angle phi: 1.3526 +Force: -0.060316 -0.247568 -10.844618 +Torque: 0.081280 0.007639 -0.003310 + +Polar angle tht: 0.1309; Azimuth angle phi: 1.3963 +Force: -0.048218 -0.249304 -10.841358 +Torque: 0.081981 0.006131 -0.002679 + +Polar angle tht: 0.1309; Azimuth angle phi: 1.4399 +Force: -0.036112 -0.250555 -10.838072 +Torque: 0.082526 0.004611 -0.002027 + +Polar angle tht: 0.1309; Azimuth angle phi: 1.4835 +Force: -0.024024 -0.251322 -10.834768 +Torque: 0.082914 0.003080 -0.001360 + +Polar angle tht: 0.1309; Azimuth angle phi: 1.5272 +Force: -0.011979 -0.251606 -10.831450 +Torque: 0.083144 0.001542 -0.000683 + +Polar angle tht: 0.1309; Azimuth angle phi: 1.5708 +Force: 0.000000 -0.251408 -10.828127 +Torque: 0.083216 -0.000000 0.000000 + +Polar angle tht: 0.1309; Azimuth angle phi: 1.6144 +Force: 0.011979 -0.251606 -10.831450 +Torque: 0.083144 -0.001542 0.000683 + +Polar angle tht: 0.1309; Azimuth angle phi: 1.6581 +Force: 0.024024 -0.251322 -10.834768 +Torque: 0.082914 -0.003080 0.001360 + +Polar angle tht: 0.1309; Azimuth angle phi: 1.7017 +Force: 0.036112 -0.250555 -10.838072 +Torque: 0.082526 -0.004611 0.002027 + +Polar angle tht: 0.1309; Azimuth angle phi: 1.7453 +Force: 0.048218 -0.249304 -10.841358 +Torque: 0.081981 -0.006131 0.002679 + +Polar angle tht: 0.1309; Azimuth angle phi: 1.7890 +Force: 0.060316 -0.247568 -10.844618 +Torque: 0.081280 -0.007639 0.003310 + +Polar angle tht: 0.1309; Azimuth angle phi: 1.8326 +Force: 0.072383 -0.245349 -10.847847 +Torque: 0.080424 -0.009130 0.003916 + +Polar angle tht: 0.1309; Azimuth angle phi: 1.8762 +Force: 0.084392 -0.242649 -10.851039 +Torque: 0.079414 -0.010602 0.004492 + +Polar angle tht: 0.1309; Azimuth angle phi: 1.9199 +Force: 0.096318 -0.239470 -10.854187 +Torque: 0.078253 -0.012053 0.005034 + +Polar angle tht: 0.1309; Azimuth angle phi: 1.9635 +Force: 0.108134 -0.235817 -10.857285 +Torque: 0.076943 -0.013480 0.005538 + +Polar angle tht: 0.1309; Azimuth angle phi: 2.0071 +Force: 0.119813 -0.231695 -10.860328 +Torque: 0.075485 -0.014880 0.005999 + +Polar angle tht: 0.1309; Azimuth angle phi: 2.0508 +Force: 0.131329 -0.227110 -10.863309 +Torque: 0.073884 -0.016251 0.006415 + +Polar angle tht: 0.1309; Azimuth angle phi: 2.0944 +Force: 0.142656 -0.222069 -10.866224 +Torque: 0.072142 -0.017589 0.006783 + +Polar angle tht: 0.1309; Azimuth angle phi: 2.1380 +Force: 0.153767 -0.216581 -10.869066 +Torque: 0.070262 -0.018893 0.007098 + +Polar angle tht: 0.1309; Azimuth angle phi: 2.1817 +Force: 0.164636 -0.210655 -10.871830 +Torque: 0.068248 -0.020160 0.007359 + +Polar angle tht: 0.1309; Azimuth angle phi: 2.2253 +Force: 0.175237 -0.204300 -10.874511 +Torque: 0.066103 -0.021389 0.007565 + +Polar angle tht: 0.1309; Azimuth angle phi: 2.2689 +Force: 0.185544 -0.197529 -10.877103 +Torque: 0.063832 -0.022575 0.007713 + +Polar angle tht: 0.1309; Azimuth angle phi: 2.3126 +Force: 0.195531 -0.190354 -10.879603 +Torque: 0.061439 -0.023718 0.007802 + +Polar angle tht: 0.1309; Azimuth angle phi: 2.3562 +Force: 0.205174 -0.182788 -10.882004 +Torque: 0.058929 -0.024816 0.007832 + +Polar angle tht: 0.1309; Azimuth angle phi: 2.3998 +Force: 0.214449 -0.174845 -10.884303 +Torque: 0.056306 -0.025866 0.007802 + +Polar angle tht: 0.1309; Azimuth angle phi: 2.4435 +Force: 0.223332 -0.166541 -10.886495 +Torque: 0.053575 -0.026866 0.007713 + +Polar angle tht: 0.1309; Azimuth angle phi: 2.4871 +Force: 0.231801 -0.157892 -10.888575 +Torque: 0.050742 -0.027815 0.007565 + +Polar angle tht: 0.1309; Azimuth angle phi: 2.5307 +Force: 0.239833 -0.148915 -10.890541 +Torque: 0.047812 -0.028711 0.007359 + +Polar angle tht: 0.1309; Azimuth angle phi: 2.5744 +Force: 0.247409 -0.139627 -10.892388 +Torque: 0.044790 -0.029553 0.007098 + +Polar angle tht: 0.1309; Azimuth angle phi: 2.6180 +Force: 0.254507 -0.130048 -10.894113 +Torque: 0.041683 -0.030338 0.006783 + +Polar angle tht: 0.1309; Azimuth angle phi: 2.6616 +Force: 0.261110 -0.120196 -10.895712 +Torque: 0.038495 -0.031066 0.006415 + +Polar angle tht: 0.1309; Azimuth angle phi: 2.7053 +Force: 0.267200 -0.110092 -10.897182 +Torque: 0.035235 -0.031734 0.005999 + +Polar angle tht: 0.1309; Azimuth angle phi: 2.7489 +Force: 0.272760 -0.099756 -10.898521 +Torque: 0.031906 -0.032343 0.005538 + +Polar angle tht: 0.1309; Azimuth angle phi: 2.7925 +Force: 0.277777 -0.089211 -10.899726 +Torque: 0.028517 -0.032891 0.005034 + +Polar angle tht: 0.1309; Azimuth angle phi: 2.8362 +Force: 0.282236 -0.078477 -10.900794 +Torque: 0.025073 -0.033376 0.004492 + +Polar angle tht: 0.1309; Azimuth angle phi: 2.8798 +Force: 0.286125 -0.067577 -10.901724 +Torque: 0.021581 -0.033799 0.003916 + +Polar angle tht: 0.1309; Azimuth angle phi: 2.9234 +Force: 0.289433 -0.056534 -10.902515 +Torque: 0.018048 -0.034158 0.003310 + +Polar angle tht: 0.1309; Azimuth angle phi: 2.9671 +Force: 0.292153 -0.045372 -10.903163 +Torque: 0.014480 -0.034452 0.002679 + +Polar angle tht: 0.1309; Azimuth angle phi: 3.0107 +Force: 0.294276 -0.034113 -10.903669 +Torque: 0.010884 -0.034681 0.002027 + +Polar angle tht: 0.1309; Azimuth angle phi: 3.0543 +Force: 0.295797 -0.022783 -10.904031 +Torque: 0.007268 -0.034846 0.001360 + +Polar angle tht: 0.1309; Azimuth angle phi: 3.0980 +Force: 0.296711 -0.011403 -10.904248 +Torque: 0.003637 -0.034944 0.000683 + +Polar angle tht: 0.1309; Azimuth angle phi: 3.1416 +Force: 0.297015 0.000000 -10.904321 +Torque: -0.000000 -0.034977 -0.000000 + +Polar angle tht: 0.1309; Azimuth angle phi: 3.1852 +Force: 0.296711 0.011403 -10.904248 +Torque: -0.003637 -0.034944 -0.000683 + +Polar angle tht: 0.1309; Azimuth angle phi: 3.2289 +Force: 0.295797 0.022783 -10.904031 +Torque: -0.007268 -0.034846 -0.001360 + +Polar angle tht: 0.1309; Azimuth angle phi: 3.2725 +Force: 0.294276 0.034113 -10.903669 +Torque: -0.010884 -0.034681 -0.002027 + +Polar angle tht: 0.1309; Azimuth angle phi: 3.3161 +Force: 0.292153 0.045372 -10.903163 +Torque: -0.014480 -0.034452 -0.002679 + +Polar angle tht: 0.1309; Azimuth angle phi: 3.3598 +Force: 0.289433 0.056534 -10.902515 +Torque: -0.018048 -0.034158 -0.003310 + +Polar angle tht: 0.1309; Azimuth angle phi: 3.4034 +Force: 0.286125 0.067577 -10.901724 +Torque: -0.021581 -0.033799 -0.003916 + +Polar angle tht: 0.1309; Azimuth angle phi: 3.4470 +Force: 0.282236 0.078477 -10.900794 +Torque: -0.025073 -0.033376 -0.004492 + +Polar angle tht: 0.1309; Azimuth angle phi: 3.4907 +Force: 0.277777 0.089211 -10.899726 +Torque: -0.028517 -0.032891 -0.005034 + +Polar angle tht: 0.1309; Azimuth angle phi: 3.5343 +Force: 0.272760 0.099756 -10.898521 +Torque: -0.031906 -0.032343 -0.005538 + +Polar angle tht: 0.1309; Azimuth angle phi: 3.5779 +Force: 0.267200 0.110092 -10.897182 +Torque: -0.035235 -0.031734 -0.005999 + +Polar angle tht: 0.1309; Azimuth angle phi: 3.6216 +Force: 0.261110 0.120196 -10.895712 +Torque: -0.038495 -0.031066 -0.006415 + +Polar angle tht: 0.1309; Azimuth angle phi: 3.6652 +Force: 0.254507 0.130048 -10.894113 +Torque: -0.041683 -0.030338 -0.006783 + +Polar angle tht: 0.1309; Azimuth angle phi: 3.7088 +Force: 0.247409 0.139627 -10.892388 +Torque: -0.044790 -0.029553 -0.007098 + +Polar angle tht: 0.1309; Azimuth angle phi: 3.7525 +Force: 0.239833 0.148915 -10.890541 +Torque: -0.047812 -0.028711 -0.007359 + +Polar angle tht: 0.1309; Azimuth angle phi: 3.7961 +Force: 0.231801 0.157892 -10.888575 +Torque: -0.050742 -0.027815 -0.007565 + +Polar angle tht: 0.1309; Azimuth angle phi: 3.8397 +Force: 0.223332 0.166541 -10.886495 +Torque: -0.053575 -0.026866 -0.007713 + +Polar angle tht: 0.1309; Azimuth angle phi: 3.8834 +Force: 0.214449 0.174845 -10.884303 +Torque: -0.056306 -0.025866 -0.007802 + +Polar angle tht: 0.1309; Azimuth angle phi: 3.9270 +Force: 0.205174 0.182788 -10.882004 +Torque: -0.058929 -0.024816 -0.007832 + +Polar angle tht: 0.1309; Azimuth angle phi: 3.9706 +Force: 0.195531 0.190354 -10.879603 +Torque: -0.061439 -0.023718 -0.007802 + +Polar angle tht: 0.1309; Azimuth angle phi: 4.0143 +Force: 0.185544 0.197529 -10.877103 +Torque: -0.063832 -0.022575 -0.007713 + +Polar angle tht: 0.1309; Azimuth angle phi: 4.0579 +Force: 0.175237 0.204300 -10.874511 +Torque: -0.066103 -0.021389 -0.007565 + +Polar angle tht: 0.1309; Azimuth angle phi: 4.1015 +Force: 0.164636 0.210655 -10.871830 +Torque: -0.068248 -0.020160 -0.007359 + +Polar angle tht: 0.1309; Azimuth angle phi: 4.1452 +Force: 0.153767 0.216581 -10.869066 +Torque: -0.070262 -0.018893 -0.007098 + +Polar angle tht: 0.1309; Azimuth angle phi: 4.1888 +Force: 0.142656 0.222069 -10.866224 +Torque: -0.072142 -0.017589 -0.006783 + +Polar angle tht: 0.1309; Azimuth angle phi: 4.2324 +Force: 0.131329 0.227110 -10.863309 +Torque: -0.073884 -0.016251 -0.006415 + +Polar angle tht: 0.1309; Azimuth angle phi: 4.2761 +Force: 0.119813 0.231695 -10.860328 +Torque: -0.075485 -0.014880 -0.005999 + +Polar angle tht: 0.1309; Azimuth angle phi: 4.3197 +Force: 0.108134 0.235817 -10.857285 +Torque: -0.076943 -0.013480 -0.005538 + +Polar angle tht: 0.1309; Azimuth angle phi: 4.3633 +Force: 0.096318 0.239470 -10.854187 +Torque: -0.078253 -0.012053 -0.005034 + +Polar angle tht: 0.1309; Azimuth angle phi: 4.4070 +Force: 0.084392 0.242649 -10.851039 +Torque: -0.079414 -0.010602 -0.004492 + +Polar angle tht: 0.1309; Azimuth angle phi: 4.4506 +Force: 0.072383 0.245349 -10.847847 +Torque: -0.080424 -0.009130 -0.003916 + +Polar angle tht: 0.1309; Azimuth angle phi: 4.4942 +Force: 0.060316 0.247568 -10.844618 +Torque: -0.081280 -0.007639 -0.003310 + +Polar angle tht: 0.1309; Azimuth angle phi: 4.5379 +Force: 0.048218 0.249304 -10.841358 +Torque: -0.081981 -0.006131 -0.002679 + +Polar angle tht: 0.1309; Azimuth angle phi: 4.5815 +Force: 0.036112 0.250555 -10.838072 +Torque: -0.082526 -0.004611 -0.002027 + +Polar angle tht: 0.1309; Azimuth angle phi: 4.6251 +Force: 0.024024 0.251322 -10.834768 +Torque: -0.082914 -0.003080 -0.001360 + +Polar angle tht: 0.1309; Azimuth angle phi: 4.6688 +Force: 0.011979 0.251606 -10.831450 +Torque: -0.083144 -0.001542 -0.000683 + +Polar angle tht: 0.1309; Azimuth angle phi: 4.7124 +Force: 0.000000 0.251408 -10.828127 +Torque: -0.083216 -0.000000 -0.000000 + +Polar angle tht: 0.1309; Azimuth angle phi: 4.7560 +Force: -0.011979 0.251606 -10.831450 +Torque: -0.083144 0.001542 0.000683 + +Polar angle tht: 0.1309; Azimuth angle phi: 4.7997 +Force: -0.024024 0.251322 -10.834768 +Torque: -0.082914 0.003080 0.001360 + +Polar angle tht: 0.1309; Azimuth angle phi: 4.8433 +Force: -0.036112 0.250555 -10.838072 +Torque: -0.082526 0.004611 0.002027 + +Polar angle tht: 0.1309; Azimuth angle phi: 4.8869 +Force: -0.048218 0.249304 -10.841358 +Torque: -0.081981 0.006131 0.002679 + +Polar angle tht: 0.1309; Azimuth angle phi: 4.9306 +Force: -0.060316 0.247568 -10.844618 +Torque: -0.081280 0.007639 0.003310 + +Polar angle tht: 0.1309; Azimuth angle phi: 4.9742 +Force: -0.072383 0.245349 -10.847847 +Torque: -0.080424 0.009130 0.003916 + +Polar angle tht: 0.1309; Azimuth angle phi: 5.0178 +Force: -0.084392 0.242649 -10.851039 +Torque: -0.079414 0.010602 0.004492 + +Polar angle tht: 0.1309; Azimuth angle phi: 5.0615 +Force: -0.096318 0.239470 -10.854187 +Torque: -0.078253 0.012053 0.005034 + +Polar angle tht: 0.1309; Azimuth angle phi: 5.1051 +Force: -0.108134 0.235817 -10.857285 +Torque: -0.076943 0.013480 0.005538 + +Polar angle tht: 0.1309; Azimuth angle phi: 5.1487 +Force: -0.119813 0.231695 -10.860328 +Torque: -0.075485 0.014880 0.005999 + +Polar angle tht: 0.1309; Azimuth angle phi: 5.1924 +Force: -0.131329 0.227110 -10.863309 +Torque: -0.073884 0.016251 0.006415 + +Polar angle tht: 0.1309; Azimuth angle phi: 5.2360 +Force: -0.142656 0.222069 -10.866224 +Torque: -0.072142 0.017589 0.006783 + +Polar angle tht: 0.1309; Azimuth angle phi: 5.2796 +Force: -0.153767 0.216581 -10.869066 +Torque: -0.070262 0.018893 0.007098 + +Polar angle tht: 0.1309; Azimuth angle phi: 5.3233 +Force: -0.164636 0.210655 -10.871830 +Torque: -0.068248 0.020160 0.007359 + +Polar angle tht: 0.1309; Azimuth angle phi: 5.3669 +Force: -0.175237 0.204300 -10.874511 +Torque: -0.066103 0.021389 0.007565 + +Polar angle tht: 0.1309; Azimuth angle phi: 5.4105 +Force: -0.185544 0.197529 -10.877103 +Torque: -0.063832 0.022575 0.007713 + +Polar angle tht: 0.1309; Azimuth angle phi: 5.4542 +Force: -0.195531 0.190354 -10.879603 +Torque: -0.061439 0.023718 0.007802 + +Polar angle tht: 0.1309; Azimuth angle phi: 5.4978 +Force: -0.205174 0.182788 -10.882004 +Torque: -0.058929 0.024816 0.007832 + +Polar angle tht: 0.1309; Azimuth angle phi: 5.5414 +Force: -0.214449 0.174845 -10.884303 +Torque: -0.056306 0.025866 0.007802 + +Polar angle tht: 0.1309; Azimuth angle phi: 5.5851 +Force: -0.223332 0.166541 -10.886495 +Torque: -0.053575 0.026866 0.007713 + +Polar angle tht: 0.1309; Azimuth angle phi: 5.6287 +Force: -0.231801 0.157892 -10.888575 +Torque: -0.050742 0.027815 0.007565 + +Polar angle tht: 0.1309; Azimuth angle phi: 5.6723 +Force: -0.239833 0.148915 -10.890541 +Torque: -0.047812 0.028711 0.007359 + +Polar angle tht: 0.1309; Azimuth angle phi: 5.7160 +Force: -0.247409 0.139627 -10.892388 +Torque: -0.044790 0.029553 0.007098 + +Polar angle tht: 0.1309; Azimuth angle phi: 5.7596 +Force: -0.254507 0.130048 -10.894113 +Torque: -0.041683 0.030338 0.006783 + +Polar angle tht: 0.1309; Azimuth angle phi: 5.8032 +Force: -0.261110 0.120196 -10.895712 +Torque: -0.038495 0.031066 0.006415 + +Polar angle tht: 0.1309; Azimuth angle phi: 5.8469 +Force: -0.267200 0.110092 -10.897182 +Torque: -0.035235 0.031734 0.005999 + +Polar angle tht: 0.1309; Azimuth angle phi: 5.8905 +Force: -0.272760 0.099756 -10.898521 +Torque: -0.031906 0.032343 0.005538 + +Polar angle tht: 0.1309; Azimuth angle phi: 5.9341 +Force: -0.277777 0.089211 -10.899726 +Torque: -0.028517 0.032891 0.005034 + +Polar angle tht: 0.1309; Azimuth angle phi: 5.9778 +Force: -0.282236 0.078477 -10.900794 +Torque: -0.025073 0.033376 0.004492 + +Polar angle tht: 0.1309; Azimuth angle phi: 6.0214 +Force: -0.286125 0.067577 -10.901724 +Torque: -0.021581 0.033799 0.003916 + +Polar angle tht: 0.1309; Azimuth angle phi: 6.0650 +Force: -0.289433 0.056534 -10.902515 +Torque: -0.018048 0.034158 0.003310 + +Polar angle tht: 0.1309; Azimuth angle phi: 6.1087 +Force: -0.292153 0.045372 -10.903163 +Torque: -0.014480 0.034452 0.002679 + +Polar angle tht: 0.1309; Azimuth angle phi: 6.1523 +Force: -0.294276 0.034113 -10.903669 +Torque: -0.010884 0.034681 0.002027 + +Polar angle tht: 0.1309; Azimuth angle phi: 6.1959 +Force: -0.295797 0.022783 -10.904031 +Torque: -0.007268 0.034846 0.001360 + +Polar angle tht: 0.1309; Azimuth angle phi: 6.2396 +Force: -0.296711 0.011403 -10.904248 +Torque: -0.003637 0.034944 0.000683 + +Polar angle tht: 0.1309; Azimuth angle phi: 6.2832 +Force: -0.297015 0.000000 -10.904321 +Torque: -0.000000 0.034977 0.000000 + +Polar angle tht: 0.1745; Azimuth angle phi: 0.0000 +Force: -0.403189 0.000000 -10.789661 +Torque: -0.000000 0.046038 0.000000 + +Polar angle tht: 0.1745; Azimuth angle phi: 0.0436 +Force: -0.402766 -0.015265 -10.789565 +Torque: 0.004810 0.045994 -0.001208 + +Polar angle tht: 0.1745; Azimuth angle phi: 0.0873 +Force: -0.401497 -0.030497 -10.789278 +Torque: 0.009611 0.045865 -0.002407 + +Polar angle tht: 0.1745; Azimuth angle phi: 0.1309 +Force: -0.399388 -0.045662 -10.788799 +Torque: 0.014393 0.045650 -0.003588 + +Polar angle tht: 0.1745; Azimuth angle phi: 0.1745 +Force: -0.396444 -0.060727 -10.788131 +Torque: 0.019148 0.045349 -0.004741 + +Polar angle tht: 0.1745; Azimuth angle phi: 0.2182 +Force: -0.392673 -0.075659 -10.787274 +Torque: 0.023866 0.044963 -0.005858 + +Polar angle tht: 0.1745; Azimuth angle phi: 0.2618 +Force: -0.388087 -0.090425 -10.786230 +Torque: 0.028538 0.044492 -0.006931 + +Polar angle tht: 0.1745; Azimuth angle phi: 0.3054 +Force: -0.382699 -0.104994 -10.785001 +Torque: 0.033155 0.043938 -0.007951 + +Polar angle tht: 0.1745; Azimuth angle phi: 0.3491 +Force: -0.376526 -0.119334 -10.783589 +Torque: 0.037709 0.043302 -0.008910 + +Polar angle tht: 0.1745; Azimuth angle phi: 0.3927 +Force: -0.369585 -0.133415 -10.781996 +Torque: 0.042190 0.042583 -0.009801 + +Polar angle tht: 0.1745; Azimuth angle phi: 0.4363 +Force: -0.361896 -0.147205 -10.780227 +Torque: 0.046591 0.041785 -0.010618 + +Polar angle tht: 0.1745; Azimuth angle phi: 0.4800 +Force: -0.353481 -0.160677 -10.778284 +Torque: 0.050902 0.040907 -0.011355 + +Polar angle tht: 0.1745; Azimuth angle phi: 0.5236 +Force: -0.344365 -0.173801 -10.776171 +Torque: 0.055116 0.039952 -0.012004 + +Polar angle tht: 0.1745; Azimuth angle phi: 0.5672 +Force: -0.334574 -0.186551 -10.773892 +Torque: 0.059223 0.038922 -0.012563 + +Polar angle tht: 0.1745; Azimuth angle phi: 0.6109 +Force: -0.324136 -0.198899 -10.771452 +Torque: 0.063218 0.037817 -0.013025 + +Polar angle tht: 0.1745; Azimuth angle phi: 0.6545 +Force: -0.313080 -0.210821 -10.768854 +Torque: 0.067091 0.036641 -0.013389 + +Polar angle tht: 0.1745; Azimuth angle phi: 0.6981 +Force: -0.301436 -0.222293 -10.766105 +Torque: 0.070836 0.035394 -0.013651 + +Polar angle tht: 0.1745; Azimuth angle phi: 0.7418 +Force: -0.289238 -0.233292 -10.763208 +Torque: 0.074445 0.034080 -0.013809 + +Polar angle tht: 0.1745; Azimuth angle phi: 0.7854 +Force: -0.276518 -0.243797 -10.760170 +Torque: 0.077911 0.032701 -0.013861 + +Polar angle tht: 0.1745; Azimuth angle phi: 0.8290 +Force: -0.263311 -0.253787 -10.756997 +Torque: 0.081228 0.031258 -0.013809 + +Polar angle tht: 0.1745; Azimuth angle phi: 0.8727 +Force: -0.249653 -0.263243 -10.753694 +Torque: 0.084390 0.029756 -0.013651 + +Polar angle tht: 0.1745; Azimuth angle phi: 0.9163 +Force: -0.235579 -0.272148 -10.750268 +Torque: 0.087390 0.028195 -0.013389 + +Polar angle tht: 0.1745; Azimuth angle phi: 0.9599 +Force: -0.221127 -0.280486 -10.746725 +Torque: 0.090223 0.026580 -0.013025 + +Polar angle tht: 0.1745; Azimuth angle phi: 1.0036 +Force: -0.206334 -0.288243 -10.743073 +Torque: 0.092883 0.024913 -0.012563 + +Polar angle tht: 0.1745; Azimuth angle phi: 1.0472 +Force: -0.191238 -0.295405 -10.739317 +Torque: 0.095366 0.023197 -0.012004 + +Polar angle tht: 0.1745; Azimuth angle phi: 1.0908 +Force: -0.175876 -0.301960 -10.735466 +Torque: 0.097667 0.021435 -0.011355 + +Polar angle tht: 0.1745; Azimuth angle phi: 1.1345 +Force: -0.160287 -0.307900 -10.731526 +Torque: 0.099781 0.019630 -0.010618 + +Polar angle tht: 0.1745; Azimuth angle phi: 1.1781 +Force: -0.144507 -0.313215 -10.727505 +Torque: 0.101704 0.017786 -0.009801 + +Polar angle tht: 0.1745; Azimuth angle phi: 1.2217 +Force: -0.128576 -0.317897 -10.723411 +Torque: 0.103433 0.015906 -0.008910 + +Polar angle tht: 0.1745; Azimuth angle phi: 1.2654 +Force: -0.112530 -0.321942 -10.719251 +Torque: 0.104965 0.013993 -0.007951 + +Polar angle tht: 0.1745; Azimuth angle phi: 1.3090 +Force: -0.096406 -0.325345 -10.715033 +Torque: 0.106296 0.012052 -0.006931 + +Polar angle tht: 0.1745; Azimuth angle phi: 1.3526 +Force: -0.080240 -0.328103 -10.710766 +Torque: 0.107425 0.010085 -0.005858 + +Polar angle tht: 0.1745; Azimuth angle phi: 1.3963 +Force: -0.064069 -0.330216 -10.706458 +Torque: 0.108349 0.008096 -0.004741 + +Polar angle tht: 0.1745; Azimuth angle phi: 1.4399 +Force: -0.047925 -0.331682 -10.702116 +Torque: 0.109066 0.006090 -0.003588 + +Polar angle tht: 0.1745; Azimuth angle phi: 1.4835 +Force: -0.031844 -0.332504 -10.697749 +Torque: 0.109575 0.004069 -0.002407 + +Polar angle tht: 0.1745; Azimuth angle phi: 1.5272 +Force: -0.015859 -0.332684 -10.693365 +Torque: 0.109876 0.002038 -0.001208 + +Polar angle tht: 0.1745; Azimuth angle phi: 1.5708 +Force: 0.000000 -0.332227 -10.688974 +Torque: 0.109967 -0.000000 0.000000 + +Polar angle tht: 0.1745; Azimuth angle phi: 1.6144 +Force: 0.015859 -0.332684 -10.693365 +Torque: 0.109876 -0.002038 0.001208 + +Polar angle tht: 0.1745; Azimuth angle phi: 1.6581 +Force: 0.031844 -0.332504 -10.697749 +Torque: 0.109575 -0.004069 0.002407 + +Polar angle tht: 0.1745; Azimuth angle phi: 1.7017 +Force: 0.047925 -0.331682 -10.702116 +Torque: 0.109066 -0.006090 0.003588 + +Polar angle tht: 0.1745; Azimuth angle phi: 1.7453 +Force: 0.064069 -0.330216 -10.706458 +Torque: 0.108349 -0.008096 0.004741 + +Polar angle tht: 0.1745; Azimuth angle phi: 1.7890 +Force: 0.080240 -0.328103 -10.710766 +Torque: 0.107425 -0.010085 0.005858 + +Polar angle tht: 0.1745; Azimuth angle phi: 1.8326 +Force: 0.096406 -0.325345 -10.715033 +Torque: 0.106296 -0.012052 0.006931 + +Polar angle tht: 0.1745; Azimuth angle phi: 1.8762 +Force: 0.112530 -0.321942 -10.719251 +Torque: 0.104965 -0.013993 0.007951 + +Polar angle tht: 0.1745; Azimuth angle phi: 1.9199 +Force: 0.128576 -0.317897 -10.723411 +Torque: 0.103433 -0.015906 0.008910 + +Polar angle tht: 0.1745; Azimuth angle phi: 1.9635 +Force: 0.144507 -0.313215 -10.727505 +Torque: 0.101704 -0.017786 0.009801 + +Polar angle tht: 0.1745; Azimuth angle phi: 2.0071 +Force: 0.160287 -0.307900 -10.731526 +Torque: 0.099781 -0.019630 0.010618 + +Polar angle tht: 0.1745; Azimuth angle phi: 2.0508 +Force: 0.175876 -0.301960 -10.735466 +Torque: 0.097667 -0.021435 0.011355 + +Polar angle tht: 0.1745; Azimuth angle phi: 2.0944 +Force: 0.191238 -0.295405 -10.739317 +Torque: 0.095366 -0.023197 0.012004 + +Polar angle tht: 0.1745; Azimuth angle phi: 2.1380 +Force: 0.206334 -0.288243 -10.743073 +Torque: 0.092883 -0.024913 0.012563 + +Polar angle tht: 0.1745; Azimuth angle phi: 2.1817 +Force: 0.221127 -0.280486 -10.746725 +Torque: 0.090223 -0.026580 0.013025 + +Polar angle tht: 0.1745; Azimuth angle phi: 2.2253 +Force: 0.235579 -0.272148 -10.750268 +Torque: 0.087390 -0.028195 0.013389 + +Polar angle tht: 0.1745; Azimuth angle phi: 2.2689 +Force: 0.249653 -0.263243 -10.753694 +Torque: 0.084390 -0.029756 0.013651 + +Polar angle tht: 0.1745; Azimuth angle phi: 2.3126 +Force: 0.263311 -0.253787 -10.756997 +Torque: 0.081228 -0.031258 0.013809 + +Polar angle tht: 0.1745; Azimuth angle phi: 2.3562 +Force: 0.276518 -0.243797 -10.760170 +Torque: 0.077911 -0.032701 0.013861 + +Polar angle tht: 0.1745; Azimuth angle phi: 2.3998 +Force: 0.289238 -0.233292 -10.763208 +Torque: 0.074445 -0.034080 0.013809 + +Polar angle tht: 0.1745; Azimuth angle phi: 2.4435 +Force: 0.301436 -0.222293 -10.766105 +Torque: 0.070836 -0.035394 0.013651 + +Polar angle tht: 0.1745; Azimuth angle phi: 2.4871 +Force: 0.313080 -0.210821 -10.768854 +Torque: 0.067091 -0.036641 0.013389 + +Polar angle tht: 0.1745; Azimuth angle phi: 2.5307 +Force: 0.324136 -0.198899 -10.771452 +Torque: 0.063218 -0.037817 0.013025 + +Polar angle tht: 0.1745; Azimuth angle phi: 2.5744 +Force: 0.334574 -0.186551 -10.773892 +Torque: 0.059223 -0.038922 0.012563 + +Polar angle tht: 0.1745; Azimuth angle phi: 2.6180 +Force: 0.344365 -0.173801 -10.776171 +Torque: 0.055116 -0.039952 0.012004 + +Polar angle tht: 0.1745; Azimuth angle phi: 2.6616 +Force: 0.353481 -0.160677 -10.778284 +Torque: 0.050902 -0.040907 0.011355 + +Polar angle tht: 0.1745; Azimuth angle phi: 2.7053 +Force: 0.361896 -0.147205 -10.780227 +Torque: 0.046591 -0.041785 0.010618 + +Polar angle tht: 0.1745; Azimuth angle phi: 2.7489 +Force: 0.369585 -0.133415 -10.781996 +Torque: 0.042190 -0.042583 0.009801 + +Polar angle tht: 0.1745; Azimuth angle phi: 2.7925 +Force: 0.376526 -0.119334 -10.783589 +Torque: 0.037709 -0.043302 0.008910 + +Polar angle tht: 0.1745; Azimuth angle phi: 2.8362 +Force: 0.382699 -0.104994 -10.785001 +Torque: 0.033155 -0.043938 0.007951 + +Polar angle tht: 0.1745; Azimuth angle phi: 2.8798 +Force: 0.388087 -0.090425 -10.786230 +Torque: 0.028538 -0.044492 0.006931 + +Polar angle tht: 0.1745; Azimuth angle phi: 2.9234 +Force: 0.392673 -0.075659 -10.787274 +Torque: 0.023866 -0.044963 0.005858 + +Polar angle tht: 0.1745; Azimuth angle phi: 2.9671 +Force: 0.396444 -0.060727 -10.788131 +Torque: 0.019148 -0.045349 0.004741 + +Polar angle tht: 0.1745; Azimuth angle phi: 3.0107 +Force: 0.399388 -0.045662 -10.788799 +Torque: 0.014393 -0.045650 0.003588 + +Polar angle tht: 0.1745; Azimuth angle phi: 3.0543 +Force: 0.401497 -0.030497 -10.789278 +Torque: 0.009611 -0.045865 0.002407 + +Polar angle tht: 0.1745; Azimuth angle phi: 3.0980 +Force: 0.402766 -0.015265 -10.789565 +Torque: 0.004810 -0.045994 0.001208 + +Polar angle tht: 0.1745; Azimuth angle phi: 3.1416 +Force: 0.403189 0.000000 -10.789661 +Torque: -0.000000 -0.046038 -0.000000 + +Polar angle tht: 0.1745; Azimuth angle phi: 3.1852 +Force: 0.402766 0.015265 -10.789565 +Torque: -0.004810 -0.045994 -0.001208 + +Polar angle tht: 0.1745; Azimuth angle phi: 3.2289 +Force: 0.401497 0.030497 -10.789278 +Torque: -0.009611 -0.045865 -0.002407 + +Polar angle tht: 0.1745; Azimuth angle phi: 3.2725 +Force: 0.399388 0.045662 -10.788799 +Torque: -0.014393 -0.045650 -0.003588 + +Polar angle tht: 0.1745; Azimuth angle phi: 3.3161 +Force: 0.396444 0.060727 -10.788131 +Torque: -0.019148 -0.045349 -0.004741 + +Polar angle tht: 0.1745; Azimuth angle phi: 3.3598 +Force: 0.392673 0.075659 -10.787274 +Torque: -0.023866 -0.044963 -0.005858 + +Polar angle tht: 0.1745; Azimuth angle phi: 3.4034 +Force: 0.388087 0.090425 -10.786230 +Torque: -0.028538 -0.044492 -0.006931 + +Polar angle tht: 0.1745; Azimuth angle phi: 3.4470 +Force: 0.382699 0.104994 -10.785001 +Torque: -0.033155 -0.043938 -0.007951 + +Polar angle tht: 0.1745; Azimuth angle phi: 3.4907 +Force: 0.376526 0.119334 -10.783589 +Torque: -0.037709 -0.043302 -0.008910 + +Polar angle tht: 0.1745; Azimuth angle phi: 3.5343 +Force: 0.369585 0.133415 -10.781996 +Torque: -0.042190 -0.042583 -0.009801 + +Polar angle tht: 0.1745; Azimuth angle phi: 3.5779 +Force: 0.361896 0.147205 -10.780227 +Torque: -0.046591 -0.041785 -0.010618 + +Polar angle tht: 0.1745; Azimuth angle phi: 3.6216 +Force: 0.353481 0.160677 -10.778284 +Torque: -0.050902 -0.040907 -0.011355 + +Polar angle tht: 0.1745; Azimuth angle phi: 3.6652 +Force: 0.344365 0.173801 -10.776171 +Torque: -0.055116 -0.039952 -0.012004 + +Polar angle tht: 0.1745; Azimuth angle phi: 3.7088 +Force: 0.334574 0.186551 -10.773892 +Torque: -0.059223 -0.038922 -0.012563 + +Polar angle tht: 0.1745; Azimuth angle phi: 3.7525 +Force: 0.324136 0.198899 -10.771452 +Torque: -0.063218 -0.037817 -0.013025 + +Polar angle tht: 0.1745; Azimuth angle phi: 3.7961 +Force: 0.313080 0.210821 -10.768854 +Torque: -0.067091 -0.036641 -0.013389 + +Polar angle tht: 0.1745; Azimuth angle phi: 3.8397 +Force: 0.301436 0.222293 -10.766105 +Torque: -0.070836 -0.035394 -0.013651 + +Polar angle tht: 0.1745; Azimuth angle phi: 3.8834 +Force: 0.289238 0.233292 -10.763208 +Torque: -0.074445 -0.034080 -0.013809 + +Polar angle tht: 0.1745; Azimuth angle phi: 3.9270 +Force: 0.276518 0.243797 -10.760170 +Torque: -0.077911 -0.032701 -0.013861 + +Polar angle tht: 0.1745; Azimuth angle phi: 3.9706 +Force: 0.263311 0.253787 -10.756997 +Torque: -0.081228 -0.031258 -0.013809 + +Polar angle tht: 0.1745; Azimuth angle phi: 4.0143 +Force: 0.249653 0.263243 -10.753694 +Torque: -0.084390 -0.029756 -0.013651 + +Polar angle tht: 0.1745; Azimuth angle phi: 4.0579 +Force: 0.235579 0.272148 -10.750268 +Torque: -0.087390 -0.028195 -0.013389 + +Polar angle tht: 0.1745; Azimuth angle phi: 4.1015 +Force: 0.221127 0.280486 -10.746725 +Torque: -0.090223 -0.026580 -0.013025 + +Polar angle tht: 0.1745; Azimuth angle phi: 4.1452 +Force: 0.206334 0.288243 -10.743073 +Torque: -0.092883 -0.024913 -0.012563 + +Polar angle tht: 0.1745; Azimuth angle phi: 4.1888 +Force: 0.191238 0.295405 -10.739317 +Torque: -0.095366 -0.023197 -0.012004 + +Polar angle tht: 0.1745; Azimuth angle phi: 4.2324 +Force: 0.175876 0.301960 -10.735466 +Torque: -0.097667 -0.021435 -0.011355 + +Polar angle tht: 0.1745; Azimuth angle phi: 4.2761 +Force: 0.160287 0.307900 -10.731526 +Torque: -0.099781 -0.019630 -0.010618 + +Polar angle tht: 0.1745; Azimuth angle phi: 4.3197 +Force: 0.144507 0.313215 -10.727505 +Torque: -0.101704 -0.017786 -0.009801 + +Polar angle tht: 0.1745; Azimuth angle phi: 4.3633 +Force: 0.128576 0.317897 -10.723411 +Torque: -0.103433 -0.015906 -0.008910 + +Polar angle tht: 0.1745; Azimuth angle phi: 4.4070 +Force: 0.112530 0.321942 -10.719251 +Torque: -0.104965 -0.013993 -0.007951 + +Polar angle tht: 0.1745; Azimuth angle phi: 4.4506 +Force: 0.096406 0.325345 -10.715033 +Torque: -0.106296 -0.012052 -0.006931 + +Polar angle tht: 0.1745; Azimuth angle phi: 4.4942 +Force: 0.080240 0.328103 -10.710766 +Torque: -0.107425 -0.010085 -0.005858 + +Polar angle tht: 0.1745; Azimuth angle phi: 4.5379 +Force: 0.064069 0.330216 -10.706458 +Torque: -0.108349 -0.008096 -0.004741 + +Polar angle tht: 0.1745; Azimuth angle phi: 4.5815 +Force: 0.047925 0.331682 -10.702116 +Torque: -0.109066 -0.006090 -0.003588 + +Polar angle tht: 0.1745; Azimuth angle phi: 4.6251 +Force: 0.031844 0.332504 -10.697749 +Torque: -0.109575 -0.004069 -0.002407 + +Polar angle tht: 0.1745; Azimuth angle phi: 4.6688 +Force: 0.015859 0.332684 -10.693365 +Torque: -0.109876 -0.002038 -0.001208 + +Polar angle tht: 0.1745; Azimuth angle phi: 4.7124 +Force: 0.000000 0.332227 -10.688974 +Torque: -0.109967 -0.000000 -0.000000 + +Polar angle tht: 0.1745; Azimuth angle phi: 4.7560 +Force: -0.015859 0.332684 -10.693365 +Torque: -0.109876 0.002038 0.001208 + +Polar angle tht: 0.1745; Azimuth angle phi: 4.7997 +Force: -0.031844 0.332504 -10.697749 +Torque: -0.109575 0.004069 0.002407 + +Polar angle tht: 0.1745; Azimuth angle phi: 4.8433 +Force: -0.047925 0.331682 -10.702116 +Torque: -0.109066 0.006090 0.003588 + +Polar angle tht: 0.1745; Azimuth angle phi: 4.8869 +Force: -0.064069 0.330216 -10.706458 +Torque: -0.108349 0.008096 0.004741 + +Polar angle tht: 0.1745; Azimuth angle phi: 4.9306 +Force: -0.080240 0.328103 -10.710766 +Torque: -0.107425 0.010085 0.005858 + +Polar angle tht: 0.1745; Azimuth angle phi: 4.9742 +Force: -0.096406 0.325345 -10.715033 +Torque: -0.106296 0.012052 0.006931 + +Polar angle tht: 0.1745; Azimuth angle phi: 5.0178 +Force: -0.112530 0.321942 -10.719251 +Torque: -0.104965 0.013993 0.007951 + +Polar angle tht: 0.1745; Azimuth angle phi: 5.0615 +Force: -0.128576 0.317897 -10.723411 +Torque: -0.103433 0.015906 0.008910 + +Polar angle tht: 0.1745; Azimuth angle phi: 5.1051 +Force: -0.144507 0.313215 -10.727505 +Torque: -0.101704 0.017786 0.009801 + +Polar angle tht: 0.1745; Azimuth angle phi: 5.1487 +Force: -0.160287 0.307900 -10.731526 +Torque: -0.099781 0.019630 0.010618 + +Polar angle tht: 0.1745; Azimuth angle phi: 5.1924 +Force: -0.175876 0.301960 -10.735466 +Torque: -0.097667 0.021435 0.011355 + +Polar angle tht: 0.1745; Azimuth angle phi: 5.2360 +Force: -0.191238 0.295405 -10.739317 +Torque: -0.095366 0.023197 0.012004 + +Polar angle tht: 0.1745; Azimuth angle phi: 5.2796 +Force: -0.206334 0.288243 -10.743073 +Torque: -0.092883 0.024913 0.012563 + +Polar angle tht: 0.1745; Azimuth angle phi: 5.3233 +Force: -0.221127 0.280486 -10.746725 +Torque: -0.090223 0.026580 0.013025 + +Polar angle tht: 0.1745; Azimuth angle phi: 5.3669 +Force: -0.235579 0.272148 -10.750268 +Torque: -0.087390 0.028195 0.013389 + +Polar angle tht: 0.1745; Azimuth angle phi: 5.4105 +Force: -0.249653 0.263243 -10.753694 +Torque: -0.084390 0.029756 0.013651 + +Polar angle tht: 0.1745; Azimuth angle phi: 5.4542 +Force: -0.263311 0.253787 -10.756997 +Torque: -0.081228 0.031258 0.013809 + +Polar angle tht: 0.1745; Azimuth angle phi: 5.4978 +Force: -0.276518 0.243797 -10.760170 +Torque: -0.077911 0.032701 0.013861 + +Polar angle tht: 0.1745; Azimuth angle phi: 5.5414 +Force: -0.289238 0.233292 -10.763208 +Torque: -0.074445 0.034080 0.013809 + +Polar angle tht: 0.1745; Azimuth angle phi: 5.5851 +Force: -0.301436 0.222293 -10.766105 +Torque: -0.070836 0.035394 0.013651 + +Polar angle tht: 0.1745; Azimuth angle phi: 5.6287 +Force: -0.313080 0.210821 -10.768854 +Torque: -0.067091 0.036641 0.013389 + +Polar angle tht: 0.1745; Azimuth angle phi: 5.6723 +Force: -0.324136 0.198899 -10.771452 +Torque: -0.063218 0.037817 0.013025 + +Polar angle tht: 0.1745; Azimuth angle phi: 5.7160 +Force: -0.334574 0.186551 -10.773892 +Torque: -0.059223 0.038922 0.012563 + +Polar angle tht: 0.1745; Azimuth angle phi: 5.7596 +Force: -0.344365 0.173801 -10.776171 +Torque: -0.055116 0.039952 0.012004 + +Polar angle tht: 0.1745; Azimuth angle phi: 5.8032 +Force: -0.353481 0.160677 -10.778284 +Torque: -0.050902 0.040907 0.011355 + +Polar angle tht: 0.1745; Azimuth angle phi: 5.8469 +Force: -0.361896 0.147205 -10.780227 +Torque: -0.046591 0.041785 0.010618 + +Polar angle tht: 0.1745; Azimuth angle phi: 5.8905 +Force: -0.369585 0.133415 -10.781996 +Torque: -0.042190 0.042583 0.009801 + +Polar angle tht: 0.1745; Azimuth angle phi: 5.9341 +Force: -0.376526 0.119334 -10.783589 +Torque: -0.037709 0.043302 0.008910 + +Polar angle tht: 0.1745; Azimuth angle phi: 5.9778 +Force: -0.382699 0.104994 -10.785001 +Torque: -0.033155 0.043938 0.007951 + +Polar angle tht: 0.1745; Azimuth angle phi: 6.0214 +Force: -0.388087 0.090425 -10.786230 +Torque: -0.028538 0.044492 0.006931 + +Polar angle tht: 0.1745; Azimuth angle phi: 6.0650 +Force: -0.392673 0.075659 -10.787274 +Torque: -0.023866 0.044963 0.005858 + +Polar angle tht: 0.1745; Azimuth angle phi: 6.1087 +Force: -0.396444 0.060727 -10.788131 +Torque: -0.019148 0.045349 0.004741 + +Polar angle tht: 0.1745; Azimuth angle phi: 6.1523 +Force: -0.399388 0.045662 -10.788799 +Torque: -0.014393 0.045650 0.003588 + +Polar angle tht: 0.1745; Azimuth angle phi: 6.1959 +Force: -0.401497 0.030497 -10.789278 +Torque: -0.009611 0.045865 0.002407 + +Polar angle tht: 0.1745; Azimuth angle phi: 6.2396 +Force: -0.402766 0.015265 -10.789565 +Torque: -0.004810 0.045994 0.001208 + +Polar angle tht: 0.1745; Azimuth angle phi: 6.2832 +Force: -0.403189 0.000000 -10.789661 +Torque: -0.000000 0.046038 0.000000 + +Polar angle tht: 0.2182; Azimuth angle phi: 0.0000 +Force: -0.511690 0.000000 -10.636246 +Torque: -0.000000 0.056655 0.000000 + +Polar angle tht: 0.2182; Azimuth angle phi: 0.0436 +Force: -0.511142 -0.019108 -10.636128 +Torque: 0.005948 0.056602 -0.001877 + +Polar angle tht: 0.2182; Azimuth angle phi: 0.0873 +Force: -0.509499 -0.038174 -10.635773 +Torque: 0.011884 0.056444 -0.003739 + +Polar angle tht: 0.2182; Azimuth angle phi: 0.1309 +Force: -0.506766 -0.057153 -10.635182 +Torque: 0.017797 0.056180 -0.005574 + +Polar angle tht: 0.2182; Azimuth angle phi: 0.1745 +Force: -0.502953 -0.076002 -10.634356 +Torque: 0.023677 0.055811 -0.007365 + +Polar angle tht: 0.2182; Azimuth angle phi: 0.2182 +Force: -0.498071 -0.094681 -10.633297 +Torque: 0.029510 0.055338 -0.009101 + +Polar angle tht: 0.2182; Azimuth angle phi: 0.2618 +Force: -0.492136 -0.113145 -10.632007 +Torque: 0.035287 0.054761 -0.010767 + +Polar angle tht: 0.2182; Azimuth angle phi: 0.3054 +Force: -0.485167 -0.131355 -10.630488 +Torque: 0.040996 0.054082 -0.012352 + +Polar angle tht: 0.2182; Azimuth angle phi: 0.3491 +Force: -0.477184 -0.149270 -10.628743 +Torque: 0.046626 0.053301 -0.013842 + +Polar angle tht: 0.2182; Azimuth angle phi: 0.3927 +Force: -0.468214 -0.166850 -10.626776 +Torque: 0.052167 0.052420 -0.015227 + +Polar angle tht: 0.2182; Azimuth angle phi: 0.4363 +Force: -0.458284 -0.184057 -10.624590 +Torque: 0.057607 0.051441 -0.016497 + +Polar angle tht: 0.2182; Azimuth angle phi: 0.4800 +Force: -0.447424 -0.200853 -10.622189 +Torque: 0.062937 0.050364 -0.017640 + +Polar angle tht: 0.2182; Azimuth angle phi: 0.5236 +Force: -0.435669 -0.217202 -10.619578 +Torque: 0.068146 0.049193 -0.018650 + +Polar angle tht: 0.2182; Azimuth angle phi: 0.5672 +Force: -0.423054 -0.233070 -10.616762 +Torque: 0.073224 0.047928 -0.019517 + +Polar angle tht: 0.2182; Azimuth angle phi: 0.6109 +Force: -0.409618 -0.248422 -10.613746 +Torque: 0.078161 0.046573 -0.020236 + +Polar angle tht: 0.2182; Azimuth angle phi: 0.6545 +Force: -0.395400 -0.263228 -10.610537 +Torque: 0.082948 0.045129 -0.020801 + +Polar angle tht: 0.2182; Azimuth angle phi: 0.6981 +Force: -0.380443 -0.277457 -10.607139 +Torque: 0.087576 0.043598 -0.021208 + +Polar angle tht: 0.2182; Azimuth angle phi: 0.7418 +Force: -0.364791 -0.291080 -10.603560 +Torque: 0.092036 0.041984 -0.021453 + +Polar angle tht: 0.2182; Azimuth angle phi: 0.7854 +Force: -0.348490 -0.304071 -10.599806 +Torque: 0.096319 0.040290 -0.021535 + +Polar angle tht: 0.2182; Azimuth angle phi: 0.8290 +Force: -0.331587 -0.316404 -10.595885 +Torque: 0.100418 0.038518 -0.021453 + +Polar angle tht: 0.2182; Azimuth angle phi: 0.8727 +Force: -0.314131 -0.328056 -10.591804 +Torque: 0.104324 0.036671 -0.021208 + +Polar angle tht: 0.2182; Azimuth angle phi: 0.9163 +Force: -0.296169 -0.339006 -10.587571 +Torque: 0.108031 0.034753 -0.020801 + +Polar angle tht: 0.2182; Azimuth angle phi: 0.9599 +Force: -0.277752 -0.349235 -10.583193 +Torque: 0.111530 0.032766 -0.020236 + +Polar angle tht: 0.2182; Azimuth angle phi: 1.0036 +Force: -0.258931 -0.358726 -10.578680 +Torque: 0.114816 0.030715 -0.019517 + +Polar angle tht: 0.2182; Azimuth angle phi: 1.0472 +Force: -0.239755 -0.367462 -10.574039 +Torque: 0.117882 0.028604 -0.018650 + +Polar angle tht: 0.2182; Azimuth angle phi: 1.0908 +Force: -0.220277 -0.375430 -10.569280 +Torque: 0.120722 0.026435 -0.017640 + +Polar angle tht: 0.2182; Azimuth angle phi: 1.1345 +Force: -0.200545 -0.382619 -10.564412 +Torque: 0.123332 0.024213 -0.016497 + +Polar angle tht: 0.2182; Azimuth angle phi: 1.1781 +Force: -0.180612 -0.389020 -10.559443 +Torque: 0.125705 0.021942 -0.015227 + +Polar angle tht: 0.2182; Azimuth angle phi: 1.2217 +Force: -0.160525 -0.394625 -10.554384 +Torque: 0.127839 0.019626 -0.013842 + +Polar angle tht: 0.2182; Azimuth angle phi: 1.2654 +Force: -0.140335 -0.399427 -10.549244 +Torque: 0.129728 0.017269 -0.012352 + +Polar angle tht: 0.2182; Azimuth angle phi: 1.3090 +Force: -0.120089 -0.403425 -10.544033 +Torque: 0.131370 0.014875 -0.010767 + +Polar angle tht: 0.2182; Azimuth angle phi: 1.3526 +Force: -0.099835 -0.406615 -10.538760 +Torque: 0.132760 0.012450 -0.009101 + +Polar angle tht: 0.2182; Azimuth angle phi: 1.3963 +Force: -0.079619 -0.408997 -10.533436 +Torque: 0.133898 0.009997 -0.007365 + +Polar angle tht: 0.2182; Azimuth angle phi: 1.4399 +Force: -0.059485 -0.410575 -10.528071 +Torque: 0.134780 0.007520 -0.005574 + +Polar angle tht: 0.2182; Azimuth angle phi: 1.4835 +Force: -0.039476 -0.411350 -10.522675 +Torque: 0.135405 0.005026 -0.003739 + +Polar angle tht: 0.2182; Azimuth angle phi: 1.5272 +Force: -0.019635 -0.411328 -10.517259 +Torque: 0.135772 0.002517 -0.001877 + +Polar angle tht: 0.2182; Azimuth angle phi: 1.5708 +Force: 0.000000 -0.410517 -10.511832 +Torque: 0.135881 -0.000000 0.000000 + +Polar angle tht: 0.2182; Azimuth angle phi: 1.6144 +Force: 0.019635 -0.411328 -10.517259 +Torque: 0.135772 -0.002517 0.001877 + +Polar angle tht: 0.2182; Azimuth angle phi: 1.6581 +Force: 0.039476 -0.411350 -10.522675 +Torque: 0.135405 -0.005026 0.003739 + +Polar angle tht: 0.2182; Azimuth angle phi: 1.7017 +Force: 0.059485 -0.410575 -10.528071 +Torque: 0.134780 -0.007520 0.005574 + +Polar angle tht: 0.2182; Azimuth angle phi: 1.7453 +Force: 0.079619 -0.408997 -10.533436 +Torque: 0.133898 -0.009997 0.007365 + +Polar angle tht: 0.2182; Azimuth angle phi: 1.7890 +Force: 0.099835 -0.406615 -10.538760 +Torque: 0.132760 -0.012450 0.009101 + +Polar angle tht: 0.2182; Azimuth angle phi: 1.8326 +Force: 0.120089 -0.403425 -10.544033 +Torque: 0.131370 -0.014875 0.010767 + +Polar angle tht: 0.2182; Azimuth angle phi: 1.8762 +Force: 0.140335 -0.399427 -10.549244 +Torque: 0.129728 -0.017269 0.012352 + +Polar angle tht: 0.2182; Azimuth angle phi: 1.9199 +Force: 0.160525 -0.394625 -10.554384 +Torque: 0.127839 -0.019626 0.013842 + +Polar angle tht: 0.2182; Azimuth angle phi: 1.9635 +Force: 0.180612 -0.389020 -10.559443 +Torque: 0.125705 -0.021942 0.015227 + +Polar angle tht: 0.2182; Azimuth angle phi: 2.0071 +Force: 0.200545 -0.382619 -10.564412 +Torque: 0.123332 -0.024213 0.016497 + +Polar angle tht: 0.2182; Azimuth angle phi: 2.0508 +Force: 0.220277 -0.375430 -10.569280 +Torque: 0.120722 -0.026435 0.017640 + +Polar angle tht: 0.2182; Azimuth angle phi: 2.0944 +Force: 0.239755 -0.367462 -10.574039 +Torque: 0.117882 -0.028604 0.018650 + +Polar angle tht: 0.2182; Azimuth angle phi: 2.1380 +Force: 0.258931 -0.358726 -10.578680 +Torque: 0.114816 -0.030715 0.019517 + +Polar angle tht: 0.2182; Azimuth angle phi: 2.1817 +Force: 0.277752 -0.349235 -10.583193 +Torque: 0.111530 -0.032766 0.020236 + +Polar angle tht: 0.2182; Azimuth angle phi: 2.2253 +Force: 0.296169 -0.339006 -10.587571 +Torque: 0.108031 -0.034753 0.020801 + +Polar angle tht: 0.2182; Azimuth angle phi: 2.2689 +Force: 0.314131 -0.328056 -10.591804 +Torque: 0.104324 -0.036671 0.021208 + +Polar angle tht: 0.2182; Azimuth angle phi: 2.3126 +Force: 0.331587 -0.316404 -10.595885 +Torque: 0.100418 -0.038518 0.021453 + +Polar angle tht: 0.2182; Azimuth angle phi: 2.3562 +Force: 0.348490 -0.304071 -10.599806 +Torque: 0.096319 -0.040290 0.021535 + +Polar angle tht: 0.2182; Azimuth angle phi: 2.3998 +Force: 0.364791 -0.291080 -10.603560 +Torque: 0.092036 -0.041984 0.021453 + +Polar angle tht: 0.2182; Azimuth angle phi: 2.4435 +Force: 0.380443 -0.277457 -10.607139 +Torque: 0.087576 -0.043598 0.021208 + +Polar angle tht: 0.2182; Azimuth angle phi: 2.4871 +Force: 0.395400 -0.263228 -10.610537 +Torque: 0.082948 -0.045129 0.020801 + +Polar angle tht: 0.2182; Azimuth angle phi: 2.5307 +Force: 0.409618 -0.248422 -10.613746 +Torque: 0.078161 -0.046573 0.020236 + +Polar angle tht: 0.2182; Azimuth angle phi: 2.5744 +Force: 0.423054 -0.233070 -10.616762 +Torque: 0.073224 -0.047928 0.019517 + +Polar angle tht: 0.2182; Azimuth angle phi: 2.6180 +Force: 0.435669 -0.217202 -10.619578 +Torque: 0.068146 -0.049193 0.018650 + +Polar angle tht: 0.2182; Azimuth angle phi: 2.6616 +Force: 0.447424 -0.200853 -10.622189 +Torque: 0.062937 -0.050364 0.017640 + +Polar angle tht: 0.2182; Azimuth angle phi: 2.7053 +Force: 0.458284 -0.184057 -10.624590 +Torque: 0.057607 -0.051441 0.016497 + +Polar angle tht: 0.2182; Azimuth angle phi: 2.7489 +Force: 0.468214 -0.166850 -10.626776 +Torque: 0.052167 -0.052420 0.015227 + +Polar angle tht: 0.2182; Azimuth angle phi: 2.7925 +Force: 0.477184 -0.149270 -10.628743 +Torque: 0.046626 -0.053301 0.013842 + +Polar angle tht: 0.2182; Azimuth angle phi: 2.8362 +Force: 0.485167 -0.131355 -10.630488 +Torque: 0.040996 -0.054082 0.012352 + +Polar angle tht: 0.2182; Azimuth angle phi: 2.8798 +Force: 0.492136 -0.113145 -10.632007 +Torque: 0.035287 -0.054761 0.010767 + +Polar angle tht: 0.2182; Azimuth angle phi: 2.9234 +Force: 0.498071 -0.094681 -10.633297 +Torque: 0.029510 -0.055338 0.009101 + +Polar angle tht: 0.2182; Azimuth angle phi: 2.9671 +Force: 0.502953 -0.076002 -10.634356 +Torque: 0.023677 -0.055811 0.007365 + +Polar angle tht: 0.2182; Azimuth angle phi: 3.0107 +Force: 0.506766 -0.057153 -10.635182 +Torque: 0.017797 -0.056180 0.005574 + +Polar angle tht: 0.2182; Azimuth angle phi: 3.0543 +Force: 0.509499 -0.038174 -10.635773 +Torque: 0.011884 -0.056444 0.003739 + +Polar angle tht: 0.2182; Azimuth angle phi: 3.0980 +Force: 0.511142 -0.019108 -10.636128 +Torque: 0.005948 -0.056602 0.001877 + +Polar angle tht: 0.2182; Azimuth angle phi: 3.1416 +Force: 0.511690 0.000000 -10.636246 +Torque: -0.000000 -0.056655 -0.000000 + +Polar angle tht: 0.2182; Azimuth angle phi: 3.1852 +Force: 0.511142 0.019108 -10.636128 +Torque: -0.005948 -0.056602 -0.001877 + +Polar angle tht: 0.2182; Azimuth angle phi: 3.2289 +Force: 0.509499 0.038174 -10.635773 +Torque: -0.011884 -0.056444 -0.003739 + +Polar angle tht: 0.2182; Azimuth angle phi: 3.2725 +Force: 0.506766 0.057153 -10.635182 +Torque: -0.017797 -0.056180 -0.005574 + +Polar angle tht: 0.2182; Azimuth angle phi: 3.3161 +Force: 0.502953 0.076002 -10.634356 +Torque: -0.023677 -0.055811 -0.007365 + +Polar angle tht: 0.2182; Azimuth angle phi: 3.3598 +Force: 0.498071 0.094681 -10.633297 +Torque: -0.029510 -0.055338 -0.009101 + +Polar angle tht: 0.2182; Azimuth angle phi: 3.4034 +Force: 0.492136 0.113145 -10.632007 +Torque: -0.035287 -0.054761 -0.010767 + +Polar angle tht: 0.2182; Azimuth angle phi: 3.4470 +Force: 0.485167 0.131355 -10.630488 +Torque: -0.040996 -0.054082 -0.012352 + +Polar angle tht: 0.2182; Azimuth angle phi: 3.4907 +Force: 0.477184 0.149270 -10.628743 +Torque: -0.046626 -0.053301 -0.013842 + +Polar angle tht: 0.2182; Azimuth angle phi: 3.5343 +Force: 0.468214 0.166850 -10.626776 +Torque: -0.052167 -0.052420 -0.015227 + +Polar angle tht: 0.2182; Azimuth angle phi: 3.5779 +Force: 0.458284 0.184057 -10.624590 +Torque: -0.057607 -0.051441 -0.016497 + +Polar angle tht: 0.2182; Azimuth angle phi: 3.6216 +Force: 0.447424 0.200853 -10.622189 +Torque: -0.062937 -0.050364 -0.017640 + +Polar angle tht: 0.2182; Azimuth angle phi: 3.6652 +Force: 0.435669 0.217202 -10.619578 +Torque: -0.068146 -0.049193 -0.018650 + +Polar angle tht: 0.2182; Azimuth angle phi: 3.7088 +Force: 0.423054 0.233070 -10.616762 +Torque: -0.073224 -0.047928 -0.019517 + +Polar angle tht: 0.2182; Azimuth angle phi: 3.7525 +Force: 0.409618 0.248422 -10.613746 +Torque: -0.078161 -0.046573 -0.020236 + +Polar angle tht: 0.2182; Azimuth angle phi: 3.7961 +Force: 0.395400 0.263228 -10.610537 +Torque: -0.082948 -0.045129 -0.020801 + +Polar angle tht: 0.2182; Azimuth angle phi: 3.8397 +Force: 0.380443 0.277457 -10.607139 +Torque: -0.087576 -0.043598 -0.021208 + +Polar angle tht: 0.2182; Azimuth angle phi: 3.8834 +Force: 0.364791 0.291080 -10.603560 +Torque: -0.092036 -0.041984 -0.021453 + +Polar angle tht: 0.2182; Azimuth angle phi: 3.9270 +Force: 0.348490 0.304071 -10.599806 +Torque: -0.096319 -0.040290 -0.021535 + +Polar angle tht: 0.2182; Azimuth angle phi: 3.9706 +Force: 0.331587 0.316404 -10.595885 +Torque: -0.100418 -0.038518 -0.021453 + +Polar angle tht: 0.2182; Azimuth angle phi: 4.0143 +Force: 0.314131 0.328056 -10.591804 +Torque: -0.104324 -0.036671 -0.021208 + +Polar angle tht: 0.2182; Azimuth angle phi: 4.0579 +Force: 0.296169 0.339006 -10.587571 +Torque: -0.108031 -0.034753 -0.020801 + +Polar angle tht: 0.2182; Azimuth angle phi: 4.1015 +Force: 0.277752 0.349235 -10.583193 +Torque: -0.111530 -0.032766 -0.020236 + +Polar angle tht: 0.2182; Azimuth angle phi: 4.1452 +Force: 0.258931 0.358726 -10.578680 +Torque: -0.114816 -0.030715 -0.019517 + +Polar angle tht: 0.2182; Azimuth angle phi: 4.1888 +Force: 0.239755 0.367462 -10.574039 +Torque: -0.117882 -0.028604 -0.018650 + +Polar angle tht: 0.2182; Azimuth angle phi: 4.2324 +Force: 0.220277 0.375430 -10.569280 +Torque: -0.120722 -0.026435 -0.017640 + +Polar angle tht: 0.2182; Azimuth angle phi: 4.2761 +Force: 0.200545 0.382619 -10.564412 +Torque: -0.123332 -0.024213 -0.016497 + +Polar angle tht: 0.2182; Azimuth angle phi: 4.3197 +Force: 0.180612 0.389020 -10.559443 +Torque: -0.125705 -0.021942 -0.015227 + +Polar angle tht: 0.2182; Azimuth angle phi: 4.3633 +Force: 0.160525 0.394625 -10.554384 +Torque: -0.127839 -0.019626 -0.013842 + +Polar angle tht: 0.2182; Azimuth angle phi: 4.4070 +Force: 0.140335 0.399427 -10.549244 +Torque: -0.129728 -0.017269 -0.012352 + +Polar angle tht: 0.2182; Azimuth angle phi: 4.4506 +Force: 0.120089 0.403425 -10.544033 +Torque: -0.131370 -0.014875 -0.010767 + +Polar angle tht: 0.2182; Azimuth angle phi: 4.4942 +Force: 0.099835 0.406615 -10.538760 +Torque: -0.132760 -0.012450 -0.009101 + +Polar angle tht: 0.2182; Azimuth angle phi: 4.5379 +Force: 0.079619 0.408997 -10.533436 +Torque: -0.133898 -0.009997 -0.007365 + +Polar angle tht: 0.2182; Azimuth angle phi: 4.5815 +Force: 0.059485 0.410575 -10.528071 +Torque: -0.134780 -0.007520 -0.005574 + +Polar angle tht: 0.2182; Azimuth angle phi: 4.6251 +Force: 0.039476 0.411350 -10.522675 +Torque: -0.135405 -0.005026 -0.003739 + +Polar angle tht: 0.2182; Azimuth angle phi: 4.6688 +Force: 0.019635 0.411328 -10.517259 +Torque: -0.135772 -0.002517 -0.001877 + +Polar angle tht: 0.2182; Azimuth angle phi: 4.7124 +Force: 0.000000 0.410517 -10.511832 +Torque: -0.135881 -0.000000 -0.000000 + +Polar angle tht: 0.2182; Azimuth angle phi: 4.7560 +Force: -0.019635 0.411328 -10.517259 +Torque: -0.135772 0.002517 0.001877 + +Polar angle tht: 0.2182; Azimuth angle phi: 4.7997 +Force: -0.039476 0.411350 -10.522675 +Torque: -0.135405 0.005026 0.003739 + +Polar angle tht: 0.2182; Azimuth angle phi: 4.8433 +Force: -0.059485 0.410575 -10.528071 +Torque: -0.134780 0.007520 0.005574 + +Polar angle tht: 0.2182; Azimuth angle phi: 4.8869 +Force: -0.079619 0.408997 -10.533436 +Torque: -0.133898 0.009997 0.007365 + +Polar angle tht: 0.2182; Azimuth angle phi: 4.9306 +Force: -0.099835 0.406615 -10.538760 +Torque: -0.132760 0.012450 0.009101 + +Polar angle tht: 0.2182; Azimuth angle phi: 4.9742 +Force: -0.120089 0.403425 -10.544033 +Torque: -0.131370 0.014875 0.010767 + +Polar angle tht: 0.2182; Azimuth angle phi: 5.0178 +Force: -0.140335 0.399427 -10.549244 +Torque: -0.129728 0.017269 0.012352 + +Polar angle tht: 0.2182; Azimuth angle phi: 5.0615 +Force: -0.160525 0.394625 -10.554384 +Torque: -0.127839 0.019626 0.013842 + +Polar angle tht: 0.2182; Azimuth angle phi: 5.1051 +Force: -0.180612 0.389020 -10.559443 +Torque: -0.125705 0.021942 0.015227 + +Polar angle tht: 0.2182; Azimuth angle phi: 5.1487 +Force: -0.200545 0.382619 -10.564412 +Torque: -0.123332 0.024213 0.016497 + +Polar angle tht: 0.2182; Azimuth angle phi: 5.1924 +Force: -0.220277 0.375430 -10.569280 +Torque: -0.120722 0.026435 0.017640 + +Polar angle tht: 0.2182; Azimuth angle phi: 5.2360 +Force: -0.239755 0.367462 -10.574039 +Torque: -0.117882 0.028604 0.018650 + +Polar angle tht: 0.2182; Azimuth angle phi: 5.2796 +Force: -0.258931 0.358726 -10.578680 +Torque: -0.114816 0.030715 0.019517 + +Polar angle tht: 0.2182; Azimuth angle phi: 5.3233 +Force: -0.277752 0.349235 -10.583193 +Torque: -0.111530 0.032766 0.020236 + +Polar angle tht: 0.2182; Azimuth angle phi: 5.3669 +Force: -0.296169 0.339006 -10.587571 +Torque: -0.108031 0.034753 0.020801 + +Polar angle tht: 0.2182; Azimuth angle phi: 5.4105 +Force: -0.314131 0.328056 -10.591804 +Torque: -0.104324 0.036671 0.021208 + +Polar angle tht: 0.2182; Azimuth angle phi: 5.4542 +Force: -0.331587 0.316404 -10.595885 +Torque: -0.100418 0.038518 0.021453 + +Polar angle tht: 0.2182; Azimuth angle phi: 5.4978 +Force: -0.348490 0.304071 -10.599806 +Torque: -0.096319 0.040290 0.021535 + +Polar angle tht: 0.2182; Azimuth angle phi: 5.5414 +Force: -0.364791 0.291080 -10.603560 +Torque: -0.092036 0.041984 0.021453 + +Polar angle tht: 0.2182; Azimuth angle phi: 5.5851 +Force: -0.380443 0.277457 -10.607139 +Torque: -0.087576 0.043598 0.021208 + +Polar angle tht: 0.2182; Azimuth angle phi: 5.6287 +Force: -0.395400 0.263228 -10.610537 +Torque: -0.082948 0.045129 0.020801 + +Polar angle tht: 0.2182; Azimuth angle phi: 5.6723 +Force: -0.409618 0.248422 -10.613746 +Torque: -0.078161 0.046573 0.020236 + +Polar angle tht: 0.2182; Azimuth angle phi: 5.7160 +Force: -0.423054 0.233070 -10.616762 +Torque: -0.073224 0.047928 0.019517 + +Polar angle tht: 0.2182; Azimuth angle phi: 5.7596 +Force: -0.435669 0.217202 -10.619578 +Torque: -0.068146 0.049193 0.018650 + +Polar angle tht: 0.2182; Azimuth angle phi: 5.8032 +Force: -0.447424 0.200853 -10.622189 +Torque: -0.062937 0.050364 0.017640 + +Polar angle tht: 0.2182; Azimuth angle phi: 5.8469 +Force: -0.458284 0.184057 -10.624590 +Torque: -0.057607 0.051441 0.016497 + +Polar angle tht: 0.2182; Azimuth angle phi: 5.8905 +Force: -0.468214 0.166850 -10.626776 +Torque: -0.052167 0.052420 0.015227 + +Polar angle tht: 0.2182; Azimuth angle phi: 5.9341 +Force: -0.477184 0.149270 -10.628743 +Torque: -0.046626 0.053301 0.013842 + +Polar angle tht: 0.2182; Azimuth angle phi: 5.9778 +Force: -0.485167 0.131355 -10.630488 +Torque: -0.040996 0.054082 0.012352 + +Polar angle tht: 0.2182; Azimuth angle phi: 6.0214 +Force: -0.492136 0.113145 -10.632007 +Torque: -0.035287 0.054761 0.010767 + +Polar angle tht: 0.2182; Azimuth angle phi: 6.0650 +Force: -0.498071 0.094681 -10.633297 +Torque: -0.029510 0.055338 0.009101 + +Polar angle tht: 0.2182; Azimuth angle phi: 6.1087 +Force: -0.502953 0.076002 -10.634356 +Torque: -0.023677 0.055811 0.007365 + +Polar angle tht: 0.2182; Azimuth angle phi: 6.1523 +Force: -0.506766 0.057153 -10.635182 +Torque: -0.017797 0.056180 0.005574 + +Polar angle tht: 0.2182; Azimuth angle phi: 6.1959 +Force: -0.509499 0.038174 -10.635773 +Torque: -0.011884 0.056444 0.003739 + +Polar angle tht: 0.2182; Azimuth angle phi: 6.2396 +Force: -0.511142 0.019108 -10.636128 +Torque: -0.005948 0.056602 0.001877 + +Polar angle tht: 0.2182; Azimuth angle phi: 6.2832 +Force: -0.511690 0.000000 -10.636246 +Torque: -0.000000 0.056655 0.000000 + +Polar angle tht: 0.2618; Azimuth angle phi: 0.0000 +Force: -0.621735 0.000000 -10.445205 +Torque: -0.000000 0.066748 0.000000 + +Polar angle tht: 0.2618; Azimuth angle phi: 0.0436 +Force: -0.621055 -0.022904 -10.445065 +Torque: 0.007042 0.066686 -0.002684 + +Polar angle tht: 0.2618; Azimuth angle phi: 0.0873 +Force: -0.619020 -0.045754 -10.444645 +Torque: 0.014070 0.066500 -0.005347 + +Polar angle tht: 0.2618; Azimuth angle phi: 0.1309 +Force: -0.615635 -0.068498 -10.443946 +Torque: 0.021071 0.066190 -0.007970 + +Polar angle tht: 0.2618; Azimuth angle phi: 0.1745 +Force: -0.610912 -0.091083 -10.442969 +Torque: 0.028032 0.065757 -0.010532 + +Polar angle tht: 0.2618; Azimuth angle phi: 0.2182 +Force: -0.604867 -0.113455 -10.441716 +Torque: 0.034938 0.065202 -0.013014 + +Polar angle tht: 0.2618; Azimuth angle phi: 0.2618 +Force: -0.597521 -0.135564 -10.440190 +Torque: 0.041777 0.064525 -0.015397 + +Polar angle tht: 0.2618; Azimuth angle phi: 0.3054 +Force: -0.588897 -0.157359 -10.438393 +Torque: 0.048536 0.063728 -0.017662 + +Polar angle tht: 0.2618; Azimuth angle phi: 0.3491 +Force: -0.579024 -0.178789 -10.436328 +Torque: 0.055201 0.062812 -0.019794 + +Polar angle tht: 0.2618; Azimuth angle phi: 0.3927 +Force: -0.567936 -0.199807 -10.434001 +Torque: 0.061760 0.061778 -0.021774 + +Polar angle tht: 0.2618; Azimuth angle phi: 0.4363 +Force: -0.555669 -0.220365 -10.431414 +Torque: 0.068200 0.060628 -0.023589 + +Polar angle tht: 0.2618; Azimuth angle phi: 0.4800 +Force: -0.542262 -0.240418 -10.428574 +Torque: 0.074509 0.059364 -0.025224 + +Polar angle tht: 0.2618; Azimuth angle phi: 0.5236 +Force: -0.527760 -0.259920 -10.425485 +Torque: 0.080674 0.057989 -0.026668 + +Polar angle tht: 0.2618; Azimuth angle phi: 0.5672 +Force: -0.512210 -0.278830 -10.422153 +Torque: 0.086684 0.056503 -0.027908 + +Polar angle tht: 0.2618; Azimuth angle phi: 0.6109 +Force: -0.495662 -0.297108 -10.418585 +Torque: 0.092527 0.054911 -0.028936 + +Polar angle tht: 0.2618; Azimuth angle phi: 0.6545 +Force: -0.478168 -0.314714 -10.414788 +Torque: 0.098192 0.053214 -0.029744 + +Polar angle tht: 0.2618; Azimuth angle phi: 0.6981 +Force: -0.459783 -0.331612 -10.410768 +Torque: 0.103669 0.051415 -0.030326 + +Polar angle tht: 0.2618; Azimuth angle phi: 0.7418 +Force: -0.440565 -0.347768 -10.406534 +Torque: 0.108946 0.049518 -0.030676 + +Polar angle tht: 0.2618; Azimuth angle phi: 0.7854 +Force: -0.420573 -0.363150 -10.402093 +Torque: 0.114014 0.047525 -0.030793 + +Polar angle tht: 0.2618; Azimuth angle phi: 0.8290 +Force: -0.399868 -0.377729 -10.397454 +Torque: 0.118863 0.045440 -0.030676 + +Polar angle tht: 0.2618; Azimuth angle phi: 0.8727 +Force: -0.378513 -0.391476 -10.392626 +Torque: 0.123484 0.043267 -0.030326 + +Polar angle tht: 0.2618; Azimuth angle phi: 0.9163 +Force: -0.356570 -0.404367 -10.387617 +Torque: 0.127867 0.041010 -0.029744 + +Polar angle tht: 0.2618; Azimuth angle phi: 0.9599 +Force: -0.334103 -0.416379 -10.382438 +Torque: 0.132006 0.038671 -0.028936 + +Polar angle tht: 0.2618; Azimuth angle phi: 1.0036 +Force: -0.311179 -0.427494 -10.377098 +Torque: 0.135891 0.036256 -0.027908 + +Polar angle tht: 0.2618; Azimuth angle phi: 1.0472 +Force: -0.287860 -0.437692 -10.371608 +Torque: 0.139516 0.033769 -0.026668 + +Polar angle tht: 0.2618; Azimuth angle phi: 1.0908 +Force: -0.264213 -0.446960 -10.365977 +Torque: 0.142874 0.031213 -0.025224 + +Polar angle tht: 0.2618; Azimuth angle phi: 1.1345 +Force: -0.240300 -0.455285 -10.360218 +Torque: 0.145958 0.028594 -0.023589 + +Polar angle tht: 0.2618; Azimuth angle phi: 1.1781 +Force: -0.216187 -0.462657 -10.354339 +Torque: 0.148763 0.025917 -0.021774 + +Polar angle tht: 0.2618; Azimuth angle phi: 1.2217 +Force: -0.191935 -0.469069 -10.348354 +Torque: 0.151284 0.023185 -0.019794 + +Polar angle tht: 0.2618; Azimuth angle phi: 1.2654 +Force: -0.167607 -0.474515 -10.342273 +Torque: 0.153515 0.020404 -0.017662 + +Polar angle tht: 0.2618; Azimuth angle phi: 1.3090 +Force: -0.143263 -0.478994 -10.336107 +Torque: 0.155453 0.017579 -0.015397 + +Polar angle tht: 0.2618; Azimuth angle phi: 1.3526 +Force: -0.118961 -0.482505 -10.329869 +Torque: 0.157094 0.014715 -0.013014 + +Polar angle tht: 0.2618; Azimuth angle phi: 1.3963 +Force: -0.094758 -0.485049 -10.323571 +Torque: 0.158435 0.011817 -0.010532 + +Polar angle tht: 0.2618; Azimuth angle phi: 1.4399 +Force: -0.070708 -0.486632 -10.317223 +Torque: 0.159473 0.008892 -0.007970 + +Polar angle tht: 0.2618; Azimuth angle phi: 1.4835 +Force: -0.046866 -0.487259 -10.310839 +Torque: 0.160208 0.005943 -0.005347 + +Polar angle tht: 0.2618; Azimuth angle phi: 1.5272 +Force: -0.023281 -0.486940 -10.304431 +Torque: 0.160638 0.002977 -0.002684 + +Polar angle tht: 0.2618; Azimuth angle phi: 1.5708 +Force: 0.000000 -0.485683 -10.298010 +Torque: 0.160761 -0.000000 0.000000 + +Polar angle tht: 0.2618; Azimuth angle phi: 1.6144 +Force: 0.023281 -0.486940 -10.304431 +Torque: 0.160638 -0.002977 0.002684 + +Polar angle tht: 0.2618; Azimuth angle phi: 1.6581 +Force: 0.046866 -0.487259 -10.310839 +Torque: 0.160208 -0.005943 0.005347 + +Polar angle tht: 0.2618; Azimuth angle phi: 1.7017 +Force: 0.070708 -0.486632 -10.317223 +Torque: 0.159473 -0.008892 0.007970 + +Polar angle tht: 0.2618; Azimuth angle phi: 1.7453 +Force: 0.094758 -0.485049 -10.323571 +Torque: 0.158435 -0.011817 0.010532 + +Polar angle tht: 0.2618; Azimuth angle phi: 1.7890 +Force: 0.118961 -0.482505 -10.329869 +Torque: 0.157094 -0.014715 0.013014 + +Polar angle tht: 0.2618; Azimuth angle phi: 1.8326 +Force: 0.143263 -0.478994 -10.336107 +Torque: 0.155453 -0.017579 0.015397 + +Polar angle tht: 0.2618; Azimuth angle phi: 1.8762 +Force: 0.167607 -0.474515 -10.342273 +Torque: 0.153515 -0.020404 0.017662 + +Polar angle tht: 0.2618; Azimuth angle phi: 1.9199 +Force: 0.191935 -0.469069 -10.348354 +Torque: 0.151284 -0.023185 0.019794 + +Polar angle tht: 0.2618; Azimuth angle phi: 1.9635 +Force: 0.216187 -0.462657 -10.354339 +Torque: 0.148763 -0.025917 0.021774 + +Polar angle tht: 0.2618; Azimuth angle phi: 2.0071 +Force: 0.240300 -0.455285 -10.360218 +Torque: 0.145958 -0.028594 0.023589 + +Polar angle tht: 0.2618; Azimuth angle phi: 2.0508 +Force: 0.264213 -0.446960 -10.365977 +Torque: 0.142874 -0.031213 0.025224 + +Polar angle tht: 0.2618; Azimuth angle phi: 2.0944 +Force: 0.287860 -0.437692 -10.371608 +Torque: 0.139516 -0.033769 0.026668 + +Polar angle tht: 0.2618; Azimuth angle phi: 2.1380 +Force: 0.311179 -0.427494 -10.377098 +Torque: 0.135891 -0.036256 0.027908 + +Polar angle tht: 0.2618; Azimuth angle phi: 2.1817 +Force: 0.334103 -0.416379 -10.382438 +Torque: 0.132006 -0.038671 0.028936 + +Polar angle tht: 0.2618; Azimuth angle phi: 2.2253 +Force: 0.356570 -0.404367 -10.387617 +Torque: 0.127867 -0.041010 0.029744 + +Polar angle tht: 0.2618; Azimuth angle phi: 2.2689 +Force: 0.378513 -0.391476 -10.392626 +Torque: 0.123484 -0.043267 0.030326 + +Polar angle tht: 0.2618; Azimuth angle phi: 2.3126 +Force: 0.399868 -0.377729 -10.397454 +Torque: 0.118863 -0.045440 0.030676 + +Polar angle tht: 0.2618; Azimuth angle phi: 2.3562 +Force: 0.420573 -0.363150 -10.402093 +Torque: 0.114014 -0.047525 0.030793 + +Polar angle tht: 0.2618; Azimuth angle phi: 2.3998 +Force: 0.440565 -0.347768 -10.406534 +Torque: 0.108946 -0.049518 0.030676 + +Polar angle tht: 0.2618; Azimuth angle phi: 2.4435 +Force: 0.459783 -0.331612 -10.410768 +Torque: 0.103669 -0.051415 0.030326 + +Polar angle tht: 0.2618; Azimuth angle phi: 2.4871 +Force: 0.478168 -0.314714 -10.414788 +Torque: 0.098192 -0.053214 0.029744 + +Polar angle tht: 0.2618; Azimuth angle phi: 2.5307 +Force: 0.495662 -0.297108 -10.418585 +Torque: 0.092527 -0.054911 0.028936 + +Polar angle tht: 0.2618; Azimuth angle phi: 2.5744 +Force: 0.512210 -0.278830 -10.422153 +Torque: 0.086684 -0.056503 0.027908 + +Polar angle tht: 0.2618; Azimuth angle phi: 2.6180 +Force: 0.527760 -0.259920 -10.425485 +Torque: 0.080674 -0.057989 0.026668 + +Polar angle tht: 0.2618; Azimuth angle phi: 2.6616 +Force: 0.542262 -0.240418 -10.428574 +Torque: 0.074509 -0.059364 0.025224 + +Polar angle tht: 0.2618; Azimuth angle phi: 2.7053 +Force: 0.555669 -0.220365 -10.431414 +Torque: 0.068200 -0.060628 0.023589 + +Polar angle tht: 0.2618; Azimuth angle phi: 2.7489 +Force: 0.567936 -0.199807 -10.434001 +Torque: 0.061760 -0.061778 0.021774 + +Polar angle tht: 0.2618; Azimuth angle phi: 2.7925 +Force: 0.579024 -0.178789 -10.436328 +Torque: 0.055201 -0.062812 0.019794 + +Polar angle tht: 0.2618; Azimuth angle phi: 2.8362 +Force: 0.588897 -0.157359 -10.438393 +Torque: 0.048536 -0.063728 0.017662 + +Polar angle tht: 0.2618; Azimuth angle phi: 2.8798 +Force: 0.597521 -0.135564 -10.440190 +Torque: 0.041777 -0.064525 0.015397 + +Polar angle tht: 0.2618; Azimuth angle phi: 2.9234 +Force: 0.604867 -0.113455 -10.441716 +Torque: 0.034938 -0.065202 0.013014 + +Polar angle tht: 0.2618; Azimuth angle phi: 2.9671 +Force: 0.610912 -0.091083 -10.442969 +Torque: 0.028032 -0.065757 0.010532 + +Polar angle tht: 0.2618; Azimuth angle phi: 3.0107 +Force: 0.615635 -0.068498 -10.443946 +Torque: 0.021071 -0.066190 0.007970 + +Polar angle tht: 0.2618; Azimuth angle phi: 3.0543 +Force: 0.619020 -0.045754 -10.444645 +Torque: 0.014070 -0.066500 0.005347 + +Polar angle tht: 0.2618; Azimuth angle phi: 3.0980 +Force: 0.621055 -0.022904 -10.445065 +Torque: 0.007042 -0.066686 0.002684 + +Polar angle tht: 0.2618; Azimuth angle phi: 3.1416 +Force: 0.621735 0.000000 -10.445205 +Torque: -0.000000 -0.066748 -0.000000 + +Polar angle tht: 0.2618; Azimuth angle phi: 3.1852 +Force: 0.621055 0.022904 -10.445065 +Torque: -0.007042 -0.066686 -0.002684 + +Polar angle tht: 0.2618; Azimuth angle phi: 3.2289 +Force: 0.619020 0.045754 -10.444645 +Torque: -0.014070 -0.066500 -0.005347 + +Polar angle tht: 0.2618; Azimuth angle phi: 3.2725 +Force: 0.615635 0.068498 -10.443946 +Torque: -0.021071 -0.066190 -0.007970 + +Polar angle tht: 0.2618; Azimuth angle phi: 3.3161 +Force: 0.610912 0.091083 -10.442969 +Torque: -0.028032 -0.065757 -0.010532 + +Polar angle tht: 0.2618; Azimuth angle phi: 3.3598 +Force: 0.604867 0.113455 -10.441716 +Torque: -0.034938 -0.065202 -0.013014 + +Polar angle tht: 0.2618; Azimuth angle phi: 3.4034 +Force: 0.597521 0.135564 -10.440190 +Torque: -0.041777 -0.064525 -0.015397 + +Polar angle tht: 0.2618; Azimuth angle phi: 3.4470 +Force: 0.588897 0.157359 -10.438393 +Torque: -0.048536 -0.063728 -0.017662 + +Polar angle tht: 0.2618; Azimuth angle phi: 3.4907 +Force: 0.579024 0.178789 -10.436328 +Torque: -0.055201 -0.062812 -0.019794 + +Polar angle tht: 0.2618; Azimuth angle phi: 3.5343 +Force: 0.567936 0.199807 -10.434001 +Torque: -0.061760 -0.061778 -0.021774 + +Polar angle tht: 0.2618; Azimuth angle phi: 3.5779 +Force: 0.555669 0.220365 -10.431414 +Torque: -0.068200 -0.060628 -0.023589 + +Polar angle tht: 0.2618; Azimuth angle phi: 3.6216 +Force: 0.542262 0.240418 -10.428574 +Torque: -0.074509 -0.059364 -0.025224 + +Polar angle tht: 0.2618; Azimuth angle phi: 3.6652 +Force: 0.527760 0.259920 -10.425485 +Torque: -0.080674 -0.057989 -0.026668 + +Polar angle tht: 0.2618; Azimuth angle phi: 3.7088 +Force: 0.512210 0.278830 -10.422153 +Torque: -0.086684 -0.056503 -0.027908 + +Polar angle tht: 0.2618; Azimuth angle phi: 3.7525 +Force: 0.495662 0.297108 -10.418585 +Torque: -0.092527 -0.054911 -0.028936 + +Polar angle tht: 0.2618; Azimuth angle phi: 3.7961 +Force: 0.478168 0.314714 -10.414788 +Torque: -0.098192 -0.053214 -0.029744 + +Polar angle tht: 0.2618; Azimuth angle phi: 3.8397 +Force: 0.459783 0.331612 -10.410768 +Torque: -0.103669 -0.051415 -0.030326 + +Polar angle tht: 0.2618; Azimuth angle phi: 3.8834 +Force: 0.440565 0.347768 -10.406534 +Torque: -0.108946 -0.049518 -0.030676 + +Polar angle tht: 0.2618; Azimuth angle phi: 3.9270 +Force: 0.420573 0.363150 -10.402093 +Torque: -0.114014 -0.047525 -0.030793 + +Polar angle tht: 0.2618; Azimuth angle phi: 3.9706 +Force: 0.399868 0.377729 -10.397454 +Torque: -0.118863 -0.045440 -0.030676 + +Polar angle tht: 0.2618; Azimuth angle phi: 4.0143 +Force: 0.378513 0.391476 -10.392626 +Torque: -0.123484 -0.043267 -0.030326 + +Polar angle tht: 0.2618; Azimuth angle phi: 4.0579 +Force: 0.356570 0.404367 -10.387617 +Torque: -0.127867 -0.041010 -0.029744 + +Polar angle tht: 0.2618; Azimuth angle phi: 4.1015 +Force: 0.334103 0.416379 -10.382438 +Torque: -0.132006 -0.038671 -0.028936 + +Polar angle tht: 0.2618; Azimuth angle phi: 4.1452 +Force: 0.311179 0.427494 -10.377098 +Torque: -0.135891 -0.036256 -0.027908 + +Polar angle tht: 0.2618; Azimuth angle phi: 4.1888 +Force: 0.287860 0.437692 -10.371608 +Torque: -0.139516 -0.033769 -0.026668 + +Polar angle tht: 0.2618; Azimuth angle phi: 4.2324 +Force: 0.264213 0.446960 -10.365977 +Torque: -0.142874 -0.031213 -0.025224 + +Polar angle tht: 0.2618; Azimuth angle phi: 4.2761 +Force: 0.240300 0.455285 -10.360218 +Torque: -0.145958 -0.028594 -0.023589 + +Polar angle tht: 0.2618; Azimuth angle phi: 4.3197 +Force: 0.216187 0.462657 -10.354339 +Torque: -0.148763 -0.025917 -0.021774 + +Polar angle tht: 0.2618; Azimuth angle phi: 4.3633 +Force: 0.191935 0.469069 -10.348354 +Torque: -0.151284 -0.023185 -0.019794 + +Polar angle tht: 0.2618; Azimuth angle phi: 4.4070 +Force: 0.167607 0.474515 -10.342273 +Torque: -0.153515 -0.020404 -0.017662 + +Polar angle tht: 0.2618; Azimuth angle phi: 4.4506 +Force: 0.143263 0.478994 -10.336107 +Torque: -0.155453 -0.017579 -0.015397 + +Polar angle tht: 0.2618; Azimuth angle phi: 4.4942 +Force: 0.118961 0.482505 -10.329869 +Torque: -0.157094 -0.014715 -0.013014 + +Polar angle tht: 0.2618; Azimuth angle phi: 4.5379 +Force: 0.094758 0.485049 -10.323571 +Torque: -0.158435 -0.011817 -0.010532 + +Polar angle tht: 0.2618; Azimuth angle phi: 4.5815 +Force: 0.070708 0.486632 -10.317223 +Torque: -0.159473 -0.008892 -0.007970 + +Polar angle tht: 0.2618; Azimuth angle phi: 4.6251 +Force: 0.046866 0.487259 -10.310839 +Torque: -0.160208 -0.005943 -0.005347 + +Polar angle tht: 0.2618; Azimuth angle phi: 4.6688 +Force: 0.023281 0.486940 -10.304431 +Torque: -0.160638 -0.002977 -0.002684 + +Polar angle tht: 0.2618; Azimuth angle phi: 4.7124 +Force: 0.000000 0.485683 -10.298010 +Torque: -0.160761 -0.000000 -0.000000 + +Polar angle tht: 0.2618; Azimuth angle phi: 4.7560 +Force: -0.023281 0.486940 -10.304431 +Torque: -0.160638 0.002977 0.002684 + +Polar angle tht: 0.2618; Azimuth angle phi: 4.7997 +Force: -0.046866 0.487259 -10.310839 +Torque: -0.160208 0.005943 0.005347 + +Polar angle tht: 0.2618; Azimuth angle phi: 4.8433 +Force: -0.070708 0.486632 -10.317223 +Torque: -0.159473 0.008892 0.007970 + +Polar angle tht: 0.2618; Azimuth angle phi: 4.8869 +Force: -0.094758 0.485049 -10.323571 +Torque: -0.158435 0.011817 0.010532 + +Polar angle tht: 0.2618; Azimuth angle phi: 4.9306 +Force: -0.118961 0.482505 -10.329869 +Torque: -0.157094 0.014715 0.013014 + +Polar angle tht: 0.2618; Azimuth angle phi: 4.9742 +Force: -0.143263 0.478994 -10.336107 +Torque: -0.155453 0.017579 0.015397 + +Polar angle tht: 0.2618; Azimuth angle phi: 5.0178 +Force: -0.167607 0.474515 -10.342273 +Torque: -0.153515 0.020404 0.017662 + +Polar angle tht: 0.2618; Azimuth angle phi: 5.0615 +Force: -0.191935 0.469069 -10.348354 +Torque: -0.151284 0.023185 0.019794 + +Polar angle tht: 0.2618; Azimuth angle phi: 5.1051 +Force: -0.216187 0.462657 -10.354339 +Torque: -0.148763 0.025917 0.021774 + +Polar angle tht: 0.2618; Azimuth angle phi: 5.1487 +Force: -0.240300 0.455285 -10.360218 +Torque: -0.145958 0.028594 0.023589 + +Polar angle tht: 0.2618; Azimuth angle phi: 5.1924 +Force: -0.264213 0.446960 -10.365977 +Torque: -0.142874 0.031213 0.025224 + +Polar angle tht: 0.2618; Azimuth angle phi: 5.2360 +Force: -0.287860 0.437692 -10.371608 +Torque: -0.139516 0.033769 0.026668 + +Polar angle tht: 0.2618; Azimuth angle phi: 5.2796 +Force: -0.311179 0.427494 -10.377098 +Torque: -0.135891 0.036256 0.027908 + +Polar angle tht: 0.2618; Azimuth angle phi: 5.3233 +Force: -0.334103 0.416379 -10.382438 +Torque: -0.132006 0.038671 0.028936 + +Polar angle tht: 0.2618; Azimuth angle phi: 5.3669 +Force: -0.356570 0.404367 -10.387617 +Torque: -0.127867 0.041010 0.029744 + +Polar angle tht: 0.2618; Azimuth angle phi: 5.4105 +Force: -0.378513 0.391476 -10.392626 +Torque: -0.123484 0.043267 0.030326 + +Polar angle tht: 0.2618; Azimuth angle phi: 5.4542 +Force: -0.399868 0.377729 -10.397454 +Torque: -0.118863 0.045440 0.030676 + +Polar angle tht: 0.2618; Azimuth angle phi: 5.4978 +Force: -0.420573 0.363150 -10.402093 +Torque: -0.114014 0.047525 0.030793 + +Polar angle tht: 0.2618; Azimuth angle phi: 5.5414 +Force: -0.440565 0.347768 -10.406534 +Torque: -0.108946 0.049518 0.030676 + +Polar angle tht: 0.2618; Azimuth angle phi: 5.5851 +Force: -0.459783 0.331612 -10.410768 +Torque: -0.103669 0.051415 0.030326 + +Polar angle tht: 0.2618; Azimuth angle phi: 5.6287 +Force: -0.478168 0.314714 -10.414788 +Torque: -0.098192 0.053214 0.029744 + +Polar angle tht: 0.2618; Azimuth angle phi: 5.6723 +Force: -0.495662 0.297108 -10.418585 +Torque: -0.092527 0.054911 0.028936 + +Polar angle tht: 0.2618; Azimuth angle phi: 5.7160 +Force: -0.512210 0.278830 -10.422153 +Torque: -0.086684 0.056503 0.027908 + +Polar angle tht: 0.2618; Azimuth angle phi: 5.7596 +Force: -0.527760 0.259920 -10.425485 +Torque: -0.080674 0.057989 0.026668 + +Polar angle tht: 0.2618; Azimuth angle phi: 5.8032 +Force: -0.542262 0.240418 -10.428574 +Torque: -0.074509 0.059364 0.025224 + +Polar angle tht: 0.2618; Azimuth angle phi: 5.8469 +Force: -0.555669 0.220365 -10.431414 +Torque: -0.068200 0.060628 0.023589 + +Polar angle tht: 0.2618; Azimuth angle phi: 5.8905 +Force: -0.567936 0.199807 -10.434001 +Torque: -0.061760 0.061778 0.021774 + +Polar angle tht: 0.2618; Azimuth angle phi: 5.9341 +Force: -0.579024 0.178789 -10.436328 +Torque: -0.055201 0.062812 0.019794 + +Polar angle tht: 0.2618; Azimuth angle phi: 5.9778 +Force: -0.588897 0.157359 -10.438393 +Torque: -0.048536 0.063728 0.017662 + +Polar angle tht: 0.2618; Azimuth angle phi: 6.0214 +Force: -0.597521 0.135564 -10.440190 +Torque: -0.041777 0.064525 0.015397 + +Polar angle tht: 0.2618; Azimuth angle phi: 6.0650 +Force: -0.604867 0.113455 -10.441716 +Torque: -0.034938 0.065202 0.013014 + +Polar angle tht: 0.2618; Azimuth angle phi: 6.1087 +Force: -0.610912 0.091083 -10.442969 +Torque: -0.028032 0.065757 0.010532 + +Polar angle tht: 0.2618; Azimuth angle phi: 6.1523 +Force: -0.615635 0.068498 -10.443946 +Torque: -0.021071 0.066190 0.007970 + +Polar angle tht: 0.2618; Azimuth angle phi: 6.1959 +Force: -0.619020 0.045754 -10.444645 +Torque: -0.014070 0.066500 0.005347 + +Polar angle tht: 0.2618; Azimuth angle phi: 6.2396 +Force: -0.621055 0.022904 -10.445065 +Torque: -0.007042 0.066686 0.002684 + +Polar angle tht: 0.2618; Azimuth angle phi: 6.2832 +Force: -0.621735 0.000000 -10.445205 +Torque: -0.000000 0.066748 0.000000 + +Polar angle tht: 0.3054; Azimuth angle phi: 0.0000 +Force: -0.732527 0.000000 -10.217944 +Torque: -0.000000 0.076238 0.000000 + +Polar angle tht: 0.3054; Azimuth angle phi: 0.0436 +Force: -0.731711 -0.026623 -10.217783 +Torque: 0.008084 0.076168 -0.003623 + +Polar angle tht: 0.3054; Azimuth angle phi: 0.0873 +Force: -0.729268 -0.053182 -10.217301 +Torque: 0.016152 0.075956 -0.007218 + +Polar angle tht: 0.3054; Azimuth angle phi: 0.1309 +Force: -0.725206 -0.079613 -10.216499 +Torque: 0.024190 0.075604 -0.010758 + +Polar angle tht: 0.3054; Azimuth angle phi: 0.1745 +Force: -0.719539 -0.105853 -10.215379 +Torque: 0.032180 0.075112 -0.014217 + +Polar angle tht: 0.3054; Azimuth angle phi: 0.2182 +Force: -0.712288 -0.131840 -10.213941 +Torque: 0.040108 0.074481 -0.017567 + +Polar angle tht: 0.3054; Azimuth angle phi: 0.2618 +Force: -0.703478 -0.157512 -10.212190 +Torque: 0.047959 0.073711 -0.020783 + +Polar angle tht: 0.3054; Azimuth angle phi: 0.3054 +Force: -0.693140 -0.182808 -10.210129 +Torque: 0.055718 0.072804 -0.023842 + +Polar angle tht: 0.3054; Azimuth angle phi: 0.3491 +Force: -0.681310 -0.207668 -10.207761 +Torque: 0.063368 0.071762 -0.026719 + +Polar angle tht: 0.3054; Azimuth angle phi: 0.3927 +Force: -0.668030 -0.232036 -10.205091 +Torque: 0.070897 0.070585 -0.029392 + +Polar angle tht: 0.3054; Azimuth angle phi: 0.4363 +Force: -0.653346 -0.255855 -10.202124 +Torque: 0.078288 0.069277 -0.031842 + +Polar angle tht: 0.3054; Azimuth angle phi: 0.4800 +Force: -0.637309 -0.279070 -10.198865 +Torque: 0.085529 0.067838 -0.034050 + +Polar angle tht: 0.3054; Azimuth angle phi: 0.5236 +Force: -0.619973 -0.301630 -10.195322 +Torque: 0.092605 0.066272 -0.035998 + +Polar angle tht: 0.3054; Azimuth angle phi: 0.5672 +Force: -0.601399 -0.323484 -10.191500 +Torque: 0.099502 0.064581 -0.037672 + +Polar angle tht: 0.3054; Azimuth angle phi: 0.6109 +Force: -0.581648 -0.344584 -10.187407 +Torque: 0.106207 0.062767 -0.039060 + +Polar angle tht: 0.3054; Azimuth angle phi: 0.6545 +Force: -0.560786 -0.364886 -10.183051 +Torque: 0.112708 0.060834 -0.040151 + +Polar angle tht: 0.3054; Azimuth angle phi: 0.6981 +Force: -0.538884 -0.384346 -10.178439 +Torque: 0.118992 0.058784 -0.040936 + +Polar angle tht: 0.3054; Azimuth angle phi: 0.7418 +Force: -0.516013 -0.402926 -10.173582 +Torque: 0.125046 0.056622 -0.041409 + +Polar angle tht: 0.3054; Azimuth angle phi: 0.7854 +Force: -0.492247 -0.420586 -10.168487 +Torque: 0.130860 0.054350 -0.041567 + +Polar angle tht: 0.3054; Azimuth angle phi: 0.8290 +Force: -0.467661 -0.437295 -10.163166 +Torque: 0.136422 0.051973 -0.041409 + +Polar angle tht: 0.3054; Azimuth angle phi: 0.8727 +Force: -0.442335 -0.453019 -10.157627 +Torque: 0.141722 0.049495 -0.040936 + +Polar angle tht: 0.3054; Azimuth angle phi: 0.9163 +Force: -0.416347 -0.467732 -10.151881 +Torque: 0.146750 0.046919 -0.040151 + +Polar angle tht: 0.3054; Azimuth angle phi: 0.9599 +Force: -0.389776 -0.481407 -10.145940 +Torque: 0.151496 0.044250 -0.039060 + +Polar angle tht: 0.3054; Azimuth angle phi: 1.0036 +Force: -0.362703 -0.494024 -10.139815 +Torque: 0.155950 0.041493 -0.037672 + +Polar angle tht: 0.3054; Azimuth angle phi: 1.0472 +Force: -0.335207 -0.505562 -10.133516 +Torque: 0.160106 0.038652 -0.035998 + +Polar angle tht: 0.3054; Azimuth angle phi: 1.0908 +Force: -0.307368 -0.516006 -10.127057 +Torque: 0.163955 0.035733 -0.034050 + +Polar angle tht: 0.3054; Azimuth angle phi: 1.1345 +Force: -0.279266 -0.525344 -10.120450 +Torque: 0.167489 0.032740 -0.031842 + +Polar angle tht: 0.3054; Azimuth angle phi: 1.1781 +Force: -0.250979 -0.533565 -10.113707 +Torque: 0.170703 0.029679 -0.029392 + +Polar angle tht: 0.3054; Azimuth angle phi: 1.2217 +Force: -0.222583 -0.540663 -10.106841 +Torque: 0.173590 0.026555 -0.026719 + +Polar angle tht: 0.3054; Azimuth angle phi: 1.2654 +Force: -0.194153 -0.546635 -10.099865 +Torque: 0.176144 0.023374 -0.023842 + +Polar angle tht: 0.3054; Azimuth angle phi: 1.3090 +Force: -0.165761 -0.551478 -10.092792 +Torque: 0.178362 0.020141 -0.020783 + +Polar angle tht: 0.3054; Azimuth angle phi: 1.3526 +Force: -0.137480 -0.555196 -10.085636 +Torque: 0.180239 0.016863 -0.017567 + +Polar angle tht: 0.3054; Azimuth angle phi: 1.3963 +Force: -0.109376 -0.557793 -10.078410 +Torque: 0.181772 0.013545 -0.014217 + +Polar angle tht: 0.3054; Azimuth angle phi: 1.4399 +Force: -0.081516 -0.559276 -10.071129 +Torque: 0.182958 0.010193 -0.010758 + +Polar angle tht: 0.3054; Azimuth angle phi: 1.4835 +Force: -0.053961 -0.559655 -10.063806 +Torque: 0.183795 0.006814 -0.007218 + +Polar angle tht: 0.3054; Azimuth angle phi: 1.5272 +Force: -0.026770 -0.558943 -10.056454 +Torque: 0.184282 0.003414 -0.003623 + +Polar angle tht: 0.3054; Azimuth angle phi: 1.5708 +Force: 0.000000 -0.557153 -10.049089 +Torque: 0.184418 -0.000000 0.000000 + +Polar angle tht: 0.3054; Azimuth angle phi: 1.6144 +Force: 0.026770 -0.558943 -10.056454 +Torque: 0.184282 -0.003414 0.003623 + +Polar angle tht: 0.3054; Azimuth angle phi: 1.6581 +Force: 0.053961 -0.559655 -10.063806 +Torque: 0.183795 -0.006814 0.007218 + +Polar angle tht: 0.3054; Azimuth angle phi: 1.7017 +Force: 0.081516 -0.559276 -10.071129 +Torque: 0.182958 -0.010193 0.010758 + +Polar angle tht: 0.3054; Azimuth angle phi: 1.7453 +Force: 0.109376 -0.557793 -10.078410 +Torque: 0.181772 -0.013545 0.014217 + +Polar angle tht: 0.3054; Azimuth angle phi: 1.7890 +Force: 0.137480 -0.555196 -10.085636 +Torque: 0.180239 -0.016863 0.017567 + +Polar angle tht: 0.3054; Azimuth angle phi: 1.8326 +Force: 0.165761 -0.551478 -10.092792 +Torque: 0.178362 -0.020141 0.020783 + +Polar angle tht: 0.3054; Azimuth angle phi: 1.8762 +Force: 0.194153 -0.546635 -10.099865 +Torque: 0.176144 -0.023374 0.023842 + +Polar angle tht: 0.3054; Azimuth angle phi: 1.9199 +Force: 0.222583 -0.540663 -10.106841 +Torque: 0.173590 -0.026555 0.026719 + +Polar angle tht: 0.3054; Azimuth angle phi: 1.9635 +Force: 0.250979 -0.533565 -10.113707 +Torque: 0.170703 -0.029679 0.029392 + +Polar angle tht: 0.3054; Azimuth angle phi: 2.0071 +Force: 0.279266 -0.525344 -10.120450 +Torque: 0.167489 -0.032740 0.031842 + +Polar angle tht: 0.3054; Azimuth angle phi: 2.0508 +Force: 0.307368 -0.516006 -10.127057 +Torque: 0.163955 -0.035733 0.034050 + +Polar angle tht: 0.3054; Azimuth angle phi: 2.0944 +Force: 0.335207 -0.505562 -10.133516 +Torque: 0.160106 -0.038652 0.035998 + +Polar angle tht: 0.3054; Azimuth angle phi: 2.1380 +Force: 0.362703 -0.494024 -10.139815 +Torque: 0.155950 -0.041493 0.037672 + +Polar angle tht: 0.3054; Azimuth angle phi: 2.1817 +Force: 0.389776 -0.481407 -10.145940 +Torque: 0.151496 -0.044250 0.039060 + +Polar angle tht: 0.3054; Azimuth angle phi: 2.2253 +Force: 0.416347 -0.467732 -10.151881 +Torque: 0.146750 -0.046919 0.040151 + +Polar angle tht: 0.3054; Azimuth angle phi: 2.2689 +Force: 0.442335 -0.453019 -10.157627 +Torque: 0.141722 -0.049495 0.040936 + +Polar angle tht: 0.3054; Azimuth angle phi: 2.3126 +Force: 0.467661 -0.437295 -10.163166 +Torque: 0.136422 -0.051973 0.041409 + +Polar angle tht: 0.3054; Azimuth angle phi: 2.3562 +Force: 0.492247 -0.420586 -10.168487 +Torque: 0.130860 -0.054350 0.041567 + +Polar angle tht: 0.3054; Azimuth angle phi: 2.3998 +Force: 0.516013 -0.402926 -10.173582 +Torque: 0.125046 -0.056622 0.041409 + +Polar angle tht: 0.3054; Azimuth angle phi: 2.4435 +Force: 0.538884 -0.384346 -10.178439 +Torque: 0.118992 -0.058784 0.040936 + +Polar angle tht: 0.3054; Azimuth angle phi: 2.4871 +Force: 0.560786 -0.364886 -10.183051 +Torque: 0.112708 -0.060834 0.040151 + +Polar angle tht: 0.3054; Azimuth angle phi: 2.5307 +Force: 0.581648 -0.344584 -10.187407 +Torque: 0.106207 -0.062767 0.039060 + +Polar angle tht: 0.3054; Azimuth angle phi: 2.5744 +Force: 0.601399 -0.323484 -10.191500 +Torque: 0.099502 -0.064581 0.037672 + +Polar angle tht: 0.3054; Azimuth angle phi: 2.6180 +Force: 0.619973 -0.301630 -10.195322 +Torque: 0.092605 -0.066272 0.035998 + +Polar angle tht: 0.3054; Azimuth angle phi: 2.6616 +Force: 0.637309 -0.279070 -10.198865 +Torque: 0.085529 -0.067838 0.034050 + +Polar angle tht: 0.3054; Azimuth angle phi: 2.7053 +Force: 0.653346 -0.255855 -10.202124 +Torque: 0.078288 -0.069277 0.031842 + +Polar angle tht: 0.3054; Azimuth angle phi: 2.7489 +Force: 0.668030 -0.232036 -10.205091 +Torque: 0.070897 -0.070585 0.029392 + +Polar angle tht: 0.3054; Azimuth angle phi: 2.7925 +Force: 0.681310 -0.207668 -10.207761 +Torque: 0.063368 -0.071762 0.026719 + +Polar angle tht: 0.3054; Azimuth angle phi: 2.8362 +Force: 0.693140 -0.182808 -10.210129 +Torque: 0.055718 -0.072804 0.023842 + +Polar angle tht: 0.3054; Azimuth angle phi: 2.8798 +Force: 0.703478 -0.157512 -10.212190 +Torque: 0.047959 -0.073711 0.020783 + +Polar angle tht: 0.3054; Azimuth angle phi: 2.9234 +Force: 0.712288 -0.131840 -10.213941 +Torque: 0.040108 -0.074481 0.017567 + +Polar angle tht: 0.3054; Azimuth angle phi: 2.9671 +Force: 0.719539 -0.105853 -10.215379 +Torque: 0.032180 -0.075112 0.014217 + +Polar angle tht: 0.3054; Azimuth angle phi: 3.0107 +Force: 0.725206 -0.079613 -10.216499 +Torque: 0.024190 -0.075604 0.010758 + +Polar angle tht: 0.3054; Azimuth angle phi: 3.0543 +Force: 0.729268 -0.053182 -10.217301 +Torque: 0.016152 -0.075956 0.007218 + +Polar angle tht: 0.3054; Azimuth angle phi: 3.0980 +Force: 0.731711 -0.026623 -10.217783 +Torque: 0.008084 -0.076168 0.003623 + +Polar angle tht: 0.3054; Azimuth angle phi: 3.1416 +Force: 0.732527 0.000000 -10.217944 +Torque: -0.000000 -0.076238 -0.000000 + +Polar angle tht: 0.3054; Azimuth angle phi: 3.1852 +Force: 0.731711 0.026623 -10.217783 +Torque: -0.008084 -0.076168 -0.003623 + +Polar angle tht: 0.3054; Azimuth angle phi: 3.2289 +Force: 0.729268 0.053182 -10.217301 +Torque: -0.016152 -0.075956 -0.007218 + +Polar angle tht: 0.3054; Azimuth angle phi: 3.2725 +Force: 0.725206 0.079613 -10.216499 +Torque: -0.024190 -0.075604 -0.010758 + +Polar angle tht: 0.3054; Azimuth angle phi: 3.3161 +Force: 0.719539 0.105853 -10.215379 +Torque: -0.032180 -0.075112 -0.014217 + +Polar angle tht: 0.3054; Azimuth angle phi: 3.3598 +Force: 0.712288 0.131840 -10.213941 +Torque: -0.040108 -0.074481 -0.017567 + +Polar angle tht: 0.3054; Azimuth angle phi: 3.4034 +Force: 0.703478 0.157512 -10.212190 +Torque: -0.047959 -0.073711 -0.020783 + +Polar angle tht: 0.3054; Azimuth angle phi: 3.4470 +Force: 0.693140 0.182808 -10.210129 +Torque: -0.055718 -0.072804 -0.023842 + +Polar angle tht: 0.3054; Azimuth angle phi: 3.4907 +Force: 0.681310 0.207668 -10.207761 +Torque: -0.063368 -0.071762 -0.026719 + +Polar angle tht: 0.3054; Azimuth angle phi: 3.5343 +Force: 0.668030 0.232036 -10.205091 +Torque: -0.070897 -0.070585 -0.029392 + +Polar angle tht: 0.3054; Azimuth angle phi: 3.5779 +Force: 0.653346 0.255855 -10.202124 +Torque: -0.078288 -0.069277 -0.031842 + +Polar angle tht: 0.3054; Azimuth angle phi: 3.6216 +Force: 0.637309 0.279070 -10.198865 +Torque: -0.085529 -0.067838 -0.034050 + +Polar angle tht: 0.3054; Azimuth angle phi: 3.6652 +Force: 0.619973 0.301630 -10.195322 +Torque: -0.092605 -0.066272 -0.035998 + +Polar angle tht: 0.3054; Azimuth angle phi: 3.7088 +Force: 0.601399 0.323484 -10.191500 +Torque: -0.099502 -0.064581 -0.037672 + +Polar angle tht: 0.3054; Azimuth angle phi: 3.7525 +Force: 0.581648 0.344584 -10.187407 +Torque: -0.106207 -0.062767 -0.039060 + +Polar angle tht: 0.3054; Azimuth angle phi: 3.7961 +Force: 0.560786 0.364886 -10.183051 +Torque: -0.112708 -0.060834 -0.040151 + +Polar angle tht: 0.3054; Azimuth angle phi: 3.8397 +Force: 0.538884 0.384346 -10.178439 +Torque: -0.118992 -0.058784 -0.040936 + +Polar angle tht: 0.3054; Azimuth angle phi: 3.8834 +Force: 0.516013 0.402926 -10.173582 +Torque: -0.125046 -0.056622 -0.041409 + +Polar angle tht: 0.3054; Azimuth angle phi: 3.9270 +Force: 0.492247 0.420586 -10.168487 +Torque: -0.130860 -0.054350 -0.041567 + +Polar angle tht: 0.3054; Azimuth angle phi: 3.9706 +Force: 0.467661 0.437295 -10.163166 +Torque: -0.136422 -0.051973 -0.041409 + +Polar angle tht: 0.3054; Azimuth angle phi: 4.0143 +Force: 0.442335 0.453019 -10.157627 +Torque: -0.141722 -0.049495 -0.040936 + +Polar angle tht: 0.3054; Azimuth angle phi: 4.0579 +Force: 0.416347 0.467732 -10.151881 +Torque: -0.146750 -0.046919 -0.040151 + +Polar angle tht: 0.3054; Azimuth angle phi: 4.1015 +Force: 0.389776 0.481407 -10.145940 +Torque: -0.151496 -0.044250 -0.039060 + +Polar angle tht: 0.3054; Azimuth angle phi: 4.1452 +Force: 0.362703 0.494024 -10.139815 +Torque: -0.155950 -0.041493 -0.037672 + +Polar angle tht: 0.3054; Azimuth angle phi: 4.1888 +Force: 0.335207 0.505562 -10.133516 +Torque: -0.160106 -0.038652 -0.035998 + +Polar angle tht: 0.3054; Azimuth angle phi: 4.2324 +Force: 0.307368 0.516006 -10.127057 +Torque: -0.163955 -0.035733 -0.034050 + +Polar angle tht: 0.3054; Azimuth angle phi: 4.2761 +Force: 0.279266 0.525344 -10.120450 +Torque: -0.167489 -0.032740 -0.031842 + +Polar angle tht: 0.3054; Azimuth angle phi: 4.3197 +Force: 0.250979 0.533565 -10.113707 +Torque: -0.170703 -0.029679 -0.029392 + +Polar angle tht: 0.3054; Azimuth angle phi: 4.3633 +Force: 0.222583 0.540663 -10.106841 +Torque: -0.173590 -0.026555 -0.026719 + +Polar angle tht: 0.3054; Azimuth angle phi: 4.4070 +Force: 0.194153 0.546635 -10.099865 +Torque: -0.176144 -0.023374 -0.023842 + +Polar angle tht: 0.3054; Azimuth angle phi: 4.4506 +Force: 0.165761 0.551478 -10.092792 +Torque: -0.178362 -0.020141 -0.020783 + +Polar angle tht: 0.3054; Azimuth angle phi: 4.4942 +Force: 0.137480 0.555196 -10.085636 +Torque: -0.180239 -0.016863 -0.017567 + +Polar angle tht: 0.3054; Azimuth angle phi: 4.5379 +Force: 0.109376 0.557793 -10.078410 +Torque: -0.181772 -0.013545 -0.014217 + +Polar angle tht: 0.3054; Azimuth angle phi: 4.5815 +Force: 0.081516 0.559276 -10.071129 +Torque: -0.182958 -0.010193 -0.010758 + +Polar angle tht: 0.3054; Azimuth angle phi: 4.6251 +Force: 0.053961 0.559655 -10.063806 +Torque: -0.183795 -0.006814 -0.007218 + +Polar angle tht: 0.3054; Azimuth angle phi: 4.6688 +Force: 0.026770 0.558943 -10.056454 +Torque: -0.184282 -0.003414 -0.003623 + +Polar angle tht: 0.3054; Azimuth angle phi: 4.7124 +Force: 0.000000 0.557153 -10.049089 +Torque: -0.184418 -0.000000 -0.000000 + +Polar angle tht: 0.3054; Azimuth angle phi: 4.7560 +Force: -0.026770 0.558943 -10.056454 +Torque: -0.184282 0.003414 0.003623 + +Polar angle tht: 0.3054; Azimuth angle phi: 4.7997 +Force: -0.053961 0.559655 -10.063806 +Torque: -0.183795 0.006814 0.007218 + +Polar angle tht: 0.3054; Azimuth angle phi: 4.8433 +Force: -0.081516 0.559276 -10.071129 +Torque: -0.182958 0.010193 0.010758 + +Polar angle tht: 0.3054; Azimuth angle phi: 4.8869 +Force: -0.109376 0.557793 -10.078410 +Torque: -0.181772 0.013545 0.014217 + +Polar angle tht: 0.3054; Azimuth angle phi: 4.9306 +Force: -0.137480 0.555196 -10.085636 +Torque: -0.180239 0.016863 0.017567 + +Polar angle tht: 0.3054; Azimuth angle phi: 4.9742 +Force: -0.165761 0.551478 -10.092792 +Torque: -0.178362 0.020141 0.020783 + +Polar angle tht: 0.3054; Azimuth angle phi: 5.0178 +Force: -0.194153 0.546635 -10.099865 +Torque: -0.176144 0.023374 0.023842 + +Polar angle tht: 0.3054; Azimuth angle phi: 5.0615 +Force: -0.222583 0.540663 -10.106841 +Torque: -0.173590 0.026555 0.026719 + +Polar angle tht: 0.3054; Azimuth angle phi: 5.1051 +Force: -0.250979 0.533565 -10.113707 +Torque: -0.170703 0.029679 0.029392 + +Polar angle tht: 0.3054; Azimuth angle phi: 5.1487 +Force: -0.279266 0.525344 -10.120450 +Torque: -0.167489 0.032740 0.031842 + +Polar angle tht: 0.3054; Azimuth angle phi: 5.1924 +Force: -0.307368 0.516006 -10.127057 +Torque: -0.163955 0.035733 0.034050 + +Polar angle tht: 0.3054; Azimuth angle phi: 5.2360 +Force: -0.335207 0.505562 -10.133516 +Torque: -0.160106 0.038652 0.035998 + +Polar angle tht: 0.3054; Azimuth angle phi: 5.2796 +Force: -0.362703 0.494024 -10.139815 +Torque: -0.155950 0.041493 0.037672 + +Polar angle tht: 0.3054; Azimuth angle phi: 5.3233 +Force: -0.389776 0.481407 -10.145940 +Torque: -0.151496 0.044250 0.039060 + +Polar angle tht: 0.3054; Azimuth angle phi: 5.3669 +Force: -0.416347 0.467732 -10.151881 +Torque: -0.146750 0.046919 0.040151 + +Polar angle tht: 0.3054; Azimuth angle phi: 5.4105 +Force: -0.442335 0.453019 -10.157627 +Torque: -0.141722 0.049495 0.040936 + +Polar angle tht: 0.3054; Azimuth angle phi: 5.4542 +Force: -0.467661 0.437295 -10.163166 +Torque: -0.136422 0.051973 0.041409 + +Polar angle tht: 0.3054; Azimuth angle phi: 5.4978 +Force: -0.492247 0.420586 -10.168487 +Torque: -0.130860 0.054350 0.041567 + +Polar angle tht: 0.3054; Azimuth angle phi: 5.5414 +Force: -0.516013 0.402926 -10.173582 +Torque: -0.125046 0.056622 0.041409 + +Polar angle tht: 0.3054; Azimuth angle phi: 5.5851 +Force: -0.538884 0.384346 -10.178439 +Torque: -0.118992 0.058784 0.040936 + +Polar angle tht: 0.3054; Azimuth angle phi: 5.6287 +Force: -0.560786 0.364886 -10.183051 +Torque: -0.112708 0.060834 0.040151 + +Polar angle tht: 0.3054; Azimuth angle phi: 5.6723 +Force: -0.581648 0.344584 -10.187407 +Torque: -0.106207 0.062767 0.039060 + +Polar angle tht: 0.3054; Azimuth angle phi: 5.7160 +Force: -0.601399 0.323484 -10.191500 +Torque: -0.099502 0.064581 0.037672 + +Polar angle tht: 0.3054; Azimuth angle phi: 5.7596 +Force: -0.619973 0.301630 -10.195322 +Torque: -0.092605 0.066272 0.035998 + +Polar angle tht: 0.3054; Azimuth angle phi: 5.8032 +Force: -0.637309 0.279070 -10.198865 +Torque: -0.085529 0.067838 0.034050 + +Polar angle tht: 0.3054; Azimuth angle phi: 5.8469 +Force: -0.653346 0.255855 -10.202124 +Torque: -0.078288 0.069277 0.031842 + +Polar angle tht: 0.3054; Azimuth angle phi: 5.8905 +Force: -0.668030 0.232036 -10.205091 +Torque: -0.070897 0.070585 0.029392 + +Polar angle tht: 0.3054; Azimuth angle phi: 5.9341 +Force: -0.681310 0.207668 -10.207761 +Torque: -0.063368 0.071762 0.026719 + +Polar angle tht: 0.3054; Azimuth angle phi: 5.9778 +Force: -0.693140 0.182808 -10.210129 +Torque: -0.055718 0.072804 0.023842 + +Polar angle tht: 0.3054; Azimuth angle phi: 6.0214 +Force: -0.703478 0.157512 -10.212190 +Torque: -0.047959 0.073711 0.020783 + +Polar angle tht: 0.3054; Azimuth angle phi: 6.0650 +Force: -0.712288 0.131840 -10.213941 +Torque: -0.040108 0.074481 0.017567 + +Polar angle tht: 0.3054; Azimuth angle phi: 6.1087 +Force: -0.719539 0.105853 -10.215379 +Torque: -0.032180 0.075112 0.014217 + +Polar angle tht: 0.3054; Azimuth angle phi: 6.1523 +Force: -0.725206 0.079613 -10.216499 +Torque: -0.024190 0.075604 0.010758 + +Polar angle tht: 0.3054; Azimuth angle phi: 6.1959 +Force: -0.729268 0.053182 -10.217301 +Torque: -0.016152 0.075956 0.007218 + +Polar angle tht: 0.3054; Azimuth angle phi: 6.2396 +Force: -0.731711 0.026623 -10.217783 +Torque: -0.008084 0.076168 0.003623 + +Polar angle tht: 0.3054; Azimuth angle phi: 6.2832 +Force: -0.732527 0.000000 -10.217944 +Torque: -0.000000 0.076238 0.000000 + +Polar angle tht: 0.3491; Azimuth angle phi: 0.0000 +Force: -0.843264 0.000000 -9.956135 +Torque: -0.000000 0.085054 0.000000 + +Polar angle tht: 0.3491; Azimuth angle phi: 0.0436 +Force: -0.842308 -0.030237 -9.955955 +Torque: 0.009066 0.084976 -0.004687 + +Polar angle tht: 0.3491; Azimuth angle phi: 0.0873 +Force: -0.839446 -0.060398 -9.955415 +Torque: 0.018115 0.084741 -0.009338 + +Polar angle tht: 0.3491; Azimuth angle phi: 0.1309 +Force: -0.834686 -0.090411 -9.954516 +Torque: 0.027129 0.084350 -0.013918 + +Polar angle tht: 0.3491; Azimuth angle phi: 0.1745 +Force: -0.828048 -0.120201 -9.953260 +Torque: 0.036090 0.083803 -0.018392 + +Polar angle tht: 0.3491; Azimuth angle phi: 0.2182 +Force: -0.819556 -0.149695 -9.951650 +Torque: 0.044982 0.083102 -0.022726 + +Polar angle tht: 0.3491; Azimuth angle phi: 0.2618 +Force: -0.809241 -0.178821 -9.949687 +Torque: 0.053786 0.082247 -0.026887 + +Polar angle tht: 0.3491; Azimuth angle phi: 0.3054 +Force: -0.797141 -0.207508 -9.947377 +Torque: 0.062486 0.081239 -0.030843 + +Polar angle tht: 0.3491; Azimuth angle phi: 0.3491 +Force: -0.783301 -0.235687 -9.944723 +Torque: 0.071066 0.080081 -0.034565 + +Polar angle tht: 0.3491; Azimuth angle phi: 0.3927 +Force: -0.767772 -0.263291 -9.941731 +Torque: 0.079508 0.078774 -0.038024 + +Polar angle tht: 0.3491; Azimuth angle phi: 0.4363 +Force: -0.750610 -0.290256 -9.938406 +Torque: 0.087796 0.077319 -0.041193 + +Polar angle tht: 0.3491; Azimuth angle phi: 0.4800 +Force: -0.731878 -0.316517 -9.934754 +Torque: 0.095914 0.075720 -0.044049 + +Polar angle tht: 0.3491; Azimuth angle phi: 0.5236 +Force: -0.711642 -0.342015 -9.930783 +Torque: 0.103847 0.073979 -0.046569 + +Polar angle tht: 0.3491; Azimuth angle phi: 0.5672 +Force: -0.689975 -0.366691 -9.926500 +Torque: 0.111580 0.072098 -0.048735 + +Polar angle tht: 0.3491; Azimuth angle phi: 0.6109 +Force: -0.666954 -0.390491 -9.921913 +Torque: 0.119097 0.070081 -0.050531 + +Polar angle tht: 0.3491; Azimuth angle phi: 0.6545 +Force: -0.642659 -0.413364 -9.917032 +Torque: 0.126384 0.067930 -0.051941 + +Polar angle tht: 0.3491; Azimuth angle phi: 0.6981 +Force: -0.617176 -0.435259 -9.911864 +Torque: 0.133428 0.065650 -0.052957 + +Polar angle tht: 0.3491; Azimuth angle phi: 0.7418 +Force: -0.590590 -0.456133 -9.906420 +Torque: 0.140214 0.063243 -0.053569 + +Polar angle tht: 0.3491; Azimuth angle phi: 0.7854 +Force: -0.562994 -0.475942 -9.900711 +Torque: 0.146729 0.060714 -0.053774 + +Polar angle tht: 0.3491; Azimuth angle phi: 0.8290 +Force: -0.534479 -0.494649 -9.894747 +Torque: 0.152963 0.058066 -0.053569 + +Polar angle tht: 0.3491; Azimuth angle phi: 0.8727 +Force: -0.505139 -0.512218 -9.888540 +Torque: 0.158901 0.055305 -0.052957 + +Polar angle tht: 0.3491; Azimuth angle phi: 0.9163 +Force: -0.475071 -0.528619 -9.882101 +Torque: 0.164534 0.052435 -0.051941 + +Polar angle tht: 0.3491; Azimuth angle phi: 0.9599 +Force: -0.444370 -0.543824 -9.875443 +Torque: 0.169850 0.049460 -0.050531 + +Polar angle tht: 0.3491; Azimuth angle phi: 1.0036 +Force: -0.413132 -0.557809 -9.868578 +Torque: 0.174840 0.046386 -0.048735 + +Polar angle tht: 0.3491; Azimuth angle phi: 1.0472 +Force: -0.381455 -0.570554 -9.861520 +Torque: 0.179494 0.043217 -0.046569 + +Polar angle tht: 0.3491; Azimuth angle phi: 1.0908 +Force: -0.349434 -0.582043 -9.854282 +Torque: 0.183803 0.039959 -0.044049 + +Polar angle tht: 0.3491; Azimuth angle phi: 1.1345 +Force: -0.317164 -0.592263 -9.846877 +Torque: 0.187760 0.036619 -0.041193 + +Polar angle tht: 0.3491; Azimuth angle phi: 1.1781 +Force: -0.284738 -0.601205 -9.839320 +Torque: 0.191357 0.033201 -0.038024 + +Polar angle tht: 0.3491; Azimuth angle phi: 1.2217 +Force: -0.252247 -0.608863 -9.831626 +Torque: 0.194587 0.029711 -0.034565 + +Polar angle tht: 0.3491; Azimuth angle phi: 1.2654 +Force: -0.219781 -0.615236 -9.823808 +Torque: 0.197444 0.026157 -0.030843 + +Polar angle tht: 0.3491; Azimuth angle phi: 1.3090 +Force: -0.187424 -0.620326 -9.815881 +Torque: 0.199924 0.022543 -0.026887 + +Polar angle tht: 0.3491; Azimuth angle phi: 1.3526 +Force: -0.155261 -0.624136 -9.807862 +Torque: 0.202022 0.018877 -0.022726 + +Polar angle tht: 0.3491; Azimuth angle phi: 1.3963 +Force: -0.123371 -0.626675 -9.799765 +Torque: 0.203733 0.015165 -0.018392 + +Polar angle tht: 0.3491; Azimuth angle phi: 1.4399 +Force: -0.091830 -0.627954 -9.791605 +Torque: 0.205055 0.011415 -0.013918 + +Polar angle tht: 0.3491; Azimuth angle phi: 1.4835 +Force: -0.060710 -0.627986 -9.783398 +Torque: 0.205987 0.007632 -0.009338 + +Polar angle tht: 0.3491; Azimuth angle phi: 1.5272 +Force: -0.030078 -0.626789 -9.775159 +Torque: 0.206525 0.003825 -0.004687 + +Polar angle tht: 0.3491; Azimuth angle phi: 1.5708 +Force: 0.000000 -0.624382 -9.766905 +Torque: 0.206671 -0.000000 0.000000 + +Polar angle tht: 0.3491; Azimuth angle phi: 1.6144 +Force: 0.030078 -0.626789 -9.775159 +Torque: 0.206525 -0.003825 0.004687 + +Polar angle tht: 0.3491; Azimuth angle phi: 1.6581 +Force: 0.060710 -0.627986 -9.783398 +Torque: 0.205987 -0.007632 0.009338 + +Polar angle tht: 0.3491; Azimuth angle phi: 1.7017 +Force: 0.091830 -0.627954 -9.791605 +Torque: 0.205055 -0.011415 0.013918 + +Polar angle tht: 0.3491; Azimuth angle phi: 1.7453 +Force: 0.123371 -0.626675 -9.799765 +Torque: 0.203733 -0.015165 0.018392 + +Polar angle tht: 0.3491; Azimuth angle phi: 1.7890 +Force: 0.155261 -0.624136 -9.807862 +Torque: 0.202022 -0.018877 0.022726 + +Polar angle tht: 0.3491; Azimuth angle phi: 1.8326 +Force: 0.187424 -0.620326 -9.815881 +Torque: 0.199924 -0.022543 0.026887 + +Polar angle tht: 0.3491; Azimuth angle phi: 1.8762 +Force: 0.219781 -0.615236 -9.823808 +Torque: 0.197444 -0.026157 0.030843 + +Polar angle tht: 0.3491; Azimuth angle phi: 1.9199 +Force: 0.252247 -0.608863 -9.831626 +Torque: 0.194587 -0.029711 0.034565 + +Polar angle tht: 0.3491; Azimuth angle phi: 1.9635 +Force: 0.284738 -0.601205 -9.839320 +Torque: 0.191357 -0.033201 0.038024 + +Polar angle tht: 0.3491; Azimuth angle phi: 2.0071 +Force: 0.317164 -0.592263 -9.846877 +Torque: 0.187760 -0.036619 0.041193 + +Polar angle tht: 0.3491; Azimuth angle phi: 2.0508 +Force: 0.349434 -0.582043 -9.854282 +Torque: 0.183803 -0.039959 0.044049 + +Polar angle tht: 0.3491; Azimuth angle phi: 2.0944 +Force: 0.381455 -0.570554 -9.861520 +Torque: 0.179494 -0.043217 0.046569 + +Polar angle tht: 0.3491; Azimuth angle phi: 2.1380 +Force: 0.413132 -0.557809 -9.868578 +Torque: 0.174840 -0.046386 0.048735 + +Polar angle tht: 0.3491; Azimuth angle phi: 2.1817 +Force: 0.444370 -0.543824 -9.875443 +Torque: 0.169850 -0.049460 0.050531 + +Polar angle tht: 0.3491; Azimuth angle phi: 2.2253 +Force: 0.475071 -0.528619 -9.882101 +Torque: 0.164534 -0.052435 0.051941 + +Polar angle tht: 0.3491; Azimuth angle phi: 2.2689 +Force: 0.505139 -0.512218 -9.888540 +Torque: 0.158901 -0.055305 0.052957 + +Polar angle tht: 0.3491; Azimuth angle phi: 2.3126 +Force: 0.534479 -0.494649 -9.894747 +Torque: 0.152963 -0.058066 0.053569 + +Polar angle tht: 0.3491; Azimuth angle phi: 2.3562 +Force: 0.562994 -0.475942 -9.900711 +Torque: 0.146729 -0.060714 0.053774 + +Polar angle tht: 0.3491; Azimuth angle phi: 2.3998 +Force: 0.590590 -0.456133 -9.906420 +Torque: 0.140214 -0.063243 0.053569 + +Polar angle tht: 0.3491; Azimuth angle phi: 2.4435 +Force: 0.617176 -0.435259 -9.911864 +Torque: 0.133428 -0.065650 0.052957 + +Polar angle tht: 0.3491; Azimuth angle phi: 2.4871 +Force: 0.642659 -0.413364 -9.917032 +Torque: 0.126384 -0.067930 0.051941 + +Polar angle tht: 0.3491; Azimuth angle phi: 2.5307 +Force: 0.666954 -0.390491 -9.921913 +Torque: 0.119097 -0.070081 0.050531 + +Polar angle tht: 0.3491; Azimuth angle phi: 2.5744 +Force: 0.689975 -0.366691 -9.926500 +Torque: 0.111580 -0.072098 0.048735 + +Polar angle tht: 0.3491; Azimuth angle phi: 2.6180 +Force: 0.711642 -0.342015 -9.930783 +Torque: 0.103847 -0.073979 0.046569 + +Polar angle tht: 0.3491; Azimuth angle phi: 2.6616 +Force: 0.731878 -0.316517 -9.934754 +Torque: 0.095914 -0.075720 0.044049 + +Polar angle tht: 0.3491; Azimuth angle phi: 2.7053 +Force: 0.750610 -0.290256 -9.938406 +Torque: 0.087796 -0.077319 0.041193 + +Polar angle tht: 0.3491; Azimuth angle phi: 2.7489 +Force: 0.767772 -0.263291 -9.941731 +Torque: 0.079508 -0.078774 0.038024 + +Polar angle tht: 0.3491; Azimuth angle phi: 2.7925 +Force: 0.783301 -0.235687 -9.944723 +Torque: 0.071066 -0.080081 0.034565 + +Polar angle tht: 0.3491; Azimuth angle phi: 2.8362 +Force: 0.797141 -0.207508 -9.947377 +Torque: 0.062486 -0.081239 0.030843 + +Polar angle tht: 0.3491; Azimuth angle phi: 2.8798 +Force: 0.809241 -0.178821 -9.949687 +Torque: 0.053786 -0.082247 0.026887 + +Polar angle tht: 0.3491; Azimuth angle phi: 2.9234 +Force: 0.819556 -0.149695 -9.951650 +Torque: 0.044982 -0.083102 0.022726 + +Polar angle tht: 0.3491; Azimuth angle phi: 2.9671 +Force: 0.828048 -0.120201 -9.953260 +Torque: 0.036090 -0.083803 0.018392 + +Polar angle tht: 0.3491; Azimuth angle phi: 3.0107 +Force: 0.834686 -0.090411 -9.954516 +Torque: 0.027129 -0.084350 0.013918 + +Polar angle tht: 0.3491; Azimuth angle phi: 3.0543 +Force: 0.839446 -0.060398 -9.955415 +Torque: 0.018115 -0.084741 0.009338 + +Polar angle tht: 0.3491; Azimuth angle phi: 3.0980 +Force: 0.842308 -0.030237 -9.955955 +Torque: 0.009066 -0.084976 0.004687 + +Polar angle tht: 0.3491; Azimuth angle phi: 3.1416 +Force: 0.843264 0.000000 -9.956135 +Torque: -0.000000 -0.085054 -0.000000 + +Polar angle tht: 0.3491; Azimuth angle phi: 3.1852 +Force: 0.842308 0.030237 -9.955955 +Torque: -0.009066 -0.084976 -0.004687 + +Polar angle tht: 0.3491; Azimuth angle phi: 3.2289 +Force: 0.839446 0.060398 -9.955415 +Torque: -0.018115 -0.084741 -0.009338 + +Polar angle tht: 0.3491; Azimuth angle phi: 3.2725 +Force: 0.834686 0.090411 -9.954516 +Torque: -0.027129 -0.084350 -0.013918 + +Polar angle tht: 0.3491; Azimuth angle phi: 3.3161 +Force: 0.828048 0.120201 -9.953260 +Torque: -0.036090 -0.083803 -0.018392 + +Polar angle tht: 0.3491; Azimuth angle phi: 3.3598 +Force: 0.819556 0.149695 -9.951650 +Torque: -0.044982 -0.083102 -0.022726 + +Polar angle tht: 0.3491; Azimuth angle phi: 3.4034 +Force: 0.809241 0.178821 -9.949687 +Torque: -0.053786 -0.082247 -0.026887 + +Polar angle tht: 0.3491; Azimuth angle phi: 3.4470 +Force: 0.797141 0.207508 -9.947377 +Torque: -0.062486 -0.081239 -0.030843 + +Polar angle tht: 0.3491; Azimuth angle phi: 3.4907 +Force: 0.783301 0.235687 -9.944723 +Torque: -0.071066 -0.080081 -0.034565 + +Polar angle tht: 0.3491; Azimuth angle phi: 3.5343 +Force: 0.767772 0.263291 -9.941731 +Torque: -0.079508 -0.078774 -0.038024 + +Polar angle tht: 0.3491; Azimuth angle phi: 3.5779 +Force: 0.750610 0.290256 -9.938406 +Torque: -0.087796 -0.077319 -0.041193 + +Polar angle tht: 0.3491; Azimuth angle phi: 3.6216 +Force: 0.731878 0.316517 -9.934754 +Torque: -0.095914 -0.075720 -0.044049 + +Polar angle tht: 0.3491; Azimuth angle phi: 3.6652 +Force: 0.711642 0.342015 -9.930783 +Torque: -0.103847 -0.073979 -0.046569 + +Polar angle tht: 0.3491; Azimuth angle phi: 3.7088 +Force: 0.689975 0.366691 -9.926500 +Torque: -0.111580 -0.072098 -0.048735 + +Polar angle tht: 0.3491; Azimuth angle phi: 3.7525 +Force: 0.666954 0.390491 -9.921913 +Torque: -0.119097 -0.070081 -0.050531 + +Polar angle tht: 0.3491; Azimuth angle phi: 3.7961 +Force: 0.642659 0.413364 -9.917032 +Torque: -0.126384 -0.067930 -0.051941 + +Polar angle tht: 0.3491; Azimuth angle phi: 3.8397 +Force: 0.617176 0.435259 -9.911864 +Torque: -0.133428 -0.065650 -0.052957 + +Polar angle tht: 0.3491; Azimuth angle phi: 3.8834 +Force: 0.590590 0.456133 -9.906420 +Torque: -0.140214 -0.063243 -0.053569 + +Polar angle tht: 0.3491; Azimuth angle phi: 3.9270 +Force: 0.562994 0.475942 -9.900711 +Torque: -0.146729 -0.060714 -0.053774 + +Polar angle tht: 0.3491; Azimuth angle phi: 3.9706 +Force: 0.534479 0.494649 -9.894747 +Torque: -0.152963 -0.058066 -0.053569 + +Polar angle tht: 0.3491; Azimuth angle phi: 4.0143 +Force: 0.505139 0.512218 -9.888540 +Torque: -0.158901 -0.055305 -0.052957 + +Polar angle tht: 0.3491; Azimuth angle phi: 4.0579 +Force: 0.475071 0.528619 -9.882101 +Torque: -0.164534 -0.052435 -0.051941 + +Polar angle tht: 0.3491; Azimuth angle phi: 4.1015 +Force: 0.444370 0.543824 -9.875443 +Torque: -0.169850 -0.049460 -0.050531 + +Polar angle tht: 0.3491; Azimuth angle phi: 4.1452 +Force: 0.413132 0.557809 -9.868578 +Torque: -0.174840 -0.046386 -0.048735 + +Polar angle tht: 0.3491; Azimuth angle phi: 4.1888 +Force: 0.381455 0.570554 -9.861520 +Torque: -0.179494 -0.043217 -0.046569 + +Polar angle tht: 0.3491; Azimuth angle phi: 4.2324 +Force: 0.349434 0.582043 -9.854282 +Torque: -0.183803 -0.039959 -0.044049 + +Polar angle tht: 0.3491; Azimuth angle phi: 4.2761 +Force: 0.317164 0.592263 -9.846877 +Torque: -0.187760 -0.036619 -0.041193 + +Polar angle tht: 0.3491; Azimuth angle phi: 4.3197 +Force: 0.284738 0.601205 -9.839320 +Torque: -0.191357 -0.033201 -0.038024 + +Polar angle tht: 0.3491; Azimuth angle phi: 4.3633 +Force: 0.252247 0.608863 -9.831626 +Torque: -0.194587 -0.029711 -0.034565 + +Polar angle tht: 0.3491; Azimuth angle phi: 4.4070 +Force: 0.219781 0.615236 -9.823808 +Torque: -0.197444 -0.026157 -0.030843 + +Polar angle tht: 0.3491; Azimuth angle phi: 4.4506 +Force: 0.187424 0.620326 -9.815881 +Torque: -0.199924 -0.022543 -0.026887 + +Polar angle tht: 0.3491; Azimuth angle phi: 4.4942 +Force: 0.155261 0.624136 -9.807862 +Torque: -0.202022 -0.018877 -0.022726 + +Polar angle tht: 0.3491; Azimuth angle phi: 4.5379 +Force: 0.123371 0.626675 -9.799765 +Torque: -0.203733 -0.015165 -0.018392 + +Polar angle tht: 0.3491; Azimuth angle phi: 4.5815 +Force: 0.091830 0.627954 -9.791605 +Torque: -0.205055 -0.011415 -0.013918 + +Polar angle tht: 0.3491; Azimuth angle phi: 4.6251 +Force: 0.060710 0.627986 -9.783398 +Torque: -0.205987 -0.007632 -0.009338 + +Polar angle tht: 0.3491; Azimuth angle phi: 4.6688 +Force: 0.030078 0.626789 -9.775159 +Torque: -0.206525 -0.003825 -0.004687 + +Polar angle tht: 0.3491; Azimuth angle phi: 4.7124 +Force: 0.000000 0.624382 -9.766905 +Torque: -0.206671 -0.000000 -0.000000 + +Polar angle tht: 0.3491; Azimuth angle phi: 4.7560 +Force: -0.030078 0.626789 -9.775159 +Torque: -0.206525 0.003825 0.004687 + +Polar angle tht: 0.3491; Azimuth angle phi: 4.7997 +Force: -0.060710 0.627986 -9.783398 +Torque: -0.205987 0.007632 0.009338 + +Polar angle tht: 0.3491; Azimuth angle phi: 4.8433 +Force: -0.091830 0.627954 -9.791605 +Torque: -0.205055 0.011415 0.013918 + +Polar angle tht: 0.3491; Azimuth angle phi: 4.8869 +Force: -0.123371 0.626675 -9.799765 +Torque: -0.203733 0.015165 0.018392 + +Polar angle tht: 0.3491; Azimuth angle phi: 4.9306 +Force: -0.155261 0.624136 -9.807862 +Torque: -0.202022 0.018877 0.022726 + +Polar angle tht: 0.3491; Azimuth angle phi: 4.9742 +Force: -0.187424 0.620326 -9.815881 +Torque: -0.199924 0.022543 0.026887 + +Polar angle tht: 0.3491; Azimuth angle phi: 5.0178 +Force: -0.219781 0.615236 -9.823808 +Torque: -0.197444 0.026157 0.030843 + +Polar angle tht: 0.3491; Azimuth angle phi: 5.0615 +Force: -0.252247 0.608863 -9.831626 +Torque: -0.194587 0.029711 0.034565 + +Polar angle tht: 0.3491; Azimuth angle phi: 5.1051 +Force: -0.284738 0.601205 -9.839320 +Torque: -0.191357 0.033201 0.038024 + +Polar angle tht: 0.3491; Azimuth angle phi: 5.1487 +Force: -0.317164 0.592263 -9.846877 +Torque: -0.187760 0.036619 0.041193 + +Polar angle tht: 0.3491; Azimuth angle phi: 5.1924 +Force: -0.349434 0.582043 -9.854282 +Torque: -0.183803 0.039959 0.044049 + +Polar angle tht: 0.3491; Azimuth angle phi: 5.2360 +Force: -0.381455 0.570554 -9.861520 +Torque: -0.179494 0.043217 0.046569 + +Polar angle tht: 0.3491; Azimuth angle phi: 5.2796 +Force: -0.413132 0.557809 -9.868578 +Torque: -0.174840 0.046386 0.048735 + +Polar angle tht: 0.3491; Azimuth angle phi: 5.3233 +Force: -0.444370 0.543824 -9.875443 +Torque: -0.169850 0.049460 0.050531 + +Polar angle tht: 0.3491; Azimuth angle phi: 5.3669 +Force: -0.475071 0.528619 -9.882101 +Torque: -0.164534 0.052435 0.051941 + +Polar angle tht: 0.3491; Azimuth angle phi: 5.4105 +Force: -0.505139 0.512218 -9.888540 +Torque: -0.158901 0.055305 0.052957 + +Polar angle tht: 0.3491; Azimuth angle phi: 5.4542 +Force: -0.534479 0.494649 -9.894747 +Torque: -0.152963 0.058066 0.053569 + +Polar angle tht: 0.3491; Azimuth angle phi: 5.4978 +Force: -0.562994 0.475942 -9.900711 +Torque: -0.146729 0.060714 0.053774 + +Polar angle tht: 0.3491; Azimuth angle phi: 5.5414 +Force: -0.590590 0.456133 -9.906420 +Torque: -0.140214 0.063243 0.053569 + +Polar angle tht: 0.3491; Azimuth angle phi: 5.5851 +Force: -0.617176 0.435259 -9.911864 +Torque: -0.133428 0.065650 0.052957 + +Polar angle tht: 0.3491; Azimuth angle phi: 5.6287 +Force: -0.642659 0.413364 -9.917032 +Torque: -0.126384 0.067930 0.051941 + +Polar angle tht: 0.3491; Azimuth angle phi: 5.6723 +Force: -0.666954 0.390491 -9.921913 +Torque: -0.119097 0.070081 0.050531 + +Polar angle tht: 0.3491; Azimuth angle phi: 5.7160 +Force: -0.689975 0.366691 -9.926500 +Torque: -0.111580 0.072098 0.048735 + +Polar angle tht: 0.3491; Azimuth angle phi: 5.7596 +Force: -0.711642 0.342015 -9.930783 +Torque: -0.103847 0.073979 0.046569 + +Polar angle tht: 0.3491; Azimuth angle phi: 5.8032 +Force: -0.731878 0.316517 -9.934754 +Torque: -0.095914 0.075720 0.044049 + +Polar angle tht: 0.3491; Azimuth angle phi: 5.8469 +Force: -0.750610 0.290256 -9.938406 +Torque: -0.087796 0.077319 0.041193 + +Polar angle tht: 0.3491; Azimuth angle phi: 5.8905 +Force: -0.767772 0.263291 -9.941731 +Torque: -0.079508 0.078774 0.038024 + +Polar angle tht: 0.3491; Azimuth angle phi: 5.9341 +Force: -0.783301 0.235687 -9.944723 +Torque: -0.071066 0.080081 0.034565 + +Polar angle tht: 0.3491; Azimuth angle phi: 5.9778 +Force: -0.797141 0.207508 -9.947377 +Torque: -0.062486 0.081239 0.030843 + +Polar angle tht: 0.3491; Azimuth angle phi: 6.0214 +Force: -0.809241 0.178821 -9.949687 +Torque: -0.053786 0.082247 0.026887 + +Polar angle tht: 0.3491; Azimuth angle phi: 6.0650 +Force: -0.819556 0.149695 -9.951650 +Torque: -0.044982 0.083102 0.022726 + +Polar angle tht: 0.3491; Azimuth angle phi: 6.1087 +Force: -0.828048 0.120201 -9.953260 +Torque: -0.036090 0.083803 0.018392 + +Polar angle tht: 0.3491; Azimuth angle phi: 6.1523 +Force: -0.834686 0.090411 -9.954516 +Torque: -0.027129 0.084350 0.013918 + +Polar angle tht: 0.3491; Azimuth angle phi: 6.1959 +Force: -0.839446 0.060398 -9.955415 +Torque: -0.018115 0.084741 0.009338 + +Polar angle tht: 0.3491; Azimuth angle phi: 6.2396 +Force: -0.842308 0.030237 -9.955955 +Torque: -0.009066 0.084976 0.004687 + +Polar angle tht: 0.3491; Azimuth angle phi: 6.2832 +Force: -0.843264 0.000000 -9.956135 +Torque: -0.000000 0.085054 0.000000 + +Polar angle tht: 0.3927; Azimuth angle phi: 0.0000 +Force: -0.953142 0.000000 -9.661707 +Torque: -0.000000 0.093127 0.000000 + +Polar angle tht: 0.3927; Azimuth angle phi: 0.0436 +Force: -0.952044 -0.033718 -9.661509 +Torque: 0.009981 0.093042 -0.005867 + +Polar angle tht: 0.3927; Azimuth angle phi: 0.0873 +Force: -0.948753 -0.067350 -9.660915 +Torque: 0.019943 0.092786 -0.011690 + +Polar angle tht: 0.3927; Azimuth angle phi: 0.1309 +Force: -0.943282 -0.100812 -9.659926 +Torque: 0.029867 0.092360 -0.017424 + +Polar angle tht: 0.3927; Azimuth angle phi: 0.1745 +Force: -0.935652 -0.134017 -9.658545 +Torque: 0.039732 0.091764 -0.023025 + +Polar angle tht: 0.3927; Azimuth angle phi: 0.2182 +Force: -0.925893 -0.166884 -9.656773 +Torque: 0.049521 0.090999 -0.028451 + +Polar angle tht: 0.3927; Azimuth angle phi: 0.2618 +Force: -0.914043 -0.199329 -9.654614 +Torque: 0.059213 0.090067 -0.033660 + +Polar angle tht: 0.3927; Azimuth angle phi: 0.3054 +Force: -0.900147 -0.231271 -9.652073 +Torque: 0.068790 0.088969 -0.038613 + +Polar angle tht: 0.3927; Azimuth angle phi: 0.3491 +Force: -0.884259 -0.262632 -9.649153 +Torque: 0.078234 0.087706 -0.043272 + +Polar angle tht: 0.3927; Azimuth angle phi: 0.3927 +Force: -0.866440 -0.293335 -9.645862 +Torque: 0.087527 0.086281 -0.047602 + +Polar angle tht: 0.3927; Azimuth angle phi: 0.4363 +Force: -0.846756 -0.323306 -9.642204 +Torque: 0.096650 0.084695 -0.051570 + +Polar angle tht: 0.3927; Azimuth angle phi: 0.4800 +Force: -0.825284 -0.352472 -9.638187 +Torque: 0.105585 0.082951 -0.055145 + +Polar angle tht: 0.3927; Azimuth angle phi: 0.5236 +Force: -0.802102 -0.380766 -9.633818 +Torque: 0.114316 0.081051 -0.058301 + +Polar angle tht: 0.3927; Azimuth angle phi: 0.5672 +Force: -0.777298 -0.408123 -9.629107 +Torque: 0.122826 0.078999 -0.061013 + +Polar angle tht: 0.3927; Azimuth angle phi: 0.6109 +Force: -0.750964 -0.434479 -9.624061 +Torque: 0.131099 0.076797 -0.063260 + +Polar angle tht: 0.3927; Azimuth angle phi: 0.6545 +Force: -0.723195 -0.459777 -9.618691 +Torque: 0.139117 0.074449 -0.065026 + +Polar angle tht: 0.3927; Azimuth angle phi: 0.6981 +Force: -0.694092 -0.483962 -9.613006 +Torque: 0.146867 0.071959 -0.066297 + +Polar angle tht: 0.3927; Azimuth angle phi: 0.7418 +Force: -0.663760 -0.506984 -9.607017 +Torque: 0.154333 0.069330 -0.067064 + +Polar angle tht: 0.3927; Azimuth angle phi: 0.7854 +Force: -0.632305 -0.528796 -9.600737 +Torque: 0.161501 0.066566 -0.067320 + +Polar angle tht: 0.3927; Azimuth angle phi: 0.8290 +Force: -0.599839 -0.549355 -9.594176 +Torque: 0.168358 0.063673 -0.067064 + +Polar angle tht: 0.3927; Azimuth angle phi: 0.8727 +Force: -0.566472 -0.568623 -9.587348 +Torque: 0.174890 0.060654 -0.066297 + +Polar angle tht: 0.3927; Azimuth angle phi: 0.9163 +Force: -0.532318 -0.586566 -9.580265 +Torque: 0.181084 0.057515 -0.065026 + +Polar angle tht: 0.3927; Azimuth angle phi: 0.9599 +Force: -0.497491 -0.603155 -9.572941 +Torque: 0.186930 0.054260 -0.063260 + +Polar angle tht: 0.3927; Azimuth angle phi: 1.0036 +Force: -0.462105 -0.618365 -9.565389 +Torque: 0.192416 0.050896 -0.061013 + +Polar angle tht: 0.3927; Azimuth angle phi: 1.0472 +Force: -0.426273 -0.632174 -9.557625 +Torque: 0.197532 0.047427 -0.058301 + +Polar angle tht: 0.3927; Azimuth angle phi: 1.0908 +Force: -0.390109 -0.644568 -9.549662 +Torque: 0.202269 0.043860 -0.055145 + +Polar angle tht: 0.3927; Azimuth angle phi: 1.1345 +Force: -0.353722 -0.655532 -9.541516 +Torque: 0.206617 0.040200 -0.051570 + +Polar angle tht: 0.3927; Azimuth angle phi: 1.1781 +Force: -0.317223 -0.665061 -9.533203 +Torque: 0.210568 0.036454 -0.047602 + +Polar angle tht: 0.3927; Azimuth angle phi: 1.2217 +Force: -0.280717 -0.673149 -9.524739 +Torque: 0.214116 0.032629 -0.043272 + +Polar angle tht: 0.3927; Azimuth angle phi: 1.2654 +Force: -0.244309 -0.679798 -9.516138 +Torque: 0.217253 0.028730 -0.038613 + +Polar angle tht: 0.3927; Azimuth angle phi: 1.3090 +Force: -0.208097 -0.685012 -9.507419 +Torque: 0.219974 0.024766 -0.033660 + +Polar angle tht: 0.3927; Azimuth angle phi: 1.3526 +Force: -0.172177 -0.688799 -9.498597 +Torque: 0.222274 0.020742 -0.028451 + +Polar angle tht: 0.3927; Azimuth angle phi: 1.3963 +Force: -0.136642 -0.691170 -9.489689 +Torque: 0.224150 0.016667 -0.023025 + +Polar angle tht: 0.3927; Azimuth angle phi: 1.4399 +Force: -0.101577 -0.692142 -9.480713 +Torque: 0.225597 0.012548 -0.017424 + +Polar angle tht: 0.3927; Azimuth angle phi: 1.4835 +Force: -0.067065 -0.691732 -9.471685 +Torque: 0.226614 0.008391 -0.011690 + +Polar angle tht: 0.3927; Azimuth angle phi: 1.5272 +Force: -0.033182 -0.689964 -9.462622 +Torque: 0.227199 0.004206 -0.005867 + +Polar angle tht: 0.3927; Azimuth angle phi: 1.5708 +Force: 0.000000 -0.686860 -9.453542 +Torque: 0.227351 -0.000000 0.000000 + +Polar angle tht: 0.3927; Azimuth angle phi: 1.6144 +Force: 0.033182 -0.689964 -9.462622 +Torque: 0.227199 -0.004206 0.005867 + +Polar angle tht: 0.3927; Azimuth angle phi: 1.6581 +Force: 0.067065 -0.691732 -9.471685 +Torque: 0.226614 -0.008391 0.011690 + +Polar angle tht: 0.3927; Azimuth angle phi: 1.7017 +Force: 0.101577 -0.692142 -9.480713 +Torque: 0.225597 -0.012548 0.017424 + +Polar angle tht: 0.3927; Azimuth angle phi: 1.7453 +Force: 0.136642 -0.691170 -9.489689 +Torque: 0.224150 -0.016667 0.023025 + +Polar angle tht: 0.3927; Azimuth angle phi: 1.7890 +Force: 0.172177 -0.688799 -9.498597 +Torque: 0.222274 -0.020742 0.028451 + +Polar angle tht: 0.3927; Azimuth angle phi: 1.8326 +Force: 0.208097 -0.685012 -9.507419 +Torque: 0.219974 -0.024766 0.033660 + +Polar angle tht: 0.3927; Azimuth angle phi: 1.8762 +Force: 0.244309 -0.679798 -9.516138 +Torque: 0.217253 -0.028730 0.038613 + +Polar angle tht: 0.3927; Azimuth angle phi: 1.9199 +Force: 0.280717 -0.673149 -9.524739 +Torque: 0.214116 -0.032629 0.043272 + +Polar angle tht: 0.3927; Azimuth angle phi: 1.9635 +Force: 0.317223 -0.665061 -9.533203 +Torque: 0.210568 -0.036454 0.047602 + +Polar angle tht: 0.3927; Azimuth angle phi: 2.0071 +Force: 0.353722 -0.655532 -9.541516 +Torque: 0.206617 -0.040200 0.051570 + +Polar angle tht: 0.3927; Azimuth angle phi: 2.0508 +Force: 0.390109 -0.644568 -9.549662 +Torque: 0.202269 -0.043860 0.055145 + +Polar angle tht: 0.3927; Azimuth angle phi: 2.0944 +Force: 0.426273 -0.632174 -9.557625 +Torque: 0.197532 -0.047427 0.058301 + +Polar angle tht: 0.3927; Azimuth angle phi: 2.1380 +Force: 0.462105 -0.618365 -9.565389 +Torque: 0.192416 -0.050896 0.061013 + +Polar angle tht: 0.3927; Azimuth angle phi: 2.1817 +Force: 0.497491 -0.603155 -9.572941 +Torque: 0.186930 -0.054260 0.063260 + +Polar angle tht: 0.3927; Azimuth angle phi: 2.2253 +Force: 0.532318 -0.586566 -9.580265 +Torque: 0.181084 -0.057515 0.065026 + +Polar angle tht: 0.3927; Azimuth angle phi: 2.2689 +Force: 0.566472 -0.568623 -9.587348 +Torque: 0.174890 -0.060654 0.066297 + +Polar angle tht: 0.3927; Azimuth angle phi: 2.3126 +Force: 0.599839 -0.549355 -9.594176 +Torque: 0.168358 -0.063673 0.067064 + +Polar angle tht: 0.3927; Azimuth angle phi: 2.3562 +Force: 0.632305 -0.528796 -9.600737 +Torque: 0.161501 -0.066566 0.067320 + +Polar angle tht: 0.3927; Azimuth angle phi: 2.3998 +Force: 0.663760 -0.506984 -9.607017 +Torque: 0.154333 -0.069330 0.067064 + +Polar angle tht: 0.3927; Azimuth angle phi: 2.4435 +Force: 0.694092 -0.483962 -9.613006 +Torque: 0.146867 -0.071959 0.066297 + +Polar angle tht: 0.3927; Azimuth angle phi: 2.4871 +Force: 0.723195 -0.459777 -9.618691 +Torque: 0.139117 -0.074449 0.065026 + +Polar angle tht: 0.3927; Azimuth angle phi: 2.5307 +Force: 0.750964 -0.434479 -9.624061 +Torque: 0.131099 -0.076797 0.063260 + +Polar angle tht: 0.3927; Azimuth angle phi: 2.5744 +Force: 0.777298 -0.408123 -9.629107 +Torque: 0.122826 -0.078999 0.061013 + +Polar angle tht: 0.3927; Azimuth angle phi: 2.6180 +Force: 0.802102 -0.380766 -9.633818 +Torque: 0.114316 -0.081051 0.058301 + +Polar angle tht: 0.3927; Azimuth angle phi: 2.6616 +Force: 0.825284 -0.352472 -9.638187 +Torque: 0.105585 -0.082951 0.055145 + +Polar angle tht: 0.3927; Azimuth angle phi: 2.7053 +Force: 0.846756 -0.323306 -9.642204 +Torque: 0.096650 -0.084695 0.051570 + +Polar angle tht: 0.3927; Azimuth angle phi: 2.7489 +Force: 0.866440 -0.293335 -9.645862 +Torque: 0.087527 -0.086281 0.047602 + +Polar angle tht: 0.3927; Azimuth angle phi: 2.7925 +Force: 0.884259 -0.262632 -9.649153 +Torque: 0.078234 -0.087706 0.043272 + +Polar angle tht: 0.3927; Azimuth angle phi: 2.8362 +Force: 0.900147 -0.231271 -9.652073 +Torque: 0.068790 -0.088969 0.038613 + +Polar angle tht: 0.3927; Azimuth angle phi: 2.8798 +Force: 0.914043 -0.199329 -9.654614 +Torque: 0.059213 -0.090067 0.033660 + +Polar angle tht: 0.3927; Azimuth angle phi: 2.9234 +Force: 0.925893 -0.166884 -9.656773 +Torque: 0.049521 -0.090999 0.028451 + +Polar angle tht: 0.3927; Azimuth angle phi: 2.9671 +Force: 0.935652 -0.134017 -9.658545 +Torque: 0.039732 -0.091764 0.023025 + +Polar angle tht: 0.3927; Azimuth angle phi: 3.0107 +Force: 0.943282 -0.100812 -9.659926 +Torque: 0.029867 -0.092360 0.017424 + +Polar angle tht: 0.3927; Azimuth angle phi: 3.0543 +Force: 0.948753 -0.067350 -9.660915 +Torque: 0.019943 -0.092786 0.011690 + +Polar angle tht: 0.3927; Azimuth angle phi: 3.0980 +Force: 0.952044 -0.033718 -9.661509 +Torque: 0.009981 -0.093042 0.005867 + +Polar angle tht: 0.3927; Azimuth angle phi: 3.1416 +Force: 0.953142 0.000000 -9.661707 +Torque: -0.000000 -0.093127 -0.000000 + +Polar angle tht: 0.3927; Azimuth angle phi: 3.1852 +Force: 0.952044 0.033718 -9.661509 +Torque: -0.009981 -0.093042 -0.005867 + +Polar angle tht: 0.3927; Azimuth angle phi: 3.2289 +Force: 0.948753 0.067350 -9.660915 +Torque: -0.019943 -0.092786 -0.011690 + +Polar angle tht: 0.3927; Azimuth angle phi: 3.2725 +Force: 0.943282 0.100812 -9.659926 +Torque: -0.029867 -0.092360 -0.017424 + +Polar angle tht: 0.3927; Azimuth angle phi: 3.3161 +Force: 0.935652 0.134017 -9.658545 +Torque: -0.039732 -0.091764 -0.023025 + +Polar angle tht: 0.3927; Azimuth angle phi: 3.3598 +Force: 0.925893 0.166884 -9.656773 +Torque: -0.049521 -0.090999 -0.028451 + +Polar angle tht: 0.3927; Azimuth angle phi: 3.4034 +Force: 0.914043 0.199329 -9.654614 +Torque: -0.059213 -0.090067 -0.033660 + +Polar angle tht: 0.3927; Azimuth angle phi: 3.4470 +Force: 0.900147 0.231271 -9.652073 +Torque: -0.068790 -0.088969 -0.038613 + +Polar angle tht: 0.3927; Azimuth angle phi: 3.4907 +Force: 0.884259 0.262632 -9.649153 +Torque: -0.078234 -0.087706 -0.043272 + +Polar angle tht: 0.3927; Azimuth angle phi: 3.5343 +Force: 0.866440 0.293335 -9.645862 +Torque: -0.087527 -0.086281 -0.047602 + +Polar angle tht: 0.3927; Azimuth angle phi: 3.5779 +Force: 0.846756 0.323306 -9.642204 +Torque: -0.096650 -0.084695 -0.051570 + +Polar angle tht: 0.3927; Azimuth angle phi: 3.6216 +Force: 0.825284 0.352472 -9.638187 +Torque: -0.105585 -0.082951 -0.055145 + +Polar angle tht: 0.3927; Azimuth angle phi: 3.6652 +Force: 0.802102 0.380766 -9.633818 +Torque: -0.114316 -0.081051 -0.058301 + +Polar angle tht: 0.3927; Azimuth angle phi: 3.7088 +Force: 0.777298 0.408123 -9.629107 +Torque: -0.122826 -0.078999 -0.061013 + +Polar angle tht: 0.3927; Azimuth angle phi: 3.7525 +Force: 0.750964 0.434479 -9.624061 +Torque: -0.131099 -0.076797 -0.063260 + +Polar angle tht: 0.3927; Azimuth angle phi: 3.7961 +Force: 0.723195 0.459777 -9.618691 +Torque: -0.139117 -0.074449 -0.065026 + +Polar angle tht: 0.3927; Azimuth angle phi: 3.8397 +Force: 0.694092 0.483962 -9.613006 +Torque: -0.146867 -0.071959 -0.066297 + +Polar angle tht: 0.3927; Azimuth angle phi: 3.8834 +Force: 0.663760 0.506984 -9.607017 +Torque: -0.154333 -0.069330 -0.067064 + +Polar angle tht: 0.3927; Azimuth angle phi: 3.9270 +Force: 0.632305 0.528796 -9.600737 +Torque: -0.161501 -0.066566 -0.067320 + +Polar angle tht: 0.3927; Azimuth angle phi: 3.9706 +Force: 0.599839 0.549355 -9.594176 +Torque: -0.168358 -0.063673 -0.067064 + +Polar angle tht: 0.3927; Azimuth angle phi: 4.0143 +Force: 0.566472 0.568623 -9.587348 +Torque: -0.174890 -0.060654 -0.066297 + +Polar angle tht: 0.3927; Azimuth angle phi: 4.0579 +Force: 0.532318 0.586566 -9.580265 +Torque: -0.181084 -0.057515 -0.065026 + +Polar angle tht: 0.3927; Azimuth angle phi: 4.1015 +Force: 0.497491 0.603155 -9.572941 +Torque: -0.186930 -0.054260 -0.063260 + +Polar angle tht: 0.3927; Azimuth angle phi: 4.1452 +Force: 0.462105 0.618365 -9.565389 +Torque: -0.192416 -0.050896 -0.061013 + +Polar angle tht: 0.3927; Azimuth angle phi: 4.1888 +Force: 0.426273 0.632174 -9.557625 +Torque: -0.197532 -0.047427 -0.058301 + +Polar angle tht: 0.3927; Azimuth angle phi: 4.2324 +Force: 0.390109 0.644568 -9.549662 +Torque: -0.202269 -0.043860 -0.055145 + +Polar angle tht: 0.3927; Azimuth angle phi: 4.2761 +Force: 0.353722 0.655532 -9.541516 +Torque: -0.206617 -0.040200 -0.051570 + +Polar angle tht: 0.3927; Azimuth angle phi: 4.3197 +Force: 0.317223 0.665061 -9.533203 +Torque: -0.210568 -0.036454 -0.047602 + +Polar angle tht: 0.3927; Azimuth angle phi: 4.3633 +Force: 0.280717 0.673149 -9.524739 +Torque: -0.214116 -0.032629 -0.043272 + +Polar angle tht: 0.3927; Azimuth angle phi: 4.4070 +Force: 0.244309 0.679798 -9.516138 +Torque: -0.217253 -0.028730 -0.038613 + +Polar angle tht: 0.3927; Azimuth angle phi: 4.4506 +Force: 0.208097 0.685012 -9.507419 +Torque: -0.219974 -0.024766 -0.033660 + +Polar angle tht: 0.3927; Azimuth angle phi: 4.4942 +Force: 0.172177 0.688799 -9.498597 +Torque: -0.222274 -0.020742 -0.028451 + +Polar angle tht: 0.3927; Azimuth angle phi: 4.5379 +Force: 0.136642 0.691170 -9.489689 +Torque: -0.224150 -0.016667 -0.023025 + +Polar angle tht: 0.3927; Azimuth angle phi: 4.5815 +Force: 0.101577 0.692142 -9.480713 +Torque: -0.225597 -0.012548 -0.017424 + +Polar angle tht: 0.3927; Azimuth angle phi: 4.6251 +Force: 0.067065 0.691732 -9.471685 +Torque: -0.226614 -0.008391 -0.011690 + +Polar angle tht: 0.3927; Azimuth angle phi: 4.6688 +Force: 0.033182 0.689964 -9.462622 +Torque: -0.227199 -0.004206 -0.005867 + +Polar angle tht: 0.3927; Azimuth angle phi: 4.7124 +Force: 0.000000 0.686860 -9.453542 +Torque: -0.227351 -0.000000 -0.000000 + +Polar angle tht: 0.3927; Azimuth angle phi: 4.7560 +Force: -0.033182 0.689964 -9.462622 +Torque: -0.227199 0.004206 0.005867 + +Polar angle tht: 0.3927; Azimuth angle phi: 4.7997 +Force: -0.067065 0.691732 -9.471685 +Torque: -0.226614 0.008391 0.011690 + +Polar angle tht: 0.3927; Azimuth angle phi: 4.8433 +Force: -0.101577 0.692142 -9.480713 +Torque: -0.225597 0.012548 0.017424 + +Polar angle tht: 0.3927; Azimuth angle phi: 4.8869 +Force: -0.136642 0.691170 -9.489689 +Torque: -0.224150 0.016667 0.023025 + +Polar angle tht: 0.3927; Azimuth angle phi: 4.9306 +Force: -0.172177 0.688799 -9.498597 +Torque: -0.222274 0.020742 0.028451 + +Polar angle tht: 0.3927; Azimuth angle phi: 4.9742 +Force: -0.208097 0.685012 -9.507419 +Torque: -0.219974 0.024766 0.033660 + +Polar angle tht: 0.3927; Azimuth angle phi: 5.0178 +Force: -0.244309 0.679798 -9.516138 +Torque: -0.217253 0.028730 0.038613 + +Polar angle tht: 0.3927; Azimuth angle phi: 5.0615 +Force: -0.280717 0.673149 -9.524739 +Torque: -0.214116 0.032629 0.043272 + +Polar angle tht: 0.3927; Azimuth angle phi: 5.1051 +Force: -0.317223 0.665061 -9.533203 +Torque: -0.210568 0.036454 0.047602 + +Polar angle tht: 0.3927; Azimuth angle phi: 5.1487 +Force: -0.353722 0.655532 -9.541516 +Torque: -0.206617 0.040200 0.051570 + +Polar angle tht: 0.3927; Azimuth angle phi: 5.1924 +Force: -0.390109 0.644568 -9.549662 +Torque: -0.202269 0.043860 0.055145 + +Polar angle tht: 0.3927; Azimuth angle phi: 5.2360 +Force: -0.426273 0.632174 -9.557625 +Torque: -0.197532 0.047427 0.058301 + +Polar angle tht: 0.3927; Azimuth angle phi: 5.2796 +Force: -0.462105 0.618365 -9.565389 +Torque: -0.192416 0.050896 0.061013 + +Polar angle tht: 0.3927; Azimuth angle phi: 5.3233 +Force: -0.497491 0.603155 -9.572941 +Torque: -0.186930 0.054260 0.063260 + +Polar angle tht: 0.3927; Azimuth angle phi: 5.3669 +Force: -0.532318 0.586566 -9.580265 +Torque: -0.181084 0.057515 0.065026 + +Polar angle tht: 0.3927; Azimuth angle phi: 5.4105 +Force: -0.566472 0.568623 -9.587348 +Torque: -0.174890 0.060654 0.066297 + +Polar angle tht: 0.3927; Azimuth angle phi: 5.4542 +Force: -0.599839 0.549355 -9.594176 +Torque: -0.168358 0.063673 0.067064 + +Polar angle tht: 0.3927; Azimuth angle phi: 5.4978 +Force: -0.632305 0.528796 -9.600737 +Torque: -0.161501 0.066566 0.067320 + +Polar angle tht: 0.3927; Azimuth angle phi: 5.5414 +Force: -0.663760 0.506984 -9.607017 +Torque: -0.154333 0.069330 0.067064 + +Polar angle tht: 0.3927; Azimuth angle phi: 5.5851 +Force: -0.694092 0.483962 -9.613006 +Torque: -0.146867 0.071959 0.066297 + +Polar angle tht: 0.3927; Azimuth angle phi: 5.6287 +Force: -0.723195 0.459777 -9.618691 +Torque: -0.139117 0.074449 0.065026 + +Polar angle tht: 0.3927; Azimuth angle phi: 5.6723 +Force: -0.750964 0.434479 -9.624061 +Torque: -0.131099 0.076797 0.063260 + +Polar angle tht: 0.3927; Azimuth angle phi: 5.7160 +Force: -0.777298 0.408123 -9.629107 +Torque: -0.122826 0.078999 0.061013 + +Polar angle tht: 0.3927; Azimuth angle phi: 5.7596 +Force: -0.802102 0.380766 -9.633818 +Torque: -0.114316 0.081051 0.058301 + +Polar angle tht: 0.3927; Azimuth angle phi: 5.8032 +Force: -0.825284 0.352472 -9.638187 +Torque: -0.105585 0.082951 0.055145 + +Polar angle tht: 0.3927; Azimuth angle phi: 5.8469 +Force: -0.846756 0.323306 -9.642204 +Torque: -0.096650 0.084695 0.051570 + +Polar angle tht: 0.3927; Azimuth angle phi: 5.8905 +Force: -0.866440 0.293335 -9.645862 +Torque: -0.087527 0.086281 0.047602 + +Polar angle tht: 0.3927; Azimuth angle phi: 5.9341 +Force: -0.884259 0.262632 -9.649153 +Torque: -0.078234 0.087706 0.043272 + +Polar angle tht: 0.3927; Azimuth angle phi: 5.9778 +Force: -0.900147 0.231271 -9.652073 +Torque: -0.068790 0.088969 0.038613 + +Polar angle tht: 0.3927; Azimuth angle phi: 6.0214 +Force: -0.914043 0.199329 -9.654614 +Torque: -0.059213 0.090067 0.033660 + +Polar angle tht: 0.3927; Azimuth angle phi: 6.0650 +Force: -0.925893 0.166884 -9.656773 +Torque: -0.049521 0.090999 0.028451 + +Polar angle tht: 0.3927; Azimuth angle phi: 6.1087 +Force: -0.935652 0.134017 -9.658545 +Torque: -0.039732 0.091764 0.023025 + +Polar angle tht: 0.3927; Azimuth angle phi: 6.1523 +Force: -0.943282 0.100812 -9.659926 +Torque: -0.029867 0.092360 0.017424 + +Polar angle tht: 0.3927; Azimuth angle phi: 6.1959 +Force: -0.948753 0.067350 -9.660915 +Torque: -0.019943 0.092786 0.011690 + +Polar angle tht: 0.3927; Azimuth angle phi: 6.2396 +Force: -0.952044 0.033718 -9.661509 +Torque: -0.009981 0.093042 0.005867 + +Polar angle tht: 0.3927; Azimuth angle phi: 6.2832 +Force: -0.953142 0.000000 -9.661707 +Torque: -0.000000 0.093127 0.000000 + +Polar angle tht: 0.4363; Azimuth angle phi: 0.0000 +Force: -1.061367 0.000000 -9.336827 +Torque: -0.000000 0.100395 0.000000 + +Polar angle tht: 0.4363; Azimuth angle phi: 0.0436 +Force: -1.060123 -0.037040 -9.336613 +Torque: 0.010822 0.100303 -0.007156 + +Polar angle tht: 0.4363; Azimuth angle phi: 0.0873 +Force: -1.056398 -0.073984 -9.335969 +Torque: 0.021623 0.100029 -0.014257 + +Polar angle tht: 0.4363; Azimuth angle phi: 0.1309 +Force: -1.050205 -0.110734 -9.334898 +Torque: 0.032382 0.099572 -0.021250 + +Polar angle tht: 0.4363; Azimuth angle phi: 0.1745 +Force: -1.041571 -0.147197 -9.333401 +Torque: 0.043078 0.098933 -0.028081 + +Polar angle tht: 0.4363; Azimuth angle phi: 0.2182 +Force: -1.030530 -0.183276 -9.331482 +Torque: 0.053691 0.098113 -0.034698 + +Polar angle tht: 0.4363; Azimuth angle phi: 0.2618 +Force: -1.017125 -0.218880 -9.329143 +Torque: 0.064199 0.097113 -0.041052 + +Polar angle tht: 0.4363; Azimuth angle phi: 0.3054 +Force: -1.001412 -0.253917 -9.326390 +Torque: 0.074582 0.095934 -0.047093 + +Polar angle tht: 0.4363; Azimuth angle phi: 0.3491 +Force: -0.983453 -0.288298 -9.323227 +Torque: 0.084820 0.094579 -0.052775 + +Polar angle tht: 0.4363; Azimuth angle phi: 0.3927 +Force: -0.963319 -0.321938 -9.319661 +Torque: 0.094893 0.093049 -0.058056 + +Polar angle tht: 0.4363; Azimuth angle phi: 0.4363 +Force: -0.941089 -0.354753 -9.315698 +Torque: 0.104783 0.091346 -0.062895 + +Polar angle tht: 0.4363; Azimuth angle phi: 0.4800 +Force: -0.916852 -0.386663 -9.311346 +Torque: 0.114468 0.089474 -0.067255 + +Polar angle tht: 0.4363; Azimuth angle phi: 0.5236 +Force: -0.890701 -0.417590 -9.306614 +Torque: 0.123932 0.087433 -0.071104 + +Polar angle tht: 0.4363; Azimuth angle phi: 0.5672 +Force: -0.862738 -0.447463 -9.301509 +Torque: 0.133155 0.085229 -0.074411 + +Polar angle tht: 0.4363; Azimuth angle phi: 0.6109 +Force: -0.833071 -0.476213 -9.296043 +Torque: 0.142120 0.082863 -0.077152 + +Polar angle tht: 0.4363; Azimuth angle phi: 0.6545 +Force: -0.801811 -0.503774 -9.290225 +Torque: 0.150810 0.080339 -0.079306 + +Polar angle tht: 0.4363; Azimuth angle phi: 0.6981 +Force: -0.769078 -0.530086 -9.284067 +Torque: 0.159208 0.077662 -0.080856 + +Polar angle tht: 0.4363; Azimuth angle phi: 0.7418 +Force: -0.734993 -0.555093 -9.277579 +Torque: 0.167298 0.074835 -0.081791 + +Polar angle tht: 0.4363; Azimuth angle phi: 0.7854 +Force: -0.699681 -0.578745 -9.270775 +Torque: 0.175064 0.071863 -0.082103 + +Polar angle tht: 0.4363; Azimuth angle phi: 0.8290 +Force: -0.663271 -0.600995 -9.263668 +Torque: 0.182491 0.068749 -0.081791 + +Polar angle tht: 0.4363; Azimuth angle phi: 0.8727 +Force: -0.625893 -0.621802 -9.256270 +Torque: 0.189566 0.065500 -0.080856 + +Polar angle tht: 0.4363; Azimuth angle phi: 0.9163 +Force: -0.587678 -0.641130 -9.248597 +Torque: 0.196275 0.062120 -0.079306 + +Polar angle tht: 0.4363; Azimuth angle phi: 0.9599 +Force: -0.548760 -0.658948 -9.240662 +Torque: 0.202606 0.058615 -0.077152 + +Polar angle tht: 0.4363; Azimuth angle phi: 1.0036 +Force: -0.509270 -0.675229 -9.232481 +Torque: 0.208546 0.054990 -0.074411 + +Polar angle tht: 0.4363; Azimuth angle phi: 1.0472 +Force: -0.469340 -0.689954 -9.224069 +Torque: 0.214084 0.051251 -0.071104 + +Polar angle tht: 0.4363; Azimuth angle phi: 1.0908 +Force: -0.429100 -0.703104 -9.215443 +Torque: 0.219211 0.047404 -0.067255 + +Polar angle tht: 0.4363; Azimuth angle phi: 1.1345 +Force: -0.388679 -0.714671 -9.206618 +Torque: 0.223916 0.043457 -0.062895 + +Polar angle tht: 0.4363; Azimuth angle phi: 1.1781 +Force: -0.348201 -0.724647 -9.197613 +Torque: 0.228190 0.039415 -0.058056 + +Polar angle tht: 0.4363; Azimuth angle phi: 1.2217 +Force: -0.307789 -0.733032 -9.188442 +Torque: 0.232027 0.035285 -0.052775 + +Polar angle tht: 0.4363; Azimuth angle phi: 1.2654 +Force: -0.267562 -0.739829 -9.179125 +Torque: 0.235419 0.031075 -0.047093 + +Polar angle tht: 0.4363; Azimuth angle phi: 1.3090 +Force: -0.227632 -0.745045 -9.169679 +Torque: 0.238359 0.026792 -0.041052 + +Polar angle tht: 0.4363; Azimuth angle phi: 1.3526 +Force: -0.188108 -0.748693 -9.160122 +Torque: 0.240844 0.022444 -0.034698 + +Polar angle tht: 0.4363; Azimuth angle phi: 1.3963 +Force: -0.149095 -0.750789 -9.150472 +Torque: 0.242867 0.018038 -0.028081 + +Polar angle tht: 0.4363; Azimuth angle phi: 1.4399 +Force: -0.110689 -0.751353 -9.140747 +Torque: 0.244427 0.013582 -0.021250 + +Polar angle tht: 0.4363; Azimuth angle phi: 1.4835 +Force: -0.072982 -0.750409 -9.130966 +Torque: 0.245520 0.009085 -0.014257 + +Polar angle tht: 0.4363; Azimuth angle phi: 1.5272 +Force: -0.036060 -0.747984 -9.121148 +Torque: 0.246145 0.004555 -0.007156 + +Polar angle tht: 0.4363; Azimuth angle phi: 1.5708 +Force: 0.000000 -0.744110 -9.111311 +Torque: 0.246300 -0.000000 0.000000 + +Polar angle tht: 0.4363; Azimuth angle phi: 1.6144 +Force: 0.036060 -0.747984 -9.121148 +Torque: 0.246145 -0.004555 0.007156 + +Polar angle tht: 0.4363; Azimuth angle phi: 1.6581 +Force: 0.072982 -0.750409 -9.130966 +Torque: 0.245520 -0.009085 0.014257 + +Polar angle tht: 0.4363; Azimuth angle phi: 1.7017 +Force: 0.110689 -0.751353 -9.140747 +Torque: 0.244427 -0.013582 0.021250 + +Polar angle tht: 0.4363; Azimuth angle phi: 1.7453 +Force: 0.149095 -0.750789 -9.150472 +Torque: 0.242867 -0.018038 0.028081 + +Polar angle tht: 0.4363; Azimuth angle phi: 1.7890 +Force: 0.188108 -0.748693 -9.160122 +Torque: 0.240844 -0.022444 0.034698 + +Polar angle tht: 0.4363; Azimuth angle phi: 1.8326 +Force: 0.227632 -0.745045 -9.169679 +Torque: 0.238359 -0.026792 0.041052 + +Polar angle tht: 0.4363; Azimuth angle phi: 1.8762 +Force: 0.267562 -0.739829 -9.179125 +Torque: 0.235419 -0.031075 0.047093 + +Polar angle tht: 0.4363; Azimuth angle phi: 1.9199 +Force: 0.307789 -0.733032 -9.188442 +Torque: 0.232027 -0.035285 0.052775 + +Polar angle tht: 0.4363; Azimuth angle phi: 1.9635 +Force: 0.348201 -0.724647 -9.197613 +Torque: 0.228190 -0.039415 0.058056 + +Polar angle tht: 0.4363; Azimuth angle phi: 2.0071 +Force: 0.388679 -0.714671 -9.206618 +Torque: 0.223916 -0.043457 0.062895 + +Polar angle tht: 0.4363; Azimuth angle phi: 2.0508 +Force: 0.429100 -0.703104 -9.215443 +Torque: 0.219211 -0.047404 0.067255 + +Polar angle tht: 0.4363; Azimuth angle phi: 2.0944 +Force: 0.469340 -0.689954 -9.224069 +Torque: 0.214084 -0.051251 0.071104 + +Polar angle tht: 0.4363; Azimuth angle phi: 2.1380 +Force: 0.509270 -0.675229 -9.232481 +Torque: 0.208546 -0.054990 0.074411 + +Polar angle tht: 0.4363; Azimuth angle phi: 2.1817 +Force: 0.548760 -0.658948 -9.240662 +Torque: 0.202606 -0.058615 0.077152 + +Polar angle tht: 0.4363; Azimuth angle phi: 2.2253 +Force: 0.587678 -0.641130 -9.248597 +Torque: 0.196275 -0.062120 0.079306 + +Polar angle tht: 0.4363; Azimuth angle phi: 2.2689 +Force: 0.625893 -0.621802 -9.256270 +Torque: 0.189566 -0.065500 0.080856 + +Polar angle tht: 0.4363; Azimuth angle phi: 2.3126 +Force: 0.663271 -0.600995 -9.263668 +Torque: 0.182491 -0.068749 0.081791 + +Polar angle tht: 0.4363; Azimuth angle phi: 2.3562 +Force: 0.699681 -0.578745 -9.270775 +Torque: 0.175064 -0.071863 0.082103 + +Polar angle tht: 0.4363; Azimuth angle phi: 2.3998 +Force: 0.734993 -0.555093 -9.277579 +Torque: 0.167298 -0.074835 0.081791 + +Polar angle tht: 0.4363; Azimuth angle phi: 2.4435 +Force: 0.769078 -0.530086 -9.284067 +Torque: 0.159208 -0.077662 0.080856 + +Polar angle tht: 0.4363; Azimuth angle phi: 2.4871 +Force: 0.801811 -0.503774 -9.290225 +Torque: 0.150810 -0.080339 0.079306 + +Polar angle tht: 0.4363; Azimuth angle phi: 2.5307 +Force: 0.833071 -0.476213 -9.296043 +Torque: 0.142120 -0.082863 0.077152 + +Polar angle tht: 0.4363; Azimuth angle phi: 2.5744 +Force: 0.862738 -0.447463 -9.301509 +Torque: 0.133155 -0.085229 0.074411 + +Polar angle tht: 0.4363; Azimuth angle phi: 2.6180 +Force: 0.890701 -0.417590 -9.306614 +Torque: 0.123932 -0.087433 0.071104 + +Polar angle tht: 0.4363; Azimuth angle phi: 2.6616 +Force: 0.916852 -0.386663 -9.311346 +Torque: 0.114468 -0.089474 0.067255 + +Polar angle tht: 0.4363; Azimuth angle phi: 2.7053 +Force: 0.941089 -0.354753 -9.315698 +Torque: 0.104783 -0.091346 0.062895 + +Polar angle tht: 0.4363; Azimuth angle phi: 2.7489 +Force: 0.963319 -0.321938 -9.319661 +Torque: 0.094893 -0.093049 0.058056 + +Polar angle tht: 0.4363; Azimuth angle phi: 2.7925 +Force: 0.983453 -0.288298 -9.323227 +Torque: 0.084820 -0.094579 0.052775 + +Polar angle tht: 0.4363; Azimuth angle phi: 2.8362 +Force: 1.001412 -0.253917 -9.326390 +Torque: 0.074582 -0.095934 0.047093 + +Polar angle tht: 0.4363; Azimuth angle phi: 2.8798 +Force: 1.017125 -0.218880 -9.329143 +Torque: 0.064199 -0.097113 0.041052 + +Polar angle tht: 0.4363; Azimuth angle phi: 2.9234 +Force: 1.030530 -0.183276 -9.331482 +Torque: 0.053691 -0.098113 0.034698 + +Polar angle tht: 0.4363; Azimuth angle phi: 2.9671 +Force: 1.041571 -0.147197 -9.333401 +Torque: 0.043078 -0.098933 0.028081 + +Polar angle tht: 0.4363; Azimuth angle phi: 3.0107 +Force: 1.050205 -0.110734 -9.334898 +Torque: 0.032382 -0.099572 0.021250 + +Polar angle tht: 0.4363; Azimuth angle phi: 3.0543 +Force: 1.056398 -0.073984 -9.335969 +Torque: 0.021623 -0.100029 0.014257 + +Polar angle tht: 0.4363; Azimuth angle phi: 3.0980 +Force: 1.060123 -0.037040 -9.336613 +Torque: 0.010822 -0.100303 0.007156 + +Polar angle tht: 0.4363; Azimuth angle phi: 3.1416 +Force: 1.061367 0.000000 -9.336827 +Torque: -0.000000 -0.100395 -0.000000 + +Polar angle tht: 0.4363; Azimuth angle phi: 3.1852 +Force: 1.060123 0.037040 -9.336613 +Torque: -0.010822 -0.100303 -0.007156 + +Polar angle tht: 0.4363; Azimuth angle phi: 3.2289 +Force: 1.056398 0.073984 -9.335969 +Torque: -0.021623 -0.100029 -0.014257 + +Polar angle tht: 0.4363; Azimuth angle phi: 3.2725 +Force: 1.050205 0.110734 -9.334898 +Torque: -0.032382 -0.099572 -0.021250 + +Polar angle tht: 0.4363; Azimuth angle phi: 3.3161 +Force: 1.041571 0.147197 -9.333401 +Torque: -0.043078 -0.098933 -0.028081 + +Polar angle tht: 0.4363; Azimuth angle phi: 3.3598 +Force: 1.030530 0.183276 -9.331482 +Torque: -0.053691 -0.098113 -0.034698 + +Polar angle tht: 0.4363; Azimuth angle phi: 3.4034 +Force: 1.017125 0.218880 -9.329143 +Torque: -0.064199 -0.097113 -0.041052 + +Polar angle tht: 0.4363; Azimuth angle phi: 3.4470 +Force: 1.001412 0.253917 -9.326390 +Torque: -0.074582 -0.095934 -0.047093 + +Polar angle tht: 0.4363; Azimuth angle phi: 3.4907 +Force: 0.983453 0.288298 -9.323227 +Torque: -0.084820 -0.094579 -0.052775 + +Polar angle tht: 0.4363; Azimuth angle phi: 3.5343 +Force: 0.963319 0.321938 -9.319661 +Torque: -0.094893 -0.093049 -0.058056 + +Polar angle tht: 0.4363; Azimuth angle phi: 3.5779 +Force: 0.941089 0.354753 -9.315698 +Torque: -0.104783 -0.091346 -0.062895 + +Polar angle tht: 0.4363; Azimuth angle phi: 3.6216 +Force: 0.916852 0.386663 -9.311346 +Torque: -0.114468 -0.089474 -0.067255 + +Polar angle tht: 0.4363; Azimuth angle phi: 3.6652 +Force: 0.890701 0.417590 -9.306614 +Torque: -0.123932 -0.087433 -0.071104 + +Polar angle tht: 0.4363; Azimuth angle phi: 3.7088 +Force: 0.862738 0.447463 -9.301509 +Torque: -0.133155 -0.085229 -0.074411 + +Polar angle tht: 0.4363; Azimuth angle phi: 3.7525 +Force: 0.833071 0.476213 -9.296043 +Torque: -0.142120 -0.082863 -0.077152 + +Polar angle tht: 0.4363; Azimuth angle phi: 3.7961 +Force: 0.801811 0.503774 -9.290225 +Torque: -0.150810 -0.080339 -0.079306 + +Polar angle tht: 0.4363; Azimuth angle phi: 3.8397 +Force: 0.769078 0.530086 -9.284067 +Torque: -0.159208 -0.077662 -0.080856 + +Polar angle tht: 0.4363; Azimuth angle phi: 3.8834 +Force: 0.734993 0.555093 -9.277579 +Torque: -0.167298 -0.074835 -0.081791 + +Polar angle tht: 0.4363; Azimuth angle phi: 3.9270 +Force: 0.699681 0.578745 -9.270775 +Torque: -0.175064 -0.071863 -0.082103 + +Polar angle tht: 0.4363; Azimuth angle phi: 3.9706 +Force: 0.663271 0.600995 -9.263668 +Torque: -0.182491 -0.068749 -0.081791 + +Polar angle tht: 0.4363; Azimuth angle phi: 4.0143 +Force: 0.625893 0.621802 -9.256270 +Torque: -0.189566 -0.065500 -0.080856 + +Polar angle tht: 0.4363; Azimuth angle phi: 4.0579 +Force: 0.587678 0.641130 -9.248597 +Torque: -0.196275 -0.062120 -0.079306 + +Polar angle tht: 0.4363; Azimuth angle phi: 4.1015 +Force: 0.548760 0.658948 -9.240662 +Torque: -0.202606 -0.058615 -0.077152 + +Polar angle tht: 0.4363; Azimuth angle phi: 4.1452 +Force: 0.509270 0.675229 -9.232481 +Torque: -0.208546 -0.054990 -0.074411 + +Polar angle tht: 0.4363; Azimuth angle phi: 4.1888 +Force: 0.469340 0.689954 -9.224069 +Torque: -0.214084 -0.051251 -0.071104 + +Polar angle tht: 0.4363; Azimuth angle phi: 4.2324 +Force: 0.429100 0.703104 -9.215443 +Torque: -0.219211 -0.047404 -0.067255 + +Polar angle tht: 0.4363; Azimuth angle phi: 4.2761 +Force: 0.388679 0.714671 -9.206618 +Torque: -0.223916 -0.043457 -0.062895 + +Polar angle tht: 0.4363; Azimuth angle phi: 4.3197 +Force: 0.348201 0.724647 -9.197613 +Torque: -0.228190 -0.039415 -0.058056 + +Polar angle tht: 0.4363; Azimuth angle phi: 4.3633 +Force: 0.307789 0.733032 -9.188442 +Torque: -0.232027 -0.035285 -0.052775 + +Polar angle tht: 0.4363; Azimuth angle phi: 4.4070 +Force: 0.267562 0.739829 -9.179125 +Torque: -0.235419 -0.031075 -0.047093 + +Polar angle tht: 0.4363; Azimuth angle phi: 4.4506 +Force: 0.227632 0.745045 -9.169679 +Torque: -0.238359 -0.026792 -0.041052 + +Polar angle tht: 0.4363; Azimuth angle phi: 4.4942 +Force: 0.188108 0.748693 -9.160122 +Torque: -0.240844 -0.022444 -0.034698 + +Polar angle tht: 0.4363; Azimuth angle phi: 4.5379 +Force: 0.149095 0.750789 -9.150472 +Torque: -0.242867 -0.018038 -0.028081 + +Polar angle tht: 0.4363; Azimuth angle phi: 4.5815 +Force: 0.110689 0.751353 -9.140747 +Torque: -0.244427 -0.013582 -0.021250 + +Polar angle tht: 0.4363; Azimuth angle phi: 4.6251 +Force: 0.072982 0.750409 -9.130966 +Torque: -0.245520 -0.009085 -0.014257 + +Polar angle tht: 0.4363; Azimuth angle phi: 4.6688 +Force: 0.036060 0.747984 -9.121148 +Torque: -0.246145 -0.004555 -0.007156 + +Polar angle tht: 0.4363; Azimuth angle phi: 4.7124 +Force: 0.000000 0.744110 -9.111311 +Torque: -0.246300 -0.000000 -0.000000 + +Polar angle tht: 0.4363; Azimuth angle phi: 4.7560 +Force: -0.036060 0.747984 -9.121148 +Torque: -0.246145 0.004555 0.007156 + +Polar angle tht: 0.4363; Azimuth angle phi: 4.7997 +Force: -0.072982 0.750409 -9.130966 +Torque: -0.245520 0.009085 0.014257 + +Polar angle tht: 0.4363; Azimuth angle phi: 4.8433 +Force: -0.110689 0.751353 -9.140747 +Torque: -0.244427 0.013582 0.021250 + +Polar angle tht: 0.4363; Azimuth angle phi: 4.8869 +Force: -0.149095 0.750789 -9.150472 +Torque: -0.242867 0.018038 0.028081 + +Polar angle tht: 0.4363; Azimuth angle phi: 4.9306 +Force: -0.188108 0.748693 -9.160122 +Torque: -0.240844 0.022444 0.034698 + +Polar angle tht: 0.4363; Azimuth angle phi: 4.9742 +Force: -0.227632 0.745045 -9.169679 +Torque: -0.238359 0.026792 0.041052 + +Polar angle tht: 0.4363; Azimuth angle phi: 5.0178 +Force: -0.267562 0.739829 -9.179125 +Torque: -0.235419 0.031075 0.047093 + +Polar angle tht: 0.4363; Azimuth angle phi: 5.0615 +Force: -0.307789 0.733032 -9.188442 +Torque: -0.232027 0.035285 0.052775 + +Polar angle tht: 0.4363; Azimuth angle phi: 5.1051 +Force: -0.348201 0.724647 -9.197613 +Torque: -0.228190 0.039415 0.058056 + +Polar angle tht: 0.4363; Azimuth angle phi: 5.1487 +Force: -0.388679 0.714671 -9.206618 +Torque: -0.223916 0.043457 0.062895 + +Polar angle tht: 0.4363; Azimuth angle phi: 5.1924 +Force: -0.429100 0.703104 -9.215443 +Torque: -0.219211 0.047404 0.067255 + +Polar angle tht: 0.4363; Azimuth angle phi: 5.2360 +Force: -0.469340 0.689954 -9.224069 +Torque: -0.214084 0.051251 0.071104 + +Polar angle tht: 0.4363; Azimuth angle phi: 5.2796 +Force: -0.509270 0.675229 -9.232481 +Torque: -0.208546 0.054990 0.074411 + +Polar angle tht: 0.4363; Azimuth angle phi: 5.3233 +Force: -0.548760 0.658948 -9.240662 +Torque: -0.202606 0.058615 0.077152 + +Polar angle tht: 0.4363; Azimuth angle phi: 5.3669 +Force: -0.587678 0.641130 -9.248597 +Torque: -0.196275 0.062120 0.079306 + +Polar angle tht: 0.4363; Azimuth angle phi: 5.4105 +Force: -0.625893 0.621802 -9.256270 +Torque: -0.189566 0.065500 0.080856 + +Polar angle tht: 0.4363; Azimuth angle phi: 5.4542 +Force: -0.663271 0.600995 -9.263668 +Torque: -0.182491 0.068749 0.081791 + +Polar angle tht: 0.4363; Azimuth angle phi: 5.4978 +Force: -0.699681 0.578745 -9.270775 +Torque: -0.175064 0.071863 0.082103 + +Polar angle tht: 0.4363; Azimuth angle phi: 5.5414 +Force: -0.734993 0.555093 -9.277579 +Torque: -0.167298 0.074835 0.081791 + +Polar angle tht: 0.4363; Azimuth angle phi: 5.5851 +Force: -0.769078 0.530086 -9.284067 +Torque: -0.159208 0.077662 0.080856 + +Polar angle tht: 0.4363; Azimuth angle phi: 5.6287 +Force: -0.801811 0.503774 -9.290225 +Torque: -0.150810 0.080339 0.079306 + +Polar angle tht: 0.4363; Azimuth angle phi: 5.6723 +Force: -0.833071 0.476213 -9.296043 +Torque: -0.142120 0.082863 0.077152 + +Polar angle tht: 0.4363; Azimuth angle phi: 5.7160 +Force: -0.862738 0.447463 -9.301509 +Torque: -0.133155 0.085229 0.074411 + +Polar angle tht: 0.4363; Azimuth angle phi: 5.7596 +Force: -0.890701 0.417590 -9.306614 +Torque: -0.123932 0.087433 0.071104 + +Polar angle tht: 0.4363; Azimuth angle phi: 5.8032 +Force: -0.916852 0.386663 -9.311346 +Torque: -0.114468 0.089474 0.067255 + +Polar angle tht: 0.4363; Azimuth angle phi: 5.8469 +Force: -0.941089 0.354753 -9.315698 +Torque: -0.104783 0.091346 0.062895 + +Polar angle tht: 0.4363; Azimuth angle phi: 5.8905 +Force: -0.963319 0.321938 -9.319661 +Torque: -0.094893 0.093049 0.058056 + +Polar angle tht: 0.4363; Azimuth angle phi: 5.9341 +Force: -0.983453 0.288298 -9.323227 +Torque: -0.084820 0.094579 0.052775 + +Polar angle tht: 0.4363; Azimuth angle phi: 5.9778 +Force: -1.001412 0.253917 -9.326390 +Torque: -0.074582 0.095934 0.047093 + +Polar angle tht: 0.4363; Azimuth angle phi: 6.0214 +Force: -1.017125 0.218880 -9.329143 +Torque: -0.064199 0.097113 0.041052 + +Polar angle tht: 0.4363; Azimuth angle phi: 6.0650 +Force: -1.030530 0.183276 -9.331482 +Torque: -0.053691 0.098113 0.034698 + +Polar angle tht: 0.4363; Azimuth angle phi: 6.1087 +Force: -1.041571 0.147197 -9.333401 +Torque: -0.043078 0.098933 0.028081 + +Polar angle tht: 0.4363; Azimuth angle phi: 6.1523 +Force: -1.050205 0.110734 -9.334898 +Torque: -0.032382 0.099572 0.021250 + +Polar angle tht: 0.4363; Azimuth angle phi: 6.1959 +Force: -1.056398 0.073984 -9.335969 +Torque: -0.021623 0.100029 0.014257 + +Polar angle tht: 0.4363; Azimuth angle phi: 6.2396 +Force: -1.060123 0.037040 -9.336613 +Torque: -0.010822 0.100303 0.007156 + +Polar angle tht: 0.4363; Azimuth angle phi: 6.2832 +Force: -1.061367 0.000000 -9.336827 +Torque: -0.000000 0.100395 0.000000 + +Polar angle tht: 0.4800; Azimuth angle phi: 0.0000 +Force: -1.167151 0.000000 -8.983887 +Torque: -0.000000 0.106802 0.000000 + +Polar angle tht: 0.4800; Azimuth angle phi: 0.0436 +Force: -1.165762 -0.040178 -8.983657 +Torque: 0.011582 0.106705 -0.008542 + +Polar angle tht: 0.4800; Azimuth angle phi: 0.0873 +Force: -1.161599 -0.080249 -8.982969 +Torque: 0.023142 0.106415 -0.017019 + +Polar angle tht: 0.4800; Azimuth angle phi: 0.1309 +Force: -1.154682 -0.120105 -8.981824 +Torque: 0.034656 0.105931 -0.025367 + +Polar angle tht: 0.4800; Azimuth angle phi: 0.1745 +Force: -1.145037 -0.159639 -8.980223 +Torque: 0.046103 0.105255 -0.033522 + +Polar angle tht: 0.4800; Azimuth angle phi: 0.2182 +Force: -1.132706 -0.198747 -8.978171 +Torque: 0.057460 0.104387 -0.041421 + +Polar angle tht: 0.4800; Azimuth angle phi: 0.2618 +Force: -1.117741 -0.237325 -8.975670 +Torque: 0.068706 0.103328 -0.049006 + +Polar angle tht: 0.4800; Azimuth angle phi: 0.3054 +Force: -1.100202 -0.275273 -8.972726 +Torque: 0.079817 0.102081 -0.056217 + +Polar angle tht: 0.4800; Azimuth angle phi: 0.3491 +Force: -1.080164 -0.312490 -8.969344 +Torque: 0.090773 0.100646 -0.063000 + +Polar angle tht: 0.4800; Azimuth angle phi: 0.3927 +Force: -1.057707 -0.348883 -8.965530 +Torque: 0.101552 0.099026 -0.069304 + +Polar angle tht: 0.4800; Azimuth angle phi: 0.4363 +Force: -1.032926 -0.384359 -8.961293 +Torque: 0.112133 0.097223 -0.075081 + +Polar angle tht: 0.4800; Azimuth angle phi: 0.4800 +Force: -1.005919 -0.418828 -8.956639 +Torque: 0.122496 0.095239 -0.080286 + +Polar angle tht: 0.4800; Azimuth angle phi: 0.5236 +Force: -0.976797 -0.452207 -8.951579 +Torque: 0.132621 0.093077 -0.084880 + +Polar angle tht: 0.4800; Azimuth angle phi: 0.5672 +Force: -0.945676 -0.484414 -8.946121 +Torque: 0.142488 0.090740 -0.088828 + +Polar angle tht: 0.4800; Azimuth angle phi: 0.6109 +Force: -0.912681 -0.515375 -8.940275 +Torque: 0.152079 0.088232 -0.092101 + +Polar angle tht: 0.4800; Azimuth angle phi: 0.6545 +Force: -0.877942 -0.545018 -8.934054 +Torque: 0.161374 0.085556 -0.094672 + +Polar angle tht: 0.4800; Azimuth angle phi: 0.6981 +Force: -0.841593 -0.573278 -8.927468 +Torque: 0.170356 0.082717 -0.096522 + +Polar angle tht: 0.4800; Azimuth angle phi: 0.7418 +Force: -0.803777 -0.600094 -8.920531 +Torque: 0.179008 0.079717 -0.097638 + +Polar angle tht: 0.4800; Azimuth angle phi: 0.7854 +Force: -0.764636 -0.625410 -8.913256 +Torque: 0.187312 0.076562 -0.098011 + +Polar angle tht: 0.4800; Azimuth angle phi: 0.8290 +Force: -0.724318 -0.649178 -8.905655 +Torque: 0.195255 0.073257 -0.097638 + +Polar angle tht: 0.4800; Azimuth angle phi: 0.8727 +Force: -0.682974 -0.671353 -8.897745 +Torque: 0.202819 0.069806 -0.096522 + +Polar angle tht: 0.4800; Azimuth angle phi: 0.9163 +Force: -0.640753 -0.691897 -8.889540 +Torque: 0.209991 0.066215 -0.094672 + +Polar angle tht: 0.4800; Azimuth angle phi: 0.9599 +Force: -0.597807 -0.710779 -8.881055 +Torque: 0.216757 0.062489 -0.092101 + +Polar angle tht: 0.4800; Azimuth angle phi: 1.0036 +Force: -0.554289 -0.727970 -8.872307 +Torque: 0.223106 0.058635 -0.088828 + +Polar angle tht: 0.4800; Azimuth angle phi: 1.0472 +Force: -0.510347 -0.743452 -8.863312 +Torque: 0.229023 0.054658 -0.084880 + +Polar angle tht: 0.4800; Azimuth angle phi: 1.0908 +Force: -0.466130 -0.757208 -8.854087 +Torque: 0.234500 0.050566 -0.080286 + +Polar angle tht: 0.4800; Azimuth angle phi: 1.1345 +Force: -0.421785 -0.769229 -8.844651 +Torque: 0.239525 0.046364 -0.075081 + +Polar angle tht: 0.4800; Azimuth angle phi: 1.1781 +Force: -0.377452 -0.779511 -8.835021 +Torque: 0.244089 0.042060 -0.069304 + +Polar angle tht: 0.4800; Azimuth angle phi: 1.2217 +Force: -0.333271 -0.788057 -8.825215 +Torque: 0.248185 0.037660 -0.063000 + +Polar angle tht: 0.4800; Azimuth angle phi: 1.2654 +Force: -0.289374 -0.794871 -8.815252 +Torque: 0.251804 0.033174 -0.056217 + +Polar angle tht: 0.4800; Azimuth angle phi: 1.3090 +Force: -0.245891 -0.799968 -8.805151 +Torque: 0.254940 0.028607 -0.049006 + +Polar angle tht: 0.4800; Azimuth angle phi: 1.3526 +Force: -0.202941 -0.803362 -8.794931 +Torque: 0.257588 0.023969 -0.041421 + +Polar angle tht: 0.4800; Azimuth angle phi: 1.3963 +Force: -0.160642 -0.805076 -8.784612 +Torque: 0.259743 0.019268 -0.033522 + +Polar angle tht: 0.4800; Azimuth angle phi: 1.4399 +Force: -0.119101 -0.805135 -8.774213 +Torque: 0.261401 0.014511 -0.025367 + +Polar angle tht: 0.4800; Azimuth angle phi: 1.4835 +Force: -0.078420 -0.803568 -8.763754 +Torque: 0.262561 0.009709 -0.017019 + +Polar angle tht: 0.4800; Azimuth angle phi: 1.5272 +Force: -0.038691 -0.800410 -8.753255 +Torque: 0.263219 0.004868 -0.008542 + +Polar angle tht: 0.4800; Azimuth angle phi: 1.5708 +Force: 0.000000 -0.795697 -8.742737 +Torque: 0.263376 -0.000000 0.000000 + +Polar angle tht: 0.4800; Azimuth angle phi: 1.6144 +Force: 0.038691 -0.800410 -8.753255 +Torque: 0.263219 -0.004868 0.008542 + +Polar angle tht: 0.4800; Azimuth angle phi: 1.6581 +Force: 0.078420 -0.803568 -8.763754 +Torque: 0.262561 -0.009709 0.017019 + +Polar angle tht: 0.4800; Azimuth angle phi: 1.7017 +Force: 0.119101 -0.805135 -8.774213 +Torque: 0.261401 -0.014511 0.025367 + +Polar angle tht: 0.4800; Azimuth angle phi: 1.7453 +Force: 0.160642 -0.805076 -8.784612 +Torque: 0.259743 -0.019268 0.033522 + +Polar angle tht: 0.4800; Azimuth angle phi: 1.7890 +Force: 0.202941 -0.803362 -8.794931 +Torque: 0.257588 -0.023969 0.041421 + +Polar angle tht: 0.4800; Azimuth angle phi: 1.8326 +Force: 0.245891 -0.799968 -8.805151 +Torque: 0.254940 -0.028607 0.049006 + +Polar angle tht: 0.4800; Azimuth angle phi: 1.8762 +Force: 0.289374 -0.794871 -8.815252 +Torque: 0.251804 -0.033174 0.056217 + +Polar angle tht: 0.4800; Azimuth angle phi: 1.9199 +Force: 0.333271 -0.788057 -8.825215 +Torque: 0.248185 -0.037660 0.063000 + +Polar angle tht: 0.4800; Azimuth angle phi: 1.9635 +Force: 0.377452 -0.779511 -8.835021 +Torque: 0.244089 -0.042060 0.069304 + +Polar angle tht: 0.4800; Azimuth angle phi: 2.0071 +Force: 0.421785 -0.769229 -8.844651 +Torque: 0.239525 -0.046364 0.075081 + +Polar angle tht: 0.4800; Azimuth angle phi: 2.0508 +Force: 0.466130 -0.757208 -8.854087 +Torque: 0.234500 -0.050566 0.080286 + +Polar angle tht: 0.4800; Azimuth angle phi: 2.0944 +Force: 0.510347 -0.743452 -8.863312 +Torque: 0.229023 -0.054658 0.084880 + +Polar angle tht: 0.4800; Azimuth angle phi: 2.1380 +Force: 0.554289 -0.727970 -8.872307 +Torque: 0.223106 -0.058635 0.088828 + +Polar angle tht: 0.4800; Azimuth angle phi: 2.1817 +Force: 0.597807 -0.710779 -8.881055 +Torque: 0.216757 -0.062489 0.092101 + +Polar angle tht: 0.4800; Azimuth angle phi: 2.2253 +Force: 0.640753 -0.691897 -8.889540 +Torque: 0.209991 -0.066215 0.094672 + +Polar angle tht: 0.4800; Azimuth angle phi: 2.2689 +Force: 0.682974 -0.671353 -8.897745 +Torque: 0.202819 -0.069806 0.096522 + +Polar angle tht: 0.4800; Azimuth angle phi: 2.3126 +Force: 0.724318 -0.649178 -8.905655 +Torque: 0.195255 -0.073257 0.097638 + +Polar angle tht: 0.4800; Azimuth angle phi: 2.3562 +Force: 0.764636 -0.625410 -8.913256 +Torque: 0.187312 -0.076562 0.098011 + +Polar angle tht: 0.4800; Azimuth angle phi: 2.3998 +Force: 0.803777 -0.600094 -8.920531 +Torque: 0.179008 -0.079717 0.097638 + +Polar angle tht: 0.4800; Azimuth angle phi: 2.4435 +Force: 0.841593 -0.573278 -8.927468 +Torque: 0.170356 -0.082717 0.096522 + +Polar angle tht: 0.4800; Azimuth angle phi: 2.4871 +Force: 0.877942 -0.545018 -8.934054 +Torque: 0.161374 -0.085556 0.094672 + +Polar angle tht: 0.4800; Azimuth angle phi: 2.5307 +Force: 0.912681 -0.515375 -8.940275 +Torque: 0.152079 -0.088232 0.092101 + +Polar angle tht: 0.4800; Azimuth angle phi: 2.5744 +Force: 0.945676 -0.484414 -8.946121 +Torque: 0.142488 -0.090740 0.088828 + +Polar angle tht: 0.4800; Azimuth angle phi: 2.6180 +Force: 0.976797 -0.452207 -8.951579 +Torque: 0.132621 -0.093077 0.084880 + +Polar angle tht: 0.4800; Azimuth angle phi: 2.6616 +Force: 1.005919 -0.418828 -8.956639 +Torque: 0.122496 -0.095239 0.080286 + +Polar angle tht: 0.4800; Azimuth angle phi: 2.7053 +Force: 1.032926 -0.384359 -8.961293 +Torque: 0.112133 -0.097223 0.075081 + +Polar angle tht: 0.4800; Azimuth angle phi: 2.7489 +Force: 1.057707 -0.348883 -8.965530 +Torque: 0.101552 -0.099026 0.069304 + +Polar angle tht: 0.4800; Azimuth angle phi: 2.7925 +Force: 1.080164 -0.312490 -8.969344 +Torque: 0.090773 -0.100646 0.063000 + +Polar angle tht: 0.4800; Azimuth angle phi: 2.8362 +Force: 1.100202 -0.275273 -8.972726 +Torque: 0.079817 -0.102081 0.056217 + +Polar angle tht: 0.4800; Azimuth angle phi: 2.8798 +Force: 1.117741 -0.237325 -8.975670 +Torque: 0.068706 -0.103328 0.049006 + +Polar angle tht: 0.4800; Azimuth angle phi: 2.9234 +Force: 1.132706 -0.198747 -8.978171 +Torque: 0.057460 -0.104387 0.041421 + +Polar angle tht: 0.4800; Azimuth angle phi: 2.9671 +Force: 1.145037 -0.159639 -8.980223 +Torque: 0.046103 -0.105255 0.033522 + +Polar angle tht: 0.4800; Azimuth angle phi: 3.0107 +Force: 1.154682 -0.120105 -8.981824 +Torque: 0.034656 -0.105931 0.025367 + +Polar angle tht: 0.4800; Azimuth angle phi: 3.0543 +Force: 1.161599 -0.080249 -8.982969 +Torque: 0.023142 -0.106415 0.017019 + +Polar angle tht: 0.4800; Azimuth angle phi: 3.0980 +Force: 1.165762 -0.040178 -8.983657 +Torque: 0.011582 -0.106705 0.008542 + +Polar angle tht: 0.4800; Azimuth angle phi: 3.1416 +Force: 1.167151 0.000000 -8.983887 +Torque: -0.000000 -0.106802 -0.000000 + +Polar angle tht: 0.4800; Azimuth angle phi: 3.1852 +Force: 1.165762 0.040178 -8.983657 +Torque: -0.011582 -0.106705 -0.008542 + +Polar angle tht: 0.4800; Azimuth angle phi: 3.2289 +Force: 1.161599 0.080249 -8.982969 +Torque: -0.023142 -0.106415 -0.017019 + +Polar angle tht: 0.4800; Azimuth angle phi: 3.2725 +Force: 1.154682 0.120105 -8.981824 +Torque: -0.034656 -0.105931 -0.025367 + +Polar angle tht: 0.4800; Azimuth angle phi: 3.3161 +Force: 1.145037 0.159639 -8.980223 +Torque: -0.046103 -0.105255 -0.033522 + +Polar angle tht: 0.4800; Azimuth angle phi: 3.3598 +Force: 1.132706 0.198747 -8.978171 +Torque: -0.057460 -0.104387 -0.041421 + +Polar angle tht: 0.4800; Azimuth angle phi: 3.4034 +Force: 1.117741 0.237325 -8.975670 +Torque: -0.068706 -0.103328 -0.049006 + +Polar angle tht: 0.4800; Azimuth angle phi: 3.4470 +Force: 1.100202 0.275273 -8.972726 +Torque: -0.079817 -0.102081 -0.056217 + +Polar angle tht: 0.4800; Azimuth angle phi: 3.4907 +Force: 1.080164 0.312490 -8.969344 +Torque: -0.090773 -0.100646 -0.063000 + +Polar angle tht: 0.4800; Azimuth angle phi: 3.5343 +Force: 1.057707 0.348883 -8.965530 +Torque: -0.101552 -0.099026 -0.069304 + +Polar angle tht: 0.4800; Azimuth angle phi: 3.5779 +Force: 1.032926 0.384359 -8.961293 +Torque: -0.112133 -0.097223 -0.075081 + +Polar angle tht: 0.4800; Azimuth angle phi: 3.6216 +Force: 1.005919 0.418828 -8.956639 +Torque: -0.122496 -0.095239 -0.080286 + +Polar angle tht: 0.4800; Azimuth angle phi: 3.6652 +Force: 0.976797 0.452207 -8.951579 +Torque: -0.132621 -0.093077 -0.084880 + +Polar angle tht: 0.4800; Azimuth angle phi: 3.7088 +Force: 0.945676 0.484414 -8.946121 +Torque: -0.142488 -0.090740 -0.088828 + +Polar angle tht: 0.4800; Azimuth angle phi: 3.7525 +Force: 0.912681 0.515375 -8.940275 +Torque: -0.152079 -0.088232 -0.092101 + +Polar angle tht: 0.4800; Azimuth angle phi: 3.7961 +Force: 0.877942 0.545018 -8.934054 +Torque: -0.161374 -0.085556 -0.094672 + +Polar angle tht: 0.4800; Azimuth angle phi: 3.8397 +Force: 0.841593 0.573278 -8.927468 +Torque: -0.170356 -0.082717 -0.096522 + +Polar angle tht: 0.4800; Azimuth angle phi: 3.8834 +Force: 0.803777 0.600094 -8.920531 +Torque: -0.179008 -0.079717 -0.097638 + +Polar angle tht: 0.4800; Azimuth angle phi: 3.9270 +Force: 0.764636 0.625410 -8.913256 +Torque: -0.187312 -0.076562 -0.098011 + +Polar angle tht: 0.4800; Azimuth angle phi: 3.9706 +Force: 0.724318 0.649178 -8.905655 +Torque: -0.195255 -0.073257 -0.097638 + +Polar angle tht: 0.4800; Azimuth angle phi: 4.0143 +Force: 0.682974 0.671353 -8.897745 +Torque: -0.202819 -0.069806 -0.096522 + +Polar angle tht: 0.4800; Azimuth angle phi: 4.0579 +Force: 0.640753 0.691897 -8.889540 +Torque: -0.209991 -0.066215 -0.094672 + +Polar angle tht: 0.4800; Azimuth angle phi: 4.1015 +Force: 0.597807 0.710779 -8.881055 +Torque: -0.216757 -0.062489 -0.092101 + +Polar angle tht: 0.4800; Azimuth angle phi: 4.1452 +Force: 0.554289 0.727970 -8.872307 +Torque: -0.223106 -0.058635 -0.088828 + +Polar angle tht: 0.4800; Azimuth angle phi: 4.1888 +Force: 0.510347 0.743452 -8.863312 +Torque: -0.229023 -0.054658 -0.084880 + +Polar angle tht: 0.4800; Azimuth angle phi: 4.2324 +Force: 0.466130 0.757208 -8.854087 +Torque: -0.234500 -0.050566 -0.080286 + +Polar angle tht: 0.4800; Azimuth angle phi: 4.2761 +Force: 0.421785 0.769229 -8.844651 +Torque: -0.239525 -0.046364 -0.075081 + +Polar angle tht: 0.4800; Azimuth angle phi: 4.3197 +Force: 0.377452 0.779511 -8.835021 +Torque: -0.244089 -0.042060 -0.069304 + +Polar angle tht: 0.4800; Azimuth angle phi: 4.3633 +Force: 0.333271 0.788057 -8.825215 +Torque: -0.248185 -0.037660 -0.063000 + +Polar angle tht: 0.4800; Azimuth angle phi: 4.4070 +Force: 0.289374 0.794871 -8.815252 +Torque: -0.251804 -0.033174 -0.056217 + +Polar angle tht: 0.4800; Azimuth angle phi: 4.4506 +Force: 0.245891 0.799968 -8.805151 +Torque: -0.254940 -0.028607 -0.049006 + +Polar angle tht: 0.4800; Azimuth angle phi: 4.4942 +Force: 0.202941 0.803362 -8.794931 +Torque: -0.257588 -0.023969 -0.041421 + +Polar angle tht: 0.4800; Azimuth angle phi: 4.5379 +Force: 0.160642 0.805076 -8.784612 +Torque: -0.259743 -0.019268 -0.033522 + +Polar angle tht: 0.4800; Azimuth angle phi: 4.5815 +Force: 0.119101 0.805135 -8.774213 +Torque: -0.261401 -0.014511 -0.025367 + +Polar angle tht: 0.4800; Azimuth angle phi: 4.6251 +Force: 0.078420 0.803568 -8.763754 +Torque: -0.262561 -0.009709 -0.017019 + +Polar angle tht: 0.4800; Azimuth angle phi: 4.6688 +Force: 0.038691 0.800410 -8.753255 +Torque: -0.263219 -0.004868 -0.008542 + +Polar angle tht: 0.4800; Azimuth angle phi: 4.7124 +Force: 0.000000 0.795697 -8.742737 +Torque: -0.263376 -0.000000 -0.000000 + +Polar angle tht: 0.4800; Azimuth angle phi: 4.7560 +Force: -0.038691 0.800410 -8.753255 +Torque: -0.263219 0.004868 0.008542 + +Polar angle tht: 0.4800; Azimuth angle phi: 4.7997 +Force: -0.078420 0.803568 -8.763754 +Torque: -0.262561 0.009709 0.017019 + +Polar angle tht: 0.4800; Azimuth angle phi: 4.8433 +Force: -0.119101 0.805135 -8.774213 +Torque: -0.261401 0.014511 0.025367 + +Polar angle tht: 0.4800; Azimuth angle phi: 4.8869 +Force: -0.160642 0.805076 -8.784612 +Torque: -0.259743 0.019268 0.033522 + +Polar angle tht: 0.4800; Azimuth angle phi: 4.9306 +Force: -0.202941 0.803362 -8.794931 +Torque: -0.257588 0.023969 0.041421 + +Polar angle tht: 0.4800; Azimuth angle phi: 4.9742 +Force: -0.245891 0.799968 -8.805151 +Torque: -0.254940 0.028607 0.049006 + +Polar angle tht: 0.4800; Azimuth angle phi: 5.0178 +Force: -0.289374 0.794871 -8.815252 +Torque: -0.251804 0.033174 0.056217 + +Polar angle tht: 0.4800; Azimuth angle phi: 5.0615 +Force: -0.333271 0.788057 -8.825215 +Torque: -0.248185 0.037660 0.063000 + +Polar angle tht: 0.4800; Azimuth angle phi: 5.1051 +Force: -0.377452 0.779511 -8.835021 +Torque: -0.244089 0.042060 0.069304 + +Polar angle tht: 0.4800; Azimuth angle phi: 5.1487 +Force: -0.421785 0.769229 -8.844651 +Torque: -0.239525 0.046364 0.075081 + +Polar angle tht: 0.4800; Azimuth angle phi: 5.1924 +Force: -0.466130 0.757208 -8.854087 +Torque: -0.234500 0.050566 0.080286 + +Polar angle tht: 0.4800; Azimuth angle phi: 5.2360 +Force: -0.510347 0.743452 -8.863312 +Torque: -0.229023 0.054658 0.084880 + +Polar angle tht: 0.4800; Azimuth angle phi: 5.2796 +Force: -0.554289 0.727970 -8.872307 +Torque: -0.223106 0.058635 0.088828 + +Polar angle tht: 0.4800; Azimuth angle phi: 5.3233 +Force: -0.597807 0.710779 -8.881055 +Torque: -0.216757 0.062489 0.092101 + +Polar angle tht: 0.4800; Azimuth angle phi: 5.3669 +Force: -0.640753 0.691897 -8.889540 +Torque: -0.209991 0.066215 0.094672 + +Polar angle tht: 0.4800; Azimuth angle phi: 5.4105 +Force: -0.682974 0.671353 -8.897745 +Torque: -0.202819 0.069806 0.096522 + +Polar angle tht: 0.4800; Azimuth angle phi: 5.4542 +Force: -0.724318 0.649178 -8.905655 +Torque: -0.195255 0.073257 0.097638 + +Polar angle tht: 0.4800; Azimuth angle phi: 5.4978 +Force: -0.764636 0.625410 -8.913256 +Torque: -0.187312 0.076562 0.098011 + +Polar angle tht: 0.4800; Azimuth angle phi: 5.5414 +Force: -0.803777 0.600094 -8.920531 +Torque: -0.179008 0.079717 0.097638 + +Polar angle tht: 0.4800; Azimuth angle phi: 5.5851 +Force: -0.841593 0.573278 -8.927468 +Torque: -0.170356 0.082717 0.096522 + +Polar angle tht: 0.4800; Azimuth angle phi: 5.6287 +Force: -0.877942 0.545018 -8.934054 +Torque: -0.161374 0.085556 0.094672 + +Polar angle tht: 0.4800; Azimuth angle phi: 5.6723 +Force: -0.912681 0.515375 -8.940275 +Torque: -0.152079 0.088232 0.092101 + +Polar angle tht: 0.4800; Azimuth angle phi: 5.7160 +Force: -0.945676 0.484414 -8.946121 +Torque: -0.142488 0.090740 0.088828 + +Polar angle tht: 0.4800; Azimuth angle phi: 5.7596 +Force: -0.976797 0.452207 -8.951579 +Torque: -0.132621 0.093077 0.084880 + +Polar angle tht: 0.4800; Azimuth angle phi: 5.8032 +Force: -1.005919 0.418828 -8.956639 +Torque: -0.122496 0.095239 0.080286 + +Polar angle tht: 0.4800; Azimuth angle phi: 5.8469 +Force: -1.032926 0.384359 -8.961293 +Torque: -0.112133 0.097223 0.075081 + +Polar angle tht: 0.4800; Azimuth angle phi: 5.8905 +Force: -1.057707 0.348883 -8.965530 +Torque: -0.101552 0.099026 0.069304 + +Polar angle tht: 0.4800; Azimuth angle phi: 5.9341 +Force: -1.080164 0.312490 -8.969344 +Torque: -0.090773 0.100646 0.063000 + +Polar angle tht: 0.4800; Azimuth angle phi: 5.9778 +Force: -1.100202 0.275273 -8.972726 +Torque: -0.079817 0.102081 0.056217 + +Polar angle tht: 0.4800; Azimuth angle phi: 6.0214 +Force: -1.117741 0.237325 -8.975670 +Torque: -0.068706 0.103328 0.049006 + +Polar angle tht: 0.4800; Azimuth angle phi: 6.0650 +Force: -1.132706 0.198747 -8.978171 +Torque: -0.057460 0.104387 0.041421 + +Polar angle tht: 0.4800; Azimuth angle phi: 6.1087 +Force: -1.145037 0.159639 -8.980223 +Torque: -0.046103 0.105255 0.033522 + +Polar angle tht: 0.4800; Azimuth angle phi: 6.1523 +Force: -1.154682 0.120105 -8.981824 +Torque: -0.034656 0.105931 0.025367 + +Polar angle tht: 0.4800; Azimuth angle phi: 6.1959 +Force: -1.161599 0.080249 -8.982969 +Torque: -0.023142 0.106415 0.017019 + +Polar angle tht: 0.4800; Azimuth angle phi: 6.2396 +Force: -1.165762 0.040178 -8.983657 +Torque: -0.011582 0.106705 0.008542 + +Polar angle tht: 0.4800; Azimuth angle phi: 6.2832 +Force: -1.167151 0.000000 -8.983887 +Torque: -0.000000 0.106802 0.000000 + +Polar angle tht: 0.5236; Azimuth angle phi: 0.0000 +Force: -1.269729 0.000000 -8.605483 +Torque: -0.000000 0.112299 0.000000 + +Polar angle tht: 0.5236; Azimuth angle phi: 0.0436 +Force: -1.268194 -0.043108 -8.605240 +Torque: 0.012256 0.112198 -0.010016 + +Polar angle tht: 0.5236; Azimuth angle phi: 0.0873 +Force: -1.263595 -0.086098 -8.604513 +Torque: 0.024488 0.111894 -0.019956 + +Polar angle tht: 0.5236; Azimuth angle phi: 0.1309 +Force: -1.255953 -0.128851 -8.603302 +Torque: 0.036672 0.111388 -0.029744 + +Polar angle tht: 0.5236; Azimuth angle phi: 0.1745 +Force: -1.245300 -0.171250 -8.601610 +Torque: 0.048784 0.110681 -0.039306 + +Polar angle tht: 0.5236; Azimuth angle phi: 0.2182 +Force: -1.231683 -0.213179 -8.599440 +Torque: 0.060801 0.109773 -0.048568 + +Polar angle tht: 0.5236; Azimuth angle phi: 0.2618 +Force: -1.215160 -0.254525 -8.596796 +Torque: 0.072699 0.108666 -0.057461 + +Polar angle tht: 0.5236; Azimuth angle phi: 0.3054 +Force: -1.195802 -0.295176 -8.593683 +Torque: 0.084455 0.107362 -0.065917 + +Polar angle tht: 0.5236; Azimuth angle phi: 0.3491 +Force: -1.173691 -0.335024 -8.590108 +Torque: 0.096047 0.105861 -0.073871 + +Polar angle tht: 0.5236; Azimuth angle phi: 0.3927 +Force: -1.148923 -0.373965 -8.586076 +Torque: 0.107450 0.104165 -0.081262 + +Polar angle tht: 0.5236; Azimuth angle phi: 0.4363 +Force: -1.121601 -0.411897 -8.581596 +Torque: 0.118645 0.102278 -0.088036 + +Polar angle tht: 0.5236; Azimuth angle phi: 0.4800 +Force: -1.091841 -0.448723 -8.576676 +Torque: 0.129607 0.100201 -0.094139 + +Polar angle tht: 0.5236; Azimuth angle phi: 0.5236 +Force: -1.059768 -0.484351 -8.571326 +Torque: 0.140318 0.097938 -0.099526 + +Polar angle tht: 0.5236; Azimuth angle phi: 0.5672 +Force: -1.025514 -0.518693 -8.565556 +Torque: 0.150755 0.095491 -0.104155 + +Polar angle tht: 0.5236; Azimuth angle phi: 0.6109 +Force: -0.989221 -0.551668 -8.559376 +Torque: 0.160898 0.092864 -0.107992 + +Polar angle tht: 0.5236; Azimuth angle phi: 0.6545 +Force: -0.951036 -0.583197 -8.552799 +Torque: 0.170728 0.090060 -0.111007 + +Polar angle tht: 0.5236; Azimuth angle phi: 0.6981 +Force: -0.911115 -0.613210 -8.545836 +Torque: 0.180226 0.087083 -0.113177 + +Polar angle tht: 0.5236; Azimuth angle phi: 0.7418 +Force: -0.869615 -0.641643 -8.538502 +Torque: 0.189375 0.083938 -0.114485 + +Polar angle tht: 0.5236; Azimuth angle phi: 0.7854 +Force: -0.826702 -0.668436 -8.530810 +Torque: 0.198155 0.080629 -0.114922 + +Polar angle tht: 0.5236; Azimuth angle phi: 0.8290 +Force: -0.782542 -0.693536 -8.522775 +Torque: 0.206551 0.077161 -0.114485 + +Polar angle tht: 0.5236; Azimuth angle phi: 0.8727 +Force: -0.737305 -0.716897 -8.514412 +Torque: 0.214547 0.073538 -0.113177 + +Polar angle tht: 0.5236; Azimuth angle phi: 0.9163 +Force: -0.691161 -0.738481 -8.505737 +Torque: 0.222127 0.069768 -0.111007 + +Polar angle tht: 0.5236; Azimuth angle phi: 0.9599 +Force: -0.644282 -0.758253 -8.496767 +Torque: 0.229278 0.065854 -0.107992 + +Polar angle tht: 0.5236; Azimuth angle phi: 1.0036 +Force: -0.596839 -0.776186 -8.487518 +Torque: 0.235985 0.061804 -0.104155 + +Polar angle tht: 0.5236; Azimuth angle phi: 1.0472 +Force: -0.549001 -0.792262 -8.478008 +Torque: 0.242236 0.057624 -0.099526 + +Polar angle tht: 0.5236; Azimuth angle phi: 1.0908 +Force: -0.500934 -0.806466 -8.468256 +Torque: 0.248020 0.053320 -0.094139 + +Polar angle tht: 0.5236; Azimuth angle phi: 1.1345 +Force: -0.452803 -0.818790 -8.458280 +Torque: 0.253326 0.048899 -0.088036 + +Polar angle tht: 0.5236; Azimuth angle phi: 1.1781 +Force: -0.404768 -0.829235 -8.448099 +Torque: 0.258145 0.044368 -0.081262 + +Polar angle tht: 0.5236; Azimuth angle phi: 1.2217 +Force: -0.356981 -0.837803 -8.437731 +Torque: 0.262466 0.039736 -0.073871 + +Polar angle tht: 0.5236; Azimuth angle phi: 1.2654 +Force: -0.309593 -0.844507 -8.427198 +Torque: 0.266284 0.035009 -0.065917 + +Polar angle tht: 0.5236; Azimuth angle phi: 1.3090 +Force: -0.262744 -0.849363 -8.416519 +Torque: 0.269591 0.030196 -0.057461 + +Polar angle tht: 0.5236; Azimuth angle phi: 1.3526 +Force: -0.216572 -0.852391 -8.405715 +Torque: 0.272380 0.025306 -0.048568 + +Polar angle tht: 0.5236; Azimuth angle phi: 1.3963 +Force: -0.171202 -0.853620 -8.394805 +Torque: 0.274648 0.020347 -0.039306 + +Polar angle tht: 0.5236; Azimuth angle phi: 1.4399 +Force: -0.126754 -0.853080 -8.383811 +Torque: 0.276391 0.015327 -0.029744 + +Polar angle tht: 0.5236; Azimuth angle phi: 1.4835 +Force: -0.083339 -0.850807 -8.372754 +Torque: 0.277606 0.010257 -0.019956 + +Polar angle tht: 0.5236; Azimuth angle phi: 1.5272 +Force: -0.041057 -0.846842 -8.361654 +Torque: 0.278292 0.005144 -0.010016 + +Polar angle tht: 0.5236; Azimuth angle phi: 1.5708 +Force: 0.000000 -0.841228 -8.350534 +Torque: 0.278446 -0.000000 0.000000 + +Polar angle tht: 0.5236; Azimuth angle phi: 1.6144 +Force: 0.041057 -0.846842 -8.361654 +Torque: 0.278292 -0.005144 0.010016 + +Polar angle tht: 0.5236; Azimuth angle phi: 1.6581 +Force: 0.083339 -0.850807 -8.372754 +Torque: 0.277606 -0.010257 0.019956 + +Polar angle tht: 0.5236; Azimuth angle phi: 1.7017 +Force: 0.126754 -0.853080 -8.383811 +Torque: 0.276391 -0.015327 0.029744 + +Polar angle tht: 0.5236; Azimuth angle phi: 1.7453 +Force: 0.171202 -0.853620 -8.394805 +Torque: 0.274648 -0.020347 0.039306 + +Polar angle tht: 0.5236; Azimuth angle phi: 1.7890 +Force: 0.216572 -0.852391 -8.405715 +Torque: 0.272380 -0.025306 0.048568 + +Polar angle tht: 0.5236; Azimuth angle phi: 1.8326 +Force: 0.262744 -0.849363 -8.416519 +Torque: 0.269591 -0.030196 0.057461 + +Polar angle tht: 0.5236; Azimuth angle phi: 1.8762 +Force: 0.309593 -0.844507 -8.427198 +Torque: 0.266284 -0.035009 0.065917 + +Polar angle tht: 0.5236; Azimuth angle phi: 1.9199 +Force: 0.356981 -0.837803 -8.437731 +Torque: 0.262466 -0.039736 0.073871 + +Polar angle tht: 0.5236; Azimuth angle phi: 1.9635 +Force: 0.404768 -0.829235 -8.448099 +Torque: 0.258145 -0.044368 0.081262 + +Polar angle tht: 0.5236; Azimuth angle phi: 2.0071 +Force: 0.452803 -0.818790 -8.458280 +Torque: 0.253326 -0.048899 0.088036 + +Polar angle tht: 0.5236; Azimuth angle phi: 2.0508 +Force: 0.500934 -0.806466 -8.468256 +Torque: 0.248020 -0.053320 0.094139 + +Polar angle tht: 0.5236; Azimuth angle phi: 2.0944 +Force: 0.549001 -0.792262 -8.478008 +Torque: 0.242236 -0.057624 0.099526 + +Polar angle tht: 0.5236; Azimuth angle phi: 2.1380 +Force: 0.596839 -0.776186 -8.487518 +Torque: 0.235985 -0.061804 0.104155 + +Polar angle tht: 0.5236; Azimuth angle phi: 2.1817 +Force: 0.644282 -0.758253 -8.496767 +Torque: 0.229278 -0.065854 0.107992 + +Polar angle tht: 0.5236; Azimuth angle phi: 2.2253 +Force: 0.691161 -0.738481 -8.505737 +Torque: 0.222127 -0.069768 0.111007 + +Polar angle tht: 0.5236; Azimuth angle phi: 2.2689 +Force: 0.737305 -0.716897 -8.514412 +Torque: 0.214547 -0.073538 0.113177 + +Polar angle tht: 0.5236; Azimuth angle phi: 2.3126 +Force: 0.782542 -0.693536 -8.522775 +Torque: 0.206551 -0.077161 0.114485 + +Polar angle tht: 0.5236; Azimuth angle phi: 2.3562 +Force: 0.826702 -0.668436 -8.530810 +Torque: 0.198155 -0.080629 0.114922 + +Polar angle tht: 0.5236; Azimuth angle phi: 2.3998 +Force: 0.869615 -0.641643 -8.538502 +Torque: 0.189375 -0.083938 0.114485 + +Polar angle tht: 0.5236; Azimuth angle phi: 2.4435 +Force: 0.911115 -0.613210 -8.545836 +Torque: 0.180226 -0.087083 0.113177 + +Polar angle tht: 0.5236; Azimuth angle phi: 2.4871 +Force: 0.951036 -0.583197 -8.552799 +Torque: 0.170728 -0.090060 0.111007 + +Polar angle tht: 0.5236; Azimuth angle phi: 2.5307 +Force: 0.989221 -0.551668 -8.559376 +Torque: 0.160898 -0.092864 0.107992 + +Polar angle tht: 0.5236; Azimuth angle phi: 2.5744 +Force: 1.025514 -0.518693 -8.565556 +Torque: 0.150755 -0.095491 0.104155 + +Polar angle tht: 0.5236; Azimuth angle phi: 2.6180 +Force: 1.059768 -0.484351 -8.571326 +Torque: 0.140318 -0.097938 0.099526 + +Polar angle tht: 0.5236; Azimuth angle phi: 2.6616 +Force: 1.091841 -0.448723 -8.576676 +Torque: 0.129607 -0.100201 0.094139 + +Polar angle tht: 0.5236; Azimuth angle phi: 2.7053 +Force: 1.121601 -0.411897 -8.581596 +Torque: 0.118645 -0.102278 0.088036 + +Polar angle tht: 0.5236; Azimuth angle phi: 2.7489 +Force: 1.148923 -0.373965 -8.586076 +Torque: 0.107450 -0.104165 0.081262 + +Polar angle tht: 0.5236; Azimuth angle phi: 2.7925 +Force: 1.173691 -0.335024 -8.590108 +Torque: 0.096047 -0.105861 0.073871 + +Polar angle tht: 0.5236; Azimuth angle phi: 2.8362 +Force: 1.195802 -0.295176 -8.593683 +Torque: 0.084455 -0.107362 0.065917 + +Polar angle tht: 0.5236; Azimuth angle phi: 2.8798 +Force: 1.215160 -0.254525 -8.596796 +Torque: 0.072699 -0.108666 0.057461 + +Polar angle tht: 0.5236; Azimuth angle phi: 2.9234 +Force: 1.231683 -0.213179 -8.599440 +Torque: 0.060801 -0.109773 0.048568 + +Polar angle tht: 0.5236; Azimuth angle phi: 2.9671 +Force: 1.245300 -0.171250 -8.601610 +Torque: 0.048784 -0.110681 0.039306 + +Polar angle tht: 0.5236; Azimuth angle phi: 3.0107 +Force: 1.255953 -0.128851 -8.603302 +Torque: 0.036672 -0.111388 0.029744 + +Polar angle tht: 0.5236; Azimuth angle phi: 3.0543 +Force: 1.263595 -0.086098 -8.604513 +Torque: 0.024488 -0.111894 0.019956 + +Polar angle tht: 0.5236; Azimuth angle phi: 3.0980 +Force: 1.268194 -0.043108 -8.605240 +Torque: 0.012256 -0.112198 0.010016 + +Polar angle tht: 0.5236; Azimuth angle phi: 3.1416 +Force: 1.269729 0.000000 -8.605483 +Torque: -0.000000 -0.112299 -0.000000 + +Polar angle tht: 0.5236; Azimuth angle phi: 3.1852 +Force: 1.268194 0.043108 -8.605240 +Torque: -0.012256 -0.112198 -0.010016 + +Polar angle tht: 0.5236; Azimuth angle phi: 3.2289 +Force: 1.263595 0.086098 -8.604513 +Torque: -0.024488 -0.111894 -0.019956 + +Polar angle tht: 0.5236; Azimuth angle phi: 3.2725 +Force: 1.255953 0.128851 -8.603302 +Torque: -0.036672 -0.111388 -0.029744 + +Polar angle tht: 0.5236; Azimuth angle phi: 3.3161 +Force: 1.245300 0.171250 -8.601610 +Torque: -0.048784 -0.110681 -0.039306 + +Polar angle tht: 0.5236; Azimuth angle phi: 3.3598 +Force: 1.231683 0.213179 -8.599440 +Torque: -0.060801 -0.109773 -0.048568 + +Polar angle tht: 0.5236; Azimuth angle phi: 3.4034 +Force: 1.215160 0.254525 -8.596796 +Torque: -0.072699 -0.108666 -0.057461 + +Polar angle tht: 0.5236; Azimuth angle phi: 3.4470 +Force: 1.195802 0.295176 -8.593683 +Torque: -0.084455 -0.107362 -0.065917 + +Polar angle tht: 0.5236; Azimuth angle phi: 3.4907 +Force: 1.173691 0.335024 -8.590108 +Torque: -0.096047 -0.105861 -0.073871 + +Polar angle tht: 0.5236; Azimuth angle phi: 3.5343 +Force: 1.148923 0.373965 -8.586076 +Torque: -0.107450 -0.104165 -0.081262 + +Polar angle tht: 0.5236; Azimuth angle phi: 3.5779 +Force: 1.121601 0.411897 -8.581596 +Torque: -0.118645 -0.102278 -0.088036 + +Polar angle tht: 0.5236; Azimuth angle phi: 3.6216 +Force: 1.091841 0.448723 -8.576676 +Torque: -0.129607 -0.100201 -0.094139 + +Polar angle tht: 0.5236; Azimuth angle phi: 3.6652 +Force: 1.059768 0.484351 -8.571326 +Torque: -0.140318 -0.097938 -0.099526 + +Polar angle tht: 0.5236; Azimuth angle phi: 3.7088 +Force: 1.025514 0.518693 -8.565556 +Torque: -0.150755 -0.095491 -0.104155 + +Polar angle tht: 0.5236; Azimuth angle phi: 3.7525 +Force: 0.989221 0.551668 -8.559376 +Torque: -0.160898 -0.092864 -0.107992 + +Polar angle tht: 0.5236; Azimuth angle phi: 3.7961 +Force: 0.951036 0.583197 -8.552799 +Torque: -0.170728 -0.090060 -0.111007 + +Polar angle tht: 0.5236; Azimuth angle phi: 3.8397 +Force: 0.911115 0.613210 -8.545836 +Torque: -0.180226 -0.087083 -0.113177 + +Polar angle tht: 0.5236; Azimuth angle phi: 3.8834 +Force: 0.869615 0.641643 -8.538502 +Torque: -0.189375 -0.083938 -0.114485 + +Polar angle tht: 0.5236; Azimuth angle phi: 3.9270 +Force: 0.826702 0.668436 -8.530810 +Torque: -0.198155 -0.080629 -0.114922 + +Polar angle tht: 0.5236; Azimuth angle phi: 3.9706 +Force: 0.782542 0.693536 -8.522775 +Torque: -0.206551 -0.077161 -0.114485 + +Polar angle tht: 0.5236; Azimuth angle phi: 4.0143 +Force: 0.737305 0.716897 -8.514412 +Torque: -0.214547 -0.073538 -0.113177 + +Polar angle tht: 0.5236; Azimuth angle phi: 4.0579 +Force: 0.691161 0.738481 -8.505737 +Torque: -0.222127 -0.069768 -0.111007 + +Polar angle tht: 0.5236; Azimuth angle phi: 4.1015 +Force: 0.644282 0.758253 -8.496767 +Torque: -0.229278 -0.065854 -0.107992 + +Polar angle tht: 0.5236; Azimuth angle phi: 4.1452 +Force: 0.596839 0.776186 -8.487518 +Torque: -0.235985 -0.061804 -0.104155 + +Polar angle tht: 0.5236; Azimuth angle phi: 4.1888 +Force: 0.549001 0.792262 -8.478008 +Torque: -0.242236 -0.057624 -0.099526 + +Polar angle tht: 0.5236; Azimuth angle phi: 4.2324 +Force: 0.500934 0.806466 -8.468256 +Torque: -0.248020 -0.053320 -0.094139 + +Polar angle tht: 0.5236; Azimuth angle phi: 4.2761 +Force: 0.452803 0.818790 -8.458280 +Torque: -0.253326 -0.048899 -0.088036 + +Polar angle tht: 0.5236; Azimuth angle phi: 4.3197 +Force: 0.404768 0.829235 -8.448099 +Torque: -0.258145 -0.044368 -0.081262 + +Polar angle tht: 0.5236; Azimuth angle phi: 4.3633 +Force: 0.356981 0.837803 -8.437731 +Torque: -0.262466 -0.039736 -0.073871 + +Polar angle tht: 0.5236; Azimuth angle phi: 4.4070 +Force: 0.309593 0.844507 -8.427198 +Torque: -0.266284 -0.035009 -0.065917 + +Polar angle tht: 0.5236; Azimuth angle phi: 4.4506 +Force: 0.262744 0.849363 -8.416519 +Torque: -0.269591 -0.030196 -0.057461 + +Polar angle tht: 0.5236; Azimuth angle phi: 4.4942 +Force: 0.216572 0.852391 -8.405715 +Torque: -0.272380 -0.025306 -0.048568 + +Polar angle tht: 0.5236; Azimuth angle phi: 4.5379 +Force: 0.171202 0.853620 -8.394805 +Torque: -0.274648 -0.020347 -0.039306 + +Polar angle tht: 0.5236; Azimuth angle phi: 4.5815 +Force: 0.126754 0.853080 -8.383811 +Torque: -0.276391 -0.015327 -0.029744 + +Polar angle tht: 0.5236; Azimuth angle phi: 4.6251 +Force: 0.083339 0.850807 -8.372754 +Torque: -0.277606 -0.010257 -0.019956 + +Polar angle tht: 0.5236; Azimuth angle phi: 4.6688 +Force: 0.041057 0.846842 -8.361654 +Torque: -0.278292 -0.005144 -0.010016 + +Polar angle tht: 0.5236; Azimuth angle phi: 4.7124 +Force: 0.000000 0.841228 -8.350534 +Torque: -0.278446 -0.000000 -0.000000 + +Polar angle tht: 0.5236; Azimuth angle phi: 4.7560 +Force: -0.041057 0.846842 -8.361654 +Torque: -0.278292 0.005144 0.010016 + +Polar angle tht: 0.5236; Azimuth angle phi: 4.7997 +Force: -0.083339 0.850807 -8.372754 +Torque: -0.277606 0.010257 0.019956 + +Polar angle tht: 0.5236; Azimuth angle phi: 4.8433 +Force: -0.126754 0.853080 -8.383811 +Torque: -0.276391 0.015327 0.029744 + +Polar angle tht: 0.5236; Azimuth angle phi: 4.8869 +Force: -0.171202 0.853620 -8.394805 +Torque: -0.274648 0.020347 0.039306 + +Polar angle tht: 0.5236; Azimuth angle phi: 4.9306 +Force: -0.216572 0.852391 -8.405715 +Torque: -0.272380 0.025306 0.048568 + +Polar angle tht: 0.5236; Azimuth angle phi: 4.9742 +Force: -0.262744 0.849363 -8.416519 +Torque: -0.269591 0.030196 0.057461 + +Polar angle tht: 0.5236; Azimuth angle phi: 5.0178 +Force: -0.309593 0.844507 -8.427198 +Torque: -0.266284 0.035009 0.065917 + +Polar angle tht: 0.5236; Azimuth angle phi: 5.0615 +Force: -0.356981 0.837803 -8.437731 +Torque: -0.262466 0.039736 0.073871 + +Polar angle tht: 0.5236; Azimuth angle phi: 5.1051 +Force: -0.404768 0.829235 -8.448099 +Torque: -0.258145 0.044368 0.081262 + +Polar angle tht: 0.5236; Azimuth angle phi: 5.1487 +Force: -0.452803 0.818790 -8.458280 +Torque: -0.253326 0.048899 0.088036 + +Polar angle tht: 0.5236; Azimuth angle phi: 5.1924 +Force: -0.500934 0.806466 -8.468256 +Torque: -0.248020 0.053320 0.094139 + +Polar angle tht: 0.5236; Azimuth angle phi: 5.2360 +Force: -0.549001 0.792262 -8.478008 +Torque: -0.242236 0.057624 0.099526 + +Polar angle tht: 0.5236; Azimuth angle phi: 5.2796 +Force: -0.596839 0.776186 -8.487518 +Torque: -0.235985 0.061804 0.104155 + +Polar angle tht: 0.5236; Azimuth angle phi: 5.3233 +Force: -0.644282 0.758253 -8.496767 +Torque: -0.229278 0.065854 0.107992 + +Polar angle tht: 0.5236; Azimuth angle phi: 5.3669 +Force: -0.691161 0.738481 -8.505737 +Torque: -0.222127 0.069768 0.111007 + +Polar angle tht: 0.5236; Azimuth angle phi: 5.4105 +Force: -0.737305 0.716897 -8.514412 +Torque: -0.214547 0.073538 0.113177 + +Polar angle tht: 0.5236; Azimuth angle phi: 5.4542 +Force: -0.782542 0.693536 -8.522775 +Torque: -0.206551 0.077161 0.114485 + +Polar angle tht: 0.5236; Azimuth angle phi: 5.4978 +Force: -0.826702 0.668436 -8.530810 +Torque: -0.198155 0.080629 0.114922 + +Polar angle tht: 0.5236; Azimuth angle phi: 5.5414 +Force: -0.869615 0.641643 -8.538502 +Torque: -0.189375 0.083938 0.114485 + +Polar angle tht: 0.5236; Azimuth angle phi: 5.5851 +Force: -0.911115 0.613210 -8.545836 +Torque: -0.180226 0.087083 0.113177 + +Polar angle tht: 0.5236; Azimuth angle phi: 5.6287 +Force: -0.951036 0.583197 -8.552799 +Torque: -0.170728 0.090060 0.111007 + +Polar angle tht: 0.5236; Azimuth angle phi: 5.6723 +Force: -0.989221 0.551668 -8.559376 +Torque: -0.160898 0.092864 0.107992 + +Polar angle tht: 0.5236; Azimuth angle phi: 5.7160 +Force: -1.025514 0.518693 -8.565556 +Torque: -0.150755 0.095491 0.104155 + +Polar angle tht: 0.5236; Azimuth angle phi: 5.7596 +Force: -1.059768 0.484351 -8.571326 +Torque: -0.140318 0.097938 0.099526 + +Polar angle tht: 0.5236; Azimuth angle phi: 5.8032 +Force: -1.091841 0.448723 -8.576676 +Torque: -0.129607 0.100201 0.094139 + +Polar angle tht: 0.5236; Azimuth angle phi: 5.8469 +Force: -1.121601 0.411897 -8.581596 +Torque: -0.118645 0.102278 0.088036 + +Polar angle tht: 0.5236; Azimuth angle phi: 5.8905 +Force: -1.148923 0.373965 -8.586076 +Torque: -0.107450 0.104165 0.081262 + +Polar angle tht: 0.5236; Azimuth angle phi: 5.9341 +Force: -1.173691 0.335024 -8.590108 +Torque: -0.096047 0.105861 0.073871 + +Polar angle tht: 0.5236; Azimuth angle phi: 5.9778 +Force: -1.195802 0.295176 -8.593683 +Torque: -0.084455 0.107362 0.065917 + +Polar angle tht: 0.5236; Azimuth angle phi: 6.0214 +Force: -1.215160 0.254525 -8.596796 +Torque: -0.072699 0.108666 0.057461 + +Polar angle tht: 0.5236; Azimuth angle phi: 6.0650 +Force: -1.231683 0.213179 -8.599440 +Torque: -0.060801 0.109773 0.048568 + +Polar angle tht: 0.5236; Azimuth angle phi: 6.1087 +Force: -1.245300 0.171250 -8.601610 +Torque: -0.048784 0.110681 0.039306 + +Polar angle tht: 0.5236; Azimuth angle phi: 6.1523 +Force: -1.255953 0.128851 -8.603302 +Torque: -0.036672 0.111388 0.029744 + +Polar angle tht: 0.5236; Azimuth angle phi: 6.1959 +Force: -1.263595 0.086098 -8.604513 +Torque: -0.024488 0.111894 0.019956 + +Polar angle tht: 0.5236; Azimuth angle phi: 6.2396 +Force: -1.268194 0.043108 -8.605240 +Torque: -0.012256 0.112198 0.010016 + +Polar angle tht: 0.5236; Azimuth angle phi: 6.2832 +Force: -1.269729 0.000000 -8.605483 +Torque: -0.000000 0.112299 0.000000 + +Polar angle tht: 0.5672; Azimuth angle phi: 0.0000 +Force: -1.368357 0.000000 -8.204399 +Torque: -0.000000 0.116843 0.000000 + +Polar angle tht: 0.5672; Azimuth angle phi: 0.0436 +Force: -1.366677 -0.045808 -8.204145 +Torque: 0.012838 0.116738 -0.011566 + +Polar angle tht: 0.5672; Azimuth angle phi: 0.0873 +Force: -1.361646 -0.091486 -8.203383 +Torque: 0.025650 0.116424 -0.023045 + +Polar angle tht: 0.5672; Azimuth angle phi: 0.1309 +Force: -1.353286 -0.136906 -8.202116 +Torque: 0.038413 0.115901 -0.034347 + +Polar angle tht: 0.5672; Azimuth angle phi: 0.1745 +Force: -1.341634 -0.181940 -8.200345 +Torque: 0.051100 0.115170 -0.045389 + +Polar angle tht: 0.5672; Azimuth angle phi: 0.2182 +Force: -1.326743 -0.226461 -8.198074 +Torque: 0.063687 0.114231 -0.056085 + +Polar angle tht: 0.5672; Azimuth angle phi: 0.2618 +Force: -1.308677 -0.270347 -8.195307 +Torque: 0.076149 0.113086 -0.066354 + +Polar angle tht: 0.5672; Azimuth angle phi: 0.3054 +Force: -1.287518 -0.313475 -8.192050 +Torque: 0.088462 0.111736 -0.076118 + +Polar angle tht: 0.5672; Azimuth angle phi: 0.3491 +Force: -1.263359 -0.355729 -8.188308 +Torque: 0.100602 0.110182 -0.085303 + +Polar angle tht: 0.5672; Azimuth angle phi: 0.3927 +Force: -1.236305 -0.396993 -8.184089 +Torque: 0.112545 0.108428 -0.093839 + +Polar angle tht: 0.5672; Azimuth angle phi: 0.4363 +Force: -1.206475 -0.437159 -8.179401 +Torque: 0.124268 0.106474 -0.101660 + +Polar angle tht: 0.5672; Azimuth angle phi: 0.4800 +Force: -1.173998 -0.476121 -8.174252 +Torque: 0.135748 0.104323 -0.108708 + +Polar angle tht: 0.5672; Azimuth angle phi: 0.5236 +Force: -1.139015 -0.513780 -8.168653 +Torque: 0.146963 0.101979 -0.114929 + +Polar angle tht: 0.5672; Azimuth angle phi: 0.5672 +Force: -1.101675 -0.550040 -8.162614 +Torque: 0.157891 0.099444 -0.120275 + +Polar angle tht: 0.5672; Azimuth angle phi: 0.6109 +Force: -1.062138 -0.584814 -8.156147 +Torque: 0.168510 0.096721 -0.124705 + +Polar angle tht: 0.5672; Azimuth angle phi: 0.6545 +Force: -1.020569 -0.618019 -8.149264 +Torque: 0.178802 0.093814 -0.128186 + +Polar angle tht: 0.5672; Azimuth angle phi: 0.6981 +Force: -0.977142 -0.649579 -8.141977 +Torque: 0.188744 0.090727 -0.130692 + +Polar angle tht: 0.5672; Azimuth angle phi: 0.7418 +Force: -0.932035 -0.679425 -8.134302 +Torque: 0.198320 0.087465 -0.132203 + +Polar angle tht: 0.5672; Azimuth angle phi: 0.7854 +Force: -0.885434 -0.707494 -8.126252 +Torque: 0.207509 0.084031 -0.132708 + +Polar angle tht: 0.5672; Azimuth angle phi: 0.8290 +Force: -0.837524 -0.733732 -8.117843 +Torque: 0.216295 0.080431 -0.132203 + +Polar angle tht: 0.5672; Azimuth angle phi: 0.8727 +Force: -0.788497 -0.758089 -8.109091 +Torque: 0.224661 0.076669 -0.130692 + +Polar angle tht: 0.5672; Azimuth angle phi: 0.9163 +Force: -0.738542 -0.780526 -8.100013 +Torque: 0.232591 0.072751 -0.128186 + +Polar angle tht: 0.5672; Azimuth angle phi: 0.9599 +Force: -0.687852 -0.801009 -8.090625 +Torque: 0.240071 0.068684 -0.124705 + +Polar angle tht: 0.5672; Azimuth angle phi: 1.0036 +Force: -0.636617 -0.819511 -8.080946 +Torque: 0.247085 0.064473 -0.120275 + +Polar angle tht: 0.5672; Azimuth angle phi: 1.0472 +Force: -0.585026 -0.836013 -8.070995 +Torque: 0.253622 0.060124 -0.114929 + +Polar angle tht: 0.5672; Azimuth angle phi: 1.0908 +Force: -0.533265 -0.850504 -8.060789 +Torque: 0.259669 0.055645 -0.108708 + +Polar angle tht: 0.5672; Azimuth angle phi: 1.1345 +Force: -0.481515 -0.862979 -8.050348 +Torque: 0.265214 0.051042 -0.101660 + +Polar angle tht: 0.5672; Azimuth angle phi: 1.1781 +Force: -0.429954 -0.873439 -8.039694 +Torque: 0.270249 0.046323 -0.093839 + +Polar angle tht: 0.5672; Azimuth angle phi: 1.2217 +Force: -0.378752 -0.881894 -8.028844 +Torque: 0.274763 0.041495 -0.085303 + +Polar angle tht: 0.5672; Azimuth angle phi: 1.2654 +Force: -0.328073 -0.888358 -8.017821 +Torque: 0.278748 0.036567 -0.076118 + +Polar angle tht: 0.5672; Azimuth angle phi: 1.3090 +Force: -0.278074 -0.892853 -8.006646 +Torque: 0.282199 0.031548 -0.066354 + +Polar angle tht: 0.5672; Azimuth angle phi: 1.3526 +Force: -0.228904 -0.895406 -7.995338 +Torque: 0.285108 0.026444 -0.056085 + +Polar angle tht: 0.5672; Azimuth angle phi: 1.3963 +Force: -0.180701 -0.896050 -7.983921 +Torque: 0.287470 0.021267 -0.045389 + +Polar angle tht: 0.5672; Azimuth angle phi: 1.4399 +Force: -0.133596 -0.894822 -7.972416 +Torque: 0.289283 0.016024 -0.034347 + +Polar angle tht: 0.5672; Azimuth angle phi: 1.4835 +Force: -0.087706 -0.891765 -7.960844 +Torque: 0.290543 0.010725 -0.023045 + +Polar angle tht: 0.5672; Azimuth angle phi: 1.5272 +Force: -0.043142 -0.886926 -7.949229 +Torque: 0.291248 0.005381 -0.011566 + +Polar angle tht: 0.5672; Azimuth angle phi: 1.5708 +Force: 0.000000 -0.880357 -7.937591 +Torque: 0.291398 -0.000000 0.000000 + +Polar angle tht: 0.5672; Azimuth angle phi: 1.6144 +Force: 0.043142 -0.886926 -7.949229 +Torque: 0.291248 -0.005381 0.011566 + +Polar angle tht: 0.5672; Azimuth angle phi: 1.6581 +Force: 0.087706 -0.891765 -7.960844 +Torque: 0.290543 -0.010725 0.023045 + +Polar angle tht: 0.5672; Azimuth angle phi: 1.7017 +Force: 0.133596 -0.894822 -7.972416 +Torque: 0.289283 -0.016024 0.034347 + +Polar angle tht: 0.5672; Azimuth angle phi: 1.7453 +Force: 0.180701 -0.896050 -7.983921 +Torque: 0.287470 -0.021267 0.045389 + +Polar angle tht: 0.5672; Azimuth angle phi: 1.7890 +Force: 0.228904 -0.895406 -7.995338 +Torque: 0.285108 -0.026444 0.056085 + +Polar angle tht: 0.5672; Azimuth angle phi: 1.8326 +Force: 0.278074 -0.892853 -8.006646 +Torque: 0.282199 -0.031548 0.066354 + +Polar angle tht: 0.5672; Azimuth angle phi: 1.8762 +Force: 0.328073 -0.888358 -8.017821 +Torque: 0.278748 -0.036567 0.076118 + +Polar angle tht: 0.5672; Azimuth angle phi: 1.9199 +Force: 0.378752 -0.881894 -8.028844 +Torque: 0.274763 -0.041495 0.085303 + +Polar angle tht: 0.5672; Azimuth angle phi: 1.9635 +Force: 0.429954 -0.873439 -8.039694 +Torque: 0.270249 -0.046323 0.093839 + +Polar angle tht: 0.5672; Azimuth angle phi: 2.0071 +Force: 0.481515 -0.862979 -8.050348 +Torque: 0.265214 -0.051042 0.101660 + +Polar angle tht: 0.5672; Azimuth angle phi: 2.0508 +Force: 0.533265 -0.850504 -8.060789 +Torque: 0.259669 -0.055645 0.108708 + +Polar angle tht: 0.5672; Azimuth angle phi: 2.0944 +Force: 0.585026 -0.836013 -8.070995 +Torque: 0.253622 -0.060124 0.114929 + +Polar angle tht: 0.5672; Azimuth angle phi: 2.1380 +Force: 0.636617 -0.819511 -8.080946 +Torque: 0.247085 -0.064473 0.120275 + +Polar angle tht: 0.5672; Azimuth angle phi: 2.1817 +Force: 0.687852 -0.801009 -8.090625 +Torque: 0.240071 -0.068684 0.124705 + +Polar angle tht: 0.5672; Azimuth angle phi: 2.2253 +Force: 0.738542 -0.780526 -8.100013 +Torque: 0.232591 -0.072751 0.128186 + +Polar angle tht: 0.5672; Azimuth angle phi: 2.2689 +Force: 0.788497 -0.758089 -8.109091 +Torque: 0.224661 -0.076669 0.130692 + +Polar angle tht: 0.5672; Azimuth angle phi: 2.3126 +Force: 0.837524 -0.733732 -8.117843 +Torque: 0.216295 -0.080431 0.132203 + +Polar angle tht: 0.5672; Azimuth angle phi: 2.3562 +Force: 0.885434 -0.707494 -8.126252 +Torque: 0.207509 -0.084031 0.132708 + +Polar angle tht: 0.5672; Azimuth angle phi: 2.3998 +Force: 0.932035 -0.679425 -8.134302 +Torque: 0.198320 -0.087465 0.132203 + +Polar angle tht: 0.5672; Azimuth angle phi: 2.4435 +Force: 0.977142 -0.649579 -8.141977 +Torque: 0.188744 -0.090727 0.130692 + +Polar angle tht: 0.5672; Azimuth angle phi: 2.4871 +Force: 1.020569 -0.618019 -8.149264 +Torque: 0.178802 -0.093814 0.128186 + +Polar angle tht: 0.5672; Azimuth angle phi: 2.5307 +Force: 1.062138 -0.584814 -8.156147 +Torque: 0.168510 -0.096721 0.124705 + +Polar angle tht: 0.5672; Azimuth angle phi: 2.5744 +Force: 1.101675 -0.550040 -8.162614 +Torque: 0.157891 -0.099444 0.120275 + +Polar angle tht: 0.5672; Azimuth angle phi: 2.6180 +Force: 1.139015 -0.513780 -8.168653 +Torque: 0.146963 -0.101979 0.114929 + +Polar angle tht: 0.5672; Azimuth angle phi: 2.6616 +Force: 1.173998 -0.476121 -8.174252 +Torque: 0.135748 -0.104323 0.108708 + +Polar angle tht: 0.5672; Azimuth angle phi: 2.7053 +Force: 1.206475 -0.437159 -8.179401 +Torque: 0.124268 -0.106474 0.101660 + +Polar angle tht: 0.5672; Azimuth angle phi: 2.7489 +Force: 1.236305 -0.396993 -8.184089 +Torque: 0.112545 -0.108428 0.093839 + +Polar angle tht: 0.5672; Azimuth angle phi: 2.7925 +Force: 1.263359 -0.355729 -8.188308 +Torque: 0.100602 -0.110182 0.085303 + +Polar angle tht: 0.5672; Azimuth angle phi: 2.8362 +Force: 1.287518 -0.313475 -8.192050 +Torque: 0.088462 -0.111736 0.076118 + +Polar angle tht: 0.5672; Azimuth angle phi: 2.8798 +Force: 1.308677 -0.270347 -8.195307 +Torque: 0.076149 -0.113086 0.066354 + +Polar angle tht: 0.5672; Azimuth angle phi: 2.9234 +Force: 1.326743 -0.226461 -8.198074 +Torque: 0.063687 -0.114231 0.056085 + +Polar angle tht: 0.5672; Azimuth angle phi: 2.9671 +Force: 1.341634 -0.181940 -8.200345 +Torque: 0.051100 -0.115170 0.045389 + +Polar angle tht: 0.5672; Azimuth angle phi: 3.0107 +Force: 1.353286 -0.136906 -8.202116 +Torque: 0.038413 -0.115901 0.034347 + +Polar angle tht: 0.5672; Azimuth angle phi: 3.0543 +Force: 1.361646 -0.091486 -8.203383 +Torque: 0.025650 -0.116424 0.023045 + +Polar angle tht: 0.5672; Azimuth angle phi: 3.0980 +Force: 1.366677 -0.045808 -8.204145 +Torque: 0.012838 -0.116738 0.011566 + +Polar angle tht: 0.5672; Azimuth angle phi: 3.1416 +Force: 1.368357 0.000000 -8.204399 +Torque: -0.000000 -0.116843 -0.000000 + +Polar angle tht: 0.5672; Azimuth angle phi: 3.1852 +Force: 1.366677 0.045808 -8.204145 +Torque: -0.012838 -0.116738 -0.011566 + +Polar angle tht: 0.5672; Azimuth angle phi: 3.2289 +Force: 1.361646 0.091486 -8.203383 +Torque: -0.025650 -0.116424 -0.023045 + +Polar angle tht: 0.5672; Azimuth angle phi: 3.2725 +Force: 1.353286 0.136906 -8.202116 +Torque: -0.038413 -0.115901 -0.034347 + +Polar angle tht: 0.5672; Azimuth angle phi: 3.3161 +Force: 1.341634 0.181940 -8.200345 +Torque: -0.051100 -0.115170 -0.045389 + +Polar angle tht: 0.5672; Azimuth angle phi: 3.3598 +Force: 1.326743 0.226461 -8.198074 +Torque: -0.063687 -0.114231 -0.056085 + +Polar angle tht: 0.5672; Azimuth angle phi: 3.4034 +Force: 1.308677 0.270347 -8.195307 +Torque: -0.076149 -0.113086 -0.066354 + +Polar angle tht: 0.5672; Azimuth angle phi: 3.4470 +Force: 1.287518 0.313475 -8.192050 +Torque: -0.088462 -0.111736 -0.076118 + +Polar angle tht: 0.5672; Azimuth angle phi: 3.4907 +Force: 1.263359 0.355729 -8.188308 +Torque: -0.100602 -0.110182 -0.085303 + +Polar angle tht: 0.5672; Azimuth angle phi: 3.5343 +Force: 1.236305 0.396993 -8.184089 +Torque: -0.112545 -0.108428 -0.093839 + +Polar angle tht: 0.5672; Azimuth angle phi: 3.5779 +Force: 1.206475 0.437159 -8.179401 +Torque: -0.124268 -0.106474 -0.101660 + +Polar angle tht: 0.5672; Azimuth angle phi: 3.6216 +Force: 1.173998 0.476121 -8.174252 +Torque: -0.135748 -0.104323 -0.108708 + +Polar angle tht: 0.5672; Azimuth angle phi: 3.6652 +Force: 1.139015 0.513780 -8.168653 +Torque: -0.146963 -0.101979 -0.114929 + +Polar angle tht: 0.5672; Azimuth angle phi: 3.7088 +Force: 1.101675 0.550040 -8.162614 +Torque: -0.157891 -0.099444 -0.120275 + +Polar angle tht: 0.5672; Azimuth angle phi: 3.7525 +Force: 1.062138 0.584814 -8.156147 +Torque: -0.168510 -0.096721 -0.124705 + +Polar angle tht: 0.5672; Azimuth angle phi: 3.7961 +Force: 1.020569 0.618019 -8.149264 +Torque: -0.178802 -0.093814 -0.128186 + +Polar angle tht: 0.5672; Azimuth angle phi: 3.8397 +Force: 0.977142 0.649579 -8.141977 +Torque: -0.188744 -0.090727 -0.130692 + +Polar angle tht: 0.5672; Azimuth angle phi: 3.8834 +Force: 0.932035 0.679425 -8.134302 +Torque: -0.198320 -0.087465 -0.132203 + +Polar angle tht: 0.5672; Azimuth angle phi: 3.9270 +Force: 0.885434 0.707494 -8.126252 +Torque: -0.207509 -0.084031 -0.132708 + +Polar angle tht: 0.5672; Azimuth angle phi: 3.9706 +Force: 0.837524 0.733732 -8.117843 +Torque: -0.216295 -0.080431 -0.132203 + +Polar angle tht: 0.5672; Azimuth angle phi: 4.0143 +Force: 0.788497 0.758089 -8.109091 +Torque: -0.224661 -0.076669 -0.130692 + +Polar angle tht: 0.5672; Azimuth angle phi: 4.0579 +Force: 0.738542 0.780526 -8.100013 +Torque: -0.232591 -0.072751 -0.128186 + +Polar angle tht: 0.5672; Azimuth angle phi: 4.1015 +Force: 0.687852 0.801009 -8.090625 +Torque: -0.240071 -0.068684 -0.124705 + +Polar angle tht: 0.5672; Azimuth angle phi: 4.1452 +Force: 0.636617 0.819511 -8.080946 +Torque: -0.247085 -0.064473 -0.120275 + +Polar angle tht: 0.5672; Azimuth angle phi: 4.1888 +Force: 0.585026 0.836013 -8.070995 +Torque: -0.253622 -0.060124 -0.114929 + +Polar angle tht: 0.5672; Azimuth angle phi: 4.2324 +Force: 0.533265 0.850504 -8.060789 +Torque: -0.259669 -0.055645 -0.108708 + +Polar angle tht: 0.5672; Azimuth angle phi: 4.2761 +Force: 0.481515 0.862979 -8.050348 +Torque: -0.265214 -0.051042 -0.101660 + +Polar angle tht: 0.5672; Azimuth angle phi: 4.3197 +Force: 0.429954 0.873439 -8.039694 +Torque: -0.270249 -0.046323 -0.093839 + +Polar angle tht: 0.5672; Azimuth angle phi: 4.3633 +Force: 0.378752 0.881894 -8.028844 +Torque: -0.274763 -0.041495 -0.085303 + +Polar angle tht: 0.5672; Azimuth angle phi: 4.4070 +Force: 0.328073 0.888358 -8.017821 +Torque: -0.278748 -0.036567 -0.076118 + +Polar angle tht: 0.5672; Azimuth angle phi: 4.4506 +Force: 0.278074 0.892853 -8.006646 +Torque: -0.282199 -0.031548 -0.066354 + +Polar angle tht: 0.5672; Azimuth angle phi: 4.4942 +Force: 0.228904 0.895406 -7.995338 +Torque: -0.285108 -0.026444 -0.056085 + +Polar angle tht: 0.5672; Azimuth angle phi: 4.5379 +Force: 0.180701 0.896050 -7.983921 +Torque: -0.287470 -0.021267 -0.045389 + +Polar angle tht: 0.5672; Azimuth angle phi: 4.5815 +Force: 0.133596 0.894822 -7.972416 +Torque: -0.289283 -0.016024 -0.034347 + +Polar angle tht: 0.5672; Azimuth angle phi: 4.6251 +Force: 0.087706 0.891765 -7.960844 +Torque: -0.290543 -0.010725 -0.023045 + +Polar angle tht: 0.5672; Azimuth angle phi: 4.6688 +Force: 0.043142 0.886926 -7.949229 +Torque: -0.291248 -0.005381 -0.011566 + +Polar angle tht: 0.5672; Azimuth angle phi: 4.7124 +Force: 0.000000 0.880357 -7.937591 +Torque: -0.291398 -0.000000 -0.000000 + +Polar angle tht: 0.5672; Azimuth angle phi: 4.7560 +Force: -0.043142 0.886926 -7.949229 +Torque: -0.291248 0.005381 0.011566 + +Polar angle tht: 0.5672; Azimuth angle phi: 4.7997 +Force: -0.087706 0.891765 -7.960844 +Torque: -0.290543 0.010725 0.023045 + +Polar angle tht: 0.5672; Azimuth angle phi: 4.8433 +Force: -0.133596 0.894822 -7.972416 +Torque: -0.289283 0.016024 0.034347 + +Polar angle tht: 0.5672; Azimuth angle phi: 4.8869 +Force: -0.180701 0.896050 -7.983921 +Torque: -0.287470 0.021267 0.045389 + +Polar angle tht: 0.5672; Azimuth angle phi: 4.9306 +Force: -0.228904 0.895406 -7.995338 +Torque: -0.285108 0.026444 0.056085 + +Polar angle tht: 0.5672; Azimuth angle phi: 4.9742 +Force: -0.278074 0.892853 -8.006646 +Torque: -0.282199 0.031548 0.066354 + +Polar angle tht: 0.5672; Azimuth angle phi: 5.0178 +Force: -0.328073 0.888358 -8.017821 +Torque: -0.278748 0.036567 0.076118 + +Polar angle tht: 0.5672; Azimuth angle phi: 5.0615 +Force: -0.378752 0.881894 -8.028844 +Torque: -0.274763 0.041495 0.085303 + +Polar angle tht: 0.5672; Azimuth angle phi: 5.1051 +Force: -0.429954 0.873439 -8.039694 +Torque: -0.270249 0.046323 0.093839 + +Polar angle tht: 0.5672; Azimuth angle phi: 5.1487 +Force: -0.481515 0.862979 -8.050348 +Torque: -0.265214 0.051042 0.101660 + +Polar angle tht: 0.5672; Azimuth angle phi: 5.1924 +Force: -0.533265 0.850504 -8.060789 +Torque: -0.259669 0.055645 0.108708 + +Polar angle tht: 0.5672; Azimuth angle phi: 5.2360 +Force: -0.585026 0.836013 -8.070995 +Torque: -0.253622 0.060124 0.114929 + +Polar angle tht: 0.5672; Azimuth angle phi: 5.2796 +Force: -0.636617 0.819511 -8.080946 +Torque: -0.247085 0.064473 0.120275 + +Polar angle tht: 0.5672; Azimuth angle phi: 5.3233 +Force: -0.687852 0.801009 -8.090625 +Torque: -0.240071 0.068684 0.124705 + +Polar angle tht: 0.5672; Azimuth angle phi: 5.3669 +Force: -0.738542 0.780526 -8.100013 +Torque: -0.232591 0.072751 0.128186 + +Polar angle tht: 0.5672; Azimuth angle phi: 5.4105 +Force: -0.788497 0.758089 -8.109091 +Torque: -0.224661 0.076669 0.130692 + +Polar angle tht: 0.5672; Azimuth angle phi: 5.4542 +Force: -0.837524 0.733732 -8.117843 +Torque: -0.216295 0.080431 0.132203 + +Polar angle tht: 0.5672; Azimuth angle phi: 5.4978 +Force: -0.885434 0.707494 -8.126252 +Torque: -0.207509 0.084031 0.132708 + +Polar angle tht: 0.5672; Azimuth angle phi: 5.5414 +Force: -0.932035 0.679425 -8.134302 +Torque: -0.198320 0.087465 0.132203 + +Polar angle tht: 0.5672; Azimuth angle phi: 5.5851 +Force: -0.977142 0.649579 -8.141977 +Torque: -0.188744 0.090727 0.130692 + +Polar angle tht: 0.5672; Azimuth angle phi: 5.6287 +Force: -1.020569 0.618019 -8.149264 +Torque: -0.178802 0.093814 0.128186 + +Polar angle tht: 0.5672; Azimuth angle phi: 5.6723 +Force: -1.062138 0.584814 -8.156147 +Torque: -0.168510 0.096721 0.124705 + +Polar angle tht: 0.5672; Azimuth angle phi: 5.7160 +Force: -1.101675 0.550040 -8.162614 +Torque: -0.157891 0.099444 0.120275 + +Polar angle tht: 0.5672; Azimuth angle phi: 5.7596 +Force: -1.139015 0.513780 -8.168653 +Torque: -0.146963 0.101979 0.114929 + +Polar angle tht: 0.5672; Azimuth angle phi: 5.8032 +Force: -1.173998 0.476121 -8.174252 +Torque: -0.135748 0.104323 0.108708 + +Polar angle tht: 0.5672; Azimuth angle phi: 5.8469 +Force: -1.206475 0.437159 -8.179401 +Torque: -0.124268 0.106474 0.101660 + +Polar angle tht: 0.5672; Azimuth angle phi: 5.8905 +Force: -1.236305 0.396993 -8.184089 +Torque: -0.112545 0.108428 0.093839 + +Polar angle tht: 0.5672; Azimuth angle phi: 5.9341 +Force: -1.263359 0.355729 -8.188308 +Torque: -0.100602 0.110182 0.085303 + +Polar angle tht: 0.5672; Azimuth angle phi: 5.9778 +Force: -1.287518 0.313475 -8.192050 +Torque: -0.088462 0.111736 0.076118 + +Polar angle tht: 0.5672; Azimuth angle phi: 6.0214 +Force: -1.308677 0.270347 -8.195307 +Torque: -0.076149 0.113086 0.066354 + +Polar angle tht: 0.5672; Azimuth angle phi: 6.0650 +Force: -1.326743 0.226461 -8.198074 +Torque: -0.063687 0.114231 0.056085 + +Polar angle tht: 0.5672; Azimuth angle phi: 6.1087 +Force: -1.341634 0.181940 -8.200345 +Torque: -0.051100 0.115170 0.045389 + +Polar angle tht: 0.5672; Azimuth angle phi: 6.1523 +Force: -1.353286 0.136906 -8.202116 +Torque: -0.038413 0.115901 0.034347 + +Polar angle tht: 0.5672; Azimuth angle phi: 6.1959 +Force: -1.361646 0.091486 -8.203383 +Torque: -0.025650 0.116424 0.023045 + +Polar angle tht: 0.5672; Azimuth angle phi: 6.2396 +Force: -1.366677 0.045808 -8.204145 +Torque: -0.012838 0.116738 0.011566 + +Polar angle tht: 0.5672; Azimuth angle phi: 6.2832 +Force: -1.368357 0.000000 -8.204399 +Torque: -0.000000 0.116843 0.000000 + +Polar angle tht: 0.6109; Azimuth angle phi: 0.0000 +Force: -1.462320 0.000000 -7.783581 +Torque: -0.000000 0.120399 0.000000 + +Polar angle tht: 0.6109; Azimuth angle phi: 0.0436 +Force: -1.460498 -0.048256 -7.783318 +Torque: 0.013324 0.120292 -0.013181 + +Polar angle tht: 0.6109; Azimuth angle phi: 0.0873 +Force: -1.455042 -0.096373 -7.782529 +Torque: 0.026621 0.119970 -0.026261 + +Polar angle tht: 0.6109; Azimuth angle phi: 0.1309 +Force: -1.445976 -0.144209 -7.781215 +Torque: 0.039867 0.119435 -0.039142 + +Polar angle tht: 0.6109; Azimuth angle phi: 0.1745 +Force: -1.433341 -0.191629 -7.779379 +Torque: 0.053033 0.118686 -0.051725 + +Polar angle tht: 0.6109; Azimuth angle phi: 0.2182 +Force: -1.417197 -0.238494 -7.777024 +Torque: 0.066096 0.117725 -0.063914 + +Polar angle tht: 0.6109; Azimuth angle phi: 0.2618 +Force: -1.397616 -0.284672 -7.774155 +Torque: 0.079029 0.116552 -0.075617 + +Polar angle tht: 0.6109; Azimuth angle phi: 0.3054 +Force: -1.374688 -0.330032 -7.770778 +Torque: 0.091807 0.115169 -0.086744 + +Polar angle tht: 0.6109; Azimuth angle phi: 0.3491 +Force: -1.348517 -0.374446 -7.766898 +Torque: 0.104404 0.113578 -0.097211 + +Polar angle tht: 0.6109; Azimuth angle phi: 0.3927 +Force: -1.319222 -0.417792 -7.762524 +Torque: 0.116797 0.111780 -0.106938 + +Polar angle tht: 0.6109; Azimuth angle phi: 0.4363 +Force: -1.286933 -0.459952 -7.757663 +Torque: 0.128961 0.109778 -0.115851 + +Polar angle tht: 0.6109; Azimuth angle phi: 0.4800 +Force: -1.251795 -0.500814 -7.752325 +Torque: 0.140871 0.107573 -0.123883 + +Polar angle tht: 0.6109; Azimuth angle phi: 0.5236 +Force: -1.213966 -0.540269 -7.746519 +Torque: 0.152506 0.105169 -0.130972 + +Polar angle tht: 0.6109; Azimuth angle phi: 0.5672 +Force: -1.173610 -0.578217 -7.740258 +Torque: 0.163843 0.102569 -0.137064 + +Polar angle tht: 0.6109; Azimuth angle phi: 0.6109 +Force: -1.130906 -0.614563 -7.733552 +Torque: 0.174859 0.099775 -0.142113 + +Polar angle tht: 0.6109; Azimuth angle phi: 0.6545 +Force: -1.086038 -0.649220 -7.726416 +Torque: 0.185533 0.096791 -0.146080 + +Polar angle tht: 0.6109; Azimuth angle phi: 0.6981 +Force: -1.039199 -0.682107 -7.718861 +Torque: 0.195845 0.093622 -0.148936 + +Polar angle tht: 0.6109; Azimuth angle phi: 0.7418 +Force: -0.990588 -0.713152 -7.710903 +Torque: 0.205774 0.090271 -0.150658 + +Polar angle tht: 0.6109; Azimuth angle phi: 0.7854 +Force: -0.940409 -0.742288 -7.702557 +Torque: 0.215303 0.086742 -0.151233 + +Polar angle tht: 0.6109; Azimuth angle phi: 0.8290 +Force: -0.888871 -0.769459 -7.693838 +Torque: 0.224412 0.083041 -0.150658 + +Polar angle tht: 0.6109; Azimuth angle phi: 0.8727 +Force: -0.836183 -0.794614 -7.684764 +Torque: 0.233084 0.079173 -0.148936 + +Polar angle tht: 0.6109; Azimuth angle phi: 0.9163 +Force: -0.782557 -0.817713 -7.675351 +Torque: 0.241304 0.075143 -0.146080 + +Polar angle tht: 0.6109; Azimuth angle phi: 0.9599 +Force: -0.728206 -0.838721 -7.665617 +Torque: 0.249055 0.070956 -0.142113 + +Polar angle tht: 0.6109; Azimuth angle phi: 1.0036 +Force: -0.673339 -0.857613 -7.655582 +Torque: 0.256323 0.066620 -0.137064 + +Polar angle tht: 0.6109; Azimuth angle phi: 1.0472 +Force: -0.618167 -0.874371 -7.645263 +Torque: 0.263094 0.062140 -0.130972 + +Polar angle tht: 0.6109; Azimuth angle phi: 1.0908 +Force: -0.562892 -0.888987 -7.634682 +Torque: 0.269357 0.057523 -0.123883 + +Polar angle tht: 0.6109; Azimuth angle phi: 1.1345 +Force: -0.507716 -0.901457 -7.623857 +Torque: 0.275099 0.052777 -0.115851 + +Polar angle tht: 0.6109; Azimuth angle phi: 1.1781 +Force: -0.452833 -0.911788 -7.612809 +Torque: 0.280310 0.047908 -0.106938 + +Polar angle tht: 0.6109; Azimuth angle phi: 1.2217 +Force: -0.398430 -0.919993 -7.601560 +Torque: 0.284980 0.042925 -0.097211 + +Polar angle tht: 0.6109; Azimuth angle phi: 1.2654 +Force: -0.344686 -0.926091 -7.590131 +Torque: 0.289102 0.037837 -0.086744 + +Polar angle tht: 0.6109; Azimuth angle phi: 1.3090 +Force: -0.291773 -0.930109 -7.578544 +Torque: 0.292669 0.032650 -0.075617 + +Polar angle tht: 0.6109; Azimuth angle phi: 1.3526 +Force: -0.239852 -0.932080 -7.566820 +Torque: 0.295673 0.027375 -0.063914 + +Polar angle tht: 0.6109; Azimuth angle phi: 1.3963 +Force: -0.189073 -0.932044 -7.554983 +Torque: 0.298111 0.022021 -0.051725 + +Polar angle tht: 0.6109; Azimuth angle phi: 1.4399 +Force: -0.139577 -0.930044 -7.543054 +Torque: 0.299978 0.016596 -0.039142 + +Polar angle tht: 0.6109; Azimuth angle phi: 1.4835 +Force: -0.091491 -0.926130 -7.531056 +Torque: 0.301271 0.011111 -0.026261 + +Polar angle tht: 0.6109; Azimuth angle phi: 1.5272 +Force: -0.044931 -0.920358 -7.519012 +Torque: 0.301989 0.005575 -0.013181 + +Polar angle tht: 0.6109; Azimuth angle phi: 1.5708 +Force: 0.000000 -0.912786 -7.506945 +Torque: 0.302132 -0.000000 0.000000 + +Polar angle tht: 0.6109; Azimuth angle phi: 1.6144 +Force: 0.044931 -0.920358 -7.519012 +Torque: 0.301989 -0.005575 0.013181 + +Polar angle tht: 0.6109; Azimuth angle phi: 1.6581 +Force: 0.091491 -0.926130 -7.531056 +Torque: 0.301271 -0.011111 0.026261 + +Polar angle tht: 0.6109; Azimuth angle phi: 1.7017 +Force: 0.139577 -0.930044 -7.543054 +Torque: 0.299978 -0.016596 0.039142 + +Polar angle tht: 0.6109; Azimuth angle phi: 1.7453 +Force: 0.189073 -0.932044 -7.554983 +Torque: 0.298111 -0.022021 0.051725 + +Polar angle tht: 0.6109; Azimuth angle phi: 1.7890 +Force: 0.239852 -0.932080 -7.566820 +Torque: 0.295673 -0.027375 0.063914 + +Polar angle tht: 0.6109; Azimuth angle phi: 1.8326 +Force: 0.291773 -0.930109 -7.578544 +Torque: 0.292669 -0.032650 0.075617 + +Polar angle tht: 0.6109; Azimuth angle phi: 1.8762 +Force: 0.344686 -0.926091 -7.590131 +Torque: 0.289102 -0.037837 0.086744 + +Polar angle tht: 0.6109; Azimuth angle phi: 1.9199 +Force: 0.398430 -0.919993 -7.601560 +Torque: 0.284980 -0.042925 0.097211 + +Polar angle tht: 0.6109; Azimuth angle phi: 1.9635 +Force: 0.452833 -0.911788 -7.612809 +Torque: 0.280310 -0.047908 0.106938 + +Polar angle tht: 0.6109; Azimuth angle phi: 2.0071 +Force: 0.507716 -0.901457 -7.623857 +Torque: 0.275099 -0.052777 0.115851 + +Polar angle tht: 0.6109; Azimuth angle phi: 2.0508 +Force: 0.562892 -0.888987 -7.634682 +Torque: 0.269357 -0.057523 0.123883 + +Polar angle tht: 0.6109; Azimuth angle phi: 2.0944 +Force: 0.618167 -0.874371 -7.645263 +Torque: 0.263094 -0.062140 0.130972 + +Polar angle tht: 0.6109; Azimuth angle phi: 2.1380 +Force: 0.673339 -0.857613 -7.655582 +Torque: 0.256323 -0.066620 0.137064 + +Polar angle tht: 0.6109; Azimuth angle phi: 2.1817 +Force: 0.728206 -0.838721 -7.665617 +Torque: 0.249055 -0.070956 0.142113 + +Polar angle tht: 0.6109; Azimuth angle phi: 2.2253 +Force: 0.782557 -0.817713 -7.675351 +Torque: 0.241304 -0.075143 0.146080 + +Polar angle tht: 0.6109; Azimuth angle phi: 2.2689 +Force: 0.836183 -0.794614 -7.684764 +Torque: 0.233084 -0.079173 0.148936 + +Polar angle tht: 0.6109; Azimuth angle phi: 2.3126 +Force: 0.888871 -0.769459 -7.693838 +Torque: 0.224412 -0.083041 0.150658 + +Polar angle tht: 0.6109; Azimuth angle phi: 2.3562 +Force: 0.940409 -0.742288 -7.702557 +Torque: 0.215303 -0.086742 0.151233 + +Polar angle tht: 0.6109; Azimuth angle phi: 2.3998 +Force: 0.990588 -0.713152 -7.710903 +Torque: 0.205774 -0.090271 0.150658 + +Polar angle tht: 0.6109; Azimuth angle phi: 2.4435 +Force: 1.039199 -0.682107 -7.718861 +Torque: 0.195845 -0.093622 0.148936 + +Polar angle tht: 0.6109; Azimuth angle phi: 2.4871 +Force: 1.086038 -0.649220 -7.726416 +Torque: 0.185533 -0.096791 0.146080 + +Polar angle tht: 0.6109; Azimuth angle phi: 2.5307 +Force: 1.130906 -0.614563 -7.733552 +Torque: 0.174859 -0.099775 0.142113 + +Polar angle tht: 0.6109; Azimuth angle phi: 2.5744 +Force: 1.173610 -0.578217 -7.740258 +Torque: 0.163843 -0.102569 0.137064 + +Polar angle tht: 0.6109; Azimuth angle phi: 2.6180 +Force: 1.213966 -0.540269 -7.746519 +Torque: 0.152506 -0.105169 0.130972 + +Polar angle tht: 0.6109; Azimuth angle phi: 2.6616 +Force: 1.251795 -0.500814 -7.752325 +Torque: 0.140871 -0.107573 0.123883 + +Polar angle tht: 0.6109; Azimuth angle phi: 2.7053 +Force: 1.286933 -0.459952 -7.757663 +Torque: 0.128961 -0.109778 0.115851 + +Polar angle tht: 0.6109; Azimuth angle phi: 2.7489 +Force: 1.319222 -0.417792 -7.762524 +Torque: 0.116797 -0.111780 0.106938 + +Polar angle tht: 0.6109; Azimuth angle phi: 2.7925 +Force: 1.348517 -0.374446 -7.766898 +Torque: 0.104404 -0.113578 0.097211 + +Polar angle tht: 0.6109; Azimuth angle phi: 2.8362 +Force: 1.374688 -0.330032 -7.770778 +Torque: 0.091807 -0.115169 0.086744 + +Polar angle tht: 0.6109; Azimuth angle phi: 2.8798 +Force: 1.397616 -0.284672 -7.774155 +Torque: 0.079029 -0.116552 0.075617 + +Polar angle tht: 0.6109; Azimuth angle phi: 2.9234 +Force: 1.417197 -0.238494 -7.777024 +Torque: 0.066096 -0.117725 0.063914 + +Polar angle tht: 0.6109; Azimuth angle phi: 2.9671 +Force: 1.433341 -0.191629 -7.779379 +Torque: 0.053033 -0.118686 0.051725 + +Polar angle tht: 0.6109; Azimuth angle phi: 3.0107 +Force: 1.445976 -0.144209 -7.781215 +Torque: 0.039867 -0.119435 0.039142 + +Polar angle tht: 0.6109; Azimuth angle phi: 3.0543 +Force: 1.455042 -0.096373 -7.782529 +Torque: 0.026621 -0.119970 0.026261 + +Polar angle tht: 0.6109; Azimuth angle phi: 3.0980 +Force: 1.460498 -0.048256 -7.783318 +Torque: 0.013324 -0.120292 0.013181 + +Polar angle tht: 0.6109; Azimuth angle phi: 3.1416 +Force: 1.462320 0.000000 -7.783581 +Torque: -0.000000 -0.120399 -0.000000 + +Polar angle tht: 0.6109; Azimuth angle phi: 3.1852 +Force: 1.460498 0.048256 -7.783318 +Torque: -0.013324 -0.120292 -0.013181 + +Polar angle tht: 0.6109; Azimuth angle phi: 3.2289 +Force: 1.455042 0.096373 -7.782529 +Torque: -0.026621 -0.119970 -0.026261 + +Polar angle tht: 0.6109; Azimuth angle phi: 3.2725 +Force: 1.445976 0.144209 -7.781215 +Torque: -0.039867 -0.119435 -0.039142 + +Polar angle tht: 0.6109; Azimuth angle phi: 3.3161 +Force: 1.433341 0.191629 -7.779379 +Torque: -0.053033 -0.118686 -0.051725 + +Polar angle tht: 0.6109; Azimuth angle phi: 3.3598 +Force: 1.417197 0.238494 -7.777024 +Torque: -0.066096 -0.117725 -0.063914 + +Polar angle tht: 0.6109; Azimuth angle phi: 3.4034 +Force: 1.397616 0.284672 -7.774155 +Torque: -0.079029 -0.116552 -0.075617 + +Polar angle tht: 0.6109; Azimuth angle phi: 3.4470 +Force: 1.374688 0.330032 -7.770778 +Torque: -0.091807 -0.115169 -0.086744 + +Polar angle tht: 0.6109; Azimuth angle phi: 3.4907 +Force: 1.348517 0.374446 -7.766898 +Torque: -0.104404 -0.113578 -0.097211 + +Polar angle tht: 0.6109; Azimuth angle phi: 3.5343 +Force: 1.319222 0.417792 -7.762524 +Torque: -0.116797 -0.111780 -0.106938 + +Polar angle tht: 0.6109; Azimuth angle phi: 3.5779 +Force: 1.286933 0.459952 -7.757663 +Torque: -0.128961 -0.109778 -0.115851 + +Polar angle tht: 0.6109; Azimuth angle phi: 3.6216 +Force: 1.251795 0.500814 -7.752325 +Torque: -0.140871 -0.107573 -0.123883 + +Polar angle tht: 0.6109; Azimuth angle phi: 3.6652 +Force: 1.213966 0.540269 -7.746519 +Torque: -0.152506 -0.105169 -0.130972 + +Polar angle tht: 0.6109; Azimuth angle phi: 3.7088 +Force: 1.173610 0.578217 -7.740258 +Torque: -0.163843 -0.102569 -0.137064 + +Polar angle tht: 0.6109; Azimuth angle phi: 3.7525 +Force: 1.130906 0.614563 -7.733552 +Torque: -0.174859 -0.099775 -0.142113 + +Polar angle tht: 0.6109; Azimuth angle phi: 3.7961 +Force: 1.086038 0.649220 -7.726416 +Torque: -0.185533 -0.096791 -0.146080 + +Polar angle tht: 0.6109; Azimuth angle phi: 3.8397 +Force: 1.039199 0.682107 -7.718861 +Torque: -0.195845 -0.093622 -0.148936 + +Polar angle tht: 0.6109; Azimuth angle phi: 3.8834 +Force: 0.990588 0.713152 -7.710903 +Torque: -0.205774 -0.090271 -0.150658 + +Polar angle tht: 0.6109; Azimuth angle phi: 3.9270 +Force: 0.940409 0.742288 -7.702557 +Torque: -0.215303 -0.086742 -0.151233 + +Polar angle tht: 0.6109; Azimuth angle phi: 3.9706 +Force: 0.888871 0.769459 -7.693838 +Torque: -0.224412 -0.083041 -0.150658 + +Polar angle tht: 0.6109; Azimuth angle phi: 4.0143 +Force: 0.836183 0.794614 -7.684764 +Torque: -0.233084 -0.079173 -0.148936 + +Polar angle tht: 0.6109; Azimuth angle phi: 4.0579 +Force: 0.782557 0.817713 -7.675351 +Torque: -0.241304 -0.075143 -0.146080 + +Polar angle tht: 0.6109; Azimuth angle phi: 4.1015 +Force: 0.728206 0.838721 -7.665617 +Torque: -0.249055 -0.070956 -0.142113 + +Polar angle tht: 0.6109; Azimuth angle phi: 4.1452 +Force: 0.673339 0.857613 -7.655582 +Torque: -0.256323 -0.066620 -0.137064 + +Polar angle tht: 0.6109; Azimuth angle phi: 4.1888 +Force: 0.618167 0.874371 -7.645263 +Torque: -0.263094 -0.062140 -0.130972 + +Polar angle tht: 0.6109; Azimuth angle phi: 4.2324 +Force: 0.562892 0.888987 -7.634682 +Torque: -0.269357 -0.057523 -0.123883 + +Polar angle tht: 0.6109; Azimuth angle phi: 4.2761 +Force: 0.507716 0.901457 -7.623857 +Torque: -0.275099 -0.052777 -0.115851 + +Polar angle tht: 0.6109; Azimuth angle phi: 4.3197 +Force: 0.452833 0.911788 -7.612809 +Torque: -0.280310 -0.047908 -0.106938 + +Polar angle tht: 0.6109; Azimuth angle phi: 4.3633 +Force: 0.398430 0.919993 -7.601560 +Torque: -0.284980 -0.042925 -0.097211 + +Polar angle tht: 0.6109; Azimuth angle phi: 4.4070 +Force: 0.344686 0.926091 -7.590131 +Torque: -0.289102 -0.037837 -0.086744 + +Polar angle tht: 0.6109; Azimuth angle phi: 4.4506 +Force: 0.291773 0.930109 -7.578544 +Torque: -0.292669 -0.032650 -0.075617 + +Polar angle tht: 0.6109; Azimuth angle phi: 4.4942 +Force: 0.239852 0.932080 -7.566820 +Torque: -0.295673 -0.027375 -0.063914 + +Polar angle tht: 0.6109; Azimuth angle phi: 4.5379 +Force: 0.189073 0.932044 -7.554983 +Torque: -0.298111 -0.022021 -0.051725 + +Polar angle tht: 0.6109; Azimuth angle phi: 4.5815 +Force: 0.139577 0.930044 -7.543054 +Torque: -0.299978 -0.016596 -0.039142 + +Polar angle tht: 0.6109; Azimuth angle phi: 4.6251 +Force: 0.091491 0.926130 -7.531056 +Torque: -0.301271 -0.011111 -0.026261 + +Polar angle tht: 0.6109; Azimuth angle phi: 4.6688 +Force: 0.044931 0.920358 -7.519012 +Torque: -0.301989 -0.005575 -0.013181 + +Polar angle tht: 0.6109; Azimuth angle phi: 4.7124 +Force: 0.000000 0.912786 -7.506945 +Torque: -0.302132 -0.000000 -0.000000 + +Polar angle tht: 0.6109; Azimuth angle phi: 4.7560 +Force: -0.044931 0.920358 -7.519012 +Torque: -0.301989 0.005575 0.013181 + +Polar angle tht: 0.6109; Azimuth angle phi: 4.7997 +Force: -0.091491 0.926130 -7.531056 +Torque: -0.301271 0.011111 0.026261 + +Polar angle tht: 0.6109; Azimuth angle phi: 4.8433 +Force: -0.139577 0.930044 -7.543054 +Torque: -0.299978 0.016596 0.039142 + +Polar angle tht: 0.6109; Azimuth angle phi: 4.8869 +Force: -0.189073 0.932044 -7.554983 +Torque: -0.298111 0.022021 0.051725 + +Polar angle tht: 0.6109; Azimuth angle phi: 4.9306 +Force: -0.239852 0.932080 -7.566820 +Torque: -0.295673 0.027375 0.063914 + +Polar angle tht: 0.6109; Azimuth angle phi: 4.9742 +Force: -0.291773 0.930109 -7.578544 +Torque: -0.292669 0.032650 0.075617 + +Polar angle tht: 0.6109; Azimuth angle phi: 5.0178 +Force: -0.344686 0.926091 -7.590131 +Torque: -0.289102 0.037837 0.086744 + +Polar angle tht: 0.6109; Azimuth angle phi: 5.0615 +Force: -0.398430 0.919993 -7.601560 +Torque: -0.284980 0.042925 0.097211 + +Polar angle tht: 0.6109; Azimuth angle phi: 5.1051 +Force: -0.452833 0.911788 -7.612809 +Torque: -0.280310 0.047908 0.106938 + +Polar angle tht: 0.6109; Azimuth angle phi: 5.1487 +Force: -0.507716 0.901457 -7.623857 +Torque: -0.275099 0.052777 0.115851 + +Polar angle tht: 0.6109; Azimuth angle phi: 5.1924 +Force: -0.562892 0.888987 -7.634682 +Torque: -0.269357 0.057523 0.123883 + +Polar angle tht: 0.6109; Azimuth angle phi: 5.2360 +Force: -0.618167 0.874371 -7.645263 +Torque: -0.263094 0.062140 0.130972 + +Polar angle tht: 0.6109; Azimuth angle phi: 5.2796 +Force: -0.673339 0.857613 -7.655582 +Torque: -0.256323 0.066620 0.137064 + +Polar angle tht: 0.6109; Azimuth angle phi: 5.3233 +Force: -0.728206 0.838721 -7.665617 +Torque: -0.249055 0.070956 0.142113 + +Polar angle tht: 0.6109; Azimuth angle phi: 5.3669 +Force: -0.782557 0.817713 -7.675351 +Torque: -0.241304 0.075143 0.146080 + +Polar angle tht: 0.6109; Azimuth angle phi: 5.4105 +Force: -0.836183 0.794614 -7.684764 +Torque: -0.233084 0.079173 0.148936 + +Polar angle tht: 0.6109; Azimuth angle phi: 5.4542 +Force: -0.888871 0.769459 -7.693838 +Torque: -0.224412 0.083041 0.150658 + +Polar angle tht: 0.6109; Azimuth angle phi: 5.4978 +Force: -0.940409 0.742288 -7.702557 +Torque: -0.215303 0.086742 0.151233 + +Polar angle tht: 0.6109; Azimuth angle phi: 5.5414 +Force: -0.990588 0.713152 -7.710903 +Torque: -0.205774 0.090271 0.150658 + +Polar angle tht: 0.6109; Azimuth angle phi: 5.5851 +Force: -1.039199 0.682107 -7.718861 +Torque: -0.195845 0.093622 0.148936 + +Polar angle tht: 0.6109; Azimuth angle phi: 5.6287 +Force: -1.086038 0.649220 -7.726416 +Torque: -0.185533 0.096791 0.146080 + +Polar angle tht: 0.6109; Azimuth angle phi: 5.6723 +Force: -1.130906 0.614563 -7.733552 +Torque: -0.174859 0.099775 0.142113 + +Polar angle tht: 0.6109; Azimuth angle phi: 5.7160 +Force: -1.173610 0.578217 -7.740258 +Torque: -0.163843 0.102569 0.137064 + +Polar angle tht: 0.6109; Azimuth angle phi: 5.7596 +Force: -1.213966 0.540269 -7.746519 +Torque: -0.152506 0.105169 0.130972 + +Polar angle tht: 0.6109; Azimuth angle phi: 5.8032 +Force: -1.251795 0.500814 -7.752325 +Torque: -0.140871 0.107573 0.123883 + +Polar angle tht: 0.6109; Azimuth angle phi: 5.8469 +Force: -1.286933 0.459952 -7.757663 +Torque: -0.128961 0.109778 0.115851 + +Polar angle tht: 0.6109; Azimuth angle phi: 5.8905 +Force: -1.319222 0.417792 -7.762524 +Torque: -0.116797 0.111780 0.106938 + +Polar angle tht: 0.6109; Azimuth angle phi: 5.9341 +Force: -1.348517 0.374446 -7.766898 +Torque: -0.104404 0.113578 0.097211 + +Polar angle tht: 0.6109; Azimuth angle phi: 5.9778 +Force: -1.374688 0.330032 -7.770778 +Torque: -0.091807 0.115169 0.086744 + +Polar angle tht: 0.6109; Azimuth angle phi: 6.0214 +Force: -1.397616 0.284672 -7.774155 +Torque: -0.079029 0.116552 0.075617 + +Polar angle tht: 0.6109; Azimuth angle phi: 6.0650 +Force: -1.417197 0.238494 -7.777024 +Torque: -0.066096 0.117725 0.063914 + +Polar angle tht: 0.6109; Azimuth angle phi: 6.1087 +Force: -1.433341 0.191629 -7.779379 +Torque: -0.053033 0.118686 0.051725 + +Polar angle tht: 0.6109; Azimuth angle phi: 6.1523 +Force: -1.445976 0.144209 -7.781215 +Torque: -0.039867 0.119435 0.039142 + +Polar angle tht: 0.6109; Azimuth angle phi: 6.1959 +Force: -1.455042 0.096373 -7.782529 +Torque: -0.026621 0.119970 0.026261 + +Polar angle tht: 0.6109; Azimuth angle phi: 6.2396 +Force: -1.460498 0.048256 -7.783318 +Torque: -0.013324 0.120292 0.013181 + +Polar angle tht: 0.6109; Azimuth angle phi: 6.2832 +Force: -1.462320 0.000000 -7.783581 +Torque: -0.000000 0.120399 0.000000 + +Polar angle tht: 0.6545; Azimuth angle phi: 0.0000 +Force: -1.550938 0.000000 -7.346122 +Torque: -0.000000 0.122939 0.000000 + +Polar angle tht: 0.6545; Azimuth angle phi: 0.0436 +Force: -1.548978 -0.050435 -7.345852 +Torque: 0.013710 0.122831 -0.014848 + +Polar angle tht: 0.6545; Azimuth angle phi: 0.0873 +Force: -1.543106 -0.100720 -7.345040 +Torque: 0.027393 0.122505 -0.029582 + +Polar angle tht: 0.6545; Azimuth angle phi: 0.1309 +Force: -1.533351 -0.150705 -7.343690 +Torque: 0.041022 0.121962 -0.044092 + +Polar angle tht: 0.6545; Azimuth angle phi: 0.1745 +Force: -1.519758 -0.200242 -7.341802 +Torque: 0.054570 0.121203 -0.058265 + +Polar angle tht: 0.6545; Azimuth angle phi: 0.2182 +Force: -1.502392 -0.249185 -7.339382 +Torque: 0.068011 0.120228 -0.071996 + +Polar angle tht: 0.6545; Azimuth angle phi: 0.2618 +Force: -1.481334 -0.297391 -7.336433 +Torque: 0.081317 0.119038 -0.085178 + +Polar angle tht: 0.6545; Azimuth angle phi: 0.3054 +Force: -1.456683 -0.344719 -7.332961 +Torque: 0.094464 0.117635 -0.097713 + +Polar angle tht: 0.6545; Azimuth angle phi: 0.3491 +Force: -1.428553 -0.391033 -7.328974 +Torque: 0.107424 0.116021 -0.109503 + +Polar angle tht: 0.6545; Azimuth angle phi: 0.3927 +Force: -1.397075 -0.436204 -7.324477 +Torque: 0.120173 0.114196 -0.120460 + +Polar angle tht: 0.6545; Azimuth angle phi: 0.4363 +Force: -1.362395 -0.480103 -7.319480 +Torque: 0.132686 0.112163 -0.130501 + +Polar angle tht: 0.6545; Azimuth angle phi: 0.4800 +Force: -1.324673 -0.522612 -7.313993 +Torque: 0.144938 0.109925 -0.139548 + +Polar angle tht: 0.6545; Azimuth angle phi: 0.5236 +Force: -1.284080 -0.563616 -7.308026 +Torque: 0.156906 0.107483 -0.147533 + +Polar angle tht: 0.6545; Azimuth angle phi: 0.5672 +Force: -1.240801 -0.603007 -7.301589 +Torque: 0.168565 0.104841 -0.154396 + +Polar angle tht: 0.6545; Azimuth angle phi: 0.6109 +Force: -1.195031 -0.640687 -7.294697 +Torque: 0.179894 0.102001 -0.160083 + +Polar angle tht: 0.6545; Azimuth angle phi: 0.6545 +Force: -1.146974 -0.676562 -7.287361 +Torque: 0.190871 0.098968 -0.164552 + +Polar angle tht: 0.6545; Azimuth angle phi: 0.6981 +Force: -1.096842 -0.710548 -7.279595 +Torque: 0.201473 0.095744 -0.167769 + +Polar angle tht: 0.6545; Azimuth angle phi: 0.7418 +Force: -1.044854 -0.742568 -7.271415 +Torque: 0.211682 0.092334 -0.169708 + +Polar angle tht: 0.6545; Azimuth angle phi: 0.7854 +Force: -0.991236 -0.772554 -7.262836 +Torque: 0.221477 0.088742 -0.170357 + +Polar angle tht: 0.6545; Azimuth angle phi: 0.8290 +Force: -0.936215 -0.800447 -7.253874 +Torque: 0.230840 0.084973 -0.169708 + +Polar angle tht: 0.6545; Azimuth angle phi: 0.8727 +Force: -0.880023 -0.826196 -7.244546 +Torque: 0.239753 0.081031 -0.167769 + +Polar angle tht: 0.6545; Azimuth angle phi: 0.9163 +Force: -0.822893 -0.849759 -7.234870 +Torque: 0.248199 0.076923 -0.164552 + +Polar angle tht: 0.6545; Azimuth angle phi: 0.9599 +Force: -0.765056 -0.871103 -7.224865 +Torque: 0.256162 0.072653 -0.160083 + +Polar angle tht: 0.6545; Azimuth angle phi: 1.0036 +Force: -0.706746 -0.890204 -7.214549 +Torque: 0.263627 0.068229 -0.154396 + +Polar angle tht: 0.6545; Azimuth angle phi: 1.0472 +Force: -0.648188 -0.907046 -7.203943 +Torque: 0.270581 0.063655 -0.147533 + +Polar angle tht: 0.6545; Azimuth angle phi: 1.0908 +Force: -0.589607 -0.921622 -7.193066 +Torque: 0.277011 0.058940 -0.139548 + +Polar angle tht: 0.6545; Azimuth angle phi: 1.1345 +Force: -0.531222 -0.933934 -7.181939 +Torque: 0.282904 0.054090 -0.130501 + +Polar angle tht: 0.6545; Azimuth angle phi: 1.1781 +Force: -0.473244 -0.943991 -7.170583 +Torque: 0.288251 0.049112 -0.120460 + +Polar angle tht: 0.6545; Azimuth angle phi: 1.2217 +Force: -0.415877 -0.951810 -7.159020 +Torque: 0.293041 0.044015 -0.109503 + +Polar angle tht: 0.6545; Azimuth angle phi: 1.2654 +Force: -0.359316 -0.957418 -7.147272 +Torque: 0.297267 0.038807 -0.097713 + +Polar angle tht: 0.6545; Azimuth angle phi: 1.3090 +Force: -0.303746 -0.960846 -7.135361 +Torque: 0.300921 0.033496 -0.085178 + +Polar angle tht: 0.6545; Azimuth angle phi: 1.3526 +Force: -0.249340 -0.962134 -7.123310 +Torque: 0.303997 0.028092 -0.071996 + +Polar angle tht: 0.6545; Azimuth angle phi: 1.3963 +Force: -0.196261 -0.961327 -7.111142 +Torque: 0.306489 0.022603 -0.058265 + +Polar angle tht: 0.6545; Azimuth angle phi: 1.4399 +Force: -0.144658 -0.958478 -7.098880 +Torque: 0.308395 0.017039 -0.044092 + +Polar angle tht: 0.6545; Azimuth angle phi: 1.4835 +Force: -0.094667 -0.953642 -7.086547 +Torque: 0.309710 0.011410 -0.029582 + +Polar angle tht: 0.6545; Azimuth angle phi: 1.5272 +Force: -0.046412 -0.946883 -7.074167 +Torque: 0.310434 0.005727 -0.014848 + +Polar angle tht: 0.6545; Azimuth angle phi: 1.5708 +Force: 0.000000 -0.938268 -7.061764 +Torque: 0.310567 -0.000000 0.000000 + +Polar angle tht: 0.6545; Azimuth angle phi: 1.6144 +Force: 0.046412 -0.946883 -7.074167 +Torque: 0.310434 -0.005727 0.014848 + +Polar angle tht: 0.6545; Azimuth angle phi: 1.6581 +Force: 0.094667 -0.953642 -7.086547 +Torque: 0.309710 -0.011410 0.029582 + +Polar angle tht: 0.6545; Azimuth angle phi: 1.7017 +Force: 0.144658 -0.958478 -7.098880 +Torque: 0.308395 -0.017039 0.044092 + +Polar angle tht: 0.6545; Azimuth angle phi: 1.7453 +Force: 0.196261 -0.961327 -7.111142 +Torque: 0.306489 -0.022603 0.058265 + +Polar angle tht: 0.6545; Azimuth angle phi: 1.7890 +Force: 0.249340 -0.962134 -7.123310 +Torque: 0.303997 -0.028092 0.071996 + +Polar angle tht: 0.6545; Azimuth angle phi: 1.8326 +Force: 0.303746 -0.960846 -7.135361 +Torque: 0.300921 -0.033496 0.085178 + +Polar angle tht: 0.6545; Azimuth angle phi: 1.8762 +Force: 0.359316 -0.957418 -7.147272 +Torque: 0.297267 -0.038807 0.097713 + +Polar angle tht: 0.6545; Azimuth angle phi: 1.9199 +Force: 0.415877 -0.951810 -7.159020 +Torque: 0.293041 -0.044015 0.109503 + +Polar angle tht: 0.6545; Azimuth angle phi: 1.9635 +Force: 0.473244 -0.943991 -7.170583 +Torque: 0.288251 -0.049112 0.120460 + +Polar angle tht: 0.6545; Azimuth angle phi: 2.0071 +Force: 0.531222 -0.933934 -7.181939 +Torque: 0.282904 -0.054090 0.130501 + +Polar angle tht: 0.6545; Azimuth angle phi: 2.0508 +Force: 0.589607 -0.921622 -7.193066 +Torque: 0.277011 -0.058940 0.139548 + +Polar angle tht: 0.6545; Azimuth angle phi: 2.0944 +Force: 0.648188 -0.907046 -7.203943 +Torque: 0.270581 -0.063655 0.147533 + +Polar angle tht: 0.6545; Azimuth angle phi: 2.1380 +Force: 0.706746 -0.890204 -7.214549 +Torque: 0.263627 -0.068229 0.154396 + +Polar angle tht: 0.6545; Azimuth angle phi: 2.1817 +Force: 0.765056 -0.871103 -7.224865 +Torque: 0.256162 -0.072653 0.160083 + +Polar angle tht: 0.6545; Azimuth angle phi: 2.2253 +Force: 0.822893 -0.849759 -7.234870 +Torque: 0.248199 -0.076923 0.164552 + +Polar angle tht: 0.6545; Azimuth angle phi: 2.2689 +Force: 0.880023 -0.826196 -7.244546 +Torque: 0.239753 -0.081031 0.167769 + +Polar angle tht: 0.6545; Azimuth angle phi: 2.3126 +Force: 0.936215 -0.800447 -7.253874 +Torque: 0.230840 -0.084973 0.169708 + +Polar angle tht: 0.6545; Azimuth angle phi: 2.3562 +Force: 0.991236 -0.772554 -7.262836 +Torque: 0.221477 -0.088742 0.170357 + +Polar angle tht: 0.6545; Azimuth angle phi: 2.3998 +Force: 1.044854 -0.742568 -7.271415 +Torque: 0.211682 -0.092334 0.169708 + +Polar angle tht: 0.6545; Azimuth angle phi: 2.4435 +Force: 1.096842 -0.710548 -7.279595 +Torque: 0.201473 -0.095744 0.167769 + +Polar angle tht: 0.6545; Azimuth angle phi: 2.4871 +Force: 1.146974 -0.676562 -7.287361 +Torque: 0.190871 -0.098968 0.164552 + +Polar angle tht: 0.6545; Azimuth angle phi: 2.5307 +Force: 1.195031 -0.640687 -7.294697 +Torque: 0.179894 -0.102001 0.160083 + +Polar angle tht: 0.6545; Azimuth angle phi: 2.5744 +Force: 1.240801 -0.603007 -7.301589 +Torque: 0.168565 -0.104841 0.154396 + +Polar angle tht: 0.6545; Azimuth angle phi: 2.6180 +Force: 1.284080 -0.563616 -7.308026 +Torque: 0.156906 -0.107483 0.147533 + +Polar angle tht: 0.6545; Azimuth angle phi: 2.6616 +Force: 1.324673 -0.522612 -7.313993 +Torque: 0.144938 -0.109925 0.139548 + +Polar angle tht: 0.6545; Azimuth angle phi: 2.7053 +Force: 1.362395 -0.480103 -7.319480 +Torque: 0.132686 -0.112163 0.130501 + +Polar angle tht: 0.6545; Azimuth angle phi: 2.7489 +Force: 1.397075 -0.436204 -7.324477 +Torque: 0.120173 -0.114196 0.120460 + +Polar angle tht: 0.6545; Azimuth angle phi: 2.7925 +Force: 1.428553 -0.391033 -7.328974 +Torque: 0.107424 -0.116021 0.109503 + +Polar angle tht: 0.6545; Azimuth angle phi: 2.8362 +Force: 1.456683 -0.344719 -7.332961 +Torque: 0.094464 -0.117635 0.097713 + +Polar angle tht: 0.6545; Azimuth angle phi: 2.8798 +Force: 1.481334 -0.297391 -7.336433 +Torque: 0.081317 -0.119038 0.085178 + +Polar angle tht: 0.6545; Azimuth angle phi: 2.9234 +Force: 1.502392 -0.249185 -7.339382 +Torque: 0.068011 -0.120228 0.071996 + +Polar angle tht: 0.6545; Azimuth angle phi: 2.9671 +Force: 1.519758 -0.200242 -7.341802 +Torque: 0.054570 -0.121203 0.058265 + +Polar angle tht: 0.6545; Azimuth angle phi: 3.0107 +Force: 1.533351 -0.150705 -7.343690 +Torque: 0.041022 -0.121962 0.044092 + +Polar angle tht: 0.6545; Azimuth angle phi: 3.0543 +Force: 1.543106 -0.100720 -7.345040 +Torque: 0.027393 -0.122505 0.029582 + +Polar angle tht: 0.6545; Azimuth angle phi: 3.0980 +Force: 1.548978 -0.050435 -7.345852 +Torque: 0.013710 -0.122831 0.014848 + +Polar angle tht: 0.6545; Azimuth angle phi: 3.1416 +Force: 1.550938 0.000000 -7.346122 +Torque: -0.000000 -0.122939 -0.000000 + +Polar angle tht: 0.6545; Azimuth angle phi: 3.1852 +Force: 1.548978 0.050435 -7.345852 +Torque: -0.013710 -0.122831 -0.014848 + +Polar angle tht: 0.6545; Azimuth angle phi: 3.2289 +Force: 1.543106 0.100720 -7.345040 +Torque: -0.027393 -0.122505 -0.029582 + +Polar angle tht: 0.6545; Azimuth angle phi: 3.2725 +Force: 1.533351 0.150705 -7.343690 +Torque: -0.041022 -0.121962 -0.044092 + +Polar angle tht: 0.6545; Azimuth angle phi: 3.3161 +Force: 1.519758 0.200242 -7.341802 +Torque: -0.054570 -0.121203 -0.058265 + +Polar angle tht: 0.6545; Azimuth angle phi: 3.3598 +Force: 1.502392 0.249185 -7.339382 +Torque: -0.068011 -0.120228 -0.071996 + +Polar angle tht: 0.6545; Azimuth angle phi: 3.4034 +Force: 1.481334 0.297391 -7.336433 +Torque: -0.081317 -0.119038 -0.085178 + +Polar angle tht: 0.6545; Azimuth angle phi: 3.4470 +Force: 1.456683 0.344719 -7.332961 +Torque: -0.094464 -0.117635 -0.097713 + +Polar angle tht: 0.6545; Azimuth angle phi: 3.4907 +Force: 1.428553 0.391033 -7.328974 +Torque: -0.107424 -0.116021 -0.109503 + +Polar angle tht: 0.6545; Azimuth angle phi: 3.5343 +Force: 1.397075 0.436204 -7.324477 +Torque: -0.120173 -0.114196 -0.120460 + +Polar angle tht: 0.6545; Azimuth angle phi: 3.5779 +Force: 1.362395 0.480103 -7.319480 +Torque: -0.132686 -0.112163 -0.130501 + +Polar angle tht: 0.6545; Azimuth angle phi: 3.6216 +Force: 1.324673 0.522612 -7.313993 +Torque: -0.144938 -0.109925 -0.139548 + +Polar angle tht: 0.6545; Azimuth angle phi: 3.6652 +Force: 1.284080 0.563616 -7.308026 +Torque: -0.156906 -0.107483 -0.147533 + +Polar angle tht: 0.6545; Azimuth angle phi: 3.7088 +Force: 1.240801 0.603007 -7.301589 +Torque: -0.168565 -0.104841 -0.154396 + +Polar angle tht: 0.6545; Azimuth angle phi: 3.7525 +Force: 1.195031 0.640687 -7.294697 +Torque: -0.179894 -0.102001 -0.160083 + +Polar angle tht: 0.6545; Azimuth angle phi: 3.7961 +Force: 1.146974 0.676562 -7.287361 +Torque: -0.190871 -0.098968 -0.164552 + +Polar angle tht: 0.6545; Azimuth angle phi: 3.8397 +Force: 1.096842 0.710548 -7.279595 +Torque: -0.201473 -0.095744 -0.167769 + +Polar angle tht: 0.6545; Azimuth angle phi: 3.8834 +Force: 1.044854 0.742568 -7.271415 +Torque: -0.211682 -0.092334 -0.169708 + +Polar angle tht: 0.6545; Azimuth angle phi: 3.9270 +Force: 0.991236 0.772554 -7.262836 +Torque: -0.221477 -0.088742 -0.170357 + +Polar angle tht: 0.6545; Azimuth angle phi: 3.9706 +Force: 0.936215 0.800447 -7.253874 +Torque: -0.230840 -0.084973 -0.169708 + +Polar angle tht: 0.6545; Azimuth angle phi: 4.0143 +Force: 0.880023 0.826196 -7.244546 +Torque: -0.239753 -0.081031 -0.167769 + +Polar angle tht: 0.6545; Azimuth angle phi: 4.0579 +Force: 0.822893 0.849759 -7.234870 +Torque: -0.248199 -0.076923 -0.164552 + +Polar angle tht: 0.6545; Azimuth angle phi: 4.1015 +Force: 0.765056 0.871103 -7.224865 +Torque: -0.256162 -0.072653 -0.160083 + +Polar angle tht: 0.6545; Azimuth angle phi: 4.1452 +Force: 0.706746 0.890204 -7.214549 +Torque: -0.263627 -0.068229 -0.154396 + +Polar angle tht: 0.6545; Azimuth angle phi: 4.1888 +Force: 0.648188 0.907046 -7.203943 +Torque: -0.270581 -0.063655 -0.147533 + +Polar angle tht: 0.6545; Azimuth angle phi: 4.2324 +Force: 0.589607 0.921622 -7.193066 +Torque: -0.277011 -0.058940 -0.139548 + +Polar angle tht: 0.6545; Azimuth angle phi: 4.2761 +Force: 0.531222 0.933934 -7.181939 +Torque: -0.282904 -0.054090 -0.130501 + +Polar angle tht: 0.6545; Azimuth angle phi: 4.3197 +Force: 0.473244 0.943991 -7.170583 +Torque: -0.288251 -0.049112 -0.120460 + +Polar angle tht: 0.6545; Azimuth angle phi: 4.3633 +Force: 0.415877 0.951810 -7.159020 +Torque: -0.293041 -0.044015 -0.109503 + +Polar angle tht: 0.6545; Azimuth angle phi: 4.4070 +Force: 0.359316 0.957418 -7.147272 +Torque: -0.297267 -0.038807 -0.097713 + +Polar angle tht: 0.6545; Azimuth angle phi: 4.4506 +Force: 0.303746 0.960846 -7.135361 +Torque: -0.300921 -0.033496 -0.085178 + +Polar angle tht: 0.6545; Azimuth angle phi: 4.4942 +Force: 0.249340 0.962134 -7.123310 +Torque: -0.303997 -0.028092 -0.071996 + +Polar angle tht: 0.6545; Azimuth angle phi: 4.5379 +Force: 0.196261 0.961327 -7.111142 +Torque: -0.306489 -0.022603 -0.058265 + +Polar angle tht: 0.6545; Azimuth angle phi: 4.5815 +Force: 0.144658 0.958478 -7.098880 +Torque: -0.308395 -0.017039 -0.044092 + +Polar angle tht: 0.6545; Azimuth angle phi: 4.6251 +Force: 0.094667 0.953642 -7.086547 +Torque: -0.309710 -0.011410 -0.029582 + +Polar angle tht: 0.6545; Azimuth angle phi: 4.6688 +Force: 0.046412 0.946883 -7.074167 +Torque: -0.310434 -0.005727 -0.014848 + +Polar angle tht: 0.6545; Azimuth angle phi: 4.7124 +Force: 0.000000 0.938268 -7.061764 +Torque: -0.310567 -0.000000 -0.000000 + +Polar angle tht: 0.6545; Azimuth angle phi: 4.7560 +Force: -0.046412 0.946883 -7.074167 +Torque: -0.310434 0.005727 0.014848 + +Polar angle tht: 0.6545; Azimuth angle phi: 4.7997 +Force: -0.094667 0.953642 -7.086547 +Torque: -0.309710 0.011410 0.029582 + +Polar angle tht: 0.6545; Azimuth angle phi: 4.8433 +Force: -0.144658 0.958478 -7.098880 +Torque: -0.308395 0.017039 0.044092 + +Polar angle tht: 0.6545; Azimuth angle phi: 4.8869 +Force: -0.196261 0.961327 -7.111142 +Torque: -0.306489 0.022603 0.058265 + +Polar angle tht: 0.6545; Azimuth angle phi: 4.9306 +Force: -0.249340 0.962134 -7.123310 +Torque: -0.303997 0.028092 0.071996 + +Polar angle tht: 0.6545; Azimuth angle phi: 4.9742 +Force: -0.303746 0.960846 -7.135361 +Torque: -0.300921 0.033496 0.085178 + +Polar angle tht: 0.6545; Azimuth angle phi: 5.0178 +Force: -0.359316 0.957418 -7.147272 +Torque: -0.297267 0.038807 0.097713 + +Polar angle tht: 0.6545; Azimuth angle phi: 5.0615 +Force: -0.415877 0.951810 -7.159020 +Torque: -0.293041 0.044015 0.109503 + +Polar angle tht: 0.6545; Azimuth angle phi: 5.1051 +Force: -0.473244 0.943991 -7.170583 +Torque: -0.288251 0.049112 0.120460 + +Polar angle tht: 0.6545; Azimuth angle phi: 5.1487 +Force: -0.531222 0.933934 -7.181939 +Torque: -0.282904 0.054090 0.130501 + +Polar angle tht: 0.6545; Azimuth angle phi: 5.1924 +Force: -0.589607 0.921622 -7.193066 +Torque: -0.277011 0.058940 0.139548 + +Polar angle tht: 0.6545; Azimuth angle phi: 5.2360 +Force: -0.648188 0.907046 -7.203943 +Torque: -0.270581 0.063655 0.147533 + +Polar angle tht: 0.6545; Azimuth angle phi: 5.2796 +Force: -0.706746 0.890204 -7.214549 +Torque: -0.263627 0.068229 0.154396 + +Polar angle tht: 0.6545; Azimuth angle phi: 5.3233 +Force: -0.765056 0.871103 -7.224865 +Torque: -0.256162 0.072653 0.160083 + +Polar angle tht: 0.6545; Azimuth angle phi: 5.3669 +Force: -0.822893 0.849759 -7.234870 +Torque: -0.248199 0.076923 0.164552 + +Polar angle tht: 0.6545; Azimuth angle phi: 5.4105 +Force: -0.880023 0.826196 -7.244546 +Torque: -0.239753 0.081031 0.167769 + +Polar angle tht: 0.6545; Azimuth angle phi: 5.4542 +Force: -0.936215 0.800447 -7.253874 +Torque: -0.230840 0.084973 0.169708 + +Polar angle tht: 0.6545; Azimuth angle phi: 5.4978 +Force: -0.991236 0.772554 -7.262836 +Torque: -0.221477 0.088742 0.170357 + +Polar angle tht: 0.6545; Azimuth angle phi: 5.5414 +Force: -1.044854 0.742568 -7.271415 +Torque: -0.211682 0.092334 0.169708 + +Polar angle tht: 0.6545; Azimuth angle phi: 5.5851 +Force: -1.096842 0.710548 -7.279595 +Torque: -0.201473 0.095744 0.167769 + +Polar angle tht: 0.6545; Azimuth angle phi: 5.6287 +Force: -1.146974 0.676562 -7.287361 +Torque: -0.190871 0.098968 0.164552 + +Polar angle tht: 0.6545; Azimuth angle phi: 5.6723 +Force: -1.195031 0.640687 -7.294697 +Torque: -0.179894 0.102001 0.160083 + +Polar angle tht: 0.6545; Azimuth angle phi: 5.7160 +Force: -1.240801 0.603007 -7.301589 +Torque: -0.168565 0.104841 0.154396 + +Polar angle tht: 0.6545; Azimuth angle phi: 5.7596 +Force: -1.284080 0.563616 -7.308026 +Torque: -0.156906 0.107483 0.147533 + +Polar angle tht: 0.6545; Azimuth angle phi: 5.8032 +Force: -1.324673 0.522612 -7.313993 +Torque: -0.144938 0.109925 0.139548 + +Polar angle tht: 0.6545; Azimuth angle phi: 5.8469 +Force: -1.362395 0.480103 -7.319480 +Torque: -0.132686 0.112163 0.130501 + +Polar angle tht: 0.6545; Azimuth angle phi: 5.8905 +Force: -1.397075 0.436204 -7.324477 +Torque: -0.120173 0.114196 0.120460 + +Polar angle tht: 0.6545; Azimuth angle phi: 5.9341 +Force: -1.428553 0.391033 -7.328974 +Torque: -0.107424 0.116021 0.109503 + +Polar angle tht: 0.6545; Azimuth angle phi: 5.9778 +Force: -1.456683 0.344719 -7.332961 +Torque: -0.094464 0.117635 0.097713 + +Polar angle tht: 0.6545; Azimuth angle phi: 6.0214 +Force: -1.481334 0.297391 -7.336433 +Torque: -0.081317 0.119038 0.085178 + +Polar angle tht: 0.6545; Azimuth angle phi: 6.0650 +Force: -1.502392 0.249185 -7.339382 +Torque: -0.068011 0.120228 0.071996 + +Polar angle tht: 0.6545; Azimuth angle phi: 6.1087 +Force: -1.519758 0.200242 -7.341802 +Torque: -0.054570 0.121203 0.058265 + +Polar angle tht: 0.6545; Azimuth angle phi: 6.1523 +Force: -1.533351 0.150705 -7.343690 +Torque: -0.041022 0.121962 0.044092 + +Polar angle tht: 0.6545; Azimuth angle phi: 6.1959 +Force: -1.543106 0.100720 -7.345040 +Torque: -0.027393 0.122505 0.029582 + +Polar angle tht: 0.6545; Azimuth angle phi: 6.2396 +Force: -1.548978 0.050435 -7.345852 +Torque: -0.013710 0.122831 0.014848 + +Polar angle tht: 0.6545; Azimuth angle phi: 6.2832 +Force: -1.550938 0.000000 -7.346122 +Torque: -0.000000 0.122939 0.000000 + +Polar angle tht: 0.6981; Azimuth angle phi: 0.0000 +Force: -1.633572 0.000000 -6.895232 +Torque: -0.000000 0.124444 0.000000 + +Polar angle tht: 0.6981; Azimuth angle phi: 0.0436 +Force: -1.631477 -0.052328 -6.894956 +Torque: 0.013994 0.124335 -0.016554 + +Polar angle tht: 0.6981; Azimuth angle phi: 0.0873 +Force: -1.625204 -0.104496 -6.894128 +Torque: 0.027959 0.124008 -0.032981 + +Polar angle tht: 0.6981; Azimuth angle phi: 0.1309 +Force: -1.614781 -0.156344 -6.892751 +Torque: 0.041870 0.123462 -0.049158 + +Polar angle tht: 0.6981; Azimuth angle phi: 0.1745 +Force: -1.600261 -0.207715 -6.890827 +Torque: 0.055698 0.122700 -0.064961 + +Polar angle tht: 0.6981; Azimuth angle phi: 0.2182 +Force: -1.581713 -0.258453 -6.888360 +Torque: 0.069416 0.121720 -0.080269 + +Polar angle tht: 0.6981; Azimuth angle phi: 0.2618 +Force: -1.559226 -0.308406 -6.885353 +Torque: 0.082996 0.120525 -0.094966 + +Polar angle tht: 0.6981; Azimuth angle phi: 0.3054 +Force: -1.532909 -0.357425 -6.881813 +Torque: 0.096413 0.119115 -0.108941 + +Polar angle tht: 0.6981; Azimuth angle phi: 0.3491 +Force: -1.502887 -0.405365 -6.877748 +Torque: 0.109639 0.117492 -0.122086 + +Polar angle tht: 0.6981; Azimuth angle phi: 0.3927 +Force: -1.469304 -0.452087 -6.873163 +Torque: 0.122649 0.115657 -0.134303 + +Polar angle tht: 0.6981; Azimuth angle phi: 0.4363 +Force: -1.432319 -0.497458 -6.868069 +Torque: 0.135417 0.113613 -0.145497 + +Polar angle tht: 0.6981; Azimuth angle phi: 0.4800 +Force: -1.392106 -0.541350 -6.862474 +Torque: 0.147918 0.111360 -0.155584 + +Polar angle tht: 0.6981; Azimuth angle phi: 0.5236 +Force: -1.348855 -0.583643 -6.856390 +Torque: 0.160128 0.108903 -0.164487 + +Polar angle tht: 0.6981; Azimuth angle phi: 0.5672 +Force: -1.302766 -0.624224 -6.849828 +Torque: 0.172022 0.106243 -0.172138 + +Polar angle tht: 0.6981; Azimuth angle phi: 0.6109 +Force: -1.254054 -0.662988 -6.842801 +Torque: 0.183579 0.103383 -0.178478 + +Polar angle tht: 0.6981; Azimuth angle phi: 0.6545 +Force: -1.202940 -0.699837 -6.835321 +Torque: 0.194774 0.100326 -0.183461 + +Polar angle tht: 0.6981; Azimuth angle phi: 0.6981 +Force: -1.149658 -0.734683 -6.827404 +Torque: 0.205588 0.097077 -0.187047 + +Polar angle tht: 0.6981; Azimuth angle phi: 0.7418 +Force: -1.094446 -0.767448 -6.819064 +Torque: 0.215998 0.093638 -0.189210 + +Polar angle tht: 0.6981; Azimuth angle phi: 0.7854 +Force: -1.037550 -0.798060 -6.810317 +Torque: 0.225985 0.090014 -0.189933 + +Polar angle tht: 0.6981; Azimuth angle phi: 0.8290 +Force: -0.979219 -0.826458 -6.801180 +Torque: 0.235530 0.086210 -0.189210 + +Polar angle tht: 0.6981; Azimuth angle phi: 0.8727 +Force: -0.919705 -0.852592 -6.791670 +Torque: 0.244615 0.082229 -0.187047 + +Polar angle tht: 0.6981; Azimuth angle phi: 0.9163 +Force: -0.859263 -0.876419 -6.781805 +Torque: 0.253223 0.078078 -0.183461 + +Polar angle tht: 0.6981; Azimuth angle phi: 0.9599 +Force: -0.798144 -0.897908 -6.771604 +Torque: 0.261337 0.073762 -0.178478 + +Polar angle tht: 0.6981; Azimuth angle phi: 1.0036 +Force: -0.736600 -0.917035 -6.761087 +Torque: 0.268942 0.069287 -0.172138 + +Polar angle tht: 0.6981; Azimuth angle phi: 1.0472 +Force: -0.674878 -0.933787 -6.750273 +Torque: 0.276025 0.064659 -0.164487 + +Polar angle tht: 0.6981; Azimuth angle phi: 1.0908 +Force: -0.613223 -0.948160 -6.739183 +Torque: 0.282572 0.059884 -0.155584 + +Polar angle tht: 0.6981; Azimuth angle phi: 1.1345 +Force: -0.551869 -0.960160 -6.727839 +Torque: 0.288571 0.054971 -0.145497 + +Polar angle tht: 0.6981; Azimuth angle phi: 1.1781 +Force: -0.491046 -0.969800 -6.716261 +Torque: 0.294012 0.049925 -0.134303 + +Polar angle tht: 0.6981; Azimuth angle phi: 1.2217 +Force: -0.430974 -0.977104 -6.704472 +Torque: 0.298885 0.044756 -0.122086 + +Polar angle tht: 0.6981; Azimuth angle phi: 1.2654 +Force: -0.371862 -0.982101 -6.692494 +Torque: 0.303181 0.039471 -0.108941 + +Polar angle tht: 0.6981; Azimuth angle phi: 1.3090 +Force: -0.313910 -0.984831 -6.680350 +Torque: 0.306893 0.034078 -0.094966 + +Polar angle tht: 0.6981; Azimuth angle phi: 1.3526 +Force: -0.257303 -0.985339 -6.668064 +Torque: 0.310015 0.028588 -0.080269 + +Polar angle tht: 0.6981; Azimuth angle phi: 1.3963 +Force: -0.202215 -0.983678 -6.655658 +Torque: 0.312542 0.023008 -0.064961 + +Polar angle tht: 0.6981; Azimuth angle phi: 1.4399 +Force: -0.148804 -0.979907 -6.643156 +Torque: 0.314469 0.017349 -0.049158 + +Polar angle tht: 0.6981; Azimuth angle phi: 1.4835 +Force: -0.097215 -0.974091 -6.630582 +Torque: 0.315795 0.011621 -0.032981 + +Polar angle tht: 0.6981; Azimuth angle phi: 1.5272 +Force: -0.047576 -0.966300 -6.617960 +Torque: 0.316518 0.005835 -0.016554 + +Polar angle tht: 0.6981; Azimuth angle phi: 1.5708 +Force: 0.000000 -0.956609 -6.605314 +Torque: 0.316638 -0.000000 0.000000 + +Polar angle tht: 0.6981; Azimuth angle phi: 1.6144 +Force: 0.047576 -0.966300 -6.617960 +Torque: 0.316518 -0.005835 0.016554 + +Polar angle tht: 0.6981; Azimuth angle phi: 1.6581 +Force: 0.097215 -0.974091 -6.630582 +Torque: 0.315795 -0.011621 0.032981 + +Polar angle tht: 0.6981; Azimuth angle phi: 1.7017 +Force: 0.148804 -0.979907 -6.643156 +Torque: 0.314469 -0.017349 0.049158 + +Polar angle tht: 0.6981; Azimuth angle phi: 1.7453 +Force: 0.202215 -0.983678 -6.655658 +Torque: 0.312542 -0.023008 0.064961 + +Polar angle tht: 0.6981; Azimuth angle phi: 1.7890 +Force: 0.257303 -0.985339 -6.668064 +Torque: 0.310015 -0.028588 0.080269 + +Polar angle tht: 0.6981; Azimuth angle phi: 1.8326 +Force: 0.313910 -0.984831 -6.680350 +Torque: 0.306893 -0.034078 0.094966 + +Polar angle tht: 0.6981; Azimuth angle phi: 1.8762 +Force: 0.371862 -0.982101 -6.692494 +Torque: 0.303181 -0.039471 0.108941 + +Polar angle tht: 0.6981; Azimuth angle phi: 1.9199 +Force: 0.430974 -0.977104 -6.704472 +Torque: 0.298885 -0.044756 0.122086 + +Polar angle tht: 0.6981; Azimuth angle phi: 1.9635 +Force: 0.491046 -0.969800 -6.716261 +Torque: 0.294012 -0.049925 0.134303 + +Polar angle tht: 0.6981; Azimuth angle phi: 2.0071 +Force: 0.551869 -0.960160 -6.727839 +Torque: 0.288571 -0.054971 0.145497 + +Polar angle tht: 0.6981; Azimuth angle phi: 2.0508 +Force: 0.613223 -0.948160 -6.739183 +Torque: 0.282572 -0.059884 0.155584 + +Polar angle tht: 0.6981; Azimuth angle phi: 2.0944 +Force: 0.674878 -0.933787 -6.750273 +Torque: 0.276025 -0.064659 0.164487 + +Polar angle tht: 0.6981; Azimuth angle phi: 2.1380 +Force: 0.736600 -0.917035 -6.761087 +Torque: 0.268942 -0.069287 0.172138 + +Polar angle tht: 0.6981; Azimuth angle phi: 2.1817 +Force: 0.798144 -0.897908 -6.771604 +Torque: 0.261337 -0.073762 0.178478 + +Polar angle tht: 0.6981; Azimuth angle phi: 2.2253 +Force: 0.859263 -0.876419 -6.781805 +Torque: 0.253223 -0.078078 0.183461 + +Polar angle tht: 0.6981; Azimuth angle phi: 2.2689 +Force: 0.919705 -0.852592 -6.791670 +Torque: 0.244615 -0.082229 0.187047 + +Polar angle tht: 0.6981; Azimuth angle phi: 2.3126 +Force: 0.979219 -0.826458 -6.801180 +Torque: 0.235530 -0.086210 0.189210 + +Polar angle tht: 0.6981; Azimuth angle phi: 2.3562 +Force: 1.037550 -0.798060 -6.810317 +Torque: 0.225985 -0.090014 0.189933 + +Polar angle tht: 0.6981; Azimuth angle phi: 2.3998 +Force: 1.094446 -0.767448 -6.819064 +Torque: 0.215998 -0.093638 0.189210 + +Polar angle tht: 0.6981; Azimuth angle phi: 2.4435 +Force: 1.149658 -0.734683 -6.827404 +Torque: 0.205588 -0.097077 0.187047 + +Polar angle tht: 0.6981; Azimuth angle phi: 2.4871 +Force: 1.202940 -0.699837 -6.835321 +Torque: 0.194774 -0.100326 0.183461 + +Polar angle tht: 0.6981; Azimuth angle phi: 2.5307 +Force: 1.254054 -0.662988 -6.842801 +Torque: 0.183579 -0.103383 0.178478 + +Polar angle tht: 0.6981; Azimuth angle phi: 2.5744 +Force: 1.302766 -0.624224 -6.849828 +Torque: 0.172022 -0.106243 0.172138 + +Polar angle tht: 0.6981; Azimuth angle phi: 2.6180 +Force: 1.348855 -0.583643 -6.856390 +Torque: 0.160128 -0.108903 0.164487 + +Polar angle tht: 0.6981; Azimuth angle phi: 2.6616 +Force: 1.392106 -0.541350 -6.862474 +Torque: 0.147918 -0.111360 0.155584 + +Polar angle tht: 0.6981; Azimuth angle phi: 2.7053 +Force: 1.432319 -0.497458 -6.868069 +Torque: 0.135417 -0.113613 0.145497 + +Polar angle tht: 0.6981; Azimuth angle phi: 2.7489 +Force: 1.469304 -0.452087 -6.873163 +Torque: 0.122649 -0.115657 0.134303 + +Polar angle tht: 0.6981; Azimuth angle phi: 2.7925 +Force: 1.502887 -0.405365 -6.877748 +Torque: 0.109639 -0.117492 0.122086 + +Polar angle tht: 0.6981; Azimuth angle phi: 2.8362 +Force: 1.532909 -0.357425 -6.881813 +Torque: 0.096413 -0.119115 0.108941 + +Polar angle tht: 0.6981; Azimuth angle phi: 2.8798 +Force: 1.559226 -0.308406 -6.885353 +Torque: 0.082996 -0.120525 0.094966 + +Polar angle tht: 0.6981; Azimuth angle phi: 2.9234 +Force: 1.581713 -0.258453 -6.888360 +Torque: 0.069416 -0.121720 0.080269 + +Polar angle tht: 0.6981; Azimuth angle phi: 2.9671 +Force: 1.600261 -0.207715 -6.890827 +Torque: 0.055698 -0.122700 0.064961 + +Polar angle tht: 0.6981; Azimuth angle phi: 3.0107 +Force: 1.614781 -0.156344 -6.892751 +Torque: 0.041870 -0.123462 0.049158 + +Polar angle tht: 0.6981; Azimuth angle phi: 3.0543 +Force: 1.625204 -0.104496 -6.894128 +Torque: 0.027959 -0.124008 0.032981 + +Polar angle tht: 0.6981; Azimuth angle phi: 3.0980 +Force: 1.631477 -0.052328 -6.894956 +Torque: 0.013994 -0.124335 0.016554 + +Polar angle tht: 0.6981; Azimuth angle phi: 3.1416 +Force: 1.633572 0.000000 -6.895232 +Torque: -0.000000 -0.124444 -0.000000 + +Polar angle tht: 0.6981; Azimuth angle phi: 3.1852 +Force: 1.631477 0.052328 -6.894956 +Torque: -0.013994 -0.124335 -0.016554 + +Polar angle tht: 0.6981; Azimuth angle phi: 3.2289 +Force: 1.625204 0.104496 -6.894128 +Torque: -0.027959 -0.124008 -0.032981 + +Polar angle tht: 0.6981; Azimuth angle phi: 3.2725 +Force: 1.614781 0.156344 -6.892751 +Torque: -0.041870 -0.123462 -0.049158 + +Polar angle tht: 0.6981; Azimuth angle phi: 3.3161 +Force: 1.600261 0.207715 -6.890827 +Torque: -0.055698 -0.122700 -0.064961 + +Polar angle tht: 0.6981; Azimuth angle phi: 3.3598 +Force: 1.581713 0.258453 -6.888360 +Torque: -0.069416 -0.121720 -0.080269 + +Polar angle tht: 0.6981; Azimuth angle phi: 3.4034 +Force: 1.559226 0.308406 -6.885353 +Torque: -0.082996 -0.120525 -0.094966 + +Polar angle tht: 0.6981; Azimuth angle phi: 3.4470 +Force: 1.532909 0.357425 -6.881813 +Torque: -0.096413 -0.119115 -0.108941 + +Polar angle tht: 0.6981; Azimuth angle phi: 3.4907 +Force: 1.502887 0.405365 -6.877748 +Torque: -0.109639 -0.117492 -0.122086 + +Polar angle tht: 0.6981; Azimuth angle phi: 3.5343 +Force: 1.469304 0.452087 -6.873163 +Torque: -0.122649 -0.115657 -0.134303 + +Polar angle tht: 0.6981; Azimuth angle phi: 3.5779 +Force: 1.432319 0.497458 -6.868069 +Torque: -0.135417 -0.113613 -0.145497 + +Polar angle tht: 0.6981; Azimuth angle phi: 3.6216 +Force: 1.392106 0.541350 -6.862474 +Torque: -0.147918 -0.111360 -0.155584 + +Polar angle tht: 0.6981; Azimuth angle phi: 3.6652 +Force: 1.348855 0.583643 -6.856390 +Torque: -0.160128 -0.108903 -0.164487 + +Polar angle tht: 0.6981; Azimuth angle phi: 3.7088 +Force: 1.302766 0.624224 -6.849828 +Torque: -0.172022 -0.106243 -0.172138 + +Polar angle tht: 0.6981; Azimuth angle phi: 3.7525 +Force: 1.254054 0.662988 -6.842801 +Torque: -0.183579 -0.103383 -0.178478 + +Polar angle tht: 0.6981; Azimuth angle phi: 3.7961 +Force: 1.202940 0.699837 -6.835321 +Torque: -0.194774 -0.100326 -0.183461 + +Polar angle tht: 0.6981; Azimuth angle phi: 3.8397 +Force: 1.149658 0.734683 -6.827404 +Torque: -0.205588 -0.097077 -0.187047 + +Polar angle tht: 0.6981; Azimuth angle phi: 3.8834 +Force: 1.094446 0.767448 -6.819064 +Torque: -0.215998 -0.093638 -0.189210 + +Polar angle tht: 0.6981; Azimuth angle phi: 3.9270 +Force: 1.037550 0.798060 -6.810317 +Torque: -0.225985 -0.090014 -0.189933 + +Polar angle tht: 0.6981; Azimuth angle phi: 3.9706 +Force: 0.979219 0.826458 -6.801180 +Torque: -0.235530 -0.086210 -0.189210 + +Polar angle tht: 0.6981; Azimuth angle phi: 4.0143 +Force: 0.919705 0.852592 -6.791670 +Torque: -0.244615 -0.082229 -0.187047 + +Polar angle tht: 0.6981; Azimuth angle phi: 4.0579 +Force: 0.859263 0.876419 -6.781805 +Torque: -0.253223 -0.078078 -0.183461 + +Polar angle tht: 0.6981; Azimuth angle phi: 4.1015 +Force: 0.798144 0.897908 -6.771604 +Torque: -0.261337 -0.073762 -0.178478 + +Polar angle tht: 0.6981; Azimuth angle phi: 4.1452 +Force: 0.736600 0.917035 -6.761087 +Torque: -0.268942 -0.069287 -0.172138 + +Polar angle tht: 0.6981; Azimuth angle phi: 4.1888 +Force: 0.674878 0.933787 -6.750273 +Torque: -0.276025 -0.064659 -0.164487 + +Polar angle tht: 0.6981; Azimuth angle phi: 4.2324 +Force: 0.613223 0.948160 -6.739183 +Torque: -0.282572 -0.059884 -0.155584 + +Polar angle tht: 0.6981; Azimuth angle phi: 4.2761 +Force: 0.551869 0.960160 -6.727839 +Torque: -0.288571 -0.054971 -0.145497 + +Polar angle tht: 0.6981; Azimuth angle phi: 4.3197 +Force: 0.491046 0.969800 -6.716261 +Torque: -0.294012 -0.049925 -0.134303 + +Polar angle tht: 0.6981; Azimuth angle phi: 4.3633 +Force: 0.430974 0.977104 -6.704472 +Torque: -0.298885 -0.044756 -0.122086 + +Polar angle tht: 0.6981; Azimuth angle phi: 4.4070 +Force: 0.371862 0.982101 -6.692494 +Torque: -0.303181 -0.039471 -0.108941 + +Polar angle tht: 0.6981; Azimuth angle phi: 4.4506 +Force: 0.313910 0.984831 -6.680350 +Torque: -0.306893 -0.034078 -0.094966 + +Polar angle tht: 0.6981; Azimuth angle phi: 4.4942 +Force: 0.257303 0.985339 -6.668064 +Torque: -0.310015 -0.028588 -0.080269 + +Polar angle tht: 0.6981; Azimuth angle phi: 4.5379 +Force: 0.202215 0.983678 -6.655658 +Torque: -0.312542 -0.023008 -0.064961 + +Polar angle tht: 0.6981; Azimuth angle phi: 4.5815 +Force: 0.148804 0.979907 -6.643156 +Torque: -0.314469 -0.017349 -0.049158 + +Polar angle tht: 0.6981; Azimuth angle phi: 4.6251 +Force: 0.097215 0.974091 -6.630582 +Torque: -0.315795 -0.011621 -0.032981 + +Polar angle tht: 0.6981; Azimuth angle phi: 4.6688 +Force: 0.047576 0.966300 -6.617960 +Torque: -0.316518 -0.005835 -0.016554 + +Polar angle tht: 0.6981; Azimuth angle phi: 4.7124 +Force: 0.000000 0.956609 -6.605314 +Torque: -0.316638 -0.000000 -0.000000 + +Polar angle tht: 0.6981; Azimuth angle phi: 4.7560 +Force: -0.047576 0.966300 -6.617960 +Torque: -0.316518 0.005835 0.016554 + +Polar angle tht: 0.6981; Azimuth angle phi: 4.7997 +Force: -0.097215 0.974091 -6.630582 +Torque: -0.315795 0.011621 0.032981 + +Polar angle tht: 0.6981; Azimuth angle phi: 4.8433 +Force: -0.148804 0.979907 -6.643156 +Torque: -0.314469 0.017349 0.049158 + +Polar angle tht: 0.6981; Azimuth angle phi: 4.8869 +Force: -0.202215 0.983678 -6.655658 +Torque: -0.312542 0.023008 0.064961 + +Polar angle tht: 0.6981; Azimuth angle phi: 4.9306 +Force: -0.257303 0.985339 -6.668064 +Torque: -0.310015 0.028588 0.080269 + +Polar angle tht: 0.6981; Azimuth angle phi: 4.9742 +Force: -0.313910 0.984831 -6.680350 +Torque: -0.306893 0.034078 0.094966 + +Polar angle tht: 0.6981; Azimuth angle phi: 5.0178 +Force: -0.371862 0.982101 -6.692494 +Torque: -0.303181 0.039471 0.108941 + +Polar angle tht: 0.6981; Azimuth angle phi: 5.0615 +Force: -0.430974 0.977104 -6.704472 +Torque: -0.298885 0.044756 0.122086 + +Polar angle tht: 0.6981; Azimuth angle phi: 5.1051 +Force: -0.491046 0.969800 -6.716261 +Torque: -0.294012 0.049925 0.134303 + +Polar angle tht: 0.6981; Azimuth angle phi: 5.1487 +Force: -0.551869 0.960160 -6.727839 +Torque: -0.288571 0.054971 0.145497 + +Polar angle tht: 0.6981; Azimuth angle phi: 5.1924 +Force: -0.613223 0.948160 -6.739183 +Torque: -0.282572 0.059884 0.155584 + +Polar angle tht: 0.6981; Azimuth angle phi: 5.2360 +Force: -0.674878 0.933787 -6.750273 +Torque: -0.276025 0.064659 0.164487 + +Polar angle tht: 0.6981; Azimuth angle phi: 5.2796 +Force: -0.736600 0.917035 -6.761087 +Torque: -0.268942 0.069287 0.172138 + +Polar angle tht: 0.6981; Azimuth angle phi: 5.3233 +Force: -0.798144 0.897908 -6.771604 +Torque: -0.261337 0.073762 0.178478 + +Polar angle tht: 0.6981; Azimuth angle phi: 5.3669 +Force: -0.859263 0.876419 -6.781805 +Torque: -0.253223 0.078078 0.183461 + +Polar angle tht: 0.6981; Azimuth angle phi: 5.4105 +Force: -0.919705 0.852592 -6.791670 +Torque: -0.244615 0.082229 0.187047 + +Polar angle tht: 0.6981; Azimuth angle phi: 5.4542 +Force: -0.979219 0.826458 -6.801180 +Torque: -0.235530 0.086210 0.189210 + +Polar angle tht: 0.6981; Azimuth angle phi: 5.4978 +Force: -1.037550 0.798060 -6.810317 +Torque: -0.225985 0.090014 0.189933 + +Polar angle tht: 0.6981; Azimuth angle phi: 5.5414 +Force: -1.094446 0.767448 -6.819064 +Torque: -0.215998 0.093638 0.189210 + +Polar angle tht: 0.6981; Azimuth angle phi: 5.5851 +Force: -1.149658 0.734683 -6.827404 +Torque: -0.205588 0.097077 0.187047 + +Polar angle tht: 0.6981; Azimuth angle phi: 5.6287 +Force: -1.202940 0.699837 -6.835321 +Torque: -0.194774 0.100326 0.183461 + +Polar angle tht: 0.6981; Azimuth angle phi: 5.6723 +Force: -1.254054 0.662988 -6.842801 +Torque: -0.183579 0.103383 0.178478 + +Polar angle tht: 0.6981; Azimuth angle phi: 5.7160 +Force: -1.302766 0.624224 -6.849828 +Torque: -0.172022 0.106243 0.172138 + +Polar angle tht: 0.6981; Azimuth angle phi: 5.7596 +Force: -1.348855 0.583643 -6.856390 +Torque: -0.160128 0.108903 0.164487 + +Polar angle tht: 0.6981; Azimuth angle phi: 5.8032 +Force: -1.392106 0.541350 -6.862474 +Torque: -0.147918 0.111360 0.155584 + +Polar angle tht: 0.6981; Azimuth angle phi: 5.8469 +Force: -1.432319 0.497458 -6.868069 +Torque: -0.135417 0.113613 0.145497 + +Polar angle tht: 0.6981; Azimuth angle phi: 5.8905 +Force: -1.469304 0.452087 -6.873163 +Torque: -0.122649 0.115657 0.134303 + +Polar angle tht: 0.6981; Azimuth angle phi: 5.9341 +Force: -1.502887 0.405365 -6.877748 +Torque: -0.109639 0.117492 0.122086 + +Polar angle tht: 0.6981; Azimuth angle phi: 5.9778 +Force: -1.532909 0.357425 -6.881813 +Torque: -0.096413 0.119115 0.108941 + +Polar angle tht: 0.6981; Azimuth angle phi: 6.0214 +Force: -1.559226 0.308406 -6.885353 +Torque: -0.082996 0.120525 0.094966 + +Polar angle tht: 0.6981; Azimuth angle phi: 6.0650 +Force: -1.581713 0.258453 -6.888360 +Torque: -0.069416 0.121720 0.080269 + +Polar angle tht: 0.6981; Azimuth angle phi: 6.1087 +Force: -1.600261 0.207715 -6.890827 +Torque: -0.055698 0.122700 0.064961 + +Polar angle tht: 0.6981; Azimuth angle phi: 6.1523 +Force: -1.614781 0.156344 -6.892751 +Torque: -0.041870 0.123462 0.049158 + +Polar angle tht: 0.6981; Azimuth angle phi: 6.1959 +Force: -1.625204 0.104496 -6.894128 +Torque: -0.027959 0.124008 0.032981 + +Polar angle tht: 0.6981; Azimuth angle phi: 6.2396 +Force: -1.631477 0.052328 -6.894956 +Torque: -0.013994 0.124335 0.016554 + +Polar angle tht: 0.6981; Azimuth angle phi: 6.2832 +Force: -1.633572 0.000000 -6.895232 +Torque: -0.000000 0.124444 0.000000 + +Polar angle tht: 0.7418; Azimuth angle phi: 0.0000 +Force: -1.709624 0.000000 -6.434215 +Torque: -0.000000 0.124902 0.000000 + +Polar angle tht: 0.7418; Azimuth angle phi: 0.0436 +Force: -1.707401 -0.053920 -6.433935 +Torque: 0.014172 0.124793 -0.018286 + +Polar angle tht: 0.7418; Azimuth angle phi: 0.0873 +Force: -1.700742 -0.107670 -6.433099 +Torque: 0.028317 0.124467 -0.036434 + +Polar angle tht: 0.7418; Azimuth angle phi: 0.1309 +Force: -1.689680 -0.161083 -6.431706 +Torque: 0.042405 0.123924 -0.054304 + +Polar angle tht: 0.7418; Azimuth angle phi: 0.1745 +Force: -1.674270 -0.213990 -6.429759 +Torque: 0.056408 0.123165 -0.071760 + +Polar angle tht: 0.7418; Azimuth angle phi: 0.2182 +Force: -1.654588 -0.266228 -6.427263 +Torque: 0.070300 0.122190 -0.088671 + +Polar angle tht: 0.7418; Azimuth angle phi: 0.2618 +Force: -1.630732 -0.317634 -6.424222 +Torque: 0.084053 0.121000 -0.104906 + +Polar angle tht: 0.7418; Azimuth angle phi: 0.3054 +Force: -1.602820 -0.368053 -6.420641 +Torque: 0.097639 0.119596 -0.120344 + +Polar angle tht: 0.7418; Azimuth angle phi: 0.3491 +Force: -1.570987 -0.417332 -6.416528 +Torque: 0.111032 0.117979 -0.134865 + +Polar angle tht: 0.7418; Azimuth angle phi: 0.3927 +Force: -1.535390 -0.465322 -6.411891 +Torque: 0.124204 0.116151 -0.148360 + +Polar angle tht: 0.7418; Azimuth angle phi: 0.4363 +Force: -1.496201 -0.511885 -6.406737 +Torque: 0.137132 0.114114 -0.160726 + +Polar angle tht: 0.7418; Azimuth angle phi: 0.4800 +Force: -1.453612 -0.556887 -6.401078 +Torque: 0.149787 0.111868 -0.171868 + +Polar angle tht: 0.7418; Azimuth angle phi: 0.5236 +Force: -1.407825 -0.600199 -6.394924 +Torque: 0.162148 0.109417 -0.181703 + +Polar angle tht: 0.7418; Azimuth angle phi: 0.5672 +Force: -1.359061 -0.641706 -6.388286 +Torque: 0.174187 0.106763 -0.190155 + +Polar angle tht: 0.7418; Azimuth angle phi: 0.6109 +Force: -1.307551 -0.681296 -6.381177 +Torque: 0.185884 0.103909 -0.197159 + +Polar angle tht: 0.7418; Azimuth angle phi: 0.6545 +Force: -1.253537 -0.718868 -6.373611 +Torque: 0.197214 0.100856 -0.202663 + +Polar angle tht: 0.7418; Azimuth angle phi: 0.6981 +Force: -1.197270 -0.754331 -6.365602 +Torque: 0.208156 0.097610 -0.206625 + +Polar angle tht: 0.7418; Azimuth angle phi: 0.7418 +Force: -1.139010 -0.787603 -6.357166 +Torque: 0.218689 0.094173 -0.209014 + +Polar angle tht: 0.7418; Azimuth angle phi: 0.7854 +Force: -1.079022 -0.818612 -6.348318 +Torque: 0.228793 0.090549 -0.209813 + +Polar angle tht: 0.7418; Azimuth angle phi: 0.8290 +Force: -1.017578 -0.847296 -6.339075 +Torque: 0.238447 0.086742 -0.209014 + +Polar angle tht: 0.7418; Azimuth angle phi: 0.8727 +Force: -0.954949 -0.873603 -6.329455 +Torque: 0.247635 0.082758 -0.206625 + +Polar angle tht: 0.7418; Azimuth angle phi: 0.9163 +Force: -0.891410 -0.897492 -6.319476 +Torque: 0.256339 0.078600 -0.202663 + +Polar angle tht: 0.7418; Azimuth angle phi: 0.9599 +Force: -0.827234 -0.918932 -6.309157 +Torque: 0.264541 0.074274 -0.197159 + +Polar angle tht: 0.7418; Azimuth angle phi: 1.0036 +Force: -0.762692 -0.937902 -6.298519 +Torque: 0.272228 0.069786 -0.190155 + +Polar angle tht: 0.7418; Azimuth angle phi: 1.0472 +Force: -0.698052 -0.954391 -6.287580 +Torque: 0.279385 0.065143 -0.181703 + +Polar angle tht: 0.7418; Azimuth angle phi: 1.0908 +Force: -0.633574 -0.968400 -6.276362 +Torque: 0.285998 0.060349 -0.171868 + +Polar angle tht: 0.7418; Azimuth angle phi: 1.1345 +Force: -0.569513 -0.979937 -6.264886 +Torque: 0.292057 0.055413 -0.160726 + +Polar angle tht: 0.7418; Azimuth angle phi: 1.1781 +Force: -0.508860 -0.997366 -6.259564 +Torque: 0.292993 0.050454 -0.146549 + +Polar angle tht: 0.7418; Azimuth angle phi: 1.2217 +Force: -0.451518 -1.022940 -6.261806 +Torque: 0.287791 0.045466 -0.129653 + +Polar angle tht: 0.7418; Azimuth angle phi: 1.2654 +Force: -0.393435 -1.044434 -6.262233 +Torque: 0.283145 0.040282 -0.112960 + +Polar angle tht: 0.7418; Azimuth angle phi: 1.3090 +Force: -0.335018 -1.061698 -6.260852 +Torque: 0.279067 0.034918 -0.096451 + +Polar angle tht: 0.7418; Azimuth angle phi: 1.3526 +Force: -0.276671 -1.074612 -6.257672 +Torque: 0.275566 0.029392 -0.080109 + +Polar angle tht: 0.7418; Azimuth angle phi: 1.3963 +Force: -0.218801 -1.083088 -6.252706 +Torque: 0.272652 0.023722 -0.063909 + +Polar angle tht: 0.7418; Azimuth angle phi: 1.4399 +Force: -0.161810 -1.087070 -6.245967 +Torque: 0.270332 0.017928 -0.047826 + +Polar angle tht: 0.7418; Azimuth angle phi: 1.4835 +Force: -0.106092 -1.086534 -6.237473 +Torque: 0.268612 0.012029 -0.031834 + +Polar angle tht: 0.7418; Azimuth angle phi: 1.5272 +Force: -0.052031 -1.081489 -6.227242 +Torque: 0.267496 0.006046 -0.015902 + +Polar angle tht: 0.7418; Azimuth angle phi: 1.5708 +Force: 0.000000 -1.071976 -6.215296 +Torque: 0.266990 -0.000000 0.000000 + +Polar angle tht: 0.7418; Azimuth angle phi: 1.6144 +Force: 0.052031 -1.081489 -6.227242 +Torque: 0.267496 -0.006046 0.015902 + +Polar angle tht: 0.7418; Azimuth angle phi: 1.6581 +Force: 0.106092 -1.086534 -6.237473 +Torque: 0.268612 -0.012029 0.031834 + +Polar angle tht: 0.7418; Azimuth angle phi: 1.7017 +Force: 0.161810 -1.087070 -6.245967 +Torque: 0.270332 -0.017928 0.047826 + +Polar angle tht: 0.7418; Azimuth angle phi: 1.7453 +Force: 0.218801 -1.083088 -6.252706 +Torque: 0.272652 -0.023722 0.063909 + +Polar angle tht: 0.7418; Azimuth angle phi: 1.7890 +Force: 0.276671 -1.074612 -6.257672 +Torque: 0.275566 -0.029392 0.080109 + +Polar angle tht: 0.7418; Azimuth angle phi: 1.8326 +Force: 0.335018 -1.061698 -6.260852 +Torque: 0.279067 -0.034918 0.096451 + +Polar angle tht: 0.7418; Azimuth angle phi: 1.8762 +Force: 0.393435 -1.044434 -6.262233 +Torque: 0.283145 -0.040282 0.112960 + +Polar angle tht: 0.7418; Azimuth angle phi: 1.9199 +Force: 0.451518 -1.022940 -6.261806 +Torque: 0.287791 -0.045466 0.129653 + +Polar angle tht: 0.7418; Azimuth angle phi: 1.9635 +Force: 0.508860 -0.997366 -6.259564 +Torque: 0.292993 -0.050454 0.146549 + +Polar angle tht: 0.7418; Azimuth angle phi: 2.0071 +Force: 0.569513 -0.979937 -6.264886 +Torque: 0.292057 -0.055413 0.160726 + +Polar angle tht: 0.7418; Azimuth angle phi: 2.0508 +Force: 0.633574 -0.968400 -6.276362 +Torque: 0.285998 -0.060349 0.171868 + +Polar angle tht: 0.7418; Azimuth angle phi: 2.0944 +Force: 0.698052 -0.954391 -6.287580 +Torque: 0.279385 -0.065143 0.181703 + +Polar angle tht: 0.7418; Azimuth angle phi: 2.1380 +Force: 0.762692 -0.937902 -6.298519 +Torque: 0.272228 -0.069786 0.190155 + +Polar angle tht: 0.7418; Azimuth angle phi: 2.1817 +Force: 0.827234 -0.918932 -6.309157 +Torque: 0.264541 -0.074274 0.197159 + +Polar angle tht: 0.7418; Azimuth angle phi: 2.2253 +Force: 0.891410 -0.897492 -6.319476 +Torque: 0.256339 -0.078600 0.202663 + +Polar angle tht: 0.7418; Azimuth angle phi: 2.2689 +Force: 0.954949 -0.873603 -6.329455 +Torque: 0.247635 -0.082758 0.206625 + +Polar angle tht: 0.7418; Azimuth angle phi: 2.3126 +Force: 1.017578 -0.847296 -6.339075 +Torque: 0.238447 -0.086742 0.209014 + +Polar angle tht: 0.7418; Azimuth angle phi: 2.3562 +Force: 1.079022 -0.818612 -6.348318 +Torque: 0.228793 -0.090549 0.209813 + +Polar angle tht: 0.7418; Azimuth angle phi: 2.3998 +Force: 1.139010 -0.787603 -6.357166 +Torque: 0.218689 -0.094173 0.209014 + +Polar angle tht: 0.7418; Azimuth angle phi: 2.4435 +Force: 1.197270 -0.754331 -6.365602 +Torque: 0.208156 -0.097610 0.206625 + +Polar angle tht: 0.7418; Azimuth angle phi: 2.4871 +Force: 1.253537 -0.718868 -6.373611 +Torque: 0.197214 -0.100856 0.202663 + +Polar angle tht: 0.7418; Azimuth angle phi: 2.5307 +Force: 1.307551 -0.681296 -6.381177 +Torque: 0.185884 -0.103909 0.197159 + +Polar angle tht: 0.7418; Azimuth angle phi: 2.5744 +Force: 1.359061 -0.641706 -6.388286 +Torque: 0.174187 -0.106763 0.190155 + +Polar angle tht: 0.7418; Azimuth angle phi: 2.6180 +Force: 1.407825 -0.600199 -6.394924 +Torque: 0.162148 -0.109417 0.181703 + +Polar angle tht: 0.7418; Azimuth angle phi: 2.6616 +Force: 1.453612 -0.556887 -6.401078 +Torque: 0.149787 -0.111868 0.171868 + +Polar angle tht: 0.7418; Azimuth angle phi: 2.7053 +Force: 1.496201 -0.511885 -6.406737 +Torque: 0.137132 -0.114114 0.160726 + +Polar angle tht: 0.7418; Azimuth angle phi: 2.7489 +Force: 1.535390 -0.465322 -6.411891 +Torque: 0.124204 -0.116151 0.148360 + +Polar angle tht: 0.7418; Azimuth angle phi: 2.7925 +Force: 1.570987 -0.417332 -6.416528 +Torque: 0.111032 -0.117979 0.134865 + +Polar angle tht: 0.7418; Azimuth angle phi: 2.8362 +Force: 1.602820 -0.368053 -6.420641 +Torque: 0.097639 -0.119596 0.120344 + +Polar angle tht: 0.7418; Azimuth angle phi: 2.8798 +Force: 1.630732 -0.317634 -6.424222 +Torque: 0.084053 -0.121000 0.104906 + +Polar angle tht: 0.7418; Azimuth angle phi: 2.9234 +Force: 1.654588 -0.266228 -6.427263 +Torque: 0.070300 -0.122190 0.088671 + +Polar angle tht: 0.7418; Azimuth angle phi: 2.9671 +Force: 1.674270 -0.213990 -6.429759 +Torque: 0.056408 -0.123165 0.071760 + +Polar angle tht: 0.7418; Azimuth angle phi: 3.0107 +Force: 1.689680 -0.161083 -6.431706 +Torque: 0.042405 -0.123924 0.054304 + +Polar angle tht: 0.7418; Azimuth angle phi: 3.0543 +Force: 1.700742 -0.107670 -6.433099 +Torque: 0.028317 -0.124467 0.036434 + +Polar angle tht: 0.7418; Azimuth angle phi: 3.0980 +Force: 1.707401 -0.053920 -6.433935 +Torque: 0.014172 -0.124793 0.018286 + +Polar angle tht: 0.7418; Azimuth angle phi: 3.1416 +Force: 1.709624 0.000000 -6.434215 +Torque: -0.000000 -0.124902 -0.000000 + +Polar angle tht: 0.7418; Azimuth angle phi: 3.1852 +Force: 1.707401 0.053920 -6.433935 +Torque: -0.014172 -0.124793 -0.018286 + +Polar angle tht: 0.7418; Azimuth angle phi: 3.2289 +Force: 1.700742 0.107670 -6.433099 +Torque: -0.028317 -0.124467 -0.036434 + +Polar angle tht: 0.7418; Azimuth angle phi: 3.2725 +Force: 1.689680 0.161083 -6.431706 +Torque: -0.042405 -0.123924 -0.054304 + +Polar angle tht: 0.7418; Azimuth angle phi: 3.3161 +Force: 1.674270 0.213990 -6.429759 +Torque: -0.056408 -0.123165 -0.071760 + +Polar angle tht: 0.7418; Azimuth angle phi: 3.3598 +Force: 1.654588 0.266228 -6.427263 +Torque: -0.070300 -0.122190 -0.088671 + +Polar angle tht: 0.7418; Azimuth angle phi: 3.4034 +Force: 1.630732 0.317634 -6.424222 +Torque: -0.084053 -0.121000 -0.104906 + +Polar angle tht: 0.7418; Azimuth angle phi: 3.4470 +Force: 1.602820 0.368053 -6.420641 +Torque: -0.097639 -0.119596 -0.120344 + +Polar angle tht: 0.7418; Azimuth angle phi: 3.4907 +Force: 1.570987 0.417332 -6.416528 +Torque: -0.111032 -0.117979 -0.134865 + +Polar angle tht: 0.7418; Azimuth angle phi: 3.5343 +Force: 1.535390 0.465322 -6.411891 +Torque: -0.124204 -0.116151 -0.148360 + +Polar angle tht: 0.7418; Azimuth angle phi: 3.5779 +Force: 1.496201 0.511885 -6.406737 +Torque: -0.137132 -0.114114 -0.160726 + +Polar angle tht: 0.7418; Azimuth angle phi: 3.6216 +Force: 1.453612 0.556887 -6.401078 +Torque: -0.149787 -0.111868 -0.171868 + +Polar angle tht: 0.7418; Azimuth angle phi: 3.6652 +Force: 1.407825 0.600199 -6.394924 +Torque: -0.162148 -0.109417 -0.181703 + +Polar angle tht: 0.7418; Azimuth angle phi: 3.7088 +Force: 1.359061 0.641706 -6.388286 +Torque: -0.174187 -0.106763 -0.190155 + +Polar angle tht: 0.7418; Azimuth angle phi: 3.7525 +Force: 1.307551 0.681296 -6.381177 +Torque: -0.185884 -0.103909 -0.197159 + +Polar angle tht: 0.7418; Azimuth angle phi: 3.7961 +Force: 1.253537 0.718868 -6.373611 +Torque: -0.197214 -0.100856 -0.202663 + +Polar angle tht: 0.7418; Azimuth angle phi: 3.8397 +Force: 1.197270 0.754331 -6.365602 +Torque: -0.208156 -0.097610 -0.206625 + +Polar angle tht: 0.7418; Azimuth angle phi: 3.8834 +Force: 1.139010 0.787603 -6.357166 +Torque: -0.218689 -0.094173 -0.209014 + +Polar angle tht: 0.7418; Azimuth angle phi: 3.9270 +Force: 1.079022 0.818612 -6.348318 +Torque: -0.228793 -0.090549 -0.209813 + +Polar angle tht: 0.7418; Azimuth angle phi: 3.9706 +Force: 1.017578 0.847296 -6.339075 +Torque: -0.238447 -0.086742 -0.209014 + +Polar angle tht: 0.7418; Azimuth angle phi: 4.0143 +Force: 0.954949 0.873603 -6.329455 +Torque: -0.247635 -0.082758 -0.206625 + +Polar angle tht: 0.7418; Azimuth angle phi: 4.0579 +Force: 0.891410 0.897492 -6.319476 +Torque: -0.256339 -0.078600 -0.202663 + +Polar angle tht: 0.7418; Azimuth angle phi: 4.1015 +Force: 0.827234 0.918932 -6.309157 +Torque: -0.264541 -0.074274 -0.197159 + +Polar angle tht: 0.7418; Azimuth angle phi: 4.1452 +Force: 0.762692 0.937902 -6.298519 +Torque: -0.272228 -0.069786 -0.190155 + +Polar angle tht: 0.7418; Azimuth angle phi: 4.1888 +Force: 0.698052 0.954391 -6.287580 +Torque: -0.279385 -0.065143 -0.181703 + +Polar angle tht: 0.7418; Azimuth angle phi: 4.2324 +Force: 0.633574 0.968400 -6.276362 +Torque: -0.285998 -0.060349 -0.171868 + +Polar angle tht: 0.7418; Azimuth angle phi: 4.2761 +Force: 0.569513 0.979937 -6.264886 +Torque: -0.292057 -0.055413 -0.160726 + +Polar angle tht: 0.7418; Azimuth angle phi: 4.3197 +Force: 0.508860 0.997366 -6.259564 +Torque: -0.292993 -0.050454 -0.146549 + +Polar angle tht: 0.7418; Azimuth angle phi: 4.3633 +Force: 0.451518 1.022940 -6.261806 +Torque: -0.287790 -0.045466 -0.129653 + +Polar angle tht: 0.7418; Azimuth angle phi: 4.4070 +Force: 0.393435 1.044434 -6.262233 +Torque: -0.283144 -0.040282 -0.112959 + +Polar angle tht: 0.7418; Azimuth angle phi: 4.4506 +Force: 0.335018 1.061698 -6.260852 +Torque: -0.279066 -0.034918 -0.096451 + +Polar angle tht: 0.7418; Azimuth angle phi: 4.4942 +Force: 0.276671 1.074612 -6.257672 +Torque: -0.275565 -0.029392 -0.080109 + +Polar angle tht: 0.7418; Azimuth angle phi: 4.5379 +Force: 0.218801 1.083088 -6.252706 +Torque: -0.272651 -0.023722 -0.063909 + +Polar angle tht: 0.7418; Azimuth angle phi: 4.5815 +Force: 0.161810 1.087070 -6.245967 +Torque: -0.270330 -0.017928 -0.047826 + +Polar angle tht: 0.7418; Azimuth angle phi: 4.6251 +Force: 0.106092 1.086534 -6.237473 +Torque: -0.268610 -0.012029 -0.031834 + +Polar angle tht: 0.7418; Azimuth angle phi: 4.6688 +Force: 0.052031 1.081489 -6.227242 +Torque: -0.267495 -0.006046 -0.015901 + +Polar angle tht: 0.7418; Azimuth angle phi: 4.7124 +Force: 0.000000 1.071976 -6.215296 +Torque: -0.266988 -0.000000 -0.000000 + +Polar angle tht: 0.7418; Azimuth angle phi: 4.7560 +Force: -0.052031 1.081489 -6.227242 +Torque: -0.267495 0.006046 0.015901 + +Polar angle tht: 0.7418; Azimuth angle phi: 4.7997 +Force: -0.106092 1.086534 -6.237473 +Torque: -0.268610 0.012029 0.031834 + +Polar angle tht: 0.7418; Azimuth angle phi: 4.8433 +Force: -0.161810 1.087070 -6.245967 +Torque: -0.270330 0.017928 0.047826 + +Polar angle tht: 0.7418; Azimuth angle phi: 4.8869 +Force: -0.218801 1.083088 -6.252706 +Torque: -0.272651 0.023722 0.063909 + +Polar angle tht: 0.7418; Azimuth angle phi: 4.9306 +Force: -0.276671 1.074612 -6.257672 +Torque: -0.275565 0.029392 0.080109 + +Polar angle tht: 0.7418; Azimuth angle phi: 4.9742 +Force: -0.335018 1.061698 -6.260852 +Torque: -0.279066 0.034918 0.096451 + +Polar angle tht: 0.7418; Azimuth angle phi: 5.0178 +Force: -0.393435 1.044434 -6.262233 +Torque: -0.283144 0.040282 0.112959 + +Polar angle tht: 0.7418; Azimuth angle phi: 5.0615 +Force: -0.451518 1.022940 -6.261806 +Torque: -0.287790 0.045466 0.129653 + +Polar angle tht: 0.7418; Azimuth angle phi: 5.1051 +Force: -0.508860 0.997366 -6.259564 +Torque: -0.292993 0.050454 0.146549 + +Polar angle tht: 0.7418; Azimuth angle phi: 5.1487 +Force: -0.569513 0.979937 -6.264886 +Torque: -0.292057 0.055413 0.160726 + +Polar angle tht: 0.7418; Azimuth angle phi: 5.1924 +Force: -0.633574 0.968400 -6.276362 +Torque: -0.285998 0.060349 0.171868 + +Polar angle tht: 0.7418; Azimuth angle phi: 5.2360 +Force: -0.698052 0.954391 -6.287580 +Torque: -0.279385 0.065143 0.181703 + +Polar angle tht: 0.7418; Azimuth angle phi: 5.2796 +Force: -0.762692 0.937902 -6.298519 +Torque: -0.272228 0.069786 0.190155 + +Polar angle tht: 0.7418; Azimuth angle phi: 5.3233 +Force: -0.827234 0.918932 -6.309157 +Torque: -0.264541 0.074274 0.197159 + +Polar angle tht: 0.7418; Azimuth angle phi: 5.3669 +Force: -0.891410 0.897492 -6.319476 +Torque: -0.256339 0.078600 0.202663 + +Polar angle tht: 0.7418; Azimuth angle phi: 5.4105 +Force: -0.954949 0.873603 -6.329455 +Torque: -0.247635 0.082758 0.206625 + +Polar angle tht: 0.7418; Azimuth angle phi: 5.4542 +Force: -1.017578 0.847296 -6.339075 +Torque: -0.238447 0.086742 0.209014 + +Polar angle tht: 0.7418; Azimuth angle phi: 5.4978 +Force: -1.079022 0.818612 -6.348318 +Torque: -0.228793 0.090549 0.209813 + +Polar angle tht: 0.7418; Azimuth angle phi: 5.5414 +Force: -1.139010 0.787603 -6.357166 +Torque: -0.218689 0.094173 0.209014 + +Polar angle tht: 0.7418; Azimuth angle phi: 5.5851 +Force: -1.197270 0.754331 -6.365602 +Torque: -0.208156 0.097610 0.206625 + +Polar angle tht: 0.7418; Azimuth angle phi: 5.6287 +Force: -1.253537 0.718868 -6.373611 +Torque: -0.197214 0.100856 0.202663 + +Polar angle tht: 0.7418; Azimuth angle phi: 5.6723 +Force: -1.307551 0.681296 -6.381177 +Torque: -0.185884 0.103909 0.197159 + +Polar angle tht: 0.7418; Azimuth angle phi: 5.7160 +Force: -1.359061 0.641706 -6.388286 +Torque: -0.174187 0.106763 0.190155 + +Polar angle tht: 0.7418; Azimuth angle phi: 5.7596 +Force: -1.407825 0.600199 -6.394924 +Torque: -0.162148 0.109417 0.181703 + +Polar angle tht: 0.7418; Azimuth angle phi: 5.8032 +Force: -1.453612 0.556887 -6.401078 +Torque: -0.149787 0.111868 0.171868 + +Polar angle tht: 0.7418; Azimuth angle phi: 5.8469 +Force: -1.496201 0.511885 -6.406737 +Torque: -0.137132 0.114114 0.160726 + +Polar angle tht: 0.7418; Azimuth angle phi: 5.8905 +Force: -1.535390 0.465322 -6.411891 +Torque: -0.124204 0.116151 0.148360 + +Polar angle tht: 0.7418; Azimuth angle phi: 5.9341 +Force: -1.570987 0.417332 -6.416528 +Torque: -0.111032 0.117979 0.134865 + +Polar angle tht: 0.7418; Azimuth angle phi: 5.9778 +Force: -1.602820 0.368053 -6.420641 +Torque: -0.097639 0.119596 0.120344 + +Polar angle tht: 0.7418; Azimuth angle phi: 6.0214 +Force: -1.630732 0.317634 -6.424222 +Torque: -0.084053 0.121000 0.104906 + +Polar angle tht: 0.7418; Azimuth angle phi: 6.0650 +Force: -1.654588 0.266228 -6.427263 +Torque: -0.070300 0.122190 0.088671 + +Polar angle tht: 0.7418; Azimuth angle phi: 6.1087 +Force: -1.674270 0.213990 -6.429759 +Torque: -0.056408 0.123165 0.071760 + +Polar angle tht: 0.7418; Azimuth angle phi: 6.1523 +Force: -1.689680 0.161083 -6.431706 +Torque: -0.042405 0.123924 0.054304 + +Polar angle tht: 0.7418; Azimuth angle phi: 6.1959 +Force: -1.700742 0.107670 -6.433099 +Torque: -0.028317 0.124467 0.036434 + +Polar angle tht: 0.7418; Azimuth angle phi: 6.2396 +Force: -1.707401 0.053920 -6.433935 +Torque: -0.014172 0.124793 0.018286 + +Polar angle tht: 0.7418; Azimuth angle phi: 6.2832 +Force: -1.709624 0.000000 -6.434215 +Torque: -0.000000 0.124902 0.000000 + +Polar angle tht: 0.7854; Azimuth angle phi: 0.0000 +Force: -1.778550 0.000000 -5.966447 +Torque: -0.000000 0.124307 0.000000 + +Polar angle tht: 0.7854; Azimuth angle phi: 0.0436 +Force: -1.776204 -0.055199 -5.966167 +Torque: 0.014245 0.124200 -0.020032 + +Polar angle tht: 0.7854; Azimuth angle phi: 0.0873 +Force: -1.769178 -0.110220 -5.965326 +Torque: 0.028461 0.123879 -0.039912 + +Polar angle tht: 0.7854; Azimuth angle phi: 0.1309 +Force: -1.757508 -0.164886 -5.963928 +Torque: 0.042621 0.123344 -0.059488 + +Polar angle tht: 0.7854; Azimuth angle phi: 0.1745 +Force: -1.741252 -0.219020 -5.961974 +Torque: 0.056696 0.122595 -0.078612 + +Polar angle tht: 0.7854; Azimuth angle phi: 0.2182 +Force: -1.720494 -0.272449 -5.959469 +Torque: 0.070658 0.121634 -0.097137 + +Polar angle tht: 0.7854; Azimuth angle phi: 0.2618 +Force: -1.695339 -0.325006 -5.956416 +Torque: 0.084480 0.120460 -0.114922 + +Polar angle tht: 0.7854; Azimuth angle phi: 0.3054 +Force: -1.665912 -0.376523 -5.952821 +Torque: 0.098133 0.119075 -0.131834 + +Polar angle tht: 0.7854; Azimuth angle phi: 0.3491 +Force: -1.632362 -0.426842 -5.948693 +Torque: 0.111592 0.117479 -0.147742 + +Polar angle tht: 0.7854; Azimuth angle phi: 0.3927 +Force: -1.594858 -0.475808 -5.944038 +Torque: 0.124828 0.115675 -0.162525 + +Polar angle tht: 0.7854; Azimuth angle phi: 0.4363 +Force: -1.553585 -0.523275 -5.938865 +Torque: 0.137817 0.113662 -0.176071 + +Polar angle tht: 0.7854; Azimuth angle phi: 0.4800 +Force: -1.508749 -0.569102 -5.933184 +Torque: 0.150533 0.111444 -0.188278 + +Polar angle tht: 0.7854; Azimuth angle phi: 0.5236 +Force: -1.460570 -0.613158 -5.927006 +Torque: 0.162950 0.109022 -0.199052 + +Polar angle tht: 0.7854; Azimuth angle phi: 0.5672 +Force: -1.409285 -0.655319 -5.920343 +Torque: 0.175045 0.106398 -0.208310 + +Polar angle tht: 0.7854; Azimuth angle phi: 0.6109 +Force: -1.355142 -0.695471 -5.913207 +Torque: 0.186793 0.103574 -0.215984 + +Polar angle tht: 0.7854; Azimuth angle phi: 0.6545 +Force: -1.298404 -0.733510 -5.905612 +Torque: 0.198172 0.100553 -0.222013 + +Polar angle tht: 0.7854; Azimuth angle phi: 0.6981 +Force: -1.239340 -0.769341 -5.897573 +Torque: 0.209160 0.097339 -0.226353 + +Polar angle tht: 0.7854; Azimuth angle phi: 0.7418 +Force: -1.178230 -0.802881 -5.889104 +Torque: 0.219735 0.093934 -0.228970 + +Polar angle tht: 0.7854; Azimuth angle phi: 0.7854 +Force: -1.115361 -0.834055 -5.880222 +Torque: 0.229878 0.090341 -0.229845 + +Polar angle tht: 0.7854; Azimuth angle phi: 0.8290 +Force: -1.051022 -0.862801 -5.870944 +Torque: 0.239569 0.086566 -0.228970 + +Polar angle tht: 0.7854; Azimuth angle phi: 0.8727 +Force: -0.985507 -0.889069 -5.861287 +Torque: 0.248789 0.082612 -0.226353 + +Polar angle tht: 0.7854; Azimuth angle phi: 0.9163 +Force: -0.919110 -0.912816 -5.851270 +Torque: 0.257522 0.078483 -0.222013 + +Polar angle tht: 0.7854; Azimuth angle phi: 0.9599 +Force: -0.852125 -0.934015 -5.840912 +Torque: 0.265751 0.074185 -0.215984 + +Polar angle tht: 0.7854; Azimuth angle phi: 1.0036 +Force: -0.786821 -0.956593 -5.833210 +Torque: 0.271334 0.069804 -0.207005 + +Polar angle tht: 0.7854; Azimuth angle phi: 1.0472 +Force: -0.731879 -1.000107 -5.842388 +Torque: 0.264090 0.065690 -0.189600 + +Polar angle tht: 0.7854; Azimuth angle phi: 1.0908 +Force: -0.674451 -1.040122 -5.849765 +Torque: 0.257340 0.061311 -0.172497 + +Polar angle tht: 0.7854; Azimuth angle phi: 1.1345 +Force: -0.614936 -1.076355 -5.855339 +Torque: 0.251100 0.056680 -0.155692 + +Polar angle tht: 0.7854; Azimuth angle phi: 1.1781 +Force: -0.553752 -1.108551 -5.859112 +Torque: 0.245384 0.051808 -0.139177 + +Polar angle tht: 0.7854; Azimuth angle phi: 1.2217 +Force: -0.491327 -1.136483 -5.861085 +Torque: 0.240206 0.046712 -0.122938 + +Polar angle tht: 0.7854; Azimuth angle phi: 1.2654 +Force: -0.428098 -1.159954 -5.861265 +Torque: 0.235579 0.041407 -0.106957 + +Polar angle tht: 0.7854; Azimuth angle phi: 1.3090 +Force: -0.364507 -1.178802 -5.859661 +Torque: 0.231514 0.035910 -0.091211 + +Polar angle tht: 0.7854; Azimuth angle phi: 1.3526 +Force: -0.300998 -1.192893 -5.856283 +Torque: 0.228021 0.030240 -0.075674 + +Polar angle tht: 0.7854; Azimuth angle phi: 1.3963 +Force: -0.238016 -1.202134 -5.851144 +Torque: 0.225109 0.024416 -0.060316 + +Polar angle tht: 0.7854; Azimuth angle phi: 1.4399 +Force: -0.176000 -1.206461 -5.844259 +Torque: 0.222786 0.018458 -0.045106 + +Polar angle tht: 0.7854; Azimuth angle phi: 1.4835 +Force: -0.115380 -1.205848 -5.835646 +Torque: 0.221058 0.012388 -0.030007 + +Polar angle tht: 0.7854; Azimuth angle phi: 1.5272 +Force: -0.056578 -1.200306 -5.825324 +Torque: 0.219931 0.006228 -0.014985 + +Polar angle tht: 0.7854; Azimuth angle phi: 1.5708 +Force: 0.000000 -1.189879 -5.813315 +Torque: 0.219407 -0.000000 0.000000 + +Polar angle tht: 0.7854; Azimuth angle phi: 1.6144 +Force: 0.056578 -1.200306 -5.825324 +Torque: 0.219931 -0.006228 0.014985 + +Polar angle tht: 0.7854; Azimuth angle phi: 1.6581 +Force: 0.115380 -1.205848 -5.835646 +Torque: 0.221058 -0.012388 0.030007 + +Polar angle tht: 0.7854; Azimuth angle phi: 1.7017 +Force: 0.176000 -1.206461 -5.844259 +Torque: 0.222786 -0.018458 0.045106 + +Polar angle tht: 0.7854; Azimuth angle phi: 1.7453 +Force: 0.238016 -1.202134 -5.851144 +Torque: 0.225109 -0.024416 0.060316 + +Polar angle tht: 0.7854; Azimuth angle phi: 1.7890 +Force: 0.300998 -1.192893 -5.856283 +Torque: 0.228021 -0.030240 0.075674 + +Polar angle tht: 0.7854; Azimuth angle phi: 1.8326 +Force: 0.364507 -1.178802 -5.859661 +Torque: 0.231514 -0.035910 0.091211 + +Polar angle tht: 0.7854; Azimuth angle phi: 1.8762 +Force: 0.428098 -1.159954 -5.861265 +Torque: 0.235579 -0.041407 0.106957 + +Polar angle tht: 0.7854; Azimuth angle phi: 1.9199 +Force: 0.491327 -1.136483 -5.861085 +Torque: 0.240206 -0.046712 0.122938 + +Polar angle tht: 0.7854; Azimuth angle phi: 1.9635 +Force: 0.553752 -1.108551 -5.859112 +Torque: 0.245384 -0.051808 0.139177 + +Polar angle tht: 0.7854; Azimuth angle phi: 2.0071 +Force: 0.614936 -1.076355 -5.855339 +Torque: 0.251100 -0.056680 0.155692 + +Polar angle tht: 0.7854; Azimuth angle phi: 2.0508 +Force: 0.674451 -1.040122 -5.849765 +Torque: 0.257340 -0.061311 0.172497 + +Polar angle tht: 0.7854; Azimuth angle phi: 2.0944 +Force: 0.731879 -1.000107 -5.842388 +Torque: 0.264090 -0.065690 0.189600 + +Polar angle tht: 0.7854; Azimuth angle phi: 2.1380 +Force: 0.786821 -0.956593 -5.833210 +Torque: 0.271334 -0.069804 0.207005 + +Polar angle tht: 0.7854; Azimuth angle phi: 2.1817 +Force: 0.852125 -0.934015 -5.840912 +Torque: 0.265751 -0.074185 0.215984 + +Polar angle tht: 0.7854; Azimuth angle phi: 2.2253 +Force: 0.919110 -0.912816 -5.851270 +Torque: 0.257522 -0.078483 0.222013 + +Polar angle tht: 0.7854; Azimuth angle phi: 2.2689 +Force: 0.985507 -0.889069 -5.861287 +Torque: 0.248789 -0.082612 0.226353 + +Polar angle tht: 0.7854; Azimuth angle phi: 2.3126 +Force: 1.051022 -0.862801 -5.870944 +Torque: 0.239569 -0.086566 0.228970 + +Polar angle tht: 0.7854; Azimuth angle phi: 2.3562 +Force: 1.115361 -0.834055 -5.880222 +Torque: 0.229878 -0.090341 0.229845 + +Polar angle tht: 0.7854; Azimuth angle phi: 2.3998 +Force: 1.178230 -0.802881 -5.889104 +Torque: 0.219735 -0.093934 0.228970 + +Polar angle tht: 0.7854; Azimuth angle phi: 2.4435 +Force: 1.239340 -0.769341 -5.897573 +Torque: 0.209160 -0.097339 0.226353 + +Polar angle tht: 0.7854; Azimuth angle phi: 2.4871 +Force: 1.298404 -0.733510 -5.905612 +Torque: 0.198172 -0.100553 0.222013 + +Polar angle tht: 0.7854; Azimuth angle phi: 2.5307 +Force: 1.355142 -0.695471 -5.913207 +Torque: 0.186793 -0.103574 0.215984 + +Polar angle tht: 0.7854; Azimuth angle phi: 2.5744 +Force: 1.409285 -0.655319 -5.920343 +Torque: 0.175045 -0.106398 0.208310 + +Polar angle tht: 0.7854; Azimuth angle phi: 2.6180 +Force: 1.460570 -0.613158 -5.927006 +Torque: 0.162950 -0.109022 0.199052 + +Polar angle tht: 0.7854; Azimuth angle phi: 2.6616 +Force: 1.508749 -0.569102 -5.933184 +Torque: 0.150533 -0.111444 0.188278 + +Polar angle tht: 0.7854; Azimuth angle phi: 2.7053 +Force: 1.553585 -0.523275 -5.938865 +Torque: 0.137817 -0.113662 0.176071 + +Polar angle tht: 0.7854; Azimuth angle phi: 2.7489 +Force: 1.594858 -0.475808 -5.944038 +Torque: 0.124828 -0.115675 0.162525 + +Polar angle tht: 0.7854; Azimuth angle phi: 2.7925 +Force: 1.632362 -0.426842 -5.948693 +Torque: 0.111592 -0.117479 0.147742 + +Polar angle tht: 0.7854; Azimuth angle phi: 2.8362 +Force: 1.665912 -0.376523 -5.952821 +Torque: 0.098133 -0.119075 0.131834 + +Polar angle tht: 0.7854; Azimuth angle phi: 2.8798 +Force: 1.695339 -0.325006 -5.956416 +Torque: 0.084480 -0.120460 0.114922 + +Polar angle tht: 0.7854; Azimuth angle phi: 2.9234 +Force: 1.720494 -0.272449 -5.959469 +Torque: 0.070658 -0.121634 0.097137 + +Polar angle tht: 0.7854; Azimuth angle phi: 2.9671 +Force: 1.741252 -0.219020 -5.961974 +Torque: 0.056696 -0.122595 0.078612 + +Polar angle tht: 0.7854; Azimuth angle phi: 3.0107 +Force: 1.757508 -0.164886 -5.963928 +Torque: 0.042621 -0.123344 0.059488 + +Polar angle tht: 0.7854; Azimuth angle phi: 3.0543 +Force: 1.769178 -0.110220 -5.965326 +Torque: 0.028461 -0.123879 0.039912 + +Polar angle tht: 0.7854; Azimuth angle phi: 3.0980 +Force: 1.776204 -0.055199 -5.966167 +Torque: 0.014245 -0.124200 0.020032 + +Polar angle tht: 0.7854; Azimuth angle phi: 3.1416 +Force: 1.778550 0.000000 -5.966447 +Torque: -0.000000 -0.124307 -0.000000 + +Polar angle tht: 0.7854; Azimuth angle phi: 3.1852 +Force: 1.776204 0.055199 -5.966167 +Torque: -0.014245 -0.124200 -0.020032 + +Polar angle tht: 0.7854; Azimuth angle phi: 3.2289 +Force: 1.769178 0.110220 -5.965326 +Torque: -0.028461 -0.123879 -0.039912 + +Polar angle tht: 0.7854; Azimuth angle phi: 3.2725 +Force: 1.757508 0.164886 -5.963928 +Torque: -0.042621 -0.123344 -0.059488 + +Polar angle tht: 0.7854; Azimuth angle phi: 3.3161 +Force: 1.741252 0.219020 -5.961974 +Torque: -0.056696 -0.122595 -0.078612 + +Polar angle tht: 0.7854; Azimuth angle phi: 3.3598 +Force: 1.720494 0.272449 -5.959469 +Torque: -0.070658 -0.121634 -0.097137 + +Polar angle tht: 0.7854; Azimuth angle phi: 3.4034 +Force: 1.695339 0.325006 -5.956416 +Torque: -0.084480 -0.120460 -0.114922 + +Polar angle tht: 0.7854; Azimuth angle phi: 3.4470 +Force: 1.665912 0.376523 -5.952821 +Torque: -0.098133 -0.119075 -0.131834 + +Polar angle tht: 0.7854; Azimuth angle phi: 3.4907 +Force: 1.632362 0.426842 -5.948693 +Torque: -0.111592 -0.117479 -0.147742 + +Polar angle tht: 0.7854; Azimuth angle phi: 3.5343 +Force: 1.594858 0.475808 -5.944038 +Torque: -0.124828 -0.115675 -0.162525 + +Polar angle tht: 0.7854; Azimuth angle phi: 3.5779 +Force: 1.553585 0.523275 -5.938865 +Torque: -0.137817 -0.113662 -0.176071 + +Polar angle tht: 0.7854; Azimuth angle phi: 3.6216 +Force: 1.508749 0.569102 -5.933184 +Torque: -0.150533 -0.111444 -0.188278 + +Polar angle tht: 0.7854; Azimuth angle phi: 3.6652 +Force: 1.460570 0.613158 -5.927006 +Torque: -0.162950 -0.109022 -0.199052 + +Polar angle tht: 0.7854; Azimuth angle phi: 3.7088 +Force: 1.409285 0.655319 -5.920343 +Torque: -0.175045 -0.106398 -0.208310 + +Polar angle tht: 0.7854; Azimuth angle phi: 3.7525 +Force: 1.355142 0.695471 -5.913207 +Torque: -0.186793 -0.103574 -0.215984 + +Polar angle tht: 0.7854; Azimuth angle phi: 3.7961 +Force: 1.298404 0.733510 -5.905612 +Torque: -0.198172 -0.100553 -0.222013 + +Polar angle tht: 0.7854; Azimuth angle phi: 3.8397 +Force: 1.239340 0.769341 -5.897573 +Torque: -0.209160 -0.097339 -0.226353 + +Polar angle tht: 0.7854; Azimuth angle phi: 3.8834 +Force: 1.178230 0.802881 -5.889104 +Torque: -0.219735 -0.093934 -0.228970 + +Polar angle tht: 0.7854; Azimuth angle phi: 3.9270 +Force: 1.115361 0.834055 -5.880222 +Torque: -0.229878 -0.090341 -0.229845 + +Polar angle tht: 0.7854; Azimuth angle phi: 3.9706 +Force: 1.051022 0.862801 -5.870944 +Torque: -0.239569 -0.086566 -0.228970 + +Polar angle tht: 0.7854; Azimuth angle phi: 4.0143 +Force: 0.985507 0.889069 -5.861287 +Torque: -0.248789 -0.082612 -0.226353 + +Polar angle tht: 0.7854; Azimuth angle phi: 4.0579 +Force: 0.919110 0.912816 -5.851270 +Torque: -0.257522 -0.078483 -0.222013 + +Polar angle tht: 0.7854; Azimuth angle phi: 4.1015 +Force: 0.852125 0.934015 -5.840912 +Torque: -0.265751 -0.074185 -0.215984 + +Polar angle tht: 0.7854; Azimuth angle phi: 4.1452 +Force: 0.786821 0.956593 -5.833210 +Torque: -0.271334 -0.069804 -0.207005 + +Polar angle tht: 0.7854; Azimuth angle phi: 4.1888 +Force: 0.731879 1.000107 -5.842388 +Torque: -0.264090 -0.065690 -0.189600 + +Polar angle tht: 0.7854; Azimuth angle phi: 4.2324 +Force: 0.674451 1.040122 -5.849765 +Torque: -0.257339 -0.061311 -0.172496 + +Polar angle tht: 0.7854; Azimuth angle phi: 4.2761 +Force: 0.614936 1.076355 -5.855339 +Torque: -0.251098 -0.056680 -0.155691 + +Polar angle tht: 0.7854; Azimuth angle phi: 4.3197 +Force: 0.553752 1.108551 -5.859112 +Torque: -0.245382 -0.051808 -0.139176 + +Polar angle tht: 0.7854; Azimuth angle phi: 4.3633 +Force: 0.491327 1.136483 -5.861085 +Torque: -0.240204 -0.046712 -0.122937 + +Polar angle tht: 0.7854; Azimuth angle phi: 4.4070 +Force: 0.428098 1.159954 -5.861265 +Torque: -0.235577 -0.041407 -0.106956 + +Polar angle tht: 0.7854; Azimuth angle phi: 4.4506 +Force: 0.364507 1.178802 -5.859661 +Torque: -0.231511 -0.035910 -0.091210 + +Polar angle tht: 0.7854; Azimuth angle phi: 4.4942 +Force: 0.300998 1.192893 -5.856283 +Torque: -0.228018 -0.030240 -0.075673 + +Polar angle tht: 0.7854; Azimuth angle phi: 4.5379 +Force: 0.238016 1.202134 -5.851144 +Torque: -0.225106 -0.024416 -0.060316 + +Polar angle tht: 0.7854; Azimuth angle phi: 4.5815 +Force: 0.176000 1.206461 -5.844259 +Torque: -0.222783 -0.018458 -0.045105 + +Polar angle tht: 0.7854; Azimuth angle phi: 4.6251 +Force: 0.115380 1.205848 -5.835646 +Torque: -0.221055 -0.012388 -0.030007 + +Polar angle tht: 0.7854; Azimuth angle phi: 4.6688 +Force: 0.056578 1.200306 -5.825324 +Torque: -0.219928 -0.006228 -0.014984 + +Polar angle tht: 0.7854; Azimuth angle phi: 4.7124 +Force: 0.000000 1.189879 -5.813315 +Torque: -0.219404 -0.000000 -0.000000 + +Polar angle tht: 0.7854; Azimuth angle phi: 4.7560 +Force: -0.056578 1.200306 -5.825324 +Torque: -0.219928 0.006228 0.014984 + +Polar angle tht: 0.7854; Azimuth angle phi: 4.7997 +Force: -0.115380 1.205848 -5.835646 +Torque: -0.221055 0.012388 0.030007 + +Polar angle tht: 0.7854; Azimuth angle phi: 4.8433 +Force: -0.176000 1.206461 -5.844259 +Torque: -0.222783 0.018458 0.045105 + +Polar angle tht: 0.7854; Azimuth angle phi: 4.8869 +Force: -0.238016 1.202134 -5.851144 +Torque: -0.225106 0.024416 0.060316 + +Polar angle tht: 0.7854; Azimuth angle phi: 4.9306 +Force: -0.300998 1.192893 -5.856283 +Torque: -0.228018 0.030240 0.075673 + +Polar angle tht: 0.7854; Azimuth angle phi: 4.9742 +Force: -0.364507 1.178802 -5.859661 +Torque: -0.231511 0.035910 0.091210 + +Polar angle tht: 0.7854; Azimuth angle phi: 5.0178 +Force: -0.428098 1.159954 -5.861265 +Torque: -0.235577 0.041407 0.106956 + +Polar angle tht: 0.7854; Azimuth angle phi: 5.0615 +Force: -0.491327 1.136483 -5.861085 +Torque: -0.240204 0.046712 0.122937 + +Polar angle tht: 0.7854; Azimuth angle phi: 5.1051 +Force: -0.553752 1.108551 -5.859112 +Torque: -0.245382 0.051808 0.139176 + +Polar angle tht: 0.7854; Azimuth angle phi: 5.1487 +Force: -0.614936 1.076355 -5.855339 +Torque: -0.251098 0.056680 0.155691 + +Polar angle tht: 0.7854; Azimuth angle phi: 5.1924 +Force: -0.674451 1.040122 -5.849765 +Torque: -0.257339 0.061311 0.172496 + +Polar angle tht: 0.7854; Azimuth angle phi: 5.2360 +Force: -0.731879 1.000107 -5.842388 +Torque: -0.264090 0.065690 0.189600 + +Polar angle tht: 0.7854; Azimuth angle phi: 5.2796 +Force: -0.786821 0.956593 -5.833210 +Torque: -0.271334 0.069804 0.207005 + +Polar angle tht: 0.7854; Azimuth angle phi: 5.3233 +Force: -0.852125 0.934015 -5.840912 +Torque: -0.265751 0.074185 0.215984 + +Polar angle tht: 0.7854; Azimuth angle phi: 5.3669 +Force: -0.919110 0.912816 -5.851270 +Torque: -0.257522 0.078483 0.222013 + +Polar angle tht: 0.7854; Azimuth angle phi: 5.4105 +Force: -0.985507 0.889069 -5.861287 +Torque: -0.248789 0.082612 0.226353 + +Polar angle tht: 0.7854; Azimuth angle phi: 5.4542 +Force: -1.051022 0.862801 -5.870944 +Torque: -0.239569 0.086566 0.228970 + +Polar angle tht: 0.7854; Azimuth angle phi: 5.4978 +Force: -1.115361 0.834055 -5.880222 +Torque: -0.229878 0.090341 0.229845 + +Polar angle tht: 0.7854; Azimuth angle phi: 5.5414 +Force: -1.178230 0.802881 -5.889104 +Torque: -0.219735 0.093934 0.228970 + +Polar angle tht: 0.7854; Azimuth angle phi: 5.5851 +Force: -1.239340 0.769341 -5.897573 +Torque: -0.209160 0.097339 0.226353 + +Polar angle tht: 0.7854; Azimuth angle phi: 5.6287 +Force: -1.298404 0.733510 -5.905612 +Torque: -0.198172 0.100553 0.222013 + +Polar angle tht: 0.7854; Azimuth angle phi: 5.6723 +Force: -1.355142 0.695471 -5.913207 +Torque: -0.186793 0.103574 0.215984 + +Polar angle tht: 0.7854; Azimuth angle phi: 5.7160 +Force: -1.409285 0.655319 -5.920343 +Torque: -0.175045 0.106398 0.208310 + +Polar angle tht: 0.7854; Azimuth angle phi: 5.7596 +Force: -1.460570 0.613158 -5.927006 +Torque: -0.162950 0.109022 0.199052 + +Polar angle tht: 0.7854; Azimuth angle phi: 5.8032 +Force: -1.508749 0.569102 -5.933184 +Torque: -0.150533 0.111444 0.188278 + +Polar angle tht: 0.7854; Azimuth angle phi: 5.8469 +Force: -1.553585 0.523275 -5.938865 +Torque: -0.137817 0.113662 0.176071 + +Polar angle tht: 0.7854; Azimuth angle phi: 5.8905 +Force: -1.594858 0.475808 -5.944038 +Torque: -0.124828 0.115675 0.162525 + +Polar angle tht: 0.7854; Azimuth angle phi: 5.9341 +Force: -1.632362 0.426842 -5.948693 +Torque: -0.111592 0.117479 0.147742 + +Polar angle tht: 0.7854; Azimuth angle phi: 5.9778 +Force: -1.665912 0.376523 -5.952821 +Torque: -0.098133 0.119075 0.131834 + +Polar angle tht: 0.7854; Azimuth angle phi: 6.0214 +Force: -1.695339 0.325006 -5.956416 +Torque: -0.084480 0.120460 0.114922 + +Polar angle tht: 0.7854; Azimuth angle phi: 6.0650 +Force: -1.720494 0.272449 -5.959469 +Torque: -0.070658 0.121634 0.097137 + +Polar angle tht: 0.7854; Azimuth angle phi: 6.1087 +Force: -1.741252 0.219020 -5.961974 +Torque: -0.056696 0.122595 0.078612 + +Polar angle tht: 0.7854; Azimuth angle phi: 6.1523 +Force: -1.757508 0.164886 -5.963928 +Torque: -0.042621 0.123344 0.059488 + +Polar angle tht: 0.7854; Azimuth angle phi: 6.1959 +Force: -1.769178 0.110220 -5.965326 +Torque: -0.028461 0.123879 0.039912 + +Polar angle tht: 0.7854; Azimuth angle phi: 6.2396 +Force: -1.776204 0.055199 -5.966167 +Torque: -0.014245 0.124200 0.020032 + +Polar angle tht: 0.7854; Azimuth angle phi: 6.2832 +Force: -1.778550 0.000000 -5.966447 +Torque: -0.000000 0.124307 0.000000 + +Polar angle tht: 0.8290; Azimuth angle phi: 0.0000 +Force: -1.839853 0.000000 -5.495349 +Torque: -0.000000 0.122666 0.000000 + +Polar angle tht: 0.8290; Azimuth angle phi: 0.0436 +Force: -1.837392 -0.056156 -5.495070 +Torque: 0.014211 0.122561 -0.021778 + +Polar angle tht: 0.8290; Azimuth angle phi: 0.0873 +Force: -1.830021 -0.112126 -5.494233 +Torque: 0.028393 0.122247 -0.043391 + +Polar angle tht: 0.8290; Azimuth angle phi: 0.1309 +Force: -1.817779 -0.167724 -5.492840 +Torque: 0.042519 0.121725 -0.064673 + +Polar angle tht: 0.8290; Azimuth angle phi: 0.1745 +Force: -1.800729 -0.222766 -5.490893 +Torque: 0.056559 0.120994 -0.085463 + +Polar angle tht: 0.8290; Azimuth angle phi: 0.2182 +Force: -1.778959 -0.277071 -5.488397 +Torque: 0.070487 0.120055 -0.105603 + +Polar angle tht: 0.8290; Azimuth angle phi: 0.2618 +Force: -1.752583 -0.330463 -5.485356 +Torque: 0.084273 0.118908 -0.124939 + +Polar angle tht: 0.8290; Azimuth angle phi: 0.3054 +Force: -1.721736 -0.382770 -5.481775 +Torque: 0.097892 0.117554 -0.143324 + +Polar angle tht: 0.8290; Azimuth angle phi: 0.3491 +Force: -1.686576 -0.433824 -5.477663 +Torque: 0.111315 0.115995 -0.160618 + +Polar angle tht: 0.8290; Azimuth angle phi: 0.3927 +Force: -1.647285 -0.483465 -5.473025 +Torque: 0.124516 0.114230 -0.176690 + +Polar angle tht: 0.8290; Azimuth angle phi: 0.4363 +Force: -1.604061 -0.531540 -5.467872 +Torque: 0.137469 0.112262 -0.191417 + +Polar angle tht: 0.8290; Azimuth angle phi: 0.4800 +Force: -1.557126 -0.577904 -5.462213 +Torque: 0.150148 0.110091 -0.204688 + +Polar angle tht: 0.8290; Azimuth angle phi: 0.5236 +Force: -1.506714 -0.622420 -5.456058 +Torque: 0.162529 0.107719 -0.216400 + +Polar angle tht: 0.8290; Azimuth angle phi: 0.5672 +Force: -1.453080 -0.664960 -5.449420 +Torque: 0.174587 0.105149 -0.226466 + +Polar angle tht: 0.8290; Azimuth angle phi: 0.6109 +Force: -1.396490 -0.705406 -5.442312 +Torque: 0.186298 0.102381 -0.234808 + +Polar angle tht: 0.8290; Azimuth angle phi: 0.6545 +Force: -1.337224 -0.743651 -5.434746 +Torque: 0.197640 0.099419 -0.241363 + +Polar angle tht: 0.8290; Azimuth angle phi: 0.6981 +Force: -1.275571 -0.779599 -5.426737 +Torque: 0.208590 0.096265 -0.246081 + +Polar angle tht: 0.8290; Azimuth angle phi: 0.7418 +Force: -1.211832 -0.813163 -5.418300 +Torque: 0.219128 0.092922 -0.248926 + +Polar angle tht: 0.8290; Azimuth angle phi: 0.7854 +Force: -1.146310 -0.844270 -5.409452 +Torque: 0.229233 0.089393 -0.249877 + +Polar angle tht: 0.8290; Azimuth angle phi: 0.8290 +Force: -1.079317 -0.872856 -5.400209 +Torque: 0.238886 0.085682 -0.248926 + +Polar angle tht: 0.8290; Azimuth angle phi: 0.8727 +Force: -1.011166 -0.898871 -5.390589 +Torque: 0.248069 0.081792 -0.246081 + +Polar angle tht: 0.8290; Azimuth angle phi: 0.9163 +Force: -0.959399 -0.950956 -5.401310 +Torque: 0.241938 0.078434 -0.230002 + +Polar angle tht: 0.8290; Azimuth angle phi: 0.9599 +Force: -0.906632 -1.004717 -5.413554 +Torque: 0.233897 0.074888 -0.212394 + +Polar angle tht: 0.8290; Azimuth angle phi: 1.0036 +Force: -0.850361 -1.055375 -5.424038 +Torque: 0.226304 0.071042 -0.195164 + +Polar angle tht: 0.8290; Azimuth angle phi: 1.0472 +Force: -0.790980 -1.102572 -5.432757 +Torque: 0.219178 0.066906 -0.178317 + +Polar angle tht: 0.8290; Azimuth angle phi: 1.0908 +Force: -0.728905 -1.145974 -5.439709 +Torque: 0.212534 0.062491 -0.161850 + +Polar angle tht: 0.8290; Azimuth angle phi: 1.1345 +Force: -0.664570 -1.185272 -5.444892 +Torque: 0.206388 0.057808 -0.145757 + +Polar angle tht: 0.8290; Azimuth angle phi: 1.1781 +Force: -0.598428 -1.220190 -5.448310 +Torque: 0.200756 0.052873 -0.130024 + +Polar angle tht: 0.8290; Azimuth angle phi: 1.2217 +Force: -0.530943 -1.250480 -5.449967 +Torque: 0.195650 0.047699 -0.114631 + +Polar angle tht: 0.8290; Azimuth angle phi: 1.2654 +Force: -0.462591 -1.275930 -5.449871 +Torque: 0.191084 0.042304 -0.099555 + +Polar angle tht: 0.8290; Azimuth angle phi: 1.3090 +Force: -0.393850 -1.296361 -5.448031 +Torque: 0.187069 0.036706 -0.084766 + +Polar angle tht: 0.8290; Azimuth angle phi: 1.3526 +Force: -0.325203 -1.311631 -5.444459 +Torque: 0.183615 0.030923 -0.070232 + +Polar angle tht: 0.8290; Azimuth angle phi: 1.3963 +Force: -0.257133 -1.321636 -5.439169 +Torque: 0.180731 0.024978 -0.055916 + +Polar angle tht: 0.8290; Azimuth angle phi: 1.4399 +Force: -0.190115 -1.326308 -5.432177 +Torque: 0.178425 0.018890 -0.041778 + +Polar angle tht: 0.8290; Azimuth angle phi: 1.4835 +Force: -0.124619 -1.325619 -5.423501 +Torque: 0.176704 0.012682 -0.027775 + +Polar angle tht: 0.8290; Azimuth angle phi: 1.5272 +Force: -0.061100 -1.319580 -5.413161 +Torque: 0.175573 0.006378 -0.013865 + +Polar angle tht: 0.8290; Azimuth angle phi: 1.5708 +Force: 0.000000 -1.308240 -5.401178 +Torque: 0.175035 -0.000000 0.000000 + +Polar angle tht: 0.8290; Azimuth angle phi: 1.6144 +Force: 0.061100 -1.319580 -5.413161 +Torque: 0.175573 -0.006378 0.013865 + +Polar angle tht: 0.8290; Azimuth angle phi: 1.6581 +Force: 0.124619 -1.325619 -5.423501 +Torque: 0.176704 -0.012682 0.027775 + +Polar angle tht: 0.8290; Azimuth angle phi: 1.7017 +Force: 0.190115 -1.326308 -5.432177 +Torque: 0.178425 -0.018890 0.041778 + +Polar angle tht: 0.8290; Azimuth angle phi: 1.7453 +Force: 0.257133 -1.321636 -5.439169 +Torque: 0.180731 -0.024978 0.055916 + +Polar angle tht: 0.8290; Azimuth angle phi: 1.7890 +Force: 0.325203 -1.311631 -5.444459 +Torque: 0.183615 -0.030923 0.070232 + +Polar angle tht: 0.8290; Azimuth angle phi: 1.8326 +Force: 0.393850 -1.296361 -5.448031 +Torque: 0.187069 -0.036706 0.084766 + +Polar angle tht: 0.8290; Azimuth angle phi: 1.8762 +Force: 0.462591 -1.275930 -5.449871 +Torque: 0.191084 -0.042304 0.099555 + +Polar angle tht: 0.8290; Azimuth angle phi: 1.9199 +Force: 0.530943 -1.250480 -5.449967 +Torque: 0.195650 -0.047699 0.114631 + +Polar angle tht: 0.8290; Azimuth angle phi: 1.9635 +Force: 0.598428 -1.220190 -5.448310 +Torque: 0.200756 -0.052873 0.130024 + +Polar angle tht: 0.8290; Azimuth angle phi: 2.0071 +Force: 0.664570 -1.185272 -5.444892 +Torque: 0.206388 -0.057808 0.145757 + +Polar angle tht: 0.8290; Azimuth angle phi: 2.0508 +Force: 0.728905 -1.145974 -5.439709 +Torque: 0.212534 -0.062491 0.161850 + +Polar angle tht: 0.8290; Azimuth angle phi: 2.0944 +Force: 0.790980 -1.102572 -5.432757 +Torque: 0.219178 -0.066906 0.178317 + +Polar angle tht: 0.8290; Azimuth angle phi: 2.1380 +Force: 0.850361 -1.055375 -5.424038 +Torque: 0.226304 -0.071042 0.195164 + +Polar angle tht: 0.8290; Azimuth angle phi: 2.1817 +Force: 0.906632 -1.004717 -5.413554 +Torque: 0.233897 -0.074888 0.212394 + +Polar angle tht: 0.8290; Azimuth angle phi: 2.2253 +Force: 0.959399 -0.950956 -5.401310 +Torque: 0.241938 -0.078434 0.230002 + +Polar angle tht: 0.8290; Azimuth angle phi: 2.2689 +Force: 1.011166 -0.898871 -5.390589 +Torque: 0.248069 -0.081792 0.246081 + +Polar angle tht: 0.8290; Azimuth angle phi: 2.3126 +Force: 1.079317 -0.872856 -5.400209 +Torque: 0.238886 -0.085682 0.248926 + +Polar angle tht: 0.8290; Azimuth angle phi: 2.3562 +Force: 1.146310 -0.844270 -5.409452 +Torque: 0.229233 -0.089393 0.249877 + +Polar angle tht: 0.8290; Azimuth angle phi: 2.3998 +Force: 1.211832 -0.813163 -5.418300 +Torque: 0.219128 -0.092922 0.248926 + +Polar angle tht: 0.8290; Azimuth angle phi: 2.4435 +Force: 1.275571 -0.779599 -5.426737 +Torque: 0.208590 -0.096265 0.246081 + +Polar angle tht: 0.8290; Azimuth angle phi: 2.4871 +Force: 1.337224 -0.743651 -5.434746 +Torque: 0.197640 -0.099419 0.241363 + +Polar angle tht: 0.8290; Azimuth angle phi: 2.5307 +Force: 1.396490 -0.705406 -5.442312 +Torque: 0.186298 -0.102381 0.234808 + +Polar angle tht: 0.8290; Azimuth angle phi: 2.5744 +Force: 1.453080 -0.664960 -5.449420 +Torque: 0.174587 -0.105149 0.226466 + +Polar angle tht: 0.8290; Azimuth angle phi: 2.6180 +Force: 1.506714 -0.622420 -5.456058 +Torque: 0.162529 -0.107719 0.216400 + +Polar angle tht: 0.8290; Azimuth angle phi: 2.6616 +Force: 1.557126 -0.577904 -5.462213 +Torque: 0.150148 -0.110091 0.204688 + +Polar angle tht: 0.8290; Azimuth angle phi: 2.7053 +Force: 1.604061 -0.531540 -5.467872 +Torque: 0.137469 -0.112262 0.191417 + +Polar angle tht: 0.8290; Azimuth angle phi: 2.7489 +Force: 1.647285 -0.483465 -5.473025 +Torque: 0.124516 -0.114230 0.176690 + +Polar angle tht: 0.8290; Azimuth angle phi: 2.7925 +Force: 1.686576 -0.433824 -5.477663 +Torque: 0.111315 -0.115995 0.160618 + +Polar angle tht: 0.8290; Azimuth angle phi: 2.8362 +Force: 1.721736 -0.382770 -5.481775 +Torque: 0.097892 -0.117554 0.143324 + +Polar angle tht: 0.8290; Azimuth angle phi: 2.8798 +Force: 1.752583 -0.330463 -5.485356 +Torque: 0.084273 -0.118908 0.124939 + +Polar angle tht: 0.8290; Azimuth angle phi: 2.9234 +Force: 1.778959 -0.277071 -5.488397 +Torque: 0.070487 -0.120055 0.105603 + +Polar angle tht: 0.8290; Azimuth angle phi: 2.9671 +Force: 1.800729 -0.222766 -5.490893 +Torque: 0.056559 -0.120994 0.085463 + +Polar angle tht: 0.8290; Azimuth angle phi: 3.0107 +Force: 1.817779 -0.167724 -5.492840 +Torque: 0.042519 -0.121725 0.064673 + +Polar angle tht: 0.8290; Azimuth angle phi: 3.0543 +Force: 1.830021 -0.112126 -5.494233 +Torque: 0.028393 -0.122247 0.043391 + +Polar angle tht: 0.8290; Azimuth angle phi: 3.0980 +Force: 1.837392 -0.056156 -5.495070 +Torque: 0.014211 -0.122561 0.021778 + +Polar angle tht: 0.8290; Azimuth angle phi: 3.1416 +Force: 1.839853 0.000000 -5.495349 +Torque: -0.000000 -0.122666 -0.000000 + +Polar angle tht: 0.8290; Azimuth angle phi: 3.1852 +Force: 1.837392 0.056156 -5.495070 +Torque: -0.014211 -0.122561 -0.021778 + +Polar angle tht: 0.8290; Azimuth angle phi: 3.2289 +Force: 1.830021 0.112126 -5.494233 +Torque: -0.028393 -0.122247 -0.043391 + +Polar angle tht: 0.8290; Azimuth angle phi: 3.2725 +Force: 1.817779 0.167724 -5.492840 +Torque: -0.042519 -0.121725 -0.064673 + +Polar angle tht: 0.8290; Azimuth angle phi: 3.3161 +Force: 1.800729 0.222766 -5.490893 +Torque: -0.056559 -0.120994 -0.085463 + +Polar angle tht: 0.8290; Azimuth angle phi: 3.3598 +Force: 1.778959 0.277071 -5.488397 +Torque: -0.070487 -0.120055 -0.105603 + +Polar angle tht: 0.8290; Azimuth angle phi: 3.4034 +Force: 1.752583 0.330463 -5.485356 +Torque: -0.084273 -0.118908 -0.124939 + +Polar angle tht: 0.8290; Azimuth angle phi: 3.4470 +Force: 1.721736 0.382770 -5.481775 +Torque: -0.097892 -0.117554 -0.143324 + +Polar angle tht: 0.8290; Azimuth angle phi: 3.4907 +Force: 1.686576 0.433824 -5.477663 +Torque: -0.111315 -0.115995 -0.160618 + +Polar angle tht: 0.8290; Azimuth angle phi: 3.5343 +Force: 1.647285 0.483465 -5.473025 +Torque: -0.124516 -0.114230 -0.176690 + +Polar angle tht: 0.8290; Azimuth angle phi: 3.5779 +Force: 1.604061 0.531540 -5.467872 +Torque: -0.137469 -0.112262 -0.191417 + +Polar angle tht: 0.8290; Azimuth angle phi: 3.6216 +Force: 1.557126 0.577904 -5.462213 +Torque: -0.150148 -0.110091 -0.204688 + +Polar angle tht: 0.8290; Azimuth angle phi: 3.6652 +Force: 1.506714 0.622420 -5.456058 +Torque: -0.162529 -0.107719 -0.216400 + +Polar angle tht: 0.8290; Azimuth angle phi: 3.7088 +Force: 1.453080 0.664960 -5.449420 +Torque: -0.174587 -0.105149 -0.226466 + +Polar angle tht: 0.8290; Azimuth angle phi: 3.7525 +Force: 1.396490 0.705406 -5.442312 +Torque: -0.186298 -0.102381 -0.234808 + +Polar angle tht: 0.8290; Azimuth angle phi: 3.7961 +Force: 1.337224 0.743651 -5.434746 +Torque: -0.197640 -0.099419 -0.241363 + +Polar angle tht: 0.8290; Azimuth angle phi: 3.8397 +Force: 1.275571 0.779599 -5.426737 +Torque: -0.208590 -0.096265 -0.246081 + +Polar angle tht: 0.8290; Azimuth angle phi: 3.8834 +Force: 1.211832 0.813163 -5.418300 +Torque: -0.219128 -0.092922 -0.248926 + +Polar angle tht: 0.8290; Azimuth angle phi: 3.9270 +Force: 1.146310 0.844270 -5.409452 +Torque: -0.229233 -0.089393 -0.249877 + +Polar angle tht: 0.8290; Azimuth angle phi: 3.9706 +Force: 1.079317 0.872856 -5.400209 +Torque: -0.238886 -0.085682 -0.248926 + +Polar angle tht: 0.8290; Azimuth angle phi: 4.0143 +Force: 1.011166 0.898871 -5.390589 +Torque: -0.248069 -0.081792 -0.246081 + +Polar angle tht: 0.8290; Azimuth angle phi: 4.0579 +Force: 0.959399 0.950956 -5.401310 +Torque: -0.241937 -0.078434 -0.230001 + +Polar angle tht: 0.8290; Azimuth angle phi: 4.1015 +Force: 0.906632 1.004717 -5.413554 +Torque: -0.233896 -0.074888 -0.212394 + +Polar angle tht: 0.8290; Azimuth angle phi: 4.1452 +Force: 0.850361 1.055375 -5.424038 +Torque: -0.226303 -0.071042 -0.195163 + +Polar angle tht: 0.8290; Azimuth angle phi: 4.1888 +Force: 0.790980 1.102572 -5.432757 +Torque: -0.219176 -0.066906 -0.178316 + +Polar angle tht: 0.8290; Azimuth angle phi: 4.2324 +Force: 0.728905 1.145974 -5.439709 +Torque: -0.212532 -0.062491 -0.161849 + +Polar angle tht: 0.8290; Azimuth angle phi: 4.2761 +Force: 0.664570 1.185272 -5.444892 +Torque: -0.206386 -0.057808 -0.145756 + +Polar angle tht: 0.8290; Azimuth angle phi: 4.3197 +Force: 0.598428 1.220190 -5.448310 +Torque: -0.200753 -0.052873 -0.130022 + +Polar angle tht: 0.8290; Azimuth angle phi: 4.3633 +Force: 0.530943 1.250480 -5.449967 +Torque: -0.195647 -0.047699 -0.114629 + +Polar angle tht: 0.8290; Azimuth angle phi: 4.4070 +Force: 0.462591 1.275930 -5.449871 +Torque: -0.191081 -0.042304 -0.099553 + +Polar angle tht: 0.8290; Azimuth angle phi: 4.4506 +Force: 0.393850 1.296361 -5.448031 +Torque: -0.187065 -0.036706 -0.084765 + +Polar angle tht: 0.8290; Azimuth angle phi: 4.4942 +Force: 0.325203 1.311631 -5.444459 +Torque: -0.183611 -0.030923 -0.070231 + +Polar angle tht: 0.8290; Azimuth angle phi: 4.5379 +Force: 0.257133 1.321636 -5.439169 +Torque: -0.180727 -0.024978 -0.055915 + +Polar angle tht: 0.8290; Azimuth angle phi: 4.5815 +Force: 0.190115 1.326308 -5.432177 +Torque: -0.178421 -0.018890 -0.041777 + +Polar angle tht: 0.8290; Azimuth angle phi: 4.6251 +Force: 0.124619 1.325619 -5.423501 +Torque: -0.176700 -0.012682 -0.027775 + +Polar angle tht: 0.8290; Azimuth angle phi: 4.6688 +Force: 0.061100 1.319580 -5.413161 +Torque: -0.175569 -0.006378 -0.013864 + +Polar angle tht: 0.8290; Azimuth angle phi: 4.7124 +Force: 0.000000 1.308240 -5.401178 +Torque: -0.175031 -0.000000 -0.000000 + +Polar angle tht: 0.8290; Azimuth angle phi: 4.7560 +Force: -0.061100 1.319580 -5.413161 +Torque: -0.175569 0.006378 0.013864 + +Polar angle tht: 0.8290; Azimuth angle phi: 4.7997 +Force: -0.124619 1.325619 -5.423501 +Torque: -0.176700 0.012682 0.027775 + +Polar angle tht: 0.8290; Azimuth angle phi: 4.8433 +Force: -0.190115 1.326308 -5.432177 +Torque: -0.178421 0.018890 0.041777 + +Polar angle tht: 0.8290; Azimuth angle phi: 4.8869 +Force: -0.257133 1.321636 -5.439169 +Torque: -0.180727 0.024978 0.055915 + +Polar angle tht: 0.8290; Azimuth angle phi: 4.9306 +Force: -0.325203 1.311631 -5.444459 +Torque: -0.183611 0.030923 0.070231 + +Polar angle tht: 0.8290; Azimuth angle phi: 4.9742 +Force: -0.393850 1.296361 -5.448031 +Torque: -0.187065 0.036706 0.084765 + +Polar angle tht: 0.8290; Azimuth angle phi: 5.0178 +Force: -0.462591 1.275930 -5.449871 +Torque: -0.191081 0.042304 0.099553 + +Polar angle tht: 0.8290; Azimuth angle phi: 5.0615 +Force: -0.530943 1.250480 -5.449967 +Torque: -0.195647 0.047699 0.114629 + +Polar angle tht: 0.8290; Azimuth angle phi: 5.1051 +Force: -0.598428 1.220190 -5.448310 +Torque: -0.200753 0.052873 0.130022 + +Polar angle tht: 0.8290; Azimuth angle phi: 5.1487 +Force: -0.664570 1.185272 -5.444892 +Torque: -0.206386 0.057808 0.145756 + +Polar angle tht: 0.8290; Azimuth angle phi: 5.1924 +Force: -0.728905 1.145974 -5.439709 +Torque: -0.212532 0.062491 0.161849 + +Polar angle tht: 0.8290; Azimuth angle phi: 5.2360 +Force: -0.790980 1.102572 -5.432757 +Torque: -0.219176 0.066906 0.178316 + +Polar angle tht: 0.8290; Azimuth angle phi: 5.2796 +Force: -0.850361 1.055375 -5.424038 +Torque: -0.226303 0.071042 0.195163 + +Polar angle tht: 0.8290; Azimuth angle phi: 5.3233 +Force: -0.906632 1.004717 -5.413554 +Torque: -0.233896 0.074888 0.212394 + +Polar angle tht: 0.8290; Azimuth angle phi: 5.3669 +Force: -0.959399 0.950956 -5.401310 +Torque: -0.241937 0.078434 0.230001 + +Polar angle tht: 0.8290; Azimuth angle phi: 5.4105 +Force: -1.011166 0.898871 -5.390589 +Torque: -0.248069 0.081792 0.246081 + +Polar angle tht: 0.8290; Azimuth angle phi: 5.4542 +Force: -1.079317 0.872856 -5.400209 +Torque: -0.238886 0.085682 0.248926 + +Polar angle tht: 0.8290; Azimuth angle phi: 5.4978 +Force: -1.146310 0.844270 -5.409452 +Torque: -0.229233 0.089393 0.249877 + +Polar angle tht: 0.8290; Azimuth angle phi: 5.5414 +Force: -1.211832 0.813163 -5.418300 +Torque: -0.219128 0.092922 0.248926 + +Polar angle tht: 0.8290; Azimuth angle phi: 5.5851 +Force: -1.275571 0.779599 -5.426737 +Torque: -0.208590 0.096265 0.246081 + +Polar angle tht: 0.8290; Azimuth angle phi: 5.6287 +Force: -1.337224 0.743651 -5.434746 +Torque: -0.197640 0.099419 0.241363 + +Polar angle tht: 0.8290; Azimuth angle phi: 5.6723 +Force: -1.396490 0.705406 -5.442312 +Torque: -0.186298 0.102381 0.234808 + +Polar angle tht: 0.8290; Azimuth angle phi: 5.7160 +Force: -1.453080 0.664960 -5.449420 +Torque: -0.174587 0.105149 0.226466 + +Polar angle tht: 0.8290; Azimuth angle phi: 5.7596 +Force: -1.506714 0.622420 -5.456058 +Torque: -0.162529 0.107719 0.216400 + +Polar angle tht: 0.8290; Azimuth angle phi: 5.8032 +Force: -1.557126 0.577904 -5.462213 +Torque: -0.150148 0.110091 0.204688 + +Polar angle tht: 0.8290; Azimuth angle phi: 5.8469 +Force: -1.604061 0.531540 -5.467872 +Torque: -0.137469 0.112262 0.191417 + +Polar angle tht: 0.8290; Azimuth angle phi: 5.8905 +Force: -1.647285 0.483465 -5.473025 +Torque: -0.124516 0.114230 0.176690 + +Polar angle tht: 0.8290; Azimuth angle phi: 5.9341 +Force: -1.686576 0.433824 -5.477663 +Torque: -0.111315 0.115995 0.160618 + +Polar angle tht: 0.8290; Azimuth angle phi: 5.9778 +Force: -1.721736 0.382770 -5.481775 +Torque: -0.097892 0.117554 0.143324 + +Polar angle tht: 0.8290; Azimuth angle phi: 6.0214 +Force: -1.752583 0.330463 -5.485356 +Torque: -0.084273 0.118908 0.124939 + +Polar angle tht: 0.8290; Azimuth angle phi: 6.0650 +Force: -1.778959 0.277071 -5.488397 +Torque: -0.070487 0.120055 0.105603 + +Polar angle tht: 0.8290; Azimuth angle phi: 6.1087 +Force: -1.800729 0.222766 -5.490893 +Torque: -0.056559 0.120994 0.085463 + +Polar angle tht: 0.8290; Azimuth angle phi: 6.1523 +Force: -1.817779 0.167724 -5.492840 +Torque: -0.042519 0.121725 0.064673 + +Polar angle tht: 0.8290; Azimuth angle phi: 6.1959 +Force: -1.830021 0.112126 -5.494233 +Torque: -0.028393 0.122247 0.043391 + +Polar angle tht: 0.8290; Azimuth angle phi: 6.2396 +Force: -1.837392 0.056156 -5.495070 +Torque: -0.014211 0.122561 0.021778 + +Polar angle tht: 0.8290; Azimuth angle phi: 6.2832 +Force: -1.839853 0.000000 -5.495349 +Torque: -0.000000 0.122666 0.000000 + +Polar angle tht: 0.8727; Azimuth angle phi: 0.0000 +Force: -1.893098 0.000000 -5.024361 +Torque: -0.000000 0.119988 0.000000 + +Polar angle tht: 0.8727; Azimuth angle phi: 0.0436 +Force: -1.890529 -0.056783 -5.024085 +Torque: 0.014070 0.119887 -0.023511 + +Polar angle tht: 0.8727; Azimuth angle phi: 0.0873 +Force: -1.882838 -0.113373 -5.023257 +Torque: 0.028112 0.119584 -0.046843 + +Polar angle tht: 0.8727; Azimuth angle phi: 0.1309 +Force: -1.870064 -0.169575 -5.021880 +Torque: 0.042097 0.119079 -0.069818 + +Polar angle tht: 0.8727; Azimuth angle phi: 0.1745 +Force: -1.852276 -0.225199 -5.019956 +Torque: 0.055998 0.118372 -0.092262 + +Polar angle tht: 0.8727; Azimuth angle phi: 0.2182 +Force: -1.829567 -0.280058 -5.017488 +Torque: 0.069787 0.117464 -0.114004 + +Polar angle tht: 0.8727; Azimuth angle phi: 0.2618 +Force: -1.802058 -0.333966 -5.014482 +Torque: 0.083435 0.116355 -0.134879 + +Polar angle tht: 0.8727; Azimuth angle phi: 0.3054 +Force: -1.769894 -0.386746 -5.010942 +Torque: 0.096916 0.115046 -0.154726 + +Polar angle tht: 0.8727; Azimuth angle phi: 0.3491 +Force: -1.733243 -0.438224 -5.006877 +Torque: 0.110203 0.113536 -0.173397 + +Polar angle tht: 0.8727; Azimuth angle phi: 0.3927 +Force: -1.692298 -0.488235 -5.002292 +Torque: 0.123270 0.111828 -0.190747 + +Polar angle tht: 0.8727; Azimuth angle phi: 0.4363 +Force: -1.647272 -0.536619 -4.997198 +Torque: 0.136089 0.109922 -0.206646 + +Polar angle tht: 0.8727; Azimuth angle phi: 0.4800 +Force: -1.598400 -0.583226 -4.991603 +Torque: 0.148637 0.107818 -0.220972 + +Polar angle tht: 0.8727; Azimuth angle phi: 0.5236 +Force: -1.545932 -0.627915 -4.985519 +Torque: 0.160888 0.105519 -0.233617 + +Polar angle tht: 0.8727; Azimuth angle phi: 0.5672 +Force: -1.490139 -0.670555 -4.978957 +Torque: 0.172818 0.103025 -0.244483 + +Polar angle tht: 0.8727; Azimuth angle phi: 0.6109 +Force: -1.431304 -0.711025 -4.971930 +Torque: 0.184403 0.100339 -0.253489 + +Polar angle tht: 0.8727; Azimuth angle phi: 0.6545 +Force: -1.369726 -0.749215 -4.964450 +Torque: 0.195622 0.097462 -0.260565 + +Polar angle tht: 0.8727; Azimuth angle phi: 0.6981 +Force: -1.305711 -0.785027 -4.956533 +Torque: 0.206452 0.094397 -0.265659 + +Polar angle tht: 0.8727; Azimuth angle phi: 0.7418 +Force: -1.239579 -0.818374 -4.948193 +Torque: 0.216872 0.091146 -0.268731 + +Polar angle tht: 0.8727; Azimuth angle phi: 0.7854 +Force: -1.173686 -0.851816 -4.941348 +Torque: 0.225500 0.087795 -0.268417 + +Polar angle tht: 0.8727; Azimuth angle phi: 0.8290 +Force: -1.130611 -0.917227 -4.958025 +Torque: 0.216493 0.085259 -0.250039 + +Polar angle tht: 0.8727; Azimuth angle phi: 0.8727 +Force: -1.082668 -0.980587 -4.973015 +Torque: 0.207861 0.082393 -0.232079 + +Polar angle tht: 0.8727; Azimuth angle phi: 0.9163 +Force: -1.030192 -1.041446 -4.986304 +Torque: 0.199624 0.079201 -0.214562 + +Polar angle tht: 0.8727; Azimuth angle phi: 0.9599 +Force: -0.973547 -1.099374 -4.997886 +Torque: 0.191802 0.075689 -0.197504 + +Polar angle tht: 0.8727; Azimuth angle phi: 1.0036 +Force: -0.913129 -1.153959 -5.007753 +Torque: 0.184411 0.071863 -0.180914 + +Polar angle tht: 0.8727; Azimuth angle phi: 1.0472 +Force: -0.849363 -1.204815 -5.015902 +Torque: 0.177470 0.067734 -0.164793 + +Polar angle tht: 0.8727; Azimuth angle phi: 1.0908 +Force: -0.782697 -1.251580 -5.022333 +Torque: 0.170995 0.063311 -0.149136 + +Polar angle tht: 0.8727; Azimuth angle phi: 1.1345 +Force: -0.713599 -1.293922 -5.027046 +Torque: 0.165003 0.058608 -0.133931 + +Polar angle tht: 0.8727; Azimuth angle phi: 1.1781 +Force: -0.642558 -1.331543 -5.030048 +Torque: 0.159506 0.053638 -0.119159 + +Polar angle tht: 0.8727; Azimuth angle phi: 1.2217 +Force: -0.570075 -1.364175 -5.031343 +Torque: 0.154520 0.048419 -0.104795 + +Polar angle tht: 0.8727; Azimuth angle phi: 1.2654 +Force: -0.496659 -1.391590 -5.030942 +Torque: 0.150057 0.042966 -0.090809 + +Polar angle tht: 0.8727; Azimuth angle phi: 1.3090 +Force: -0.422830 -1.413594 -5.028855 +Torque: 0.146128 0.037299 -0.077166 + +Polar angle tht: 0.8727; Azimuth angle phi: 1.3526 +Force: -0.349108 -1.430035 -5.025094 +Torque: 0.142744 0.031438 -0.063824 + +Polar angle tht: 0.8727; Azimuth angle phi: 1.3963 +Force: -0.276011 -1.440799 -5.019676 +Torque: 0.139914 0.025404 -0.050741 + +Polar angle tht: 0.8727; Azimuth angle phi: 1.4399 +Force: -0.204054 -1.445815 -5.012615 +Torque: 0.137645 0.019219 -0.037868 + +Polar angle tht: 0.8727; Azimuth angle phi: 1.4835 +Force: -0.133741 -1.445051 -5.003932 +Torque: 0.135945 0.012907 -0.025155 + +Polar angle tht: 0.8727; Azimuth angle phi: 1.5272 +Force: -0.065564 -1.438520 -4.993646 +Torque: 0.134819 0.006493 -0.012550 + +Polar angle tht: 0.8727; Azimuth angle phi: 1.5708 +Force: 0.000000 -1.426273 -4.981779 +Torque: 0.134270 -0.000000 0.000000 + +Polar angle tht: 0.8727; Azimuth angle phi: 1.6144 +Force: 0.065564 -1.438520 -4.993646 +Torque: 0.134819 -0.006493 0.012550 + +Polar angle tht: 0.8727; Azimuth angle phi: 1.6581 +Force: 0.133741 -1.445051 -5.003932 +Torque: 0.135945 -0.012907 0.025155 + +Polar angle tht: 0.8727; Azimuth angle phi: 1.7017 +Force: 0.204054 -1.445815 -5.012615 +Torque: 0.137645 -0.019219 0.037868 + +Polar angle tht: 0.8727; Azimuth angle phi: 1.7453 +Force: 0.276011 -1.440799 -5.019676 +Torque: 0.139914 -0.025404 0.050741 + +Polar angle tht: 0.8727; Azimuth angle phi: 1.7890 +Force: 0.349108 -1.430035 -5.025094 +Torque: 0.142744 -0.031438 0.063824 + +Polar angle tht: 0.8727; Azimuth angle phi: 1.8326 +Force: 0.422830 -1.413594 -5.028855 +Torque: 0.146128 -0.037299 0.077166 + +Polar angle tht: 0.8727; Azimuth angle phi: 1.8762 +Force: 0.496659 -1.391590 -5.030942 +Torque: 0.150057 -0.042966 0.090809 + +Polar angle tht: 0.8727; Azimuth angle phi: 1.9199 +Force: 0.570075 -1.364175 -5.031343 +Torque: 0.154520 -0.048419 0.104795 + +Polar angle tht: 0.8727; Azimuth angle phi: 1.9635 +Force: 0.642558 -1.331543 -5.030048 +Torque: 0.159506 -0.053638 0.119159 + +Polar angle tht: 0.8727; Azimuth angle phi: 2.0071 +Force: 0.713599 -1.293922 -5.027046 +Torque: 0.165003 -0.058608 0.133931 + +Polar angle tht: 0.8727; Azimuth angle phi: 2.0508 +Force: 0.782697 -1.251580 -5.022333 +Torque: 0.170995 -0.063311 0.149136 + +Polar angle tht: 0.8727; Azimuth angle phi: 2.0944 +Force: 0.849363 -1.204815 -5.015902 +Torque: 0.177470 -0.067734 0.164793 + +Polar angle tht: 0.8727; Azimuth angle phi: 2.1380 +Force: 0.913129 -1.153959 -5.007753 +Torque: 0.184411 -0.071863 0.180914 + +Polar angle tht: 0.8727; Azimuth angle phi: 2.1817 +Force: 0.973547 -1.099374 -4.997886 +Torque: 0.191802 -0.075689 0.197504 + +Polar angle tht: 0.8727; Azimuth angle phi: 2.2253 +Force: 1.030192 -1.041446 -4.986304 +Torque: 0.199624 -0.079201 0.214562 + +Polar angle tht: 0.8727; Azimuth angle phi: 2.2689 +Force: 1.082668 -0.980587 -4.973015 +Torque: 0.207861 -0.082393 0.232079 + +Polar angle tht: 0.8727; Azimuth angle phi: 2.3126 +Force: 1.130611 -0.917227 -4.958025 +Torque: 0.216493 -0.085259 0.250039 + +Polar angle tht: 0.8727; Azimuth angle phi: 2.3562 +Force: 1.173686 -0.851816 -4.941348 +Torque: 0.225500 -0.087795 0.268417 + +Polar angle tht: 0.8727; Azimuth angle phi: 2.3998 +Force: 1.239579 -0.818374 -4.948193 +Torque: 0.216872 -0.091146 0.268731 + +Polar angle tht: 0.8727; Azimuth angle phi: 2.4435 +Force: 1.305711 -0.785027 -4.956533 +Torque: 0.206452 -0.094397 0.265659 + +Polar angle tht: 0.8727; Azimuth angle phi: 2.4871 +Force: 1.369726 -0.749215 -4.964450 +Torque: 0.195622 -0.097462 0.260565 + +Polar angle tht: 0.8727; Azimuth angle phi: 2.5307 +Force: 1.431304 -0.711025 -4.971930 +Torque: 0.184403 -0.100339 0.253489 + +Polar angle tht: 0.8727; Azimuth angle phi: 2.5744 +Force: 1.490139 -0.670555 -4.978957 +Torque: 0.172818 -0.103025 0.244483 + +Polar angle tht: 0.8727; Azimuth angle phi: 2.6180 +Force: 1.545932 -0.627915 -4.985519 +Torque: 0.160888 -0.105519 0.233617 + +Polar angle tht: 0.8727; Azimuth angle phi: 2.6616 +Force: 1.598400 -0.583226 -4.991603 +Torque: 0.148637 -0.107818 0.220972 + +Polar angle tht: 0.8727; Azimuth angle phi: 2.7053 +Force: 1.647272 -0.536619 -4.997198 +Torque: 0.136089 -0.109922 0.206646 + +Polar angle tht: 0.8727; Azimuth angle phi: 2.7489 +Force: 1.692298 -0.488235 -5.002292 +Torque: 0.123270 -0.111828 0.190747 + +Polar angle tht: 0.8727; Azimuth angle phi: 2.7925 +Force: 1.733243 -0.438224 -5.006877 +Torque: 0.110203 -0.113536 0.173397 + +Polar angle tht: 0.8727; Azimuth angle phi: 2.8362 +Force: 1.769894 -0.386746 -5.010942 +Torque: 0.096916 -0.115046 0.154726 + +Polar angle tht: 0.8727; Azimuth angle phi: 2.8798 +Force: 1.802058 -0.333966 -5.014482 +Torque: 0.083435 -0.116355 0.134879 + +Polar angle tht: 0.8727; Azimuth angle phi: 2.9234 +Force: 1.829567 -0.280058 -5.017488 +Torque: 0.069787 -0.117464 0.114004 + +Polar angle tht: 0.8727; Azimuth angle phi: 2.9671 +Force: 1.852276 -0.225199 -5.019956 +Torque: 0.055998 -0.118372 0.092262 + +Polar angle tht: 0.8727; Azimuth angle phi: 3.0107 +Force: 1.870064 -0.169575 -5.021880 +Torque: 0.042097 -0.119079 0.069818 + +Polar angle tht: 0.8727; Azimuth angle phi: 3.0543 +Force: 1.882838 -0.113373 -5.023257 +Torque: 0.028112 -0.119584 0.046843 + +Polar angle tht: 0.8727; Azimuth angle phi: 3.0980 +Force: 1.890529 -0.056783 -5.024085 +Torque: 0.014070 -0.119887 0.023511 + +Polar angle tht: 0.8727; Azimuth angle phi: 3.1416 +Force: 1.893098 0.000000 -5.024361 +Torque: -0.000000 -0.119988 -0.000000 + +Polar angle tht: 0.8727; Azimuth angle phi: 3.1852 +Force: 1.890529 0.056783 -5.024085 +Torque: -0.014070 -0.119887 -0.023511 + +Polar angle tht: 0.8727; Azimuth angle phi: 3.2289 +Force: 1.882838 0.113373 -5.023257 +Torque: -0.028112 -0.119584 -0.046843 + +Polar angle tht: 0.8727; Azimuth angle phi: 3.2725 +Force: 1.870064 0.169575 -5.021880 +Torque: -0.042097 -0.119079 -0.069818 + +Polar angle tht: 0.8727; Azimuth angle phi: 3.3161 +Force: 1.852276 0.225199 -5.019956 +Torque: -0.055998 -0.118372 -0.092262 + +Polar angle tht: 0.8727; Azimuth angle phi: 3.3598 +Force: 1.829567 0.280058 -5.017488 +Torque: -0.069787 -0.117464 -0.114004 + +Polar angle tht: 0.8727; Azimuth angle phi: 3.4034 +Force: 1.802058 0.333966 -5.014482 +Torque: -0.083435 -0.116355 -0.134879 + +Polar angle tht: 0.8727; Azimuth angle phi: 3.4470 +Force: 1.769894 0.386746 -5.010942 +Torque: -0.096916 -0.115046 -0.154726 + +Polar angle tht: 0.8727; Azimuth angle phi: 3.4907 +Force: 1.733243 0.438224 -5.006877 +Torque: -0.110203 -0.113536 -0.173397 + +Polar angle tht: 0.8727; Azimuth angle phi: 3.5343 +Force: 1.692298 0.488235 -5.002292 +Torque: -0.123270 -0.111828 -0.190747 + +Polar angle tht: 0.8727; Azimuth angle phi: 3.5779 +Force: 1.647272 0.536619 -4.997198 +Torque: -0.136089 -0.109922 -0.206646 + +Polar angle tht: 0.8727; Azimuth angle phi: 3.6216 +Force: 1.598400 0.583226 -4.991603 +Torque: -0.148637 -0.107818 -0.220972 + +Polar angle tht: 0.8727; Azimuth angle phi: 3.6652 +Force: 1.545932 0.627915 -4.985519 +Torque: -0.160888 -0.105519 -0.233617 + +Polar angle tht: 0.8727; Azimuth angle phi: 3.7088 +Force: 1.490139 0.670555 -4.978957 +Torque: -0.172818 -0.103025 -0.244483 + +Polar angle tht: 0.8727; Azimuth angle phi: 3.7525 +Force: 1.431304 0.711025 -4.971930 +Torque: -0.184403 -0.100339 -0.253489 + +Polar angle tht: 0.8727; Azimuth angle phi: 3.7961 +Force: 1.369726 0.749215 -4.964450 +Torque: -0.195622 -0.097462 -0.260565 + +Polar angle tht: 0.8727; Azimuth angle phi: 3.8397 +Force: 1.305711 0.785027 -4.956533 +Torque: -0.206452 -0.094397 -0.265659 + +Polar angle tht: 0.8727; Azimuth angle phi: 3.8834 +Force: 1.239579 0.818374 -4.948193 +Torque: -0.216872 -0.091146 -0.268731 + +Polar angle tht: 0.8727; Azimuth angle phi: 3.9270 +Force: 1.173686 0.851816 -4.941348 +Torque: -0.225500 -0.087795 -0.268417 + +Polar angle tht: 0.8727; Azimuth angle phi: 3.9706 +Force: 1.130611 0.917227 -4.958025 +Torque: -0.216492 -0.085259 -0.250038 + +Polar angle tht: 0.8727; Azimuth angle phi: 4.0143 +Force: 1.082668 0.980587 -4.973015 +Torque: -0.207860 -0.082393 -0.232078 + +Polar angle tht: 0.8727; Azimuth angle phi: 4.0579 +Force: 1.030192 1.041446 -4.986304 +Torque: -0.199623 -0.079201 -0.214561 + +Polar angle tht: 0.8727; Azimuth angle phi: 4.1015 +Force: 0.973547 1.099374 -4.997886 +Torque: -0.191800 -0.075689 -0.197502 + +Polar angle tht: 0.8727; Azimuth angle phi: 4.1452 +Force: 0.913129 1.153959 -5.007753 +Torque: -0.184409 -0.071863 -0.180912 + +Polar angle tht: 0.8727; Azimuth angle phi: 4.1888 +Force: 0.849363 1.204815 -5.015902 +Torque: -0.177467 -0.067734 -0.164791 + +Polar angle tht: 0.8727; Azimuth angle phi: 4.2324 +Force: 0.782697 1.251580 -5.022333 +Torque: -0.170992 -0.063311 -0.149134 + +Polar angle tht: 0.8727; Azimuth angle phi: 4.2761 +Force: 0.713599 1.293922 -5.027046 +Torque: -0.164999 -0.058608 -0.133929 + +Polar angle tht: 0.8727; Azimuth angle phi: 4.3197 +Force: 0.642558 1.331543 -5.030048 +Torque: -0.159503 -0.053638 -0.119157 + +Polar angle tht: 0.8727; Azimuth angle phi: 4.3633 +Force: 0.570075 1.364175 -5.031343 +Torque: -0.154516 -0.048419 -0.104793 + +Polar angle tht: 0.8727; Azimuth angle phi: 4.4070 +Force: 0.496659 1.391590 -5.030942 +Torque: -0.150053 -0.042966 -0.090808 + +Polar angle tht: 0.8727; Azimuth angle phi: 4.4506 +Force: 0.422830 1.413594 -5.028855 +Torque: -0.146124 -0.037299 -0.077164 + +Polar angle tht: 0.8727; Azimuth angle phi: 4.4942 +Force: 0.349108 1.430035 -5.025094 +Torque: -0.142740 -0.031438 -0.063823 + +Polar angle tht: 0.8727; Azimuth angle phi: 4.5379 +Force: 0.276011 1.440799 -5.019676 +Torque: -0.139909 -0.025404 -0.050739 + +Polar angle tht: 0.8727; Azimuth angle phi: 4.5815 +Force: 0.204054 1.445815 -5.012615 +Torque: -0.137640 -0.019219 -0.037867 + +Polar angle tht: 0.8727; Azimuth angle phi: 4.6251 +Force: 0.133741 1.445051 -5.003932 +Torque: -0.135940 -0.012907 -0.025154 + +Polar angle tht: 0.8727; Azimuth angle phi: 4.6688 +Force: 0.065564 1.438520 -4.993646 +Torque: -0.134814 -0.006493 -0.012550 + +Polar angle tht: 0.8727; Azimuth angle phi: 4.7124 +Force: 0.000000 1.426273 -4.981779 +Torque: -0.134265 -0.000000 -0.000000 + +Polar angle tht: 0.8727; Azimuth angle phi: 4.7560 +Force: -0.065564 1.438520 -4.993646 +Torque: -0.134814 0.006493 0.012550 + +Polar angle tht: 0.8727; Azimuth angle phi: 4.7997 +Force: -0.133741 1.445051 -5.003932 +Torque: -0.135940 0.012907 0.025154 + +Polar angle tht: 0.8727; Azimuth angle phi: 4.8433 +Force: -0.204054 1.445815 -5.012615 +Torque: -0.137640 0.019219 0.037867 + +Polar angle tht: 0.8727; Azimuth angle phi: 4.8869 +Force: -0.276011 1.440799 -5.019676 +Torque: -0.139909 0.025404 0.050739 + +Polar angle tht: 0.8727; Azimuth angle phi: 4.9306 +Force: -0.349108 1.430035 -5.025094 +Torque: -0.142740 0.031438 0.063823 + +Polar angle tht: 0.8727; Azimuth angle phi: 4.9742 +Force: -0.422830 1.413594 -5.028855 +Torque: -0.146124 0.037299 0.077164 + +Polar angle tht: 0.8727; Azimuth angle phi: 5.0178 +Force: -0.496659 1.391590 -5.030942 +Torque: -0.150053 0.042966 0.090808 + +Polar angle tht: 0.8727; Azimuth angle phi: 5.0615 +Force: -0.570075 1.364175 -5.031343 +Torque: -0.154516 0.048419 0.104793 + +Polar angle tht: 0.8727; Azimuth angle phi: 5.1051 +Force: -0.642558 1.331543 -5.030048 +Torque: -0.159503 0.053638 0.119157 + +Polar angle tht: 0.8727; Azimuth angle phi: 5.1487 +Force: -0.713599 1.293922 -5.027046 +Torque: -0.164999 0.058608 0.133929 + +Polar angle tht: 0.8727; Azimuth angle phi: 5.1924 +Force: -0.782697 1.251580 -5.022333 +Torque: -0.170992 0.063311 0.149134 + +Polar angle tht: 0.8727; Azimuth angle phi: 5.2360 +Force: -0.849363 1.204815 -5.015902 +Torque: -0.177467 0.067734 0.164791 + +Polar angle tht: 0.8727; Azimuth angle phi: 5.2796 +Force: -0.913129 1.153959 -5.007753 +Torque: -0.184409 0.071863 0.180912 + +Polar angle tht: 0.8727; Azimuth angle phi: 5.3233 +Force: -0.973547 1.099374 -4.997886 +Torque: -0.191800 0.075689 0.197502 + +Polar angle tht: 0.8727; Azimuth angle phi: 5.3669 +Force: -1.030192 1.041446 -4.986304 +Torque: -0.199623 0.079201 0.214561 + +Polar angle tht: 0.8727; Azimuth angle phi: 5.4105 +Force: -1.082668 0.980587 -4.973015 +Torque: -0.207860 0.082393 0.232078 + +Polar angle tht: 0.8727; Azimuth angle phi: 5.4542 +Force: -1.130611 0.917227 -4.958025 +Torque: -0.216492 0.085259 0.250038 + +Polar angle tht: 0.8727; Azimuth angle phi: 5.4978 +Force: -1.173686 0.851816 -4.941348 +Torque: -0.225500 0.087795 0.268417 + +Polar angle tht: 0.8727; Azimuth angle phi: 5.5414 +Force: -1.239579 0.818374 -4.948193 +Torque: -0.216872 0.091146 0.268731 + +Polar angle tht: 0.8727; Azimuth angle phi: 5.5851 +Force: -1.305711 0.785027 -4.956533 +Torque: -0.206452 0.094397 0.265659 + +Polar angle tht: 0.8727; Azimuth angle phi: 5.6287 +Force: -1.369726 0.749215 -4.964450 +Torque: -0.195622 0.097462 0.260565 + +Polar angle tht: 0.8727; Azimuth angle phi: 5.6723 +Force: -1.431304 0.711025 -4.971930 +Torque: -0.184403 0.100339 0.253489 + +Polar angle tht: 0.8727; Azimuth angle phi: 5.7160 +Force: -1.490139 0.670555 -4.978957 +Torque: -0.172818 0.103025 0.244483 + +Polar angle tht: 0.8727; Azimuth angle phi: 5.7596 +Force: -1.545932 0.627915 -4.985519 +Torque: -0.160888 0.105519 0.233617 + +Polar angle tht: 0.8727; Azimuth angle phi: 5.8032 +Force: -1.598400 0.583226 -4.991603 +Torque: -0.148637 0.107818 0.220972 + +Polar angle tht: 0.8727; Azimuth angle phi: 5.8469 +Force: -1.647272 0.536619 -4.997198 +Torque: -0.136089 0.109922 0.206646 + +Polar angle tht: 0.8727; Azimuth angle phi: 5.8905 +Force: -1.692298 0.488235 -5.002292 +Torque: -0.123270 0.111828 0.190747 + +Polar angle tht: 0.8727; Azimuth angle phi: 5.9341 +Force: -1.733243 0.438224 -5.006877 +Torque: -0.110203 0.113536 0.173397 + +Polar angle tht: 0.8727; Azimuth angle phi: 5.9778 +Force: -1.769894 0.386746 -5.010942 +Torque: -0.096916 0.115046 0.154726 + +Polar angle tht: 0.8727; Azimuth angle phi: 6.0214 +Force: -1.802058 0.333966 -5.014482 +Torque: -0.083435 0.116355 0.134879 + +Polar angle tht: 0.8727; Azimuth angle phi: 6.0650 +Force: -1.829567 0.280058 -5.017488 +Torque: -0.069787 0.117464 0.114004 + +Polar angle tht: 0.8727; Azimuth angle phi: 6.1087 +Force: -1.852276 0.225199 -5.019956 +Torque: -0.055998 0.118372 0.092262 + +Polar angle tht: 0.8727; Azimuth angle phi: 6.1523 +Force: -1.870064 0.169575 -5.021880 +Torque: -0.042097 0.119079 0.069818 + +Polar angle tht: 0.8727; Azimuth angle phi: 6.1959 +Force: -1.882838 0.113373 -5.023257 +Torque: -0.028112 0.119584 0.046843 + +Polar angle tht: 0.8727; Azimuth angle phi: 6.2396 +Force: -1.890529 0.056783 -5.024085 +Torque: -0.014070 0.119887 0.023511 + +Polar angle tht: 0.8727; Azimuth angle phi: 6.2832 +Force: -1.893098 0.000000 -5.024361 +Torque: -0.000000 0.119988 0.000000 + +Polar angle tht: 0.9163; Azimuth angle phi: 0.0000 +Force: -1.937906 0.000000 -4.556915 +Torque: -0.000000 0.116295 0.000000 + +Polar angle tht: 0.9163; Azimuth angle phi: 0.0436 +Force: -1.935240 -0.057076 -4.556645 +Torque: 0.013824 0.116198 -0.025217 + +Polar angle tht: 0.9163; Azimuth angle phi: 0.0873 +Force: -1.927254 -0.113951 -4.555833 +Torque: 0.027620 0.115909 -0.050242 + +Polar angle tht: 0.9163; Azimuth angle phi: 0.1309 +Force: -1.913993 -0.170426 -4.554482 +Torque: 0.041361 0.115426 -0.074885 + +Polar angle tht: 0.9163; Azimuth angle phi: 0.1745 +Force: -1.895528 -0.226302 -4.552595 +Torque: 0.055018 0.114750 -0.098958 + +Polar angle tht: 0.9163; Azimuth angle phi: 0.2182 +Force: -1.871959 -0.281386 -4.550175 +Torque: 0.068564 0.113882 -0.122278 + +Polar angle tht: 0.9163; Azimuth angle phi: 0.2618 +Force: -1.843414 -0.335488 -4.547226 +Torque: 0.081971 0.112821 -0.144667 + +Polar angle tht: 0.9163; Azimuth angle phi: 0.3054 +Force: -1.810046 -0.388422 -4.543754 +Torque: 0.095214 0.111568 -0.165955 + +Polar angle tht: 0.9163; Azimuth angle phi: 0.3491 +Force: -1.772034 -0.440010 -4.539766 +Torque: 0.108265 0.110123 -0.185980 + +Polar angle tht: 0.9163; Azimuth angle phi: 0.3927 +Force: -1.729581 -0.490081 -4.535270 +Torque: 0.121099 0.108487 -0.204590 + +Polar angle tht: 0.9163; Azimuth angle phi: 0.4363 +Force: -1.682915 -0.538471 -4.530273 +Torque: 0.133688 0.106660 -0.221642 + +Polar angle tht: 0.9163; Azimuth angle phi: 0.4800 +Force: -1.632282 -0.585026 -4.524786 +Torque: 0.146010 0.104643 -0.237008 + +Polar angle tht: 0.9163; Azimuth angle phi: 0.5236 +Force: -1.577949 -0.629601 -4.518818 +Torque: 0.158039 0.102437 -0.250570 + +Polar angle tht: 0.9163; Azimuth angle phi: 0.5672 +Force: -1.520203 -0.672062 -4.512382 +Torque: 0.169751 0.100043 -0.262225 + +Polar angle tht: 0.9163; Azimuth angle phi: 0.6109 +Force: -1.459342 -0.712286 -4.505489 +Torque: 0.181124 0.097463 -0.271884 + +Polar angle tht: 0.9163; Azimuth angle phi: 0.6545 +Force: -1.395683 -0.750160 -4.498153 +Torque: 0.192134 0.094697 -0.279474 + +Polar angle tht: 0.9163; Azimuth angle phi: 0.6981 +Force: -1.329551 -0.785584 -4.490388 +Torque: 0.202762 0.091748 -0.284938 + +Polar angle tht: 0.9163; Azimuth angle phi: 0.7418 +Force: -1.293031 -0.856395 -4.507830 +Torque: 0.194533 0.089919 -0.267295 + +Polar angle tht: 0.9163; Azimuth angle phi: 0.7854 +Force: -1.252633 -0.928139 -4.525164 +Torque: 0.185544 0.087826 -0.248835 + +Polar angle tht: 0.9163; Azimuth angle phi: 0.8290 +Force: -1.206709 -0.998185 -4.540874 +Torque: 0.176891 0.085388 -0.230863 + +Polar angle tht: 0.9163; Azimuth angle phi: 0.8727 +Force: -1.155576 -1.066035 -4.554948 +Torque: 0.168594 0.082609 -0.213412 + +Polar angle tht: 0.9163; Azimuth angle phi: 0.9163 +Force: -1.099591 -1.131210 -4.567378 +Torque: 0.160673 0.079490 -0.196504 + +Polar angle tht: 0.9163; Azimuth angle phi: 0.9599 +Force: -1.039145 -1.193245 -4.578157 +Torque: 0.153144 0.076039 -0.180151 + +Polar angle tht: 0.9163; Azimuth angle phi: 1.0036 +Force: -0.974663 -1.251701 -4.587283 +Torque: 0.146027 0.072261 -0.164361 + +Polar angle tht: 0.9163; Azimuth angle phi: 1.0472 +Force: -0.906598 -1.306163 -4.594753 +Torque: 0.139339 0.068166 -0.149131 + +Polar angle tht: 0.9163; Azimuth angle phi: 1.0908 +Force: -0.835430 -1.356243 -4.600570 +Torque: 0.133096 0.063765 -0.134451 + +Polar angle tht: 0.9163; Azimuth angle phi: 1.1345 +Force: -0.761663 -1.401587 -4.604738 +Torque: 0.127313 0.059072 -0.120304 + +Polar angle tht: 0.9163; Azimuth angle phi: 1.1781 +Force: -0.685818 -1.441872 -4.607263 +Torque: 0.122005 0.054100 -0.106666 + +Polar angle tht: 0.9163; Azimuth angle phi: 1.2217 +Force: -0.608433 -1.476814 -4.608154 +Torque: 0.117186 0.048866 -0.093507 + +Polar angle tht: 0.9163; Azimuth angle phi: 1.2654 +Force: -0.530054 -1.506166 -4.607421 +Torque: 0.112867 0.043388 -0.080788 + +Polar angle tht: 0.9163; Azimuth angle phi: 1.3090 +Force: -0.451236 -1.529722 -4.605076 +Torque: 0.109061 0.037685 -0.068468 + +Polar angle tht: 0.9163; Azimuth angle phi: 1.3526 +Force: -0.372537 -1.547317 -4.601133 +Torque: 0.105778 0.031778 -0.056499 + +Polar angle tht: 0.9163; Azimuth angle phi: 1.3963 +Force: -0.294512 -1.558831 -4.595609 +Torque: 0.103027 0.025690 -0.044830 + +Polar angle tht: 0.9163; Azimuth angle phi: 1.4399 +Force: -0.217713 -1.564186 -4.588520 +Torque: 0.100815 0.019443 -0.033405 + +Polar angle tht: 0.9163; Azimuth angle phi: 1.4835 +Force: -0.142679 -1.563349 -4.579885 +Torque: 0.099151 0.013063 -0.022166 + +Polar angle tht: 0.9163; Azimuth angle phi: 1.5272 +Force: -0.069938 -1.556333 -4.569726 +Torque: 0.098038 0.006573 -0.011051 + +Polar angle tht: 0.9163; Azimuth angle phi: 1.5708 +Force: 0.000000 -1.543194 -4.558062 +Torque: 0.097481 -0.000000 0.000000 + +Polar angle tht: 0.9163; Azimuth angle phi: 1.6144 +Force: 0.069938 -1.556333 -4.569726 +Torque: 0.098038 -0.006573 0.011051 + +Polar angle tht: 0.9163; Azimuth angle phi: 1.6581 +Force: 0.142679 -1.563349 -4.579885 +Torque: 0.099151 -0.013063 0.022166 + +Polar angle tht: 0.9163; Azimuth angle phi: 1.7017 +Force: 0.217713 -1.564186 -4.588520 +Torque: 0.100815 -0.019443 0.033405 + +Polar angle tht: 0.9163; Azimuth angle phi: 1.7453 +Force: 0.294512 -1.558831 -4.595609 +Torque: 0.103027 -0.025690 0.044830 + +Polar angle tht: 0.9163; Azimuth angle phi: 1.7890 +Force: 0.372537 -1.547317 -4.601133 +Torque: 0.105778 -0.031778 0.056499 + +Polar angle tht: 0.9163; Azimuth angle phi: 1.8326 +Force: 0.451236 -1.529722 -4.605076 +Torque: 0.109061 -0.037685 0.068468 + +Polar angle tht: 0.9163; Azimuth angle phi: 1.8762 +Force: 0.530054 -1.506166 -4.607421 +Torque: 0.112867 -0.043388 0.080788 + +Polar angle tht: 0.9163; Azimuth angle phi: 1.9199 +Force: 0.608433 -1.476814 -4.608154 +Torque: 0.117186 -0.048866 0.093507 + +Polar angle tht: 0.9163; Azimuth angle phi: 1.9635 +Force: 0.685818 -1.441872 -4.607263 +Torque: 0.122005 -0.054100 0.106666 + +Polar angle tht: 0.9163; Azimuth angle phi: 2.0071 +Force: 0.761663 -1.401587 -4.604738 +Torque: 0.127313 -0.059072 0.120304 + +Polar angle tht: 0.9163; Azimuth angle phi: 2.0508 +Force: 0.835430 -1.356243 -4.600570 +Torque: 0.133096 -0.063765 0.134451 + +Polar angle tht: 0.9163; Azimuth angle phi: 2.0944 +Force: 0.906598 -1.306163 -4.594753 +Torque: 0.139339 -0.068166 0.149131 + +Polar angle tht: 0.9163; Azimuth angle phi: 2.1380 +Force: 0.974663 -1.251701 -4.587283 +Torque: 0.146027 -0.072261 0.164361 + +Polar angle tht: 0.9163; Azimuth angle phi: 2.1817 +Force: 1.039145 -1.193245 -4.578157 +Torque: 0.153144 -0.076039 0.180151 + +Polar angle tht: 0.9163; Azimuth angle phi: 2.2253 +Force: 1.099591 -1.131210 -4.567378 +Torque: 0.160673 -0.079490 0.196504 + +Polar angle tht: 0.9163; Azimuth angle phi: 2.2689 +Force: 1.155576 -1.066035 -4.554948 +Torque: 0.168594 -0.082609 0.213412 + +Polar angle tht: 0.9163; Azimuth angle phi: 2.3126 +Force: 1.206709 -0.998185 -4.540874 +Torque: 0.176891 -0.085388 0.230863 + +Polar angle tht: 0.9163; Azimuth angle phi: 2.3562 +Force: 1.252633 -0.928139 -4.525164 +Torque: 0.185544 -0.087826 0.248835 + +Polar angle tht: 0.9163; Azimuth angle phi: 2.3998 +Force: 1.293031 -0.856395 -4.507830 +Torque: 0.194533 -0.089919 0.267295 + +Polar angle tht: 0.9163; Azimuth angle phi: 2.4435 +Force: 1.329551 -0.785584 -4.490388 +Torque: 0.202762 -0.091748 0.284938 + +Polar angle tht: 0.9163; Azimuth angle phi: 2.4871 +Force: 1.395683 -0.750160 -4.498153 +Torque: 0.192134 -0.094697 0.279474 + +Polar angle tht: 0.9163; Azimuth angle phi: 2.5307 +Force: 1.459342 -0.712286 -4.505489 +Torque: 0.181124 -0.097463 0.271884 + +Polar angle tht: 0.9163; Azimuth angle phi: 2.5744 +Force: 1.520203 -0.672062 -4.512382 +Torque: 0.169751 -0.100043 0.262225 + +Polar angle tht: 0.9163; Azimuth angle phi: 2.6180 +Force: 1.577949 -0.629601 -4.518818 +Torque: 0.158039 -0.102437 0.250570 + +Polar angle tht: 0.9163; Azimuth angle phi: 2.6616 +Force: 1.632282 -0.585026 -4.524786 +Torque: 0.146010 -0.104643 0.237008 + +Polar angle tht: 0.9163; Azimuth angle phi: 2.7053 +Force: 1.682915 -0.538471 -4.530273 +Torque: 0.133688 -0.106660 0.221642 + +Polar angle tht: 0.9163; Azimuth angle phi: 2.7489 +Force: 1.729581 -0.490081 -4.535270 +Torque: 0.121099 -0.108487 0.204590 + +Polar angle tht: 0.9163; Azimuth angle phi: 2.7925 +Force: 1.772034 -0.440010 -4.539766 +Torque: 0.108265 -0.110123 0.185980 + +Polar angle tht: 0.9163; Azimuth angle phi: 2.8362 +Force: 1.810046 -0.388422 -4.543754 +Torque: 0.095214 -0.111568 0.165955 + +Polar angle tht: 0.9163; Azimuth angle phi: 2.8798 +Force: 1.843414 -0.335488 -4.547226 +Torque: 0.081971 -0.112821 0.144667 + +Polar angle tht: 0.9163; Azimuth angle phi: 2.9234 +Force: 1.871959 -0.281386 -4.550175 +Torque: 0.068564 -0.113882 0.122278 + +Polar angle tht: 0.9163; Azimuth angle phi: 2.9671 +Force: 1.895528 -0.226302 -4.552595 +Torque: 0.055018 -0.114750 0.098958 + +Polar angle tht: 0.9163; Azimuth angle phi: 3.0107 +Force: 1.913993 -0.170426 -4.554482 +Torque: 0.041361 -0.115426 0.074885 + +Polar angle tht: 0.9163; Azimuth angle phi: 3.0543 +Force: 1.927254 -0.113951 -4.555833 +Torque: 0.027620 -0.115909 0.050242 + +Polar angle tht: 0.9163; Azimuth angle phi: 3.0980 +Force: 1.935240 -0.057076 -4.556645 +Torque: 0.013824 -0.116198 0.025217 + +Polar angle tht: 0.9163; Azimuth angle phi: 3.1416 +Force: 1.937906 0.000000 -4.556915 +Torque: -0.000000 -0.116295 -0.000000 + +Polar angle tht: 0.9163; Azimuth angle phi: 3.1852 +Force: 1.935240 0.057076 -4.556645 +Torque: -0.013824 -0.116198 -0.025217 + +Polar angle tht: 0.9163; Azimuth angle phi: 3.2289 +Force: 1.927254 0.113951 -4.555833 +Torque: -0.027620 -0.115909 -0.050242 + +Polar angle tht: 0.9163; Azimuth angle phi: 3.2725 +Force: 1.913993 0.170426 -4.554482 +Torque: -0.041361 -0.115426 -0.074885 + +Polar angle tht: 0.9163; Azimuth angle phi: 3.3161 +Force: 1.895528 0.226302 -4.552595 +Torque: -0.055018 -0.114750 -0.098958 + +Polar angle tht: 0.9163; Azimuth angle phi: 3.3598 +Force: 1.871959 0.281386 -4.550175 +Torque: -0.068564 -0.113882 -0.122278 + +Polar angle tht: 0.9163; Azimuth angle phi: 3.4034 +Force: 1.843414 0.335488 -4.547226 +Torque: -0.081971 -0.112821 -0.144667 + +Polar angle tht: 0.9163; Azimuth angle phi: 3.4470 +Force: 1.810046 0.388422 -4.543754 +Torque: -0.095214 -0.111568 -0.165955 + +Polar angle tht: 0.9163; Azimuth angle phi: 3.4907 +Force: 1.772034 0.440010 -4.539766 +Torque: -0.108265 -0.110123 -0.185980 + +Polar angle tht: 0.9163; Azimuth angle phi: 3.5343 +Force: 1.729581 0.490081 -4.535270 +Torque: -0.121099 -0.108487 -0.204590 + +Polar angle tht: 0.9163; Azimuth angle phi: 3.5779 +Force: 1.682915 0.538471 -4.530273 +Torque: -0.133688 -0.106660 -0.221642 + +Polar angle tht: 0.9163; Azimuth angle phi: 3.6216 +Force: 1.632282 0.585026 -4.524786 +Torque: -0.146010 -0.104643 -0.237008 + +Polar angle tht: 0.9163; Azimuth angle phi: 3.6652 +Force: 1.577949 0.629601 -4.518818 +Torque: -0.158039 -0.102437 -0.250570 + +Polar angle tht: 0.9163; Azimuth angle phi: 3.7088 +Force: 1.520203 0.672062 -4.512382 +Torque: -0.169751 -0.100043 -0.262225 + +Polar angle tht: 0.9163; Azimuth angle phi: 3.7525 +Force: 1.459342 0.712286 -4.505489 +Torque: -0.181124 -0.097463 -0.271884 + +Polar angle tht: 0.9163; Azimuth angle phi: 3.7961 +Force: 1.395683 0.750160 -4.498153 +Torque: -0.192134 -0.094697 -0.279474 + +Polar angle tht: 0.9163; Azimuth angle phi: 3.8397 +Force: 1.329551 0.785584 -4.490388 +Torque: -0.202762 -0.091748 -0.284938 + +Polar angle tht: 0.9163; Azimuth angle phi: 3.8834 +Force: 1.293031 0.856395 -4.507830 +Torque: -0.194532 -0.089919 -0.267295 + +Polar angle tht: 0.9163; Azimuth angle phi: 3.9270 +Force: 1.252633 0.928139 -4.525164 +Torque: -0.185543 -0.087826 -0.248833 + +Polar angle tht: 0.9163; Azimuth angle phi: 3.9706 +Force: 1.206709 0.998185 -4.540874 +Torque: -0.176890 -0.085388 -0.230862 + +Polar angle tht: 0.9163; Azimuth angle phi: 4.0143 +Force: 1.155576 1.066035 -4.554948 +Torque: -0.168592 -0.082609 -0.213410 + +Polar angle tht: 0.9163; Azimuth angle phi: 4.0579 +Force: 1.099591 1.131210 -4.567378 +Torque: -0.160670 -0.079490 -0.196501 + +Polar angle tht: 0.9163; Azimuth angle phi: 4.1015 +Force: 1.039145 1.193245 -4.578157 +Torque: -0.153141 -0.076039 -0.180148 + +Polar angle tht: 0.9163; Azimuth angle phi: 4.1452 +Force: 0.974663 1.251701 -4.587283 +Torque: -0.146024 -0.072261 -0.164358 + +Polar angle tht: 0.9163; Azimuth angle phi: 4.1888 +Force: 0.906598 1.306163 -4.594753 +Torque: -0.139335 -0.068166 -0.149128 + +Polar angle tht: 0.9163; Azimuth angle phi: 4.2324 +Force: 0.835430 1.356243 -4.600570 +Torque: -0.133092 -0.063765 -0.134448 + +Polar angle tht: 0.9163; Azimuth angle phi: 4.2761 +Force: 0.761663 1.401587 -4.604738 +Torque: -0.127309 -0.059072 -0.120301 + +Polar angle tht: 0.9163; Azimuth angle phi: 4.3197 +Force: 0.685818 1.441872 -4.607263 +Torque: -0.122000 -0.054100 -0.106664 + +Polar angle tht: 0.9163; Azimuth angle phi: 4.3633 +Force: 0.608433 1.476814 -4.608154 +Torque: -0.117181 -0.048866 -0.093504 + +Polar angle tht: 0.9163; Azimuth angle phi: 4.4070 +Force: 0.530054 1.506166 -4.607421 +Torque: -0.112862 -0.043388 -0.080785 + +Polar angle tht: 0.9163; Azimuth angle phi: 4.4506 +Force: 0.451236 1.529722 -4.605076 +Torque: -0.109056 -0.037685 -0.068466 + +Polar angle tht: 0.9163; Azimuth angle phi: 4.4942 +Force: 0.372537 1.547317 -4.601133 +Torque: -0.105773 -0.031778 -0.056497 + +Polar angle tht: 0.9163; Azimuth angle phi: 4.5379 +Force: 0.294512 1.558831 -4.595609 +Torque: -0.103021 -0.025690 -0.044828 + +Polar angle tht: 0.9163; Azimuth angle phi: 4.5815 +Force: 0.217713 1.564186 -4.588520 +Torque: -0.100810 -0.019443 -0.033404 + +Polar angle tht: 0.9163; Azimuth angle phi: 4.6251 +Force: 0.142679 1.563349 -4.579885 +Torque: -0.099145 -0.013063 -0.022165 + +Polar angle tht: 0.9163; Azimuth angle phi: 4.6688 +Force: 0.069938 1.556333 -4.569726 +Torque: -0.098032 -0.006573 -0.011051 + +Polar angle tht: 0.9163; Azimuth angle phi: 4.7124 +Force: 0.000000 1.543194 -4.558062 +Torque: -0.097475 -0.000000 -0.000000 + +Polar angle tht: 0.9163; Azimuth angle phi: 4.7560 +Force: -0.069938 1.556333 -4.569726 +Torque: -0.098032 0.006573 0.011051 + +Polar angle tht: 0.9163; Azimuth angle phi: 4.7997 +Force: -0.142679 1.563349 -4.579885 +Torque: -0.099145 0.013063 0.022165 + +Polar angle tht: 0.9163; Azimuth angle phi: 4.8433 +Force: -0.217713 1.564186 -4.588520 +Torque: -0.100810 0.019443 0.033404 + +Polar angle tht: 0.9163; Azimuth angle phi: 4.8869 +Force: -0.294512 1.558831 -4.595609 +Torque: -0.103021 0.025690 0.044828 + +Polar angle tht: 0.9163; Azimuth angle phi: 4.9306 +Force: -0.372537 1.547317 -4.601133 +Torque: -0.105773 0.031778 0.056497 + +Polar angle tht: 0.9163; Azimuth angle phi: 4.9742 +Force: -0.451236 1.529722 -4.605076 +Torque: -0.109056 0.037685 0.068466 + +Polar angle tht: 0.9163; Azimuth angle phi: 5.0178 +Force: -0.530054 1.506166 -4.607421 +Torque: -0.112862 0.043388 0.080785 + +Polar angle tht: 0.9163; Azimuth angle phi: 5.0615 +Force: -0.608433 1.476814 -4.608154 +Torque: -0.117181 0.048866 0.093504 + +Polar angle tht: 0.9163; Azimuth angle phi: 5.1051 +Force: -0.685818 1.441872 -4.607263 +Torque: -0.122000 0.054100 0.106664 + +Polar angle tht: 0.9163; Azimuth angle phi: 5.1487 +Force: -0.761663 1.401587 -4.604738 +Torque: -0.127309 0.059072 0.120301 + +Polar angle tht: 0.9163; Azimuth angle phi: 5.1924 +Force: -0.835430 1.356243 -4.600570 +Torque: -0.133092 0.063765 0.134448 + +Polar angle tht: 0.9163; Azimuth angle phi: 5.2360 +Force: -0.906598 1.306163 -4.594753 +Torque: -0.139335 0.068166 0.149128 + +Polar angle tht: 0.9163; Azimuth angle phi: 5.2796 +Force: -0.974663 1.251701 -4.587283 +Torque: -0.146024 0.072261 0.164358 + +Polar angle tht: 0.9163; Azimuth angle phi: 5.3233 +Force: -1.039145 1.193245 -4.578157 +Torque: -0.153141 0.076039 0.180148 + +Polar angle tht: 0.9163; Azimuth angle phi: 5.3669 +Force: -1.099591 1.131210 -4.567378 +Torque: -0.160670 0.079490 0.196501 + +Polar angle tht: 0.9163; Azimuth angle phi: 5.4105 +Force: -1.155576 1.066035 -4.554948 +Torque: -0.168592 0.082609 0.213410 + +Polar angle tht: 0.9163; Azimuth angle phi: 5.4542 +Force: -1.206709 0.998185 -4.540874 +Torque: -0.176890 0.085388 0.230862 + +Polar angle tht: 0.9163; Azimuth angle phi: 5.4978 +Force: -1.252633 0.928139 -4.525164 +Torque: -0.185543 0.087826 0.248833 + +Polar angle tht: 0.9163; Azimuth angle phi: 5.5414 +Force: -1.293031 0.856395 -4.507830 +Torque: -0.194532 0.089919 0.267295 + +Polar angle tht: 0.9163; Azimuth angle phi: 5.5851 +Force: -1.329551 0.785584 -4.490388 +Torque: -0.202762 0.091748 0.284938 + +Polar angle tht: 0.9163; Azimuth angle phi: 5.6287 +Force: -1.395683 0.750160 -4.498153 +Torque: -0.192134 0.094697 0.279474 + +Polar angle tht: 0.9163; Azimuth angle phi: 5.6723 +Force: -1.459342 0.712286 -4.505489 +Torque: -0.181124 0.097463 0.271884 + +Polar angle tht: 0.9163; Azimuth angle phi: 5.7160 +Force: -1.520203 0.672062 -4.512382 +Torque: -0.169751 0.100043 0.262225 + +Polar angle tht: 0.9163; Azimuth angle phi: 5.7596 +Force: -1.577949 0.629601 -4.518818 +Torque: -0.158039 0.102437 0.250570 + +Polar angle tht: 0.9163; Azimuth angle phi: 5.8032 +Force: -1.632282 0.585026 -4.524786 +Torque: -0.146010 0.104643 0.237008 + +Polar angle tht: 0.9163; Azimuth angle phi: 5.8469 +Force: -1.682915 0.538471 -4.530273 +Torque: -0.133688 0.106660 0.221642 + +Polar angle tht: 0.9163; Azimuth angle phi: 5.8905 +Force: -1.729581 0.490081 -4.535270 +Torque: -0.121099 0.108487 0.204590 + +Polar angle tht: 0.9163; Azimuth angle phi: 5.9341 +Force: -1.772034 0.440010 -4.539766 +Torque: -0.108265 0.110123 0.185980 + +Polar angle tht: 0.9163; Azimuth angle phi: 5.9778 +Force: -1.810046 0.388422 -4.543754 +Torque: -0.095214 0.111568 0.165955 + +Polar angle tht: 0.9163; Azimuth angle phi: 6.0214 +Force: -1.843414 0.335488 -4.547226 +Torque: -0.081971 0.112821 0.144667 + +Polar angle tht: 0.9163; Azimuth angle phi: 6.0650 +Force: -1.871959 0.281386 -4.550175 +Torque: -0.068564 0.113882 0.122278 + +Polar angle tht: 0.9163; Azimuth angle phi: 6.1087 +Force: -1.895528 0.226302 -4.552595 +Torque: -0.055018 0.114750 0.098958 + +Polar angle tht: 0.9163; Azimuth angle phi: 6.1523 +Force: -1.913993 0.170426 -4.554482 +Torque: -0.041361 0.115426 0.074885 + +Polar angle tht: 0.9163; Azimuth angle phi: 6.1959 +Force: -1.927254 0.113951 -4.555833 +Torque: -0.027620 0.115909 0.050242 + +Polar angle tht: 0.9163; Azimuth angle phi: 6.2396 +Force: -1.935240 0.057076 -4.556645 +Torque: -0.013824 0.116198 0.025217 + +Polar angle tht: 0.9163; Azimuth angle phi: 6.2832 +Force: -1.937906 0.000000 -4.556915 +Torque: -0.000000 0.116295 0.000000 + +Polar angle tht: 0.9599; Azimuth angle phi: 0.0000 +Force: -1.973964 0.000000 -4.096413 +Torque: -0.000000 0.111613 0.000000 + +Polar angle tht: 0.9599; Azimuth angle phi: 0.0436 +Force: -1.971209 -0.057032 -4.096149 +Torque: 0.013474 0.111522 -0.026884 + +Polar angle tht: 0.9599; Azimuth angle phi: 0.0873 +Force: -1.962958 -0.113857 -4.095360 +Torque: 0.026922 0.111249 -0.053563 + +Polar angle tht: 0.9599; Azimuth angle phi: 0.1309 +Force: -1.949258 -0.170269 -4.094046 +Torque: 0.040314 0.110793 -0.079834 + +Polar angle tht: 0.9599; Azimuth angle phi: 0.1745 +Force: -1.930183 -0.226066 -4.092210 +Torque: 0.053625 0.110155 -0.105498 + +Polar angle tht: 0.9599; Azimuth angle phi: 0.2182 +Force: -1.905840 -0.281046 -4.089855 +Torque: 0.066827 0.109334 -0.130359 + +Polar angle tht: 0.9599; Azimuth angle phi: 0.2618 +Force: -1.876362 -0.335016 -4.086987 +Torque: 0.079894 0.108331 -0.154228 + +Polar angle tht: 0.9599; Azimuth angle phi: 0.3054 +Force: -1.841912 -0.387784 -4.083609 +Torque: 0.092798 0.107146 -0.176923 + +Polar angle tht: 0.9599; Azimuth angle phi: 0.3491 +Force: -1.802678 -0.439167 -4.079729 +Torque: 0.105516 0.105779 -0.198272 + +Polar angle tht: 0.9599; Azimuth angle phi: 0.3927 +Force: -1.758875 -0.488989 -4.075355 +Torque: 0.118019 0.104231 -0.218112 + +Polar angle tht: 0.9599; Azimuth angle phi: 0.4363 +Force: -1.710741 -0.537083 -4.070494 +Torque: 0.130285 0.102500 -0.236291 + +Polar angle tht: 0.9599; Azimuth angle phi: 0.4800 +Force: -1.658538 -0.583292 -4.065156 +Torque: 0.142288 0.100589 -0.252673 + +Polar angle tht: 0.9599; Azimuth angle phi: 0.5236 +Force: -1.602545 -0.627466 -4.059350 +Torque: 0.154004 0.098497 -0.267131 + +Polar angle tht: 0.9599; Azimuth angle phi: 0.5672 +Force: -1.543065 -0.669470 -4.053089 +Torque: 0.165410 0.096225 -0.279557 + +Polar angle tht: 0.9599; Azimuth angle phi: 0.6109 +Force: -1.480412 -0.709178 -4.046384 +Torque: 0.176483 0.093773 -0.289854 + +Polar angle tht: 0.9599; Azimuth angle phi: 0.6545 +Force: -1.439067 -0.771033 -4.055495 +Torque: 0.175481 0.092134 -0.282022 + +Polar angle tht: 0.9599; Azimuth angle phi: 0.6981 +Force: -1.408853 -0.849404 -4.074702 +Torque: 0.166390 0.090877 -0.262934 + +Polar angle tht: 0.9599; Azimuth angle phi: 0.7418 +Force: -1.372216 -0.927057 -4.092374 +Torque: 0.157573 0.089268 -0.244357 + +Polar angle tht: 0.9599; Azimuth angle phi: 0.7854 +Force: -1.329405 -1.003444 -4.108498 +Torque: 0.149049 0.087306 -0.226338 + +Polar angle tht: 0.9599; Azimuth angle phi: 0.8290 +Force: -1.280713 -1.078024 -4.123062 +Torque: 0.140838 0.084990 -0.208914 + +Polar angle tht: 0.9599; Azimuth angle phi: 0.8727 +Force: -1.226481 -1.150268 -4.136056 +Torque: 0.132959 0.082320 -0.192117 + +Polar angle tht: 0.9599; Azimuth angle phi: 0.9163 +Force: -1.167085 -1.219664 -4.147476 +Torque: 0.125431 0.079300 -0.175964 + +Polar angle tht: 0.9599; Azimuth angle phi: 0.9599 +Force: -1.102943 -1.285719 -4.157318 +Torque: 0.118272 0.075934 -0.160469 + +Polar angle tht: 0.9599; Azimuth angle phi: 1.0036 +Force: -1.034508 -1.347962 -4.165582 +Torque: 0.111499 0.072231 -0.145633 + +Polar angle tht: 0.9599; Azimuth angle phi: 1.0472 +Force: -0.962262 -1.405952 -4.172269 +Torque: 0.105129 0.068199 -0.131450 + +Polar angle tht: 0.9599; Azimuth angle phi: 1.0908 +Force: -0.886716 -1.459276 -4.177384 +Torque: 0.099179 0.063850 -0.117907 + +Polar angle tht: 0.9599; Azimuth angle phi: 1.1345 +Force: -0.808407 -1.507556 -4.180934 +Torque: 0.093662 0.059196 -0.104980 + +Polar angle tht: 0.9599; Azimuth angle phi: 1.1781 +Force: -0.727889 -1.550448 -4.182926 +Torque: 0.088594 0.054253 -0.092640 + +Polar angle tht: 0.9599; Azimuth angle phi: 1.2217 +Force: -0.645735 -1.587650 -4.183371 +Torque: 0.083987 0.049037 -0.080850 + +Polar angle tht: 0.9599; Azimuth angle phi: 1.2654 +Force: -0.562527 -1.618898 -4.182280 +Torque: 0.079854 0.043566 -0.069566 + +Polar angle tht: 0.9599; Azimuth angle phi: 1.3090 +Force: -0.478856 -1.643972 -4.179669 +Torque: 0.076207 0.037861 -0.058739 + +Polar angle tht: 0.9599; Azimuth angle phi: 1.3526 +Force: -0.395316 -1.662697 -4.175551 +Torque: 0.073055 0.031943 -0.048313 + +Polar angle tht: 0.9599; Azimuth angle phi: 1.3963 +Force: -0.312499 -1.674945 -4.169944 +Torque: 0.070408 0.025835 -0.038230 + +Polar angle tht: 0.9599; Azimuth angle phi: 1.4399 +Force: -0.230991 -1.680633 -4.162866 +Torque: 0.068274 0.019561 -0.028424 + +Polar angle tht: 0.9599; Azimuth angle phi: 1.4835 +Force: -0.151367 -1.679726 -4.154335 +Torque: 0.066659 0.013146 -0.018831 + +Polar angle tht: 0.9599; Azimuth angle phi: 1.5272 +Force: -0.074189 -1.672237 -4.144373 +Torque: 0.065568 0.006617 -0.009380 + +Polar angle tht: 0.9599; Azimuth angle phi: 1.5708 +Force: 0.000000 -1.658227 -4.133000 +Torque: 0.065007 -0.000000 0.000000 + +Polar angle tht: 0.9599; Azimuth angle phi: 1.6144 +Force: 0.074189 -1.672237 -4.144373 +Torque: 0.065568 -0.006617 0.009380 + +Polar angle tht: 0.9599; Azimuth angle phi: 1.6581 +Force: 0.151367 -1.679726 -4.154335 +Torque: 0.066659 -0.013146 0.018831 + +Polar angle tht: 0.9599; Azimuth angle phi: 1.7017 +Force: 0.230991 -1.680633 -4.162866 +Torque: 0.068274 -0.019561 0.028424 + +Polar angle tht: 0.9599; Azimuth angle phi: 1.7453 +Force: 0.312499 -1.674945 -4.169944 +Torque: 0.070408 -0.025835 0.038230 + +Polar angle tht: 0.9599; Azimuth angle phi: 1.7890 +Force: 0.395316 -1.662697 -4.175551 +Torque: 0.073055 -0.031943 0.048313 + +Polar angle tht: 0.9599; Azimuth angle phi: 1.8326 +Force: 0.478856 -1.643972 -4.179669 +Torque: 0.076207 -0.037861 0.058739 + +Polar angle tht: 0.9599; Azimuth angle phi: 1.8762 +Force: 0.562527 -1.618898 -4.182280 +Torque: 0.079854 -0.043566 0.069566 + +Polar angle tht: 0.9599; Azimuth angle phi: 1.9199 +Force: 0.645735 -1.587650 -4.183371 +Torque: 0.083987 -0.049037 0.080850 + +Polar angle tht: 0.9599; Azimuth angle phi: 1.9635 +Force: 0.727889 -1.550448 -4.182926 +Torque: 0.088594 -0.054253 0.092640 + +Polar angle tht: 0.9599; Azimuth angle phi: 2.0071 +Force: 0.808407 -1.507556 -4.180934 +Torque: 0.093662 -0.059196 0.104980 + +Polar angle tht: 0.9599; Azimuth angle phi: 2.0508 +Force: 0.886716 -1.459276 -4.177384 +Torque: 0.099179 -0.063850 0.117907 + +Polar angle tht: 0.9599; Azimuth angle phi: 2.0944 +Force: 0.962262 -1.405952 -4.172269 +Torque: 0.105129 -0.068199 0.131450 + +Polar angle tht: 0.9599; Azimuth angle phi: 2.1380 +Force: 1.034508 -1.347962 -4.165582 +Torque: 0.111499 -0.072231 0.145633 + +Polar angle tht: 0.9599; Azimuth angle phi: 2.1817 +Force: 1.102943 -1.285719 -4.157318 +Torque: 0.118272 -0.075934 0.160469 + +Polar angle tht: 0.9599; Azimuth angle phi: 2.2253 +Force: 1.167085 -1.219664 -4.147476 +Torque: 0.125431 -0.079300 0.175964 + +Polar angle tht: 0.9599; Azimuth angle phi: 2.2689 +Force: 1.226481 -1.150268 -4.136056 +Torque: 0.132959 -0.082320 0.192117 + +Polar angle tht: 0.9599; Azimuth angle phi: 2.3126 +Force: 1.280713 -1.078024 -4.123062 +Torque: 0.140838 -0.084990 0.208914 + +Polar angle tht: 0.9599; Azimuth angle phi: 2.3562 +Force: 1.329405 -1.003444 -4.108498 +Torque: 0.149049 -0.087306 0.226338 + +Polar angle tht: 0.9599; Azimuth angle phi: 2.3998 +Force: 1.372216 -0.927057 -4.092374 +Torque: 0.157573 -0.089268 0.244357 + +Polar angle tht: 0.9599; Azimuth angle phi: 2.4435 +Force: 1.408853 -0.849404 -4.074702 +Torque: 0.166390 -0.090877 0.262934 + +Polar angle tht: 0.9599; Azimuth angle phi: 2.4871 +Force: 1.439067 -0.771033 -4.055495 +Torque: 0.175481 -0.092134 0.282022 + +Polar angle tht: 0.9599; Azimuth angle phi: 2.5307 +Force: 1.480412 -0.709178 -4.046384 +Torque: 0.176483 -0.093773 0.289854 + +Polar angle tht: 0.9599; Azimuth angle phi: 2.5744 +Force: 1.543065 -0.669470 -4.053089 +Torque: 0.165410 -0.096225 0.279557 + +Polar angle tht: 0.9599; Azimuth angle phi: 2.6180 +Force: 1.602545 -0.627466 -4.059350 +Torque: 0.154004 -0.098497 0.267131 + +Polar angle tht: 0.9599; Azimuth angle phi: 2.6616 +Force: 1.658538 -0.583292 -4.065156 +Torque: 0.142288 -0.100589 0.252673 + +Polar angle tht: 0.9599; Azimuth angle phi: 2.7053 +Force: 1.710741 -0.537083 -4.070494 +Torque: 0.130285 -0.102500 0.236291 + +Polar angle tht: 0.9599; Azimuth angle phi: 2.7489 +Force: 1.758875 -0.488989 -4.075355 +Torque: 0.118019 -0.104231 0.218112 + +Polar angle tht: 0.9599; Azimuth angle phi: 2.7925 +Force: 1.802678 -0.439167 -4.079729 +Torque: 0.105516 -0.105779 0.198272 + +Polar angle tht: 0.9599; Azimuth angle phi: 2.8362 +Force: 1.841912 -0.387784 -4.083609 +Torque: 0.092798 -0.107146 0.176923 + +Polar angle tht: 0.9599; Azimuth angle phi: 2.8798 +Force: 1.876362 -0.335016 -4.086987 +Torque: 0.079894 -0.108331 0.154228 + +Polar angle tht: 0.9599; Azimuth angle phi: 2.9234 +Force: 1.905840 -0.281046 -4.089855 +Torque: 0.066827 -0.109334 0.130359 + +Polar angle tht: 0.9599; Azimuth angle phi: 2.9671 +Force: 1.930183 -0.226066 -4.092210 +Torque: 0.053625 -0.110155 0.105498 + +Polar angle tht: 0.9599; Azimuth angle phi: 3.0107 +Force: 1.949258 -0.170269 -4.094046 +Torque: 0.040314 -0.110793 0.079834 + +Polar angle tht: 0.9599; Azimuth angle phi: 3.0543 +Force: 1.962958 -0.113857 -4.095360 +Torque: 0.026922 -0.111249 0.053563 + +Polar angle tht: 0.9599; Azimuth angle phi: 3.0980 +Force: 1.971209 -0.057032 -4.096149 +Torque: 0.013474 -0.111522 0.026884 + +Polar angle tht: 0.9599; Azimuth angle phi: 3.1416 +Force: 1.973964 0.000000 -4.096413 +Torque: -0.000000 -0.111613 -0.000000 + +Polar angle tht: 0.9599; Azimuth angle phi: 3.1852 +Force: 1.971209 0.057032 -4.096149 +Torque: -0.013474 -0.111522 -0.026884 + +Polar angle tht: 0.9599; Azimuth angle phi: 3.2289 +Force: 1.962958 0.113857 -4.095360 +Torque: -0.026922 -0.111249 -0.053563 + +Polar angle tht: 0.9599; Azimuth angle phi: 3.2725 +Force: 1.949258 0.170269 -4.094046 +Torque: -0.040314 -0.110793 -0.079834 + +Polar angle tht: 0.9599; Azimuth angle phi: 3.3161 +Force: 1.930183 0.226066 -4.092210 +Torque: -0.053625 -0.110155 -0.105498 + +Polar angle tht: 0.9599; Azimuth angle phi: 3.3598 +Force: 1.905840 0.281046 -4.089855 +Torque: -0.066827 -0.109334 -0.130359 + +Polar angle tht: 0.9599; Azimuth angle phi: 3.4034 +Force: 1.876362 0.335016 -4.086987 +Torque: -0.079894 -0.108331 -0.154228 + +Polar angle tht: 0.9599; Azimuth angle phi: 3.4470 +Force: 1.841912 0.387784 -4.083609 +Torque: -0.092798 -0.107146 -0.176923 + +Polar angle tht: 0.9599; Azimuth angle phi: 3.4907 +Force: 1.802678 0.439167 -4.079729 +Torque: -0.105516 -0.105779 -0.198272 + +Polar angle tht: 0.9599; Azimuth angle phi: 3.5343 +Force: 1.758875 0.488989 -4.075355 +Torque: -0.118019 -0.104231 -0.218112 + +Polar angle tht: 0.9599; Azimuth angle phi: 3.5779 +Force: 1.710741 0.537083 -4.070494 +Torque: -0.130285 -0.102500 -0.236291 + +Polar angle tht: 0.9599; Azimuth angle phi: 3.6216 +Force: 1.658538 0.583292 -4.065156 +Torque: -0.142288 -0.100589 -0.252673 + +Polar angle tht: 0.9599; Azimuth angle phi: 3.6652 +Force: 1.602545 0.627466 -4.059350 +Torque: -0.154004 -0.098497 -0.267131 + +Polar angle tht: 0.9599; Azimuth angle phi: 3.7088 +Force: 1.543065 0.669470 -4.053089 +Torque: -0.165410 -0.096225 -0.279557 + +Polar angle tht: 0.9599; Azimuth angle phi: 3.7525 +Force: 1.480412 0.709178 -4.046384 +Torque: -0.176483 -0.093773 -0.289854 + +Polar angle tht: 0.9599; Azimuth angle phi: 3.7961 +Force: 1.439067 0.771033 -4.055495 +Torque: -0.175480 -0.092134 -0.282021 + +Polar angle tht: 0.9599; Azimuth angle phi: 3.8397 +Force: 1.408853 0.849404 -4.074702 +Torque: -0.166389 -0.090877 -0.262933 + +Polar angle tht: 0.9599; Azimuth angle phi: 3.8834 +Force: 1.372216 0.927057 -4.092374 +Torque: -0.157571 -0.089268 -0.244355 + +Polar angle tht: 0.9599; Azimuth angle phi: 3.9270 +Force: 1.329405 1.003444 -4.108498 +Torque: -0.149047 -0.087306 -0.226335 + +Polar angle tht: 0.9599; Azimuth angle phi: 3.9706 +Force: 1.280713 1.078024 -4.123062 +Torque: -0.140835 -0.084990 -0.208911 + +Polar angle tht: 0.9599; Azimuth angle phi: 4.0143 +Force: 1.226481 1.150268 -4.136056 +Torque: -0.132956 -0.082320 -0.192113 + +Polar angle tht: 0.9599; Azimuth angle phi: 4.0579 +Force: 1.167085 1.219664 -4.147476 +Torque: -0.125428 -0.079300 -0.175961 + +Polar angle tht: 0.9599; Azimuth angle phi: 4.1015 +Force: 1.102943 1.285719 -4.157318 +Torque: -0.118268 -0.075934 -0.160465 + +Polar angle tht: 0.9599; Azimuth angle phi: 4.1452 +Force: 1.034508 1.347962 -4.165582 +Torque: -0.111495 -0.072231 -0.145629 + +Polar angle tht: 0.9599; Azimuth angle phi: 4.1888 +Force: 0.962262 1.405952 -4.172269 +Torque: -0.105125 -0.068199 -0.131446 + +Polar angle tht: 0.9599; Azimuth angle phi: 4.2324 +Force: 0.886716 1.459276 -4.177384 +Torque: -0.099174 -0.063850 -0.117903 + +Polar angle tht: 0.9599; Azimuth angle phi: 4.2761 +Force: 0.808407 1.507556 -4.180934 +Torque: -0.093657 -0.059196 -0.104976 + +Polar angle tht: 0.9599; Azimuth angle phi: 4.3197 +Force: 0.727889 1.550448 -4.182926 +Torque: -0.088588 -0.054253 -0.092637 + +Polar angle tht: 0.9599; Azimuth angle phi: 4.3633 +Force: 0.645735 1.587650 -4.183371 +Torque: -0.083982 -0.049037 -0.080847 + +Polar angle tht: 0.9599; Azimuth angle phi: 4.4070 +Force: 0.562527 1.618898 -4.182280 +Torque: -0.079849 -0.043566 -0.069563 + +Polar angle tht: 0.9599; Azimuth angle phi: 4.4506 +Force: 0.478856 1.643972 -4.179669 +Torque: -0.076201 -0.037861 -0.058736 + +Polar angle tht: 0.9599; Azimuth angle phi: 4.4942 +Force: 0.395316 1.662697 -4.175551 +Torque: -0.073049 -0.031943 -0.048311 + +Polar angle tht: 0.9599; Azimuth angle phi: 4.5379 +Force: 0.312499 1.674945 -4.169944 +Torque: -0.070402 -0.025835 -0.038228 + +Polar angle tht: 0.9599; Azimuth angle phi: 4.5815 +Force: 0.230991 1.680633 -4.162866 +Torque: -0.068268 -0.019561 -0.028423 + +Polar angle tht: 0.9599; Azimuth angle phi: 4.6251 +Force: 0.151367 1.679726 -4.154335 +Torque: -0.066652 -0.013146 -0.018830 + +Polar angle tht: 0.9599; Azimuth angle phi: 4.6688 +Force: 0.074189 1.672237 -4.144373 +Torque: -0.065562 -0.006617 -0.009379 + +Polar angle tht: 0.9599; Azimuth angle phi: 4.7124 +Force: 0.000000 1.658227 -4.133000 +Torque: -0.065000 -0.000000 -0.000000 + +Polar angle tht: 0.9599; Azimuth angle phi: 4.7560 +Force: -0.074189 1.672237 -4.144373 +Torque: -0.065562 0.006617 0.009379 + +Polar angle tht: 0.9599; Azimuth angle phi: 4.7997 +Force: -0.151367 1.679726 -4.154335 +Torque: -0.066652 0.013146 0.018830 + +Polar angle tht: 0.9599; Azimuth angle phi: 4.8433 +Force: -0.230991 1.680633 -4.162866 +Torque: -0.068268 0.019561 0.028423 + +Polar angle tht: 0.9599; Azimuth angle phi: 4.8869 +Force: -0.312499 1.674945 -4.169944 +Torque: -0.070402 0.025835 0.038228 + +Polar angle tht: 0.9599; Azimuth angle phi: 4.9306 +Force: -0.395316 1.662697 -4.175551 +Torque: -0.073049 0.031943 0.048311 + +Polar angle tht: 0.9599; Azimuth angle phi: 4.9742 +Force: -0.478856 1.643972 -4.179669 +Torque: -0.076201 0.037861 0.058736 + +Polar angle tht: 0.9599; Azimuth angle phi: 5.0178 +Force: -0.562527 1.618898 -4.182280 +Torque: -0.079849 0.043566 0.069563 + +Polar angle tht: 0.9599; Azimuth angle phi: 5.0615 +Force: -0.645735 1.587650 -4.183371 +Torque: -0.083982 0.049037 0.080847 + +Polar angle tht: 0.9599; Azimuth angle phi: 5.1051 +Force: -0.727889 1.550448 -4.182926 +Torque: -0.088588 0.054253 0.092637 + +Polar angle tht: 0.9599; Azimuth angle phi: 5.1487 +Force: -0.808407 1.507556 -4.180934 +Torque: -0.093657 0.059196 0.104976 + +Polar angle tht: 0.9599; Azimuth angle phi: 5.1924 +Force: -0.886716 1.459276 -4.177384 +Torque: -0.099174 0.063850 0.117903 + +Polar angle tht: 0.9599; Azimuth angle phi: 5.2360 +Force: -0.962262 1.405952 -4.172269 +Torque: -0.105125 0.068199 0.131446 + +Polar angle tht: 0.9599; Azimuth angle phi: 5.2796 +Force: -1.034508 1.347962 -4.165582 +Torque: -0.111495 0.072231 0.145629 + +Polar angle tht: 0.9599; Azimuth angle phi: 5.3233 +Force: -1.102943 1.285719 -4.157318 +Torque: -0.118268 0.075934 0.160465 + +Polar angle tht: 0.9599; Azimuth angle phi: 5.3669 +Force: -1.167085 1.219664 -4.147476 +Torque: -0.125428 0.079300 0.175961 + +Polar angle tht: 0.9599; Azimuth angle phi: 5.4105 +Force: -1.226481 1.150268 -4.136056 +Torque: -0.132956 0.082320 0.192113 + +Polar angle tht: 0.9599; Azimuth angle phi: 5.4542 +Force: -1.280713 1.078024 -4.123062 +Torque: -0.140835 0.084990 0.208911 + +Polar angle tht: 0.9599; Azimuth angle phi: 5.4978 +Force: -1.329405 1.003444 -4.108498 +Torque: -0.149047 0.087306 0.226335 + +Polar angle tht: 0.9599; Azimuth angle phi: 5.5414 +Force: -1.372216 0.927057 -4.092374 +Torque: -0.157571 0.089268 0.244355 + +Polar angle tht: 0.9599; Azimuth angle phi: 5.5851 +Force: -1.408853 0.849404 -4.074702 +Torque: -0.166389 0.090877 0.262933 + +Polar angle tht: 0.9599; Azimuth angle phi: 5.6287 +Force: -1.439067 0.771033 -4.055495 +Torque: -0.175480 0.092134 0.282021 + +Polar angle tht: 0.9599; Azimuth angle phi: 5.6723 +Force: -1.480412 0.709178 -4.046384 +Torque: -0.176483 0.093773 0.289854 + +Polar angle tht: 0.9599; Azimuth angle phi: 5.7160 +Force: -1.543065 0.669470 -4.053089 +Torque: -0.165410 0.096225 0.279557 + +Polar angle tht: 0.9599; Azimuth angle phi: 5.7596 +Force: -1.602545 0.627466 -4.059350 +Torque: -0.154004 0.098497 0.267131 + +Polar angle tht: 0.9599; Azimuth angle phi: 5.8032 +Force: -1.658538 0.583292 -4.065156 +Torque: -0.142288 0.100589 0.252673 + +Polar angle tht: 0.9599; Azimuth angle phi: 5.8469 +Force: -1.710741 0.537083 -4.070494 +Torque: -0.130285 0.102500 0.236291 + +Polar angle tht: 0.9599; Azimuth angle phi: 5.8905 +Force: -1.758875 0.488989 -4.075355 +Torque: -0.118019 0.104231 0.218112 + +Polar angle tht: 0.9599; Azimuth angle phi: 5.9341 +Force: -1.802678 0.439167 -4.079729 +Torque: -0.105516 0.105779 0.198272 + +Polar angle tht: 0.9599; Azimuth angle phi: 5.9778 +Force: -1.841912 0.387784 -4.083609 +Torque: -0.092798 0.107146 0.176923 + +Polar angle tht: 0.9599; Azimuth angle phi: 6.0214 +Force: -1.876362 0.335016 -4.086987 +Torque: -0.079894 0.108331 0.154228 + +Polar angle tht: 0.9599; Azimuth angle phi: 6.0650 +Force: -1.905840 0.281046 -4.089855 +Torque: -0.066827 0.109334 0.130359 + +Polar angle tht: 0.9599; Azimuth angle phi: 6.1087 +Force: -1.930183 0.226066 -4.092210 +Torque: -0.053625 0.110155 0.105498 + +Polar angle tht: 0.9599; Azimuth angle phi: 6.1523 +Force: -1.949258 0.170269 -4.094046 +Torque: -0.040314 0.110793 0.079834 + +Polar angle tht: 0.9599; Azimuth angle phi: 6.1959 +Force: -1.962958 0.113857 -4.095360 +Torque: -0.026922 0.111249 0.053563 + +Polar angle tht: 0.9599; Azimuth angle phi: 6.2396 +Force: -1.971209 0.057032 -4.096149 +Torque: -0.013474 0.111522 0.026884 + +Polar angle tht: 0.9599; Azimuth angle phi: 6.2832 +Force: -1.973964 0.000000 -4.096413 +Torque: -0.000000 0.111613 0.000000 + +Polar angle tht: 1.0036; Azimuth angle phi: 0.0000 +Force: -2.001022 0.000000 -3.646195 +Torque: -0.000000 0.105979 0.000000 + +Polar angle tht: 1.0036; Azimuth angle phi: 0.0436 +Force: -1.998188 -0.056651 -3.645941 +Torque: 0.013024 0.105894 -0.028498 + +Polar angle tht: 1.0036; Azimuth angle phi: 0.0873 +Force: -1.989703 -0.113090 -3.645180 +Torque: 0.026021 0.105640 -0.056780 + +Polar angle tht: 1.0036; Azimuth angle phi: 0.1309 +Force: -1.975614 -0.169107 -3.643913 +Torque: 0.038966 0.105215 -0.084629 + +Polar angle tht: 1.0036; Azimuth angle phi: 0.1745 +Force: -1.956001 -0.224492 -3.642142 +Torque: 0.051831 0.104620 -0.111834 + +Polar angle tht: 1.0036; Azimuth angle phi: 0.2182 +Force: -1.930975 -0.279041 -3.639871 +Torque: 0.064590 0.103855 -0.138188 + +Polar angle tht: 1.0036; Azimuth angle phi: 0.2618 +Force: -1.900676 -0.332554 -3.637104 +Torque: 0.077217 0.102920 -0.163491 + +Polar angle tht: 1.0036; Azimuth angle phi: 0.3054 +Force: -1.865273 -0.384837 -3.633847 +Torque: 0.089688 0.101815 -0.187549 + +Polar angle tht: 1.0036; Azimuth angle phi: 0.3491 +Force: -1.824966 -0.435701 -3.630105 +Torque: 0.101975 0.100539 -0.210180 + +Polar angle tht: 1.0036; Azimuth angle phi: 0.3927 +Force: -1.779980 -0.484968 -3.625886 +Torque: 0.114056 0.099092 -0.231211 + +Polar angle tht: 1.0036; Azimuth angle phi: 0.4363 +Force: -1.730563 -0.532466 -3.621198 +Torque: 0.125905 0.097475 -0.250483 + +Polar angle tht: 1.0036; Azimuth angle phi: 0.4800 +Force: -1.676989 -0.578036 -3.616049 +Torque: 0.137498 0.095687 -0.267848 + +Polar angle tht: 1.0036; Azimuth angle phi: 0.5236 +Force: -1.619554 -0.621526 -3.610450 +Torque: 0.148813 0.093728 -0.283174 + +Polar angle tht: 1.0036; Azimuth angle phi: 0.5672 +Force: -1.561388 -0.665231 -3.606001 +Torque: 0.158678 0.091714 -0.294489 + +Polar angle tht: 1.0036; Azimuth angle phi: 0.6109 +Force: -1.543767 -0.747978 -3.626556 +Torque: 0.149753 0.091324 -0.274689 + +Polar angle tht: 1.0036; Azimuth angle phi: 0.6545 +Force: -1.518974 -0.831139 -3.645676 +Torque: 0.141037 0.090588 -0.255390 + +Polar angle tht: 1.0036; Azimuth angle phi: 0.6981 +Force: -1.487171 -0.914129 -3.663345 +Torque: 0.132550 0.089499 -0.236655 + +Polar angle tht: 1.0036; Azimuth angle phi: 0.7418 +Force: -1.448569 -0.996361 -3.679550 +Torque: 0.124312 0.088051 -0.218542 + +Polar angle tht: 1.0036; Azimuth angle phi: 0.7854 +Force: -1.403435 -1.077254 -3.694279 +Torque: 0.116341 0.086240 -0.201098 + +Polar angle tht: 1.0036; Azimuth angle phi: 0.8290 +Force: -1.352078 -1.156236 -3.707524 +Torque: 0.108657 0.084066 -0.184359 + +Polar angle tht: 1.0036; Azimuth angle phi: 0.8727 +Force: -1.294858 -1.232745 -3.719281 +Torque: 0.101277 0.081528 -0.168354 + +Polar angle tht: 1.0036; Azimuth angle phi: 0.9163 +Force: -1.232175 -1.306238 -3.729547 +Torque: 0.094220 0.078630 -0.153100 + +Polar angle tht: 1.0036; Azimuth angle phi: 0.9599 +Force: -1.164470 -1.376194 -3.738323 +Torque: 0.087503 0.075377 -0.138606 + +Polar angle tht: 1.0036; Azimuth angle phi: 1.0036 +Force: -1.092222 -1.442113 -3.745611 +Torque: 0.081143 0.071775 -0.124872 + +Polar angle tht: 1.0036; Azimuth angle phi: 1.0472 +Force: -1.015944 -1.503527 -3.751415 +Torque: 0.075156 0.067834 -0.111886 + +Polar angle tht: 1.0036; Azimuth angle phi: 1.0908 +Force: -0.936176 -1.560000 -3.755744 +Torque: 0.069557 0.063564 -0.099630 + +Polar angle tht: 1.0036; Azimuth angle phi: 1.1345 +Force: -0.853485 -1.611129 -3.758606 +Torque: 0.064361 0.058980 -0.088076 + +Polar angle tht: 1.0036; Azimuth angle phi: 1.1781 +Force: -0.768460 -1.656553 -3.760011 +Torque: 0.059582 0.054096 -0.077188 + +Polar angle tht: 1.0036; Azimuth angle phi: 1.2217 +Force: -0.681705 -1.695948 -3.759971 +Torque: 0.055233 0.048930 -0.066923 + +Polar angle tht: 1.0036; Azimuth angle phi: 1.2654 +Force: -0.593840 -1.729036 -3.758501 +Torque: 0.051326 0.043499 -0.057230 + +Polar angle tht: 1.0036; Azimuth angle phi: 1.3090 +Force: -0.505488 -1.755585 -3.755616 +Torque: 0.047873 0.037825 -0.048053 + +Polar angle tht: 1.0036; Azimuth angle phi: 1.3526 +Force: -0.417279 -1.775408 -3.751331 +Torque: 0.044882 0.031930 -0.039328 + +Polar angle tht: 1.0036; Azimuth angle phi: 1.3963 +Force: -0.329840 -1.788370 -3.745665 +Torque: 0.042364 0.025837 -0.030989 + +Polar angle tht: 1.0036; Azimuth angle phi: 1.4399 +Force: -0.243791 -1.794382 -3.738636 +Torque: 0.040325 0.019571 -0.022963 + +Polar angle tht: 1.0036; Azimuth angle phi: 1.4835 +Force: -0.159742 -1.793408 -3.730264 +Torque: 0.038774 0.013158 -0.015175 + +Polar angle tht: 1.0036; Azimuth angle phi: 1.5272 +Force: -0.078287 -1.785462 -3.720568 +Torque: 0.037714 0.006625 -0.007547 + +Polar angle tht: 1.0036; Azimuth angle phi: 1.5708 +Force: 0.000000 -1.770608 -3.709570 +Torque: 0.037151 -0.000000 0.000000 + +Polar angle tht: 1.0036; Azimuth angle phi: 1.6144 +Force: 0.078287 -1.785462 -3.720568 +Torque: 0.037714 -0.006625 0.007547 + +Polar angle tht: 1.0036; Azimuth angle phi: 1.6581 +Force: 0.159742 -1.793408 -3.730264 +Torque: 0.038774 -0.013158 0.015175 + +Polar angle tht: 1.0036; Azimuth angle phi: 1.7017 +Force: 0.243791 -1.794382 -3.738636 +Torque: 0.040325 -0.019571 0.022963 + +Polar angle tht: 1.0036; Azimuth angle phi: 1.7453 +Force: 0.329840 -1.788370 -3.745665 +Torque: 0.042364 -0.025837 0.030989 + +Polar angle tht: 1.0036; Azimuth angle phi: 1.7890 +Force: 0.417279 -1.775408 -3.751331 +Torque: 0.044882 -0.031930 0.039328 + +Polar angle tht: 1.0036; Azimuth angle phi: 1.8326 +Force: 0.505488 -1.755585 -3.755616 +Torque: 0.047873 -0.037825 0.048053 + +Polar angle tht: 1.0036; Azimuth angle phi: 1.8762 +Force: 0.593840 -1.729036 -3.758501 +Torque: 0.051326 -0.043499 0.057230 + +Polar angle tht: 1.0036; Azimuth angle phi: 1.9199 +Force: 0.681705 -1.695948 -3.759971 +Torque: 0.055233 -0.048930 0.066923 + +Polar angle tht: 1.0036; Azimuth angle phi: 1.9635 +Force: 0.768460 -1.656553 -3.760011 +Torque: 0.059582 -0.054096 0.077188 + +Polar angle tht: 1.0036; Azimuth angle phi: 2.0071 +Force: 0.853485 -1.611129 -3.758606 +Torque: 0.064361 -0.058980 0.088076 + +Polar angle tht: 1.0036; Azimuth angle phi: 2.0508 +Force: 0.936176 -1.560000 -3.755744 +Torque: 0.069557 -0.063564 0.099630 + +Polar angle tht: 1.0036; Azimuth angle phi: 2.0944 +Force: 1.015944 -1.503527 -3.751415 +Torque: 0.075156 -0.067834 0.111886 + +Polar angle tht: 1.0036; Azimuth angle phi: 2.1380 +Force: 1.092222 -1.442113 -3.745611 +Torque: 0.081143 -0.071775 0.124872 + +Polar angle tht: 1.0036; Azimuth angle phi: 2.1817 +Force: 1.164470 -1.376194 -3.738323 +Torque: 0.087503 -0.075377 0.138606 + +Polar angle tht: 1.0036; Azimuth angle phi: 2.2253 +Force: 1.232175 -1.306238 -3.729547 +Torque: 0.094220 -0.078630 0.153100 + +Polar angle tht: 1.0036; Azimuth angle phi: 2.2689 +Force: 1.294858 -1.232745 -3.719281 +Torque: 0.101277 -0.081528 0.168354 + +Polar angle tht: 1.0036; Azimuth angle phi: 2.3126 +Force: 1.352078 -1.156236 -3.707524 +Torque: 0.108657 -0.084066 0.184359 + +Polar angle tht: 1.0036; Azimuth angle phi: 2.3562 +Force: 1.403435 -1.077254 -3.694279 +Torque: 0.116341 -0.086240 0.201098 + +Polar angle tht: 1.0036; Azimuth angle phi: 2.3998 +Force: 1.448569 -0.996361 -3.679550 +Torque: 0.124312 -0.088051 0.218542 + +Polar angle tht: 1.0036; Azimuth angle phi: 2.4435 +Force: 1.487171 -0.914129 -3.663345 +Torque: 0.132550 -0.089499 0.236655 + +Polar angle tht: 1.0036; Azimuth angle phi: 2.4871 +Force: 1.518974 -0.831139 -3.645676 +Torque: 0.141037 -0.090588 0.255390 + +Polar angle tht: 1.0036; Azimuth angle phi: 2.5307 +Force: 1.543767 -0.747978 -3.626556 +Torque: 0.149753 -0.091324 0.274689 + +Polar angle tht: 1.0036; Azimuth angle phi: 2.5744 +Force: 1.561388 -0.665231 -3.606001 +Torque: 0.158678 -0.091714 0.294489 + +Polar angle tht: 1.0036; Azimuth angle phi: 2.6180 +Force: 1.619554 -0.621526 -3.610450 +Torque: 0.148813 -0.093728 0.283174 + +Polar angle tht: 1.0036; Azimuth angle phi: 2.6616 +Force: 1.676989 -0.578036 -3.616049 +Torque: 0.137498 -0.095687 0.267848 + +Polar angle tht: 1.0036; Azimuth angle phi: 2.7053 +Force: 1.730563 -0.532466 -3.621198 +Torque: 0.125905 -0.097475 0.250483 + +Polar angle tht: 1.0036; Azimuth angle phi: 2.7489 +Force: 1.779980 -0.484968 -3.625886 +Torque: 0.114056 -0.099092 0.231211 + +Polar angle tht: 1.0036; Azimuth angle phi: 2.7925 +Force: 1.824966 -0.435701 -3.630105 +Torque: 0.101975 -0.100539 0.210180 + +Polar angle tht: 1.0036; Azimuth angle phi: 2.8362 +Force: 1.865273 -0.384837 -3.633847 +Torque: 0.089688 -0.101815 0.187549 + +Polar angle tht: 1.0036; Azimuth angle phi: 2.8798 +Force: 1.900676 -0.332554 -3.637104 +Torque: 0.077217 -0.102920 0.163491 + +Polar angle tht: 1.0036; Azimuth angle phi: 2.9234 +Force: 1.930975 -0.279041 -3.639871 +Torque: 0.064590 -0.103855 0.138188 + +Polar angle tht: 1.0036; Azimuth angle phi: 2.9671 +Force: 1.956001 -0.224492 -3.642142 +Torque: 0.051831 -0.104620 0.111834 + +Polar angle tht: 1.0036; Azimuth angle phi: 3.0107 +Force: 1.975614 -0.169107 -3.643913 +Torque: 0.038966 -0.105215 0.084629 + +Polar angle tht: 1.0036; Azimuth angle phi: 3.0543 +Force: 1.989703 -0.113090 -3.645180 +Torque: 0.026021 -0.105640 0.056780 + +Polar angle tht: 1.0036; Azimuth angle phi: 3.0980 +Force: 1.998188 -0.056651 -3.645941 +Torque: 0.013024 -0.105894 0.028498 + +Polar angle tht: 1.0036; Azimuth angle phi: 3.1416 +Force: 2.001022 0.000000 -3.646195 +Torque: -0.000000 -0.105979 -0.000000 + +Polar angle tht: 1.0036; Azimuth angle phi: 3.1852 +Force: 1.998188 0.056651 -3.645941 +Torque: -0.013024 -0.105894 -0.028498 + +Polar angle tht: 1.0036; Azimuth angle phi: 3.2289 +Force: 1.989703 0.113090 -3.645180 +Torque: -0.026021 -0.105640 -0.056780 + +Polar angle tht: 1.0036; Azimuth angle phi: 3.2725 +Force: 1.975614 0.169107 -3.643913 +Torque: -0.038966 -0.105215 -0.084629 + +Polar angle tht: 1.0036; Azimuth angle phi: 3.3161 +Force: 1.956001 0.224492 -3.642142 +Torque: -0.051831 -0.104620 -0.111834 + +Polar angle tht: 1.0036; Azimuth angle phi: 3.3598 +Force: 1.930975 0.279041 -3.639871 +Torque: -0.064590 -0.103855 -0.138188 + +Polar angle tht: 1.0036; Azimuth angle phi: 3.4034 +Force: 1.900676 0.332554 -3.637104 +Torque: -0.077217 -0.102920 -0.163491 + +Polar angle tht: 1.0036; Azimuth angle phi: 3.4470 +Force: 1.865273 0.384837 -3.633847 +Torque: -0.089688 -0.101815 -0.187549 + +Polar angle tht: 1.0036; Azimuth angle phi: 3.4907 +Force: 1.824966 0.435701 -3.630105 +Torque: -0.101975 -0.100539 -0.210180 + +Polar angle tht: 1.0036; Azimuth angle phi: 3.5343 +Force: 1.779980 0.484968 -3.625886 +Torque: -0.114056 -0.099092 -0.231211 + +Polar angle tht: 1.0036; Azimuth angle phi: 3.5779 +Force: 1.730563 0.532466 -3.621198 +Torque: -0.125905 -0.097475 -0.250483 + +Polar angle tht: 1.0036; Azimuth angle phi: 3.6216 +Force: 1.676989 0.578036 -3.616049 +Torque: -0.137498 -0.095687 -0.267848 + +Polar angle tht: 1.0036; Azimuth angle phi: 3.6652 +Force: 1.619554 0.621526 -3.610450 +Torque: -0.148813 -0.093728 -0.283174 + +Polar angle tht: 1.0036; Azimuth angle phi: 3.7088 +Force: 1.561388 0.665231 -3.606001 +Torque: -0.158678 -0.091714 -0.294489 + +Polar angle tht: 1.0036; Azimuth angle phi: 3.7525 +Force: 1.543767 0.747978 -3.626556 +Torque: -0.149752 -0.091324 -0.274688 + +Polar angle tht: 1.0036; Azimuth angle phi: 3.7961 +Force: 1.518974 0.831139 -3.645676 +Torque: -0.141036 -0.090588 -0.255388 + +Polar angle tht: 1.0036; Azimuth angle phi: 3.8397 +Force: 1.487171 0.914129 -3.663345 +Torque: -0.132548 -0.089499 -0.236653 + +Polar angle tht: 1.0036; Azimuth angle phi: 3.8834 +Force: 1.448569 0.996361 -3.679550 +Torque: -0.124310 -0.088051 -0.218539 + +Polar angle tht: 1.0036; Azimuth angle phi: 3.9270 +Force: 1.403435 1.077254 -3.694279 +Torque: -0.116339 -0.086240 -0.201094 + +Polar angle tht: 1.0036; Azimuth angle phi: 3.9706 +Force: 1.352078 1.156236 -3.707524 +Torque: -0.108654 -0.084066 -0.184355 + +Polar angle tht: 1.0036; Azimuth angle phi: 4.0143 +Force: 1.294858 1.232745 -3.719281 +Torque: -0.101274 -0.081528 -0.168349 + +Polar angle tht: 1.0036; Azimuth angle phi: 4.0579 +Force: 1.232175 1.306238 -3.729547 +Torque: -0.094216 -0.078630 -0.153095 + +Polar angle tht: 1.0036; Azimuth angle phi: 4.1015 +Force: 1.164470 1.376194 -3.738323 +Torque: -0.087499 -0.075377 -0.138601 + +Polar angle tht: 1.0036; Azimuth angle phi: 4.1452 +Force: 1.092222 1.442113 -3.745611 +Torque: -0.081138 -0.071775 -0.124866 + +Polar angle tht: 1.0036; Azimuth angle phi: 4.1888 +Force: 1.015944 1.503527 -3.751415 +Torque: -0.075151 -0.067834 -0.111881 + +Polar angle tht: 1.0036; Azimuth angle phi: 4.2324 +Force: 0.936176 1.560000 -3.755744 +Torque: -0.069552 -0.063564 -0.099625 + +Polar angle tht: 1.0036; Azimuth angle phi: 4.2761 +Force: 0.853485 1.611129 -3.758606 +Torque: -0.064355 -0.058980 -0.088071 + +Polar angle tht: 1.0036; Azimuth angle phi: 4.3197 +Force: 0.768460 1.656553 -3.760011 +Torque: -0.059576 -0.054096 -0.077183 + +Polar angle tht: 1.0036; Azimuth angle phi: 4.3633 +Force: 0.681705 1.695948 -3.759971 +Torque: -0.055227 -0.048930 -0.066918 + +Polar angle tht: 1.0036; Azimuth angle phi: 4.4070 +Force: 0.593840 1.729036 -3.758501 +Torque: -0.051320 -0.043499 -0.057226 + +Polar angle tht: 1.0036; Azimuth angle phi: 4.4506 +Force: 0.505488 1.755585 -3.755616 +Torque: -0.047867 -0.037825 -0.048049 + +Polar angle tht: 1.0036; Azimuth angle phi: 4.4942 +Force: 0.417279 1.775408 -3.751331 +Torque: -0.044876 -0.031930 -0.039325 + +Polar angle tht: 1.0036; Azimuth angle phi: 4.5379 +Force: 0.329840 1.788370 -3.745665 +Torque: -0.042357 -0.025837 -0.030987 + +Polar angle tht: 1.0036; Azimuth angle phi: 4.5815 +Force: 0.243791 1.794382 -3.738636 +Torque: -0.040319 -0.019571 -0.022961 + +Polar angle tht: 1.0036; Azimuth angle phi: 4.6251 +Force: 0.159742 1.793408 -3.730264 +Torque: -0.038767 -0.013158 -0.015174 + +Polar angle tht: 1.0036; Azimuth angle phi: 4.6688 +Force: 0.078287 1.785462 -3.720568 +Torque: -0.037708 -0.006625 -0.007547 + +Polar angle tht: 1.0036; Azimuth angle phi: 4.7124 +Force: 0.000000 1.770608 -3.709570 +Torque: -0.037144 -0.000000 -0.000000 + +Polar angle tht: 1.0036; Azimuth angle phi: 4.7560 +Force: -0.078287 1.785462 -3.720568 +Torque: -0.037708 0.006625 0.007547 + +Polar angle tht: 1.0036; Azimuth angle phi: 4.7997 +Force: -0.159742 1.793408 -3.730264 +Torque: -0.038767 0.013158 0.015174 + +Polar angle tht: 1.0036; Azimuth angle phi: 4.8433 +Force: -0.243791 1.794382 -3.738636 +Torque: -0.040319 0.019571 0.022961 + +Polar angle tht: 1.0036; Azimuth angle phi: 4.8869 +Force: -0.329840 1.788370 -3.745665 +Torque: -0.042357 0.025837 0.030987 + +Polar angle tht: 1.0036; Azimuth angle phi: 4.9306 +Force: -0.417279 1.775408 -3.751331 +Torque: -0.044876 0.031930 0.039325 + +Polar angle tht: 1.0036; Azimuth angle phi: 4.9742 +Force: -0.505488 1.755585 -3.755616 +Torque: -0.047867 0.037825 0.048049 + +Polar angle tht: 1.0036; Azimuth angle phi: 5.0178 +Force: -0.593840 1.729036 -3.758501 +Torque: -0.051320 0.043499 0.057226 + +Polar angle tht: 1.0036; Azimuth angle phi: 5.0615 +Force: -0.681705 1.695948 -3.759971 +Torque: -0.055227 0.048930 0.066918 + +Polar angle tht: 1.0036; Azimuth angle phi: 5.1051 +Force: -0.768460 1.656553 -3.760011 +Torque: -0.059576 0.054096 0.077183 + +Polar angle tht: 1.0036; Azimuth angle phi: 5.1487 +Force: -0.853485 1.611129 -3.758606 +Torque: -0.064355 0.058980 0.088071 + +Polar angle tht: 1.0036; Azimuth angle phi: 5.1924 +Force: -0.936176 1.560000 -3.755744 +Torque: -0.069552 0.063564 0.099625 + +Polar angle tht: 1.0036; Azimuth angle phi: 5.2360 +Force: -1.015944 1.503527 -3.751415 +Torque: -0.075151 0.067834 0.111881 + +Polar angle tht: 1.0036; Azimuth angle phi: 5.2796 +Force: -1.092222 1.442113 -3.745611 +Torque: -0.081138 0.071775 0.124866 + +Polar angle tht: 1.0036; Azimuth angle phi: 5.3233 +Force: -1.164470 1.376194 -3.738323 +Torque: -0.087499 0.075377 0.138601 + +Polar angle tht: 1.0036; Azimuth angle phi: 5.3669 +Force: -1.232175 1.306238 -3.729547 +Torque: -0.094216 0.078630 0.153095 + +Polar angle tht: 1.0036; Azimuth angle phi: 5.4105 +Force: -1.294858 1.232745 -3.719281 +Torque: -0.101274 0.081528 0.168349 + +Polar angle tht: 1.0036; Azimuth angle phi: 5.4542 +Force: -1.352078 1.156236 -3.707524 +Torque: -0.108654 0.084066 0.184355 + +Polar angle tht: 1.0036; Azimuth angle phi: 5.4978 +Force: -1.403435 1.077254 -3.694279 +Torque: -0.116339 0.086240 0.201094 + +Polar angle tht: 1.0036; Azimuth angle phi: 5.5414 +Force: -1.448569 0.996361 -3.679550 +Torque: -0.124310 0.088051 0.218539 + +Polar angle tht: 1.0036; Azimuth angle phi: 5.5851 +Force: -1.487171 0.914129 -3.663345 +Torque: -0.132548 0.089499 0.236653 + +Polar angle tht: 1.0036; Azimuth angle phi: 5.6287 +Force: -1.518974 0.831139 -3.645676 +Torque: -0.141036 0.090588 0.255388 + +Polar angle tht: 1.0036; Azimuth angle phi: 5.6723 +Force: -1.543767 0.747978 -3.626556 +Torque: -0.149752 0.091324 0.274688 + +Polar angle tht: 1.0036; Azimuth angle phi: 5.7160 +Force: -1.561388 0.665231 -3.606001 +Torque: -0.158678 0.091714 0.294489 + +Polar angle tht: 1.0036; Azimuth angle phi: 5.7596 +Force: -1.619554 0.621526 -3.610450 +Torque: -0.148813 0.093728 0.283174 + +Polar angle tht: 1.0036; Azimuth angle phi: 5.8032 +Force: -1.676989 0.578036 -3.616049 +Torque: -0.137498 0.095687 0.267848 + +Polar angle tht: 1.0036; Azimuth angle phi: 5.8469 +Force: -1.730563 0.532466 -3.621198 +Torque: -0.125905 0.097475 0.250483 + +Polar angle tht: 1.0036; Azimuth angle phi: 5.8905 +Force: -1.779980 0.484968 -3.625886 +Torque: -0.114056 0.099092 0.231211 + +Polar angle tht: 1.0036; Azimuth angle phi: 5.9341 +Force: -1.824966 0.435701 -3.630105 +Torque: -0.101975 0.100539 0.210180 + +Polar angle tht: 1.0036; Azimuth angle phi: 5.9778 +Force: -1.865273 0.384837 -3.633847 +Torque: -0.089688 0.101815 0.187549 + +Polar angle tht: 1.0036; Azimuth angle phi: 6.0214 +Force: -1.900676 0.332554 -3.637104 +Torque: -0.077217 0.102920 0.163491 + +Polar angle tht: 1.0036; Azimuth angle phi: 6.0650 +Force: -1.930975 0.279041 -3.639871 +Torque: -0.064590 0.103855 0.138188 + +Polar angle tht: 1.0036; Azimuth angle phi: 6.1087 +Force: -1.956001 0.224492 -3.642142 +Torque: -0.051831 0.104620 0.111834 + +Polar angle tht: 1.0036; Azimuth angle phi: 6.1523 +Force: -1.975614 0.169107 -3.643913 +Torque: -0.038966 0.105215 0.084629 + +Polar angle tht: 1.0036; Azimuth angle phi: 6.1959 +Force: -1.989703 0.113090 -3.645180 +Torque: -0.026021 0.105640 0.056780 + +Polar angle tht: 1.0036; Azimuth angle phi: 6.2396 +Force: -1.998188 0.056651 -3.645941 +Torque: -0.013024 0.105894 0.028498 + +Polar angle tht: 1.0036; Azimuth angle phi: 6.2832 +Force: -2.001022 0.000000 -3.646195 +Torque: -0.000000 0.105979 0.000000 + +Polar angle tht: 1.0472; Azimuth angle phi: 0.0000 +Force: -2.018897 0.000000 -3.209522 +Torque: -0.000000 0.099435 0.000000 + +Polar angle tht: 1.0472; Azimuth angle phi: 0.0436 +Force: -2.015996 -0.055937 -3.209279 +Torque: 0.012476 0.099357 -0.030048 + +Polar angle tht: 1.0472; Azimuth angle phi: 0.0873 +Force: -2.007309 -0.111658 -3.208552 +Torque: 0.024927 0.099123 -0.059868 + +Polar angle tht: 1.0472; Azimuth angle phi: 0.1309 +Force: -1.992886 -0.166948 -3.207341 +Torque: 0.037326 0.098734 -0.089232 + +Polar angle tht: 1.0472; Azimuth angle phi: 0.1745 +Force: -1.972810 -0.221593 -3.205649 +Torque: 0.049648 0.098189 -0.117917 + +Polar angle tht: 1.0472; Azimuth angle phi: 0.2182 +Force: -1.947196 -0.275386 -3.203479 +Torque: 0.061869 0.097487 -0.145705 + +Polar angle tht: 1.0472; Azimuth angle phi: 0.2618 +Force: -1.916192 -0.328122 -3.200835 +Torque: 0.073963 0.096629 -0.172384 + +Polar angle tht: 1.0472; Azimuth angle phi: 0.3054 +Force: -1.879975 -0.379604 -3.197722 +Torque: 0.085905 0.095614 -0.197751 + +Polar angle tht: 1.0472; Azimuth angle phi: 0.3491 +Force: -1.838751 -0.429640 -3.194147 +Torque: 0.097671 0.094441 -0.221612 + +Polar angle tht: 1.0472; Azimuth angle phi: 0.3927 +Force: -1.792756 -0.478048 -3.190115 +Torque: 0.109238 0.093110 -0.243787 + +Polar angle tht: 1.0472; Azimuth angle phi: 0.4363 +Force: -1.742250 -0.524655 -3.185635 +Torque: 0.120581 0.091621 -0.264107 + +Polar angle tht: 1.0472; Azimuth angle phi: 0.4800 +Force: -1.687518 -0.569298 -3.180716 +Torque: 0.131678 0.089973 -0.282417 + +Polar angle tht: 1.0472; Azimuth angle phi: 0.5236 +Force: -1.650366 -0.628881 -3.185797 +Torque: 0.134928 0.089047 -0.284400 + +Polar angle tht: 1.0472; Azimuth angle phi: 0.5672 +Force: -1.639643 -0.715007 -3.205806 +Torque: 0.126585 0.089193 -0.264314 + +Polar angle tht: 1.0472; Azimuth angle phi: 0.6109 +Force: -1.621256 -0.802183 -3.224471 +Torque: 0.118408 0.088998 -0.244765 + +Polar angle tht: 1.0472; Azimuth angle phi: 0.6545 +Force: -1.595318 -0.889798 -3.241775 +Torque: 0.110415 0.088452 -0.225828 + +Polar angle tht: 1.0472; Azimuth angle phi: 0.6981 +Force: -1.562000 -0.977235 -3.257705 +Torque: 0.102623 0.087546 -0.207570 + +Polar angle tht: 1.0472; Azimuth angle phi: 0.7418 +Force: -1.521527 -1.063875 -3.272251 +Torque: 0.095053 0.086276 -0.190048 + +Polar angle tht: 1.0472; Azimuth angle phi: 0.7854 +Force: -1.474176 -1.149106 -3.285409 +Torque: 0.087720 0.084635 -0.173307 + +Polar angle tht: 1.0472; Azimuth angle phi: 0.8290 +Force: -1.420276 -1.232324 -3.297172 +Torque: 0.080644 0.082623 -0.157384 + +Polar angle tht: 1.0472; Azimuth angle phi: 0.8727 +Force: -1.360203 -1.312938 -3.307542 +Torque: 0.073841 0.080240 -0.142305 + +Polar angle tht: 1.0472; Azimuth angle phi: 0.9163 +Force: -1.294379 -1.390375 -3.316518 +Torque: 0.067329 0.077487 -0.128085 + +Polar angle tht: 1.0472; Azimuth angle phi: 0.9599 +Force: -1.223270 -1.464084 -3.324106 +Torque: 0.061124 0.074370 -0.114730 + +Polar angle tht: 1.0472; Azimuth angle phi: 1.0036 +Force: -1.147380 -1.533541 -3.330310 +Torque: 0.055242 0.070895 -0.102235 + +Polar angle tht: 1.0472; Azimuth angle phi: 1.0472 +Force: -1.067248 -1.598251 -3.335139 +Torque: 0.049699 0.067072 -0.090586 + +Polar angle tht: 1.0472; Azimuth angle phi: 1.0908 +Force: -0.983443 -1.657754 -3.338602 +Torque: 0.044509 0.062911 -0.079758 + +Polar angle tht: 1.0472; Azimuth angle phi: 1.1345 +Force: -0.896564 -1.711626 -3.340711 +Torque: 0.039687 0.058425 -0.069719 + +Polar angle tht: 1.0472; Azimuth angle phi: 1.1781 +Force: -0.807230 -1.759485 -3.341479 +Torque: 0.035246 0.053631 -0.060426 + +Polar angle tht: 1.0472; Azimuth angle phi: 1.2217 +Force: -0.716079 -1.800992 -3.340920 +Torque: 0.031198 0.048546 -0.051830 + +Polar angle tht: 1.0472; Azimuth angle phi: 1.2654 +Force: -0.623761 -1.835852 -3.339050 +Torque: 0.027556 0.043188 -0.043873 + +Polar angle tht: 1.0472; Azimuth angle phi: 1.3090 +Force: -0.530935 -1.863821 -3.335885 +Torque: 0.024330 0.037578 -0.036491 + +Polar angle tht: 1.0472; Azimuth angle phi: 1.3526 +Force: -0.438264 -1.884702 -3.331442 +Torque: 0.021529 0.031740 -0.029613 + +Polar angle tht: 1.0472; Azimuth angle phi: 1.3963 +Force: -0.346407 -1.898352 -3.325741 +Torque: 0.019163 0.025696 -0.023164 + +Polar angle tht: 1.0472; Azimuth angle phi: 1.4399 +Force: -0.256019 -1.904678 -3.318800 +Torque: 0.017240 0.019474 -0.017063 + +Polar angle tht: 1.0472; Azimuth angle phi: 1.4835 +Force: -0.167741 -1.903642 -3.310638 +Torque: 0.015765 0.013098 -0.011227 + +Polar angle tht: 1.0472; Azimuth angle phi: 1.5272 +Force: -0.082200 -1.895258 -3.301276 +Torque: 0.014745 0.006597 -0.005569 + +Polar angle tht: 1.0472; Azimuth angle phi: 1.5708 +Force: 0.000000 -1.879594 -3.290735 +Torque: 0.014184 -0.000000 0.000000 + +Polar angle tht: 1.0472; Azimuth angle phi: 1.6144 +Force: 0.082200 -1.895258 -3.301276 +Torque: 0.014745 -0.006597 0.005569 + +Polar angle tht: 1.0472; Azimuth angle phi: 1.6581 +Force: 0.167741 -1.903642 -3.310638 +Torque: 0.015765 -0.013098 0.011227 + +Polar angle tht: 1.0472; Azimuth angle phi: 1.7017 +Force: 0.256019 -1.904678 -3.318800 +Torque: 0.017240 -0.019474 0.017063 + +Polar angle tht: 1.0472; Azimuth angle phi: 1.7453 +Force: 0.346407 -1.898352 -3.325741 +Torque: 0.019163 -0.025696 0.023164 + +Polar angle tht: 1.0472; Azimuth angle phi: 1.7890 +Force: 0.438264 -1.884702 -3.331442 +Torque: 0.021529 -0.031740 0.029613 + +Polar angle tht: 1.0472; Azimuth angle phi: 1.8326 +Force: 0.530935 -1.863821 -3.335885 +Torque: 0.024330 -0.037578 0.036491 + +Polar angle tht: 1.0472; Azimuth angle phi: 1.8762 +Force: 0.623761 -1.835852 -3.339050 +Torque: 0.027556 -0.043188 0.043873 + +Polar angle tht: 1.0472; Azimuth angle phi: 1.9199 +Force: 0.716079 -1.800992 -3.340920 +Torque: 0.031198 -0.048546 0.051830 + +Polar angle tht: 1.0472; Azimuth angle phi: 1.9635 +Force: 0.807230 -1.759485 -3.341479 +Torque: 0.035246 -0.053631 0.060426 + +Polar angle tht: 1.0472; Azimuth angle phi: 2.0071 +Force: 0.896564 -1.711626 -3.340711 +Torque: 0.039687 -0.058425 0.069719 + +Polar angle tht: 1.0472; Azimuth angle phi: 2.0508 +Force: 0.983443 -1.657754 -3.338602 +Torque: 0.044509 -0.062911 0.079758 + +Polar angle tht: 1.0472; Azimuth angle phi: 2.0944 +Force: 1.067248 -1.598251 -3.335139 +Torque: 0.049699 -0.067072 0.090586 + +Polar angle tht: 1.0472; Azimuth angle phi: 2.1380 +Force: 1.147380 -1.533541 -3.330310 +Torque: 0.055242 -0.070895 0.102235 + +Polar angle tht: 1.0472; Azimuth angle phi: 2.1817 +Force: 1.223270 -1.464084 -3.324106 +Torque: 0.061124 -0.074370 0.114730 + +Polar angle tht: 1.0472; Azimuth angle phi: 2.2253 +Force: 1.294379 -1.390375 -3.316518 +Torque: 0.067329 -0.077487 0.128085 + +Polar angle tht: 1.0472; Azimuth angle phi: 2.2689 +Force: 1.360203 -1.312938 -3.307542 +Torque: 0.073841 -0.080240 0.142305 + +Polar angle tht: 1.0472; Azimuth angle phi: 2.3126 +Force: 1.420276 -1.232324 -3.297172 +Torque: 0.080644 -0.082623 0.157384 + +Polar angle tht: 1.0472; Azimuth angle phi: 2.3562 +Force: 1.474176 -1.149106 -3.285409 +Torque: 0.087720 -0.084635 0.173307 + +Polar angle tht: 1.0472; Azimuth angle phi: 2.3998 +Force: 1.521527 -1.063875 -3.272251 +Torque: 0.095053 -0.086276 0.190048 + +Polar angle tht: 1.0472; Azimuth angle phi: 2.4435 +Force: 1.562000 -0.977235 -3.257705 +Torque: 0.102623 -0.087546 0.207570 + +Polar angle tht: 1.0472; Azimuth angle phi: 2.4871 +Force: 1.595318 -0.889798 -3.241775 +Torque: 0.110415 -0.088452 0.225828 + +Polar angle tht: 1.0472; Azimuth angle phi: 2.5307 +Force: 1.621256 -0.802183 -3.224471 +Torque: 0.118408 -0.088998 0.244765 + +Polar angle tht: 1.0472; Azimuth angle phi: 2.5744 +Force: 1.639643 -0.715007 -3.205806 +Torque: 0.126585 -0.089193 0.264314 + +Polar angle tht: 1.0472; Azimuth angle phi: 2.6180 +Force: 1.650366 -0.628881 -3.185797 +Torque: 0.134928 -0.089047 0.284400 + +Polar angle tht: 1.0472; Azimuth angle phi: 2.6616 +Force: 1.687518 -0.569298 -3.180716 +Torque: 0.131678 -0.089973 0.282417 + +Polar angle tht: 1.0472; Azimuth angle phi: 2.7053 +Force: 1.742250 -0.524655 -3.185635 +Torque: 0.120581 -0.091621 0.264107 + +Polar angle tht: 1.0472; Azimuth angle phi: 2.7489 +Force: 1.792756 -0.478048 -3.190115 +Torque: 0.109238 -0.093110 0.243787 + +Polar angle tht: 1.0472; Azimuth angle phi: 2.7925 +Force: 1.838751 -0.429640 -3.194147 +Torque: 0.097671 -0.094441 0.221612 + +Polar angle tht: 1.0472; Azimuth angle phi: 2.8362 +Force: 1.879975 -0.379604 -3.197722 +Torque: 0.085905 -0.095614 0.197751 + +Polar angle tht: 1.0472; Azimuth angle phi: 2.8798 +Force: 1.916192 -0.328122 -3.200835 +Torque: 0.073963 -0.096629 0.172384 + +Polar angle tht: 1.0472; Azimuth angle phi: 2.9234 +Force: 1.947196 -0.275386 -3.203479 +Torque: 0.061869 -0.097487 0.145705 + +Polar angle tht: 1.0472; Azimuth angle phi: 2.9671 +Force: 1.972810 -0.221593 -3.205649 +Torque: 0.049648 -0.098189 0.117917 + +Polar angle tht: 1.0472; Azimuth angle phi: 3.0107 +Force: 1.992886 -0.166948 -3.207341 +Torque: 0.037326 -0.098734 0.089232 + +Polar angle tht: 1.0472; Azimuth angle phi: 3.0543 +Force: 2.007309 -0.111658 -3.208552 +Torque: 0.024927 -0.099123 0.059868 + +Polar angle tht: 1.0472; Azimuth angle phi: 3.0980 +Force: 2.015996 -0.055937 -3.209279 +Torque: 0.012476 -0.099357 0.030048 + +Polar angle tht: 1.0472; Azimuth angle phi: 3.1416 +Force: 2.018897 0.000000 -3.209522 +Torque: -0.000000 -0.099435 -0.000000 + +Polar angle tht: 1.0472; Azimuth angle phi: 3.1852 +Force: 2.015996 0.055937 -3.209279 +Torque: -0.012476 -0.099357 -0.030048 + +Polar angle tht: 1.0472; Azimuth angle phi: 3.2289 +Force: 2.007309 0.111658 -3.208552 +Torque: -0.024927 -0.099123 -0.059868 + +Polar angle tht: 1.0472; Azimuth angle phi: 3.2725 +Force: 1.992886 0.166948 -3.207341 +Torque: -0.037326 -0.098734 -0.089232 + +Polar angle tht: 1.0472; Azimuth angle phi: 3.3161 +Force: 1.972810 0.221593 -3.205649 +Torque: -0.049648 -0.098189 -0.117917 + +Polar angle tht: 1.0472; Azimuth angle phi: 3.3598 +Force: 1.947196 0.275386 -3.203479 +Torque: -0.061869 -0.097487 -0.145705 + +Polar angle tht: 1.0472; Azimuth angle phi: 3.4034 +Force: 1.916192 0.328122 -3.200835 +Torque: -0.073963 -0.096629 -0.172384 + +Polar angle tht: 1.0472; Azimuth angle phi: 3.4470 +Force: 1.879975 0.379604 -3.197722 +Torque: -0.085905 -0.095614 -0.197751 + +Polar angle tht: 1.0472; Azimuth angle phi: 3.4907 +Force: 1.838751 0.429640 -3.194147 +Torque: -0.097671 -0.094441 -0.221612 + +Polar angle tht: 1.0472; Azimuth angle phi: 3.5343 +Force: 1.792756 0.478048 -3.190115 +Torque: -0.109238 -0.093110 -0.243787 + +Polar angle tht: 1.0472; Azimuth angle phi: 3.5779 +Force: 1.742250 0.524655 -3.185635 +Torque: -0.120581 -0.091621 -0.264107 + +Polar angle tht: 1.0472; Azimuth angle phi: 3.6216 +Force: 1.687518 0.569298 -3.180716 +Torque: -0.131678 -0.089973 -0.282417 + +Polar angle tht: 1.0472; Azimuth angle phi: 3.6652 +Force: 1.650366 0.628881 -3.185797 +Torque: -0.134928 -0.089047 -0.284400 + +Polar angle tht: 1.0472; Azimuth angle phi: 3.7088 +Force: 1.639643 0.715007 -3.205806 +Torque: -0.126585 -0.089193 -0.264312 + +Polar angle tht: 1.0472; Azimuth angle phi: 3.7525 +Force: 1.621256 0.802183 -3.224471 +Torque: -0.118407 -0.088998 -0.244762 + +Polar angle tht: 1.0472; Azimuth angle phi: 3.7961 +Force: 1.595318 0.889798 -3.241775 +Torque: -0.110413 -0.088452 -0.225825 + +Polar angle tht: 1.0472; Azimuth angle phi: 3.8397 +Force: 1.562000 0.977235 -3.257705 +Torque: -0.102621 -0.087546 -0.207566 + +Polar angle tht: 1.0472; Azimuth angle phi: 3.8834 +Force: 1.521527 1.063875 -3.272251 +Torque: -0.095050 -0.086276 -0.190043 + +Polar angle tht: 1.0472; Azimuth angle phi: 3.9270 +Force: 1.474176 1.149106 -3.285409 +Torque: -0.087717 -0.084635 -0.173302 + +Polar angle tht: 1.0472; Azimuth angle phi: 3.9706 +Force: 1.420276 1.232324 -3.297172 +Torque: -0.080641 -0.082623 -0.157378 + +Polar angle tht: 1.0472; Azimuth angle phi: 4.0143 +Force: 1.360203 1.312938 -3.307542 +Torque: -0.073838 -0.080240 -0.142299 + +Polar angle tht: 1.0472; Azimuth angle phi: 4.0579 +Force: 1.294379 1.390375 -3.316518 +Torque: -0.067325 -0.077487 -0.128079 + +Polar angle tht: 1.0472; Azimuth angle phi: 4.1015 +Force: 1.223270 1.464084 -3.324106 +Torque: -0.061120 -0.074370 -0.114724 + +Polar angle tht: 1.0472; Azimuth angle phi: 4.1452 +Force: 1.147380 1.533541 -3.330310 +Torque: -0.055238 -0.070895 -0.102229 + +Polar angle tht: 1.0472; Azimuth angle phi: 4.1888 +Force: 1.067248 1.598251 -3.335139 +Torque: -0.049694 -0.067072 -0.090580 + +Polar angle tht: 1.0472; Azimuth angle phi: 4.2324 +Force: 0.983443 1.657754 -3.338602 +Torque: -0.044504 -0.062911 -0.079752 + +Polar angle tht: 1.0472; Azimuth angle phi: 4.2761 +Force: 0.896564 1.711626 -3.340711 +Torque: -0.039682 -0.058425 -0.069713 + +Polar angle tht: 1.0472; Azimuth angle phi: 4.3197 +Force: 0.807230 1.759485 -3.341479 +Torque: -0.035240 -0.053631 -0.060421 + +Polar angle tht: 1.0472; Azimuth angle phi: 4.3633 +Force: 0.716079 1.800992 -3.340920 +Torque: -0.031192 -0.048546 -0.051825 + +Polar angle tht: 1.0472; Azimuth angle phi: 4.4070 +Force: 0.623761 1.835852 -3.339050 +Torque: -0.027550 -0.043188 -0.043868 + +Polar angle tht: 1.0472; Azimuth angle phi: 4.4506 +Force: 0.530935 1.863821 -3.335885 +Torque: -0.024323 -0.037578 -0.036487 + +Polar angle tht: 1.0472; Azimuth angle phi: 4.4942 +Force: 0.438264 1.884702 -3.331442 +Torque: -0.021523 -0.031740 -0.029609 + +Polar angle tht: 1.0472; Azimuth angle phi: 4.5379 +Force: 0.346407 1.898352 -3.325741 +Torque: -0.019157 -0.025696 -0.023161 + +Polar angle tht: 1.0472; Azimuth angle phi: 4.5815 +Force: 0.256019 1.904678 -3.318800 +Torque: -0.017233 -0.019474 -0.017061 + +Polar angle tht: 1.0472; Azimuth angle phi: 4.6251 +Force: 0.167741 1.903642 -3.310638 +Torque: -0.015759 -0.013098 -0.011225 + +Polar angle tht: 1.0472; Azimuth angle phi: 4.6688 +Force: 0.082200 1.895258 -3.301276 +Torque: -0.014738 -0.006597 -0.005568 + +Polar angle tht: 1.0472; Azimuth angle phi: 4.7124 +Force: 0.000000 1.879594 -3.290735 +Torque: -0.014177 -0.000000 -0.000000 + +Polar angle tht: 1.0472; Azimuth angle phi: 4.7560 +Force: -0.082200 1.895258 -3.301276 +Torque: -0.014738 0.006597 0.005568 + +Polar angle tht: 1.0472; Azimuth angle phi: 4.7997 +Force: -0.167741 1.903642 -3.310638 +Torque: -0.015759 0.013098 0.011225 + +Polar angle tht: 1.0472; Azimuth angle phi: 4.8433 +Force: -0.256019 1.904678 -3.318800 +Torque: -0.017233 0.019474 0.017061 + +Polar angle tht: 1.0472; Azimuth angle phi: 4.8869 +Force: -0.346407 1.898352 -3.325741 +Torque: -0.019157 0.025696 0.023161 + +Polar angle tht: 1.0472; Azimuth angle phi: 4.9306 +Force: -0.438264 1.884702 -3.331442 +Torque: -0.021523 0.031740 0.029609 + +Polar angle tht: 1.0472; Azimuth angle phi: 4.9742 +Force: -0.530935 1.863821 -3.335885 +Torque: -0.024323 0.037578 0.036487 + +Polar angle tht: 1.0472; Azimuth angle phi: 5.0178 +Force: -0.623761 1.835852 -3.339050 +Torque: -0.027550 0.043188 0.043868 + +Polar angle tht: 1.0472; Azimuth angle phi: 5.0615 +Force: -0.716079 1.800992 -3.340920 +Torque: -0.031192 0.048546 0.051825 + +Polar angle tht: 1.0472; Azimuth angle phi: 5.1051 +Force: -0.807230 1.759485 -3.341479 +Torque: -0.035240 0.053631 0.060421 + +Polar angle tht: 1.0472; Azimuth angle phi: 5.1487 +Force: -0.896564 1.711626 -3.340711 +Torque: -0.039682 0.058425 0.069713 + +Polar angle tht: 1.0472; Azimuth angle phi: 5.1924 +Force: -0.983443 1.657754 -3.338602 +Torque: -0.044504 0.062911 0.079752 + +Polar angle tht: 1.0472; Azimuth angle phi: 5.2360 +Force: -1.067248 1.598251 -3.335139 +Torque: -0.049694 0.067072 0.090580 + +Polar angle tht: 1.0472; Azimuth angle phi: 5.2796 +Force: -1.147380 1.533541 -3.330310 +Torque: -0.055238 0.070895 0.102229 + +Polar angle tht: 1.0472; Azimuth angle phi: 5.3233 +Force: -1.223270 1.464084 -3.324106 +Torque: -0.061120 0.074370 0.114724 + +Polar angle tht: 1.0472; Azimuth angle phi: 5.3669 +Force: -1.294379 1.390375 -3.316518 +Torque: -0.067325 0.077487 0.128079 + +Polar angle tht: 1.0472; Azimuth angle phi: 5.4105 +Force: -1.360203 1.312938 -3.307542 +Torque: -0.073838 0.080240 0.142299 + +Polar angle tht: 1.0472; Azimuth angle phi: 5.4542 +Force: -1.420276 1.232324 -3.297172 +Torque: -0.080641 0.082623 0.157378 + +Polar angle tht: 1.0472; Azimuth angle phi: 5.4978 +Force: -1.474176 1.149106 -3.285409 +Torque: -0.087717 0.084635 0.173302 + +Polar angle tht: 1.0472; Azimuth angle phi: 5.5414 +Force: -1.521527 1.063875 -3.272251 +Torque: -0.095050 0.086276 0.190043 + +Polar angle tht: 1.0472; Azimuth angle phi: 5.5851 +Force: -1.562000 0.977235 -3.257705 +Torque: -0.102621 0.087546 0.207566 + +Polar angle tht: 1.0472; Azimuth angle phi: 5.6287 +Force: -1.595318 0.889798 -3.241775 +Torque: -0.110413 0.088452 0.225825 + +Polar angle tht: 1.0472; Azimuth angle phi: 5.6723 +Force: -1.621256 0.802183 -3.224471 +Torque: -0.118407 0.088998 0.244762 + +Polar angle tht: 1.0472; Azimuth angle phi: 5.7160 +Force: -1.639643 0.715007 -3.205806 +Torque: -0.126585 0.089193 0.264312 + +Polar angle tht: 1.0472; Azimuth angle phi: 5.7596 +Force: -1.650366 0.628881 -3.185797 +Torque: -0.134928 0.089047 0.284400 + +Polar angle tht: 1.0472; Azimuth angle phi: 5.8032 +Force: -1.687518 0.569298 -3.180716 +Torque: -0.131678 0.089973 0.282417 + +Polar angle tht: 1.0472; Azimuth angle phi: 5.8469 +Force: -1.742250 0.524655 -3.185635 +Torque: -0.120581 0.091621 0.264107 + +Polar angle tht: 1.0472; Azimuth angle phi: 5.8905 +Force: -1.792756 0.478048 -3.190115 +Torque: -0.109238 0.093110 0.243787 + +Polar angle tht: 1.0472; Azimuth angle phi: 5.9341 +Force: -1.838751 0.429640 -3.194147 +Torque: -0.097671 0.094441 0.221612 + +Polar angle tht: 1.0472; Azimuth angle phi: 5.9778 +Force: -1.879975 0.379604 -3.197722 +Torque: -0.085905 0.095614 0.197751 + +Polar angle tht: 1.0472; Azimuth angle phi: 6.0214 +Force: -1.916192 0.328122 -3.200835 +Torque: -0.073963 0.096629 0.172384 + +Polar angle tht: 1.0472; Azimuth angle phi: 6.0650 +Force: -1.947196 0.275386 -3.203479 +Torque: -0.061869 0.097487 0.145705 + +Polar angle tht: 1.0472; Azimuth angle phi: 6.1087 +Force: -1.972810 0.221593 -3.205649 +Torque: -0.049648 0.098189 0.117917 + +Polar angle tht: 1.0472; Azimuth angle phi: 6.1523 +Force: -1.992886 0.166948 -3.207341 +Torque: -0.037326 0.098734 0.089232 + +Polar angle tht: 1.0472; Azimuth angle phi: 6.1959 +Force: -2.007309 0.111658 -3.208552 +Torque: -0.024927 0.099123 0.059868 + +Polar angle tht: 1.0472; Azimuth angle phi: 6.2396 +Force: -2.015996 0.055937 -3.209279 +Torque: -0.012476 0.099357 0.030048 + +Polar angle tht: 1.0472; Azimuth angle phi: 6.2832 +Force: -2.018897 0.000000 -3.209522 +Torque: -0.000000 0.099435 0.000000 + +Polar angle tht: 1.0908; Azimuth angle phi: 0.0000 +Force: -2.027476 0.000000 -2.789544 +Torque: -0.000000 0.092029 0.000000 + +Polar angle tht: 1.0908; Azimuth angle phi: 0.0436 +Force: -2.024518 -0.054895 -2.789314 +Torque: 0.011835 0.091959 -0.031522 + +Polar angle tht: 1.0908; Azimuth angle phi: 0.0873 +Force: -2.015663 -0.109570 -2.788626 +Torque: 0.023645 0.091749 -0.062805 + +Polar angle tht: 1.0908; Azimuth angle phi: 0.1309 +Force: -2.000962 -0.163808 -2.787481 +Torque: 0.035407 0.091399 -0.093609 + +Polar angle tht: 1.0908; Azimuth angle phi: 0.1745 +Force: -1.980502 -0.217391 -2.785880 +Torque: 0.047095 0.090909 -0.123701 + +Polar angle tht: 1.0908; Azimuth angle phi: 0.2182 +Force: -1.954402 -0.270108 -2.783828 +Torque: 0.058686 0.090277 -0.152852 + +Polar angle tht: 1.0908; Azimuth angle phi: 0.2618 +Force: -1.922815 -0.321753 -2.781327 +Torque: 0.070155 0.089504 -0.180839 + +Polar angle tht: 1.0908; Azimuth angle phi: 0.3054 +Force: -1.885926 -0.372124 -2.778383 +Torque: 0.081480 0.088589 -0.207450 + +Polar angle tht: 1.0908; Azimuth angle phi: 0.3491 +Force: -1.843949 -0.421028 -2.775001 +Torque: 0.092636 0.087531 -0.232483 + +Polar angle tht: 1.0908; Azimuth angle phi: 0.3927 +Force: -1.797127 -0.468282 -2.771187 +Torque: 0.103602 0.086329 -0.255745 + +Polar angle tht: 1.0908; Azimuth angle phi: 0.4363 +Force: -1.745733 -0.513709 -2.766950 +Torque: 0.114354 0.084983 -0.277062 + +Polar angle tht: 1.0908; Azimuth angle phi: 0.4800 +Force: -1.727718 -0.584527 -2.777861 +Torque: 0.113484 0.085035 -0.271437 + +Polar angle tht: 1.0908; Azimuth angle phi: 0.5236 +Force: -1.724729 -0.673090 -2.796941 +Torque: 0.105887 0.085719 -0.251037 + +Polar angle tht: 1.0908; Azimuth angle phi: 0.5672 +Force: -1.713653 -0.763389 -2.814768 +Torque: 0.098412 0.086073 -0.231202 + +Polar angle tht: 1.0908; Azimuth angle phi: 0.6109 +Force: -1.694548 -0.854792 -2.831330 +Torque: 0.091075 0.086084 -0.212018 + +Polar angle tht: 1.0908; Azimuth angle phi: 0.6545 +Force: -1.667535 -0.946656 -2.846615 +Torque: 0.083894 0.085740 -0.193562 + +Polar angle tht: 1.0908; Azimuth angle phi: 0.6981 +Force: -1.632790 -1.038334 -2.860616 +Torque: 0.076886 0.085033 -0.175901 + +Polar angle tht: 1.0908; Azimuth angle phi: 0.7418 +Force: -1.590551 -1.129179 -2.873327 +Torque: 0.070066 0.083956 -0.159091 + +Polar angle tht: 1.0908; Azimuth angle phi: 0.7854 +Force: -1.541107 -1.218548 -2.884747 +Torque: 0.063453 0.082503 -0.143177 + +Polar angle tht: 1.0908; Azimuth angle phi: 0.8290 +Force: -1.484802 -1.305806 -2.894876 +Torque: 0.057063 0.080672 -0.128195 + +Polar angle tht: 1.0908; Azimuth angle phi: 0.8727 +Force: -1.422032 -1.390335 -2.903718 +Torque: 0.050911 0.078463 -0.114168 + +Polar angle tht: 1.0908; Azimuth angle phi: 0.9163 +Force: -1.353239 -1.471532 -2.911277 +Torque: 0.045014 0.075878 -0.101109 + +Polar angle tht: 1.0908; Azimuth angle phi: 0.9599 +Force: -1.278909 -1.548822 -2.917562 +Torque: 0.039388 0.072921 -0.089022 + +Polar angle tht: 1.0908; Azimuth angle phi: 1.0036 +Force: -1.199573 -1.621652 -2.922582 +Torque: 0.034047 0.069598 -0.077896 + +Polar angle tht: 1.0908; Azimuth angle phi: 1.0472 +Force: -1.115793 -1.689505 -2.926348 +Torque: 0.029007 0.065918 -0.067713 + +Polar angle tht: 1.0908; Azimuth angle phi: 1.0908 +Force: -1.028169 -1.751898 -2.928872 +Torque: 0.024281 0.061893 -0.058444 + +Polar angle tht: 1.0908; Azimuth angle phi: 1.1345 +Force: -0.937326 -1.808386 -2.930170 +Torque: 0.019883 0.057536 -0.050050 + +Polar angle tht: 1.0908; Azimuth angle phi: 1.1781 +Force: -0.843914 -1.858569 -2.930255 +Torque: 0.015825 0.052861 -0.042483 + +Polar angle tht: 1.0908; Azimuth angle phi: 1.2217 +Force: -0.748601 -1.902090 -2.929144 +Torque: 0.012121 0.047888 -0.035687 + +Polar angle tht: 1.0908; Azimuth angle phi: 1.2654 +Force: -0.652069 -1.938641 -2.926856 +Torque: 0.008780 0.042634 -0.029597 + +Polar angle tht: 1.0908; Azimuth angle phi: 1.3090 +Force: -0.555009 -1.967964 -2.923407 +Torque: 0.005813 0.037121 -0.024141 + +Polar angle tht: 1.0908; Azimuth angle phi: 1.3526 +Force: -0.458115 -1.989856 -2.918816 +Torque: 0.003230 0.031373 -0.019241 + +Polar angle tht: 1.0908; Azimuth angle phi: 1.3963 +Force: -0.362078 -2.004163 -2.913103 +Torque: 0.001040 0.025414 -0.014813 + +Polar angle tht: 1.0908; Azimuth angle phi: 1.4399 +Force: -0.267584 -2.010790 -2.906286 +Torque: -0.000751 0.019269 -0.010769 + +Polar angle tht: 1.0908; Azimuth angle phi: 1.4835 +Force: -0.175306 -2.009697 -2.898387 +Torque: -0.002135 0.012966 -0.007016 + +Polar angle tht: 1.0908; Azimuth angle phi: 1.5272 +Force: -0.085900 -2.000898 -2.889423 +Torque: -0.003108 0.006533 -0.003459 + +Polar angle tht: 1.0908; Azimuth angle phi: 1.5708 +Force: 0.000000 -1.984465 -2.879416 +Torque: -0.003664 -0.000000 0.000000 + +Polar angle tht: 1.0908; Azimuth angle phi: 1.6144 +Force: 0.085900 -2.000898 -2.889423 +Torque: -0.003108 -0.006533 0.003459 + +Polar angle tht: 1.0908; Azimuth angle phi: 1.6581 +Force: 0.175306 -2.009697 -2.898387 +Torque: -0.002135 -0.012966 0.007016 + +Polar angle tht: 1.0908; Azimuth angle phi: 1.7017 +Force: 0.267584 -2.010790 -2.906286 +Torque: -0.000751 -0.019269 0.010769 + +Polar angle tht: 1.0908; Azimuth angle phi: 1.7453 +Force: 0.362078 -2.004163 -2.913103 +Torque: 0.001040 -0.025414 0.014813 + +Polar angle tht: 1.0908; Azimuth angle phi: 1.7890 +Force: 0.458115 -1.989856 -2.918816 +Torque: 0.003230 -0.031373 0.019241 + +Polar angle tht: 1.0908; Azimuth angle phi: 1.8326 +Force: 0.555009 -1.967964 -2.923407 +Torque: 0.005813 -0.037121 0.024141 + +Polar angle tht: 1.0908; Azimuth angle phi: 1.8762 +Force: 0.652069 -1.938641 -2.926856 +Torque: 0.008780 -0.042634 0.029597 + +Polar angle tht: 1.0908; Azimuth angle phi: 1.9199 +Force: 0.748601 -1.902090 -2.929144 +Torque: 0.012121 -0.047888 0.035687 + +Polar angle tht: 1.0908; Azimuth angle phi: 1.9635 +Force: 0.843914 -1.858569 -2.930255 +Torque: 0.015825 -0.052861 0.042483 + +Polar angle tht: 1.0908; Azimuth angle phi: 2.0071 +Force: 0.937326 -1.808386 -2.930170 +Torque: 0.019883 -0.057536 0.050050 + +Polar angle tht: 1.0908; Azimuth angle phi: 2.0508 +Force: 1.028169 -1.751898 -2.928872 +Torque: 0.024281 -0.061893 0.058444 + +Polar angle tht: 1.0908; Azimuth angle phi: 2.0944 +Force: 1.115793 -1.689505 -2.926348 +Torque: 0.029007 -0.065918 0.067713 + +Polar angle tht: 1.0908; Azimuth angle phi: 2.1380 +Force: 1.199573 -1.621652 -2.922582 +Torque: 0.034047 -0.069598 0.077896 + +Polar angle tht: 1.0908; Azimuth angle phi: 2.1817 +Force: 1.278909 -1.548822 -2.917562 +Torque: 0.039388 -0.072921 0.089022 + +Polar angle tht: 1.0908; Azimuth angle phi: 2.2253 +Force: 1.353239 -1.471532 -2.911277 +Torque: 0.045014 -0.075878 0.101109 + +Polar angle tht: 1.0908; Azimuth angle phi: 2.2689 +Force: 1.422032 -1.390335 -2.903718 +Torque: 0.050911 -0.078463 0.114168 + +Polar angle tht: 1.0908; Azimuth angle phi: 2.3126 +Force: 1.484802 -1.305806 -2.894876 +Torque: 0.057063 -0.080672 0.128195 + +Polar angle tht: 1.0908; Azimuth angle phi: 2.3562 +Force: 1.541107 -1.218548 -2.884747 +Torque: 0.063453 -0.082503 0.143177 + +Polar angle tht: 1.0908; Azimuth angle phi: 2.3998 +Force: 1.590551 -1.129179 -2.873327 +Torque: 0.070066 -0.083956 0.159091 + +Polar angle tht: 1.0908; Azimuth angle phi: 2.4435 +Force: 1.632790 -1.038334 -2.860616 +Torque: 0.076886 -0.085033 0.175901 + +Polar angle tht: 1.0908; Azimuth angle phi: 2.4871 +Force: 1.667535 -0.946656 -2.846615 +Torque: 0.083894 -0.085740 0.193562 + +Polar angle tht: 1.0908; Azimuth angle phi: 2.5307 +Force: 1.694548 -0.854792 -2.831330 +Torque: 0.091075 -0.086084 0.212018 + +Polar angle tht: 1.0908; Azimuth angle phi: 2.5744 +Force: 1.713653 -0.763389 -2.814768 +Torque: 0.098412 -0.086073 0.231202 + +Polar angle tht: 1.0908; Azimuth angle phi: 2.6180 +Force: 1.724729 -0.673090 -2.796941 +Torque: 0.105887 -0.085719 0.251037 + +Polar angle tht: 1.0908; Azimuth angle phi: 2.6616 +Force: 1.727718 -0.584527 -2.777861 +Torque: 0.113484 -0.085035 0.271437 + +Polar angle tht: 1.0908; Azimuth angle phi: 2.7053 +Force: 1.745733 -0.513709 -2.766950 +Torque: 0.114354 -0.084983 0.277062 + +Polar angle tht: 1.0908; Azimuth angle phi: 2.7489 +Force: 1.797127 -0.468282 -2.771187 +Torque: 0.103602 -0.086329 0.255745 + +Polar angle tht: 1.0908; Azimuth angle phi: 2.7925 +Force: 1.843949 -0.421028 -2.775001 +Torque: 0.092636 -0.087531 0.232483 + +Polar angle tht: 1.0908; Azimuth angle phi: 2.8362 +Force: 1.885926 -0.372124 -2.778383 +Torque: 0.081480 -0.088589 0.207450 + +Polar angle tht: 1.0908; Azimuth angle phi: 2.8798 +Force: 1.922815 -0.321753 -2.781327 +Torque: 0.070155 -0.089504 0.180839 + +Polar angle tht: 1.0908; Azimuth angle phi: 2.9234 +Force: 1.954402 -0.270108 -2.783828 +Torque: 0.058686 -0.090277 0.152852 + +Polar angle tht: 1.0908; Azimuth angle phi: 2.9671 +Force: 1.980502 -0.217391 -2.785880 +Torque: 0.047095 -0.090909 0.123701 + +Polar angle tht: 1.0908; Azimuth angle phi: 3.0107 +Force: 2.000962 -0.163808 -2.787481 +Torque: 0.035407 -0.091399 0.093609 + +Polar angle tht: 1.0908; Azimuth angle phi: 3.0543 +Force: 2.015663 -0.109570 -2.788626 +Torque: 0.023645 -0.091749 0.062805 + +Polar angle tht: 1.0908; Azimuth angle phi: 3.0980 +Force: 2.024518 -0.054895 -2.789314 +Torque: 0.011835 -0.091959 0.031522 + +Polar angle tht: 1.0908; Azimuth angle phi: 3.1416 +Force: 2.027476 0.000000 -2.789544 +Torque: -0.000000 -0.092029 -0.000000 + +Polar angle tht: 1.0908; Azimuth angle phi: 3.1852 +Force: 2.024518 0.054895 -2.789314 +Torque: -0.011835 -0.091959 -0.031522 + +Polar angle tht: 1.0908; Azimuth angle phi: 3.2289 +Force: 2.015663 0.109570 -2.788626 +Torque: -0.023645 -0.091749 -0.062805 + +Polar angle tht: 1.0908; Azimuth angle phi: 3.2725 +Force: 2.000962 0.163808 -2.787481 +Torque: -0.035407 -0.091399 -0.093609 + +Polar angle tht: 1.0908; Azimuth angle phi: 3.3161 +Force: 1.980502 0.217391 -2.785880 +Torque: -0.047095 -0.090909 -0.123701 + +Polar angle tht: 1.0908; Azimuth angle phi: 3.3598 +Force: 1.954402 0.270108 -2.783828 +Torque: -0.058686 -0.090277 -0.152852 + +Polar angle tht: 1.0908; Azimuth angle phi: 3.4034 +Force: 1.922815 0.321753 -2.781327 +Torque: -0.070155 -0.089504 -0.180839 + +Polar angle tht: 1.0908; Azimuth angle phi: 3.4470 +Force: 1.885926 0.372124 -2.778383 +Torque: -0.081480 -0.088589 -0.207450 + +Polar angle tht: 1.0908; Azimuth angle phi: 3.4907 +Force: 1.843949 0.421028 -2.775001 +Torque: -0.092636 -0.087531 -0.232483 + +Polar angle tht: 1.0908; Azimuth angle phi: 3.5343 +Force: 1.797127 0.468282 -2.771187 +Torque: -0.103602 -0.086329 -0.255745 + +Polar angle tht: 1.0908; Azimuth angle phi: 3.5779 +Force: 1.745733 0.513709 -2.766950 +Torque: -0.114354 -0.084983 -0.277062 + +Polar angle tht: 1.0908; Azimuth angle phi: 3.6216 +Force: 1.727718 0.584527 -2.777861 +Torque: -0.113484 -0.085035 -0.271436 + +Polar angle tht: 1.0908; Azimuth angle phi: 3.6652 +Force: 1.724729 0.673090 -2.796941 +Torque: -0.105886 -0.085719 -0.251035 + +Polar angle tht: 1.0908; Azimuth angle phi: 3.7088 +Force: 1.713653 0.763389 -2.814768 +Torque: -0.098411 -0.086073 -0.231199 + +Polar angle tht: 1.0908; Azimuth angle phi: 3.7525 +Force: 1.694548 0.854792 -2.831330 +Torque: -0.091073 -0.086084 -0.212014 + +Polar angle tht: 1.0908; Azimuth angle phi: 3.7961 +Force: 1.667535 0.946656 -2.846615 +Torque: -0.083892 -0.085740 -0.193558 + +Polar angle tht: 1.0908; Azimuth angle phi: 3.8397 +Force: 1.632790 1.038334 -2.860616 +Torque: -0.076883 -0.085033 -0.175896 + +Polar angle tht: 1.0908; Azimuth angle phi: 3.8834 +Force: 1.590551 1.129179 -2.873327 +Torque: -0.070063 -0.083956 -0.159084 + +Polar angle tht: 1.0908; Azimuth angle phi: 3.9270 +Force: 1.541107 1.218548 -2.884747 +Torque: -0.063450 -0.082503 -0.143170 + +Polar angle tht: 1.0908; Azimuth angle phi: 3.9706 +Force: 1.484802 1.305806 -2.894876 +Torque: -0.057059 -0.080672 -0.128188 + +Polar angle tht: 1.0908; Azimuth angle phi: 4.0143 +Force: 1.422032 1.390335 -2.903718 +Torque: -0.050907 -0.078463 -0.114160 + +Polar angle tht: 1.0908; Azimuth angle phi: 4.0579 +Force: 1.353239 1.471532 -2.911277 +Torque: -0.045010 -0.075878 -0.101102 + +Polar angle tht: 1.0908; Azimuth angle phi: 4.1015 +Force: 1.278909 1.548822 -2.917562 +Torque: -0.039383 -0.072921 -0.089014 + +Polar angle tht: 1.0908; Azimuth angle phi: 4.1452 +Force: 1.199573 1.621652 -2.922582 +Torque: -0.034042 -0.069598 -0.077888 + +Polar angle tht: 1.0908; Azimuth angle phi: 4.1888 +Force: 1.115793 1.689505 -2.926348 +Torque: -0.029002 -0.065918 -0.067706 + +Polar angle tht: 1.0908; Azimuth angle phi: 4.2324 +Force: 1.028169 1.751898 -2.928872 +Torque: -0.024276 -0.061893 -0.058437 + +Polar angle tht: 1.0908; Azimuth angle phi: 4.2761 +Force: 0.937326 1.808386 -2.930170 +Torque: -0.019877 -0.057536 -0.050043 + +Polar angle tht: 1.0908; Azimuth angle phi: 4.3197 +Force: 0.843914 1.858569 -2.930255 +Torque: -0.015820 -0.052861 -0.042477 + +Polar angle tht: 1.0908; Azimuth angle phi: 4.3633 +Force: 0.748601 1.902090 -2.929144 +Torque: -0.012115 -0.047888 -0.035681 + +Polar angle tht: 1.0908; Azimuth angle phi: 4.4070 +Force: 0.652069 1.938641 -2.926856 +Torque: -0.008773 -0.042634 -0.029591 + +Polar angle tht: 1.0908; Azimuth angle phi: 4.4506 +Force: 0.555009 1.967964 -2.923407 +Torque: -0.005807 -0.037121 -0.024136 + +Polar angle tht: 1.0908; Azimuth angle phi: 4.4942 +Force: 0.458115 1.989856 -2.918816 +Torque: -0.003224 -0.031373 -0.019237 + +Polar angle tht: 1.0908; Azimuth angle phi: 4.5379 +Force: 0.362078 2.004163 -2.913103 +Torque: -0.001033 -0.025414 -0.014810 + +Polar angle tht: 1.0908; Azimuth angle phi: 4.5815 +Force: 0.267584 2.010790 -2.906286 +Torque: 0.000758 -0.019269 -0.010766 + +Polar angle tht: 1.0908; Azimuth angle phi: 4.6251 +Force: 0.175306 2.009697 -2.898387 +Torque: 0.002142 -0.012966 -0.007014 + +Polar angle tht: 1.0908; Azimuth angle phi: 4.6688 +Force: 0.085900 2.000898 -2.889423 +Torque: 0.003115 -0.006533 -0.003458 + +Polar angle tht: 1.0908; Azimuth angle phi: 4.7124 +Force: 0.000000 1.984465 -2.879416 +Torque: 0.003671 -0.000000 -0.000000 + +Polar angle tht: 1.0908; Azimuth angle phi: 4.7560 +Force: -0.085900 2.000898 -2.889423 +Torque: 0.003115 0.006533 0.003458 + +Polar angle tht: 1.0908; Azimuth angle phi: 4.7997 +Force: -0.175306 2.009697 -2.898387 +Torque: 0.002142 0.012966 0.007014 + +Polar angle tht: 1.0908; Azimuth angle phi: 4.8433 +Force: -0.267584 2.010790 -2.906286 +Torque: 0.000758 0.019269 0.010766 + +Polar angle tht: 1.0908; Azimuth angle phi: 4.8869 +Force: -0.362078 2.004163 -2.913103 +Torque: -0.001033 0.025414 0.014810 + +Polar angle tht: 1.0908; Azimuth angle phi: 4.9306 +Force: -0.458115 1.989856 -2.918816 +Torque: -0.003224 0.031373 0.019237 + +Polar angle tht: 1.0908; Azimuth angle phi: 4.9742 +Force: -0.555009 1.967964 -2.923407 +Torque: -0.005807 0.037121 0.024136 + +Polar angle tht: 1.0908; Azimuth angle phi: 5.0178 +Force: -0.652069 1.938641 -2.926856 +Torque: -0.008773 0.042634 0.029591 + +Polar angle tht: 1.0908; Azimuth angle phi: 5.0615 +Force: -0.748601 1.902090 -2.929144 +Torque: -0.012115 0.047888 0.035681 + +Polar angle tht: 1.0908; Azimuth angle phi: 5.1051 +Force: -0.843914 1.858569 -2.930255 +Torque: -0.015820 0.052861 0.042477 + +Polar angle tht: 1.0908; Azimuth angle phi: 5.1487 +Force: -0.937326 1.808386 -2.930170 +Torque: -0.019877 0.057536 0.050043 + +Polar angle tht: 1.0908; Azimuth angle phi: 5.1924 +Force: -1.028169 1.751898 -2.928872 +Torque: -0.024276 0.061893 0.058437 + +Polar angle tht: 1.0908; Azimuth angle phi: 5.2360 +Force: -1.115793 1.689505 -2.926348 +Torque: -0.029002 0.065918 0.067706 + +Polar angle tht: 1.0908; Azimuth angle phi: 5.2796 +Force: -1.199573 1.621652 -2.922582 +Torque: -0.034042 0.069598 0.077888 + +Polar angle tht: 1.0908; Azimuth angle phi: 5.3233 +Force: -1.278909 1.548822 -2.917562 +Torque: -0.039383 0.072921 0.089014 + +Polar angle tht: 1.0908; Azimuth angle phi: 5.3669 +Force: -1.353239 1.471532 -2.911277 +Torque: -0.045010 0.075878 0.101102 + +Polar angle tht: 1.0908; Azimuth angle phi: 5.4105 +Force: -1.422032 1.390335 -2.903718 +Torque: -0.050907 0.078463 0.114160 + +Polar angle tht: 1.0908; Azimuth angle phi: 5.4542 +Force: -1.484802 1.305806 -2.894876 +Torque: -0.057059 0.080672 0.128188 + +Polar angle tht: 1.0908; Azimuth angle phi: 5.4978 +Force: -1.541107 1.218548 -2.884747 +Torque: -0.063450 0.082503 0.143170 + +Polar angle tht: 1.0908; Azimuth angle phi: 5.5414 +Force: -1.590551 1.129179 -2.873327 +Torque: -0.070063 0.083956 0.159084 + +Polar angle tht: 1.0908; Azimuth angle phi: 5.5851 +Force: -1.632790 1.038334 -2.860616 +Torque: -0.076883 0.085033 0.175896 + +Polar angle tht: 1.0908; Azimuth angle phi: 5.6287 +Force: -1.667535 0.946656 -2.846615 +Torque: -0.083892 0.085740 0.193558 + +Polar angle tht: 1.0908; Azimuth angle phi: 5.6723 +Force: -1.694548 0.854792 -2.831330 +Torque: -0.091073 0.086084 0.212014 + +Polar angle tht: 1.0908; Azimuth angle phi: 5.7160 +Force: -1.713653 0.763389 -2.814768 +Torque: -0.098411 0.086073 0.231199 + +Polar angle tht: 1.0908; Azimuth angle phi: 5.7596 +Force: -1.724729 0.673090 -2.796941 +Torque: -0.105886 0.085719 0.251035 + +Polar angle tht: 1.0908; Azimuth angle phi: 5.8032 +Force: -1.727718 0.584527 -2.777861 +Torque: -0.113484 0.085035 0.271436 + +Polar angle tht: 1.0908; Azimuth angle phi: 5.8469 +Force: -1.745733 0.513709 -2.766950 +Torque: -0.114354 0.084983 0.277062 + +Polar angle tht: 1.0908; Azimuth angle phi: 5.8905 +Force: -1.797127 0.468282 -2.771187 +Torque: -0.103602 0.086329 0.255745 + +Polar angle tht: 1.0908; Azimuth angle phi: 5.9341 +Force: -1.843949 0.421028 -2.775001 +Torque: -0.092636 0.087531 0.232483 + +Polar angle tht: 1.0908; Azimuth angle phi: 5.9778 +Force: -1.885926 0.372124 -2.778383 +Torque: -0.081480 0.088589 0.207450 + +Polar angle tht: 1.0908; Azimuth angle phi: 6.0214 +Force: -1.922815 0.321753 -2.781327 +Torque: -0.070155 0.089504 0.180839 + +Polar angle tht: 1.0908; Azimuth angle phi: 6.0650 +Force: -1.954402 0.270108 -2.783828 +Torque: -0.058686 0.090277 0.152852 + +Polar angle tht: 1.0908; Azimuth angle phi: 6.1087 +Force: -1.980502 0.217391 -2.785880 +Torque: -0.047095 0.090909 0.123701 + +Polar angle tht: 1.0908; Azimuth angle phi: 6.1523 +Force: -2.000962 0.163808 -2.787481 +Torque: -0.035407 0.091399 0.093609 + +Polar angle tht: 1.0908; Azimuth angle phi: 6.1959 +Force: -2.015663 0.109570 -2.788626 +Torque: -0.023645 0.091749 0.062805 + +Polar angle tht: 1.0908; Azimuth angle phi: 6.2396 +Force: -2.024518 0.054895 -2.789314 +Torque: -0.011835 0.091959 0.031522 + +Polar angle tht: 1.0908; Azimuth angle phi: 6.2832 +Force: -2.027476 0.000000 -2.789544 +Torque: -0.000000 0.092029 0.000000 + +Polar angle tht: 1.1345; Azimuth angle phi: 0.0000 +Force: -2.026713 0.000000 -2.389280 +Torque: -0.000000 0.083819 0.000000 + +Polar angle tht: 1.1345; Azimuth angle phi: 0.0436 +Force: -2.023711 -0.053533 -2.389065 +Torque: 0.011105 0.083757 -0.032909 + +Polar angle tht: 1.1345; Azimuth angle phi: 0.0873 +Force: -2.014723 -0.106843 -2.388422 +Torque: 0.022188 0.083573 -0.065567 + +Polar angle tht: 1.1345; Azimuth angle phi: 0.1309 +Force: -1.999803 -0.159711 -2.387351 +Torque: 0.033223 0.083266 -0.097727 + +Polar angle tht: 1.1345; Azimuth angle phi: 0.1745 +Force: -1.979039 -0.211917 -2.385854 +Torque: 0.044190 0.082835 -0.129142 + +Polar angle tht: 1.1345; Azimuth angle phi: 0.2182 +Force: -1.952557 -0.263248 -2.383934 +Torque: 0.055064 0.082280 -0.159575 + +Polar angle tht: 1.1345; Azimuth angle phi: 0.2618 +Force: -1.920513 -0.313495 -2.381596 +Torque: 0.065823 0.081600 -0.188793 + +Polar angle tht: 1.1345; Azimuth angle phi: 0.3054 +Force: -1.883100 -0.362455 -2.378843 +Torque: 0.076446 0.080795 -0.216575 + +Polar angle tht: 1.1345; Azimuth angle phi: 0.3491 +Force: -1.840537 -0.409933 -2.375680 +Torque: 0.086909 0.079862 -0.242708 + +Polar angle tht: 1.1345; Azimuth angle phi: 0.3927 +Force: -1.793079 -0.455744 -2.372114 +Torque: 0.097191 0.078801 -0.266994 + +Polar angle tht: 1.1345; Azimuth angle phi: 0.4363 +Force: -1.791772 -0.533454 -2.385812 +Torque: 0.094241 0.079692 -0.255769 + +Polar angle tht: 1.1345; Azimuth angle phi: 0.4800 +Force: -1.797237 -0.623426 -2.403572 +Torque: 0.087549 0.080907 -0.235033 + +Polar angle tht: 1.1345; Azimuth angle phi: 0.5236 +Force: -1.794271 -0.715855 -2.420176 +Torque: 0.080936 0.081808 -0.214880 + +Polar angle tht: 1.1345; Azimuth angle phi: 0.5672 +Force: -1.782872 -0.810097 -2.435613 +Torque: 0.074418 0.082378 -0.195406 + +Polar angle tht: 1.1345; Azimuth angle phi: 0.6109 +Force: -1.763104 -0.905493 -2.449873 +Torque: 0.068008 0.082604 -0.176699 + +Polar angle tht: 1.1345; Azimuth angle phi: 0.6545 +Force: -1.735090 -1.001371 -2.462952 +Torque: 0.061724 0.082475 -0.158838 + +Polar angle tht: 1.1345; Azimuth angle phi: 0.6981 +Force: -1.699017 -1.097056 -2.474846 +Torque: 0.055580 0.081979 -0.141888 + +Polar angle tht: 1.1345; Azimuth angle phi: 0.7418 +Force: -1.655130 -1.191872 -2.485556 +Torque: 0.049591 0.081109 -0.125906 + +Polar angle tht: 1.1345; Azimuth angle phi: 0.7854 +Force: -1.603731 -1.285147 -2.495086 +Torque: 0.043773 0.079860 -0.110937 + +Polar angle tht: 1.1345; Azimuth angle phi: 0.8290 +Force: -1.545180 -1.376220 -2.503438 +Torque: 0.038142 0.078228 -0.097013 + +Polar angle tht: 1.1345; Azimuth angle phi: 0.8727 +Force: -1.479888 -1.464445 -2.510623 +Torque: 0.032711 0.076213 -0.084157 + +Polar angle tht: 1.1345; Azimuth angle phi: 0.9163 +Force: -1.408317 -1.549193 -2.516648 +Torque: 0.027496 0.073816 -0.072379 + +Polar angle tht: 1.1345; Azimuth angle phi: 0.9599 +Force: -1.330976 -1.629862 -2.521526 +Torque: 0.022511 0.071040 -0.061677 + +Polar angle tht: 1.1345; Azimuth angle phi: 1.0036 +Force: -1.248414 -1.705878 -2.525269 +Torque: 0.017771 0.067893 -0.052039 + +Polar angle tht: 1.1345; Azimuth angle phi: 1.0472 +Force: -1.161222 -1.776698 -2.527892 +Torque: 0.013289 0.064383 -0.043441 + +Polar angle tht: 1.1345; Azimuth angle phi: 1.0908 +Force: -1.070023 -1.841819 -2.529411 +Torque: 0.009078 0.060520 -0.035849 + +Polar angle tht: 1.1345; Azimuth angle phi: 1.1345 +Force: -0.975470 -1.900777 -2.529842 +Torque: 0.005152 0.056318 -0.029219 + +Polar angle tht: 1.1345; Azimuth angle phi: 1.1781 +Force: -0.878241 -1.953154 -2.529203 +Torque: 0.001521 0.051792 -0.023495 + +Polar angle tht: 1.1345; Azimuth angle phi: 1.2217 +Force: -0.779032 -1.998577 -2.527513 +Torque: -0.001801 0.046960 -0.018616 + +Polar angle tht: 1.1345; Azimuth angle phi: 1.2654 +Force: -0.678556 -2.036725 -2.524791 +Torque: -0.004806 0.041842 -0.014510 + +Polar angle tht: 1.1345; Azimuth angle phi: 1.3090 +Force: -0.577532 -2.067329 -2.521055 +Torque: -0.007482 0.036459 -0.011097 + +Polar angle tht: 1.1345; Azimuth angle phi: 1.3526 +Force: -0.476685 -2.090175 -2.516327 +Torque: -0.009821 0.030833 -0.008291 + +Polar angle tht: 1.1345; Azimuth angle phi: 1.3963 +Force: -0.376736 -2.105106 -2.510625 +Torque: -0.011815 0.024991 -0.006001 + +Polar angle tht: 1.1345; Azimuth angle phi: 1.4399 +Force: -0.278401 -2.112020 -2.503970 +Torque: -0.013456 0.018959 -0.004129 + +Polar angle tht: 1.1345; Azimuth angle phi: 1.4835 +Force: -0.182380 -2.110874 -2.496380 +Torque: -0.014737 0.012763 -0.002575 + +Polar angle tht: 1.1345; Azimuth angle phi: 1.5272 +Force: -0.089360 -2.101686 -2.487877 +Torque: -0.015654 0.006434 -0.001234 + +Polar angle tht: 1.1345; Azimuth angle phi: 1.5708 +Force: 0.000000 -2.084529 -2.478478 +Torque: -0.016202 -0.000000 0.000000 + +Polar angle tht: 1.1345; Azimuth angle phi: 1.6144 +Force: 0.089360 -2.101686 -2.487877 +Torque: -0.015654 -0.006434 0.001234 + +Polar angle tht: 1.1345; Azimuth angle phi: 1.6581 +Force: 0.182380 -2.110874 -2.496380 +Torque: -0.014737 -0.012763 0.002575 + +Polar angle tht: 1.1345; Azimuth angle phi: 1.7017 +Force: 0.278401 -2.112020 -2.503970 +Torque: -0.013456 -0.018959 0.004129 + +Polar angle tht: 1.1345; Azimuth angle phi: 1.7453 +Force: 0.376736 -2.105106 -2.510625 +Torque: -0.011815 -0.024991 0.006001 + +Polar angle tht: 1.1345; Azimuth angle phi: 1.7890 +Force: 0.476685 -2.090175 -2.516327 +Torque: -0.009821 -0.030833 0.008291 + +Polar angle tht: 1.1345; Azimuth angle phi: 1.8326 +Force: 0.577532 -2.067329 -2.521055 +Torque: -0.007482 -0.036459 0.011097 + +Polar angle tht: 1.1345; Azimuth angle phi: 1.8762 +Force: 0.678556 -2.036725 -2.524791 +Torque: -0.004806 -0.041842 0.014510 + +Polar angle tht: 1.1345; Azimuth angle phi: 1.9199 +Force: 0.779032 -1.998577 -2.527513 +Torque: -0.001801 -0.046960 0.018616 + +Polar angle tht: 1.1345; Azimuth angle phi: 1.9635 +Force: 0.878241 -1.953154 -2.529203 +Torque: 0.001521 -0.051792 0.023495 + +Polar angle tht: 1.1345; Azimuth angle phi: 2.0071 +Force: 0.975470 -1.900777 -2.529842 +Torque: 0.005152 -0.056318 0.029219 + +Polar angle tht: 1.1345; Azimuth angle phi: 2.0508 +Force: 1.070023 -1.841819 -2.529411 +Torque: 0.009078 -0.060520 0.035849 + +Polar angle tht: 1.1345; Azimuth angle phi: 2.0944 +Force: 1.161222 -1.776698 -2.527892 +Torque: 0.013289 -0.064383 0.043441 + +Polar angle tht: 1.1345; Azimuth angle phi: 2.1380 +Force: 1.248414 -1.705878 -2.525269 +Torque: 0.017771 -0.067893 0.052039 + +Polar angle tht: 1.1345; Azimuth angle phi: 2.1817 +Force: 1.330976 -1.629862 -2.521526 +Torque: 0.022511 -0.071040 0.061677 + +Polar angle tht: 1.1345; Azimuth angle phi: 2.2253 +Force: 1.408317 -1.549193 -2.516648 +Torque: 0.027496 -0.073816 0.072379 + +Polar angle tht: 1.1345; Azimuth angle phi: 2.2689 +Force: 1.479888 -1.464445 -2.510623 +Torque: 0.032711 -0.076213 0.084157 + +Polar angle tht: 1.1345; Azimuth angle phi: 2.3126 +Force: 1.545180 -1.376220 -2.503438 +Torque: 0.038142 -0.078228 0.097013 + +Polar angle tht: 1.1345; Azimuth angle phi: 2.3562 +Force: 1.603731 -1.285147 -2.495086 +Torque: 0.043773 -0.079860 0.110937 + +Polar angle tht: 1.1345; Azimuth angle phi: 2.3998 +Force: 1.655130 -1.191872 -2.485556 +Torque: 0.049591 -0.081109 0.125906 + +Polar angle tht: 1.1345; Azimuth angle phi: 2.4435 +Force: 1.699017 -1.097056 -2.474846 +Torque: 0.055580 -0.081979 0.141888 + +Polar angle tht: 1.1345; Azimuth angle phi: 2.4871 +Force: 1.735090 -1.001371 -2.462952 +Torque: 0.061724 -0.082475 0.158838 + +Polar angle tht: 1.1345; Azimuth angle phi: 2.5307 +Force: 1.763104 -0.905493 -2.449873 +Torque: 0.068008 -0.082604 0.176699 + +Polar angle tht: 1.1345; Azimuth angle phi: 2.5744 +Force: 1.782872 -0.810097 -2.435613 +Torque: 0.074418 -0.082378 0.195406 + +Polar angle tht: 1.1345; Azimuth angle phi: 2.6180 +Force: 1.794271 -0.715855 -2.420176 +Torque: 0.080936 -0.081808 0.214880 + +Polar angle tht: 1.1345; Azimuth angle phi: 2.6616 +Force: 1.797237 -0.623426 -2.403572 +Torque: 0.087549 -0.080907 0.235033 + +Polar angle tht: 1.1345; Azimuth angle phi: 2.7053 +Force: 1.791772 -0.533454 -2.385812 +Torque: 0.094241 -0.079692 0.255769 + +Polar angle tht: 1.1345; Azimuth angle phi: 2.7489 +Force: 1.793079 -0.455744 -2.372114 +Torque: 0.097191 -0.078801 0.266994 + +Polar angle tht: 1.1345; Azimuth angle phi: 2.7925 +Force: 1.840537 -0.409933 -2.375680 +Torque: 0.086909 -0.079862 0.242708 + +Polar angle tht: 1.1345; Azimuth angle phi: 2.8362 +Force: 1.883100 -0.362455 -2.378843 +Torque: 0.076446 -0.080795 0.216575 + +Polar angle tht: 1.1345; Azimuth angle phi: 2.8798 +Force: 1.920513 -0.313495 -2.381596 +Torque: 0.065823 -0.081600 0.188793 + +Polar angle tht: 1.1345; Azimuth angle phi: 2.9234 +Force: 1.952557 -0.263248 -2.383934 +Torque: 0.055064 -0.082280 0.159575 + +Polar angle tht: 1.1345; Azimuth angle phi: 2.9671 +Force: 1.979039 -0.211917 -2.385854 +Torque: 0.044190 -0.082835 0.129142 + +Polar angle tht: 1.1345; Azimuth angle phi: 3.0107 +Force: 1.999803 -0.159711 -2.387351 +Torque: 0.033223 -0.083266 0.097727 + +Polar angle tht: 1.1345; Azimuth angle phi: 3.0543 +Force: 2.014723 -0.106843 -2.388422 +Torque: 0.022188 -0.083573 0.065567 + +Polar angle tht: 1.1345; Azimuth angle phi: 3.0980 +Force: 2.023711 -0.053533 -2.389065 +Torque: 0.011105 -0.083757 0.032909 + +Polar angle tht: 1.1345; Azimuth angle phi: 3.1416 +Force: 2.026713 0.000000 -2.389280 +Torque: -0.000000 -0.083819 -0.000000 + +Polar angle tht: 1.1345; Azimuth angle phi: 3.1852 +Force: 2.023711 0.053533 -2.389065 +Torque: -0.011105 -0.083757 -0.032909 + +Polar angle tht: 1.1345; Azimuth angle phi: 3.2289 +Force: 2.014723 0.106843 -2.388422 +Torque: -0.022188 -0.083573 -0.065567 + +Polar angle tht: 1.1345; Azimuth angle phi: 3.2725 +Force: 1.999803 0.159711 -2.387351 +Torque: -0.033223 -0.083266 -0.097727 + +Polar angle tht: 1.1345; Azimuth angle phi: 3.3161 +Force: 1.979039 0.211917 -2.385854 +Torque: -0.044190 -0.082835 -0.129142 + +Polar angle tht: 1.1345; Azimuth angle phi: 3.3598 +Force: 1.952557 0.263248 -2.383934 +Torque: -0.055064 -0.082280 -0.159575 + +Polar angle tht: 1.1345; Azimuth angle phi: 3.4034 +Force: 1.920513 0.313495 -2.381596 +Torque: -0.065823 -0.081600 -0.188793 + +Polar angle tht: 1.1345; Azimuth angle phi: 3.4470 +Force: 1.883100 0.362455 -2.378843 +Torque: -0.076446 -0.080795 -0.216575 + +Polar angle tht: 1.1345; Azimuth angle phi: 3.4907 +Force: 1.840537 0.409933 -2.375680 +Torque: -0.086909 -0.079862 -0.242708 + +Polar angle tht: 1.1345; Azimuth angle phi: 3.5343 +Force: 1.793079 0.455744 -2.372114 +Torque: -0.097191 -0.078801 -0.266994 + +Polar angle tht: 1.1345; Azimuth angle phi: 3.5779 +Force: 1.791772 0.533454 -2.385812 +Torque: -0.094241 -0.079692 -0.255768 + +Polar angle tht: 1.1345; Azimuth angle phi: 3.6216 +Force: 1.797237 0.623426 -2.403572 +Torque: -0.087548 -0.080907 -0.235031 + +Polar angle tht: 1.1345; Azimuth angle phi: 3.6652 +Force: 1.794271 0.715855 -2.420176 +Torque: -0.080935 -0.081808 -0.214876 + +Polar angle tht: 1.1345; Azimuth angle phi: 3.7088 +Force: 1.782872 0.810097 -2.435613 +Torque: -0.074416 -0.082378 -0.195401 + +Polar angle tht: 1.1345; Azimuth angle phi: 3.7525 +Force: 1.763104 0.905493 -2.449873 +Torque: -0.068006 -0.082604 -0.176694 + +Polar angle tht: 1.1345; Azimuth angle phi: 3.7961 +Force: 1.735090 1.001371 -2.462952 +Torque: -0.061722 -0.082475 -0.158832 + +Polar angle tht: 1.1345; Azimuth angle phi: 3.8397 +Force: 1.699017 1.097056 -2.474846 +Torque: -0.055577 -0.081979 -0.141881 + +Polar angle tht: 1.1345; Azimuth angle phi: 3.8834 +Force: 1.655130 1.191872 -2.485556 +Torque: -0.049588 -0.081109 -0.125898 + +Polar angle tht: 1.1345; Azimuth angle phi: 3.9270 +Force: 1.603731 1.285147 -2.495086 +Torque: -0.043770 -0.079860 -0.110929 + +Polar angle tht: 1.1345; Azimuth angle phi: 3.9706 +Force: 1.545180 1.376220 -2.503438 +Torque: -0.038138 -0.078228 -0.097005 + +Polar angle tht: 1.1345; Azimuth angle phi: 4.0143 +Force: 1.479888 1.464445 -2.510623 +Torque: -0.032707 -0.076213 -0.084148 + +Polar angle tht: 1.1345; Azimuth angle phi: 4.0579 +Force: 1.408317 1.549193 -2.516648 +Torque: -0.027492 -0.073816 -0.072370 + +Polar angle tht: 1.1345; Azimuth angle phi: 4.1015 +Force: 1.330976 1.629862 -2.521526 +Torque: -0.022507 -0.071040 -0.061668 + +Polar angle tht: 1.1345; Azimuth angle phi: 4.1452 +Force: 1.248414 1.705878 -2.525269 +Torque: -0.017766 -0.067893 -0.052030 + +Polar angle tht: 1.1345; Azimuth angle phi: 4.1888 +Force: 1.161222 1.776698 -2.527892 +Torque: -0.013284 -0.064383 -0.043432 + +Polar angle tht: 1.1345; Azimuth angle phi: 4.2324 +Force: 1.070023 1.841819 -2.529411 +Torque: -0.009073 -0.060520 -0.035841 + +Polar angle tht: 1.1345; Azimuth angle phi: 4.2761 +Force: 0.975470 1.900777 -2.529842 +Torque: -0.005146 -0.056318 -0.029211 + +Polar angle tht: 1.1345; Azimuth angle phi: 4.3197 +Force: 0.878241 1.953154 -2.529203 +Torque: -0.001516 -0.051792 -0.023488 + +Polar angle tht: 1.1345; Azimuth angle phi: 4.3633 +Force: 0.779032 1.998577 -2.527513 +Torque: 0.001807 -0.046960 -0.018610 + +Polar angle tht: 1.1345; Azimuth angle phi: 4.4070 +Force: 0.678556 2.036725 -2.524791 +Torque: 0.004812 -0.041842 -0.014504 + +Polar angle tht: 1.1345; Azimuth angle phi: 4.4506 +Force: 0.577532 2.067329 -2.521055 +Torque: 0.007488 -0.036459 -0.011091 + +Polar angle tht: 1.1345; Azimuth angle phi: 4.4942 +Force: 0.476685 2.090175 -2.516327 +Torque: 0.009827 -0.030833 -0.008286 + +Polar angle tht: 1.1345; Azimuth angle phi: 4.5379 +Force: 0.376736 2.105106 -2.510625 +Torque: 0.011821 -0.024991 -0.005997 + +Polar angle tht: 1.1345; Azimuth angle phi: 4.5815 +Force: 0.278401 2.112020 -2.503970 +Torque: 0.013462 -0.018959 -0.004126 + +Polar angle tht: 1.1345; Azimuth angle phi: 4.6251 +Force: 0.182380 2.110874 -2.496380 +Torque: 0.014743 -0.012763 -0.002573 + +Polar angle tht: 1.1345; Azimuth angle phi: 4.6688 +Force: 0.089360 2.101686 -2.487877 +Torque: 0.015660 -0.006434 -0.001233 + +Polar angle tht: 1.1345; Azimuth angle phi: 4.7124 +Force: 0.000000 2.084529 -2.478478 +Torque: 0.016208 -0.000000 -0.000000 + +Polar angle tht: 1.1345; Azimuth angle phi: 4.7560 +Force: -0.089360 2.101686 -2.487877 +Torque: 0.015660 0.006434 0.001233 + +Polar angle tht: 1.1345; Azimuth angle phi: 4.7997 +Force: -0.182380 2.110874 -2.496380 +Torque: 0.014743 0.012763 0.002573 + +Polar angle tht: 1.1345; Azimuth angle phi: 4.8433 +Force: -0.278401 2.112020 -2.503970 +Torque: 0.013462 0.018959 0.004126 + +Polar angle tht: 1.1345; Azimuth angle phi: 4.8869 +Force: -0.376736 2.105106 -2.510625 +Torque: 0.011821 0.024991 0.005997 + +Polar angle tht: 1.1345; Azimuth angle phi: 4.9306 +Force: -0.476685 2.090175 -2.516327 +Torque: 0.009827 0.030833 0.008286 + +Polar angle tht: 1.1345; Azimuth angle phi: 4.9742 +Force: -0.577532 2.067329 -2.521055 +Torque: 0.007488 0.036459 0.011091 + +Polar angle tht: 1.1345; Azimuth angle phi: 5.0178 +Force: -0.678556 2.036725 -2.524791 +Torque: 0.004812 0.041842 0.014504 + +Polar angle tht: 1.1345; Azimuth angle phi: 5.0615 +Force: -0.779032 1.998577 -2.527513 +Torque: 0.001807 0.046960 0.018610 + +Polar angle tht: 1.1345; Azimuth angle phi: 5.1051 +Force: -0.878241 1.953154 -2.529203 +Torque: -0.001516 0.051792 0.023488 + +Polar angle tht: 1.1345; Azimuth angle phi: 5.1487 +Force: -0.975470 1.900777 -2.529842 +Torque: -0.005146 0.056318 0.029211 + +Polar angle tht: 1.1345; Azimuth angle phi: 5.1924 +Force: -1.070023 1.841819 -2.529411 +Torque: -0.009073 0.060520 0.035841 + +Polar angle tht: 1.1345; Azimuth angle phi: 5.2360 +Force: -1.161222 1.776698 -2.527892 +Torque: -0.013284 0.064383 0.043432 + +Polar angle tht: 1.1345; Azimuth angle phi: 5.2796 +Force: -1.248414 1.705878 -2.525269 +Torque: -0.017766 0.067893 0.052030 + +Polar angle tht: 1.1345; Azimuth angle phi: 5.3233 +Force: -1.330976 1.629862 -2.521526 +Torque: -0.022507 0.071040 0.061668 + +Polar angle tht: 1.1345; Azimuth angle phi: 5.3669 +Force: -1.408317 1.549193 -2.516648 +Torque: -0.027492 0.073816 0.072370 + +Polar angle tht: 1.1345; Azimuth angle phi: 5.4105 +Force: -1.479888 1.464445 -2.510623 +Torque: -0.032707 0.076213 0.084148 + +Polar angle tht: 1.1345; Azimuth angle phi: 5.4542 +Force: -1.545180 1.376220 -2.503438 +Torque: -0.038138 0.078228 0.097005 + +Polar angle tht: 1.1345; Azimuth angle phi: 5.4978 +Force: -1.603731 1.285147 -2.495086 +Torque: -0.043770 0.079860 0.110929 + +Polar angle tht: 1.1345; Azimuth angle phi: 5.5414 +Force: -1.655130 1.191872 -2.485556 +Torque: -0.049588 0.081109 0.125898 + +Polar angle tht: 1.1345; Azimuth angle phi: 5.5851 +Force: -1.699017 1.097056 -2.474846 +Torque: -0.055577 0.081979 0.141881 + +Polar angle tht: 1.1345; Azimuth angle phi: 5.6287 +Force: -1.735090 1.001371 -2.462952 +Torque: -0.061722 0.082475 0.158832 + +Polar angle tht: 1.1345; Azimuth angle phi: 5.6723 +Force: -1.763104 0.905493 -2.449873 +Torque: -0.068006 0.082604 0.176694 + +Polar angle tht: 1.1345; Azimuth angle phi: 5.7160 +Force: -1.782872 0.810097 -2.435613 +Torque: -0.074416 0.082378 0.195401 + +Polar angle tht: 1.1345; Azimuth angle phi: 5.7596 +Force: -1.794271 0.715855 -2.420176 +Torque: -0.080935 0.081808 0.214876 + +Polar angle tht: 1.1345; Azimuth angle phi: 5.8032 +Force: -1.797237 0.623426 -2.403572 +Torque: -0.087548 0.080907 0.235031 + +Polar angle tht: 1.1345; Azimuth angle phi: 5.8469 +Force: -1.791772 0.533454 -2.385812 +Torque: -0.094241 0.079692 0.255768 + +Polar angle tht: 1.1345; Azimuth angle phi: 5.8905 +Force: -1.793079 0.455744 -2.372114 +Torque: -0.097191 0.078801 0.266994 + +Polar angle tht: 1.1345; Azimuth angle phi: 5.9341 +Force: -1.840537 0.409933 -2.375680 +Torque: -0.086909 0.079862 0.242708 + +Polar angle tht: 1.1345; Azimuth angle phi: 5.9778 +Force: -1.883100 0.362455 -2.378843 +Torque: -0.076446 0.080795 0.216575 + +Polar angle tht: 1.1345; Azimuth angle phi: 6.0214 +Force: -1.920513 0.313495 -2.381596 +Torque: -0.065823 0.081600 0.188793 + +Polar angle tht: 1.1345; Azimuth angle phi: 6.0650 +Force: -1.952557 0.263248 -2.383934 +Torque: -0.055064 0.082280 0.159575 + +Polar angle tht: 1.1345; Azimuth angle phi: 6.1087 +Force: -1.979039 0.211917 -2.385854 +Torque: -0.044190 0.082835 0.129142 + +Polar angle tht: 1.1345; Azimuth angle phi: 6.1523 +Force: -1.999803 0.159711 -2.387351 +Torque: -0.033223 0.083266 0.097727 + +Polar angle tht: 1.1345; Azimuth angle phi: 6.1959 +Force: -2.014723 0.106843 -2.388422 +Torque: -0.022188 0.083573 0.065567 + +Polar angle tht: 1.1345; Azimuth angle phi: 6.2396 +Force: -2.023711 0.053533 -2.389065 +Torque: -0.011105 0.083757 0.032909 + +Polar angle tht: 1.1345; Azimuth angle phi: 6.2832 +Force: -2.026713 0.000000 -2.389280 +Torque: -0.000000 0.083819 0.000000 + +Polar angle tht: 1.1781; Azimuth angle phi: 0.0000 +Force: -2.016633 0.000000 -2.011597 +Torque: -0.000000 0.074866 0.000000 + +Polar angle tht: 1.1781; Azimuth angle phi: 0.0436 +Force: -2.013599 -0.051861 -2.011398 +Torque: 0.010293 0.074813 -0.034197 + +Polar angle tht: 1.1781; Azimuth angle phi: 0.0873 +Force: -2.004514 -0.103498 -2.010804 +Torque: 0.020564 0.074657 -0.068134 + +Polar angle tht: 1.1781; Azimuth angle phi: 0.1309 +Force: -1.989434 -0.154689 -2.009816 +Torque: 0.030792 0.074396 -0.101553 + +Polar angle tht: 1.1781; Azimuth angle phi: 0.1745 +Force: -1.968452 -0.205214 -2.008434 +Torque: 0.040955 0.074029 -0.134198 + +Polar angle tht: 1.1781; Azimuth angle phi: 0.2182 +Force: -1.941694 -0.254858 -2.006662 +Torque: 0.051031 0.073557 -0.165823 + +Polar angle tht: 1.1781; Azimuth angle phi: 0.2618 +Force: -1.909323 -0.303411 -2.004503 +Torque: 0.061000 0.072977 -0.196185 + +Polar angle tht: 1.1781; Azimuth angle phi: 0.3054 +Force: -1.871536 -0.350670 -2.001962 +Torque: 0.070840 0.072289 -0.225054 + +Polar angle tht: 1.1781; Azimuth angle phi: 0.3491 +Force: -1.828562 -0.396438 -1.999043 +Torque: 0.080532 0.071492 -0.252211 + +Polar angle tht: 1.1781; Azimuth angle phi: 0.3927 +Force: -1.841098 -0.477119 -2.013142 +Torque: 0.077085 0.073061 -0.237590 + +Polar angle tht: 1.1781; Azimuth angle phi: 0.4363 +Force: -1.855598 -0.567404 -2.029195 +Torque: 0.071450 0.074788 -0.216503 + +Polar angle tht: 1.1781; Azimuth angle phi: 0.4800 +Force: -1.861412 -0.660893 -2.044190 +Torque: 0.065854 0.076221 -0.196005 + +Polar angle tht: 1.1781; Azimuth angle phi: 0.5236 +Force: -1.858476 -0.756936 -2.058117 +Torque: 0.060309 0.077343 -0.176203 + +Polar angle tht: 1.1781; Azimuth angle phi: 0.5672 +Force: -1.846789 -0.854864 -2.070970 +Torque: 0.054830 0.078136 -0.157198 + +Polar angle tht: 1.1781; Azimuth angle phi: 0.6109 +Force: -1.826416 -0.953989 -2.082747 +Torque: 0.049429 0.078585 -0.139077 + +Polar angle tht: 1.1781; Azimuth angle phi: 0.6545 +Force: -1.797486 -1.053617 -2.093447 +Torque: 0.044120 0.078679 -0.121919 + +Polar angle tht: 1.1781; Azimuth angle phi: 0.6981 +Force: -1.760191 -1.153044 -2.103074 +Torque: 0.038916 0.078405 -0.105790 + +Polar angle tht: 1.1781; Azimuth angle phi: 0.7418 +Force: -1.714786 -1.251567 -2.111633 +Torque: 0.033831 0.077756 -0.090747 + +Polar angle tht: 1.1781; Azimuth angle phi: 0.7854 +Force: -1.661586 -1.348491 -2.119130 +Torque: 0.028879 0.076725 -0.076832 + +Polar angle tht: 1.1781; Azimuth angle phi: 0.8290 +Force: -1.600962 -1.443126 -2.125578 +Torque: 0.024074 0.075309 -0.064077 + +Polar angle tht: 1.1781; Azimuth angle phi: 0.8727 +Force: -1.533343 -1.534801 -2.130987 +Torque: 0.019429 0.073505 -0.052501 + +Polar angle tht: 1.1781; Azimuth angle phi: 0.9163 +Force: -1.459207 -1.622864 -2.135372 +Torque: 0.014957 0.071316 -0.042112 + +Polar angle tht: 1.1781; Azimuth angle phi: 0.9599 +Force: -1.379083 -1.706688 -2.138747 +Torque: 0.010673 0.068743 -0.032904 + +Polar angle tht: 1.1781; Azimuth angle phi: 1.0036 +Force: -1.293542 -1.785676 -2.141130 +Torque: 0.006588 0.065794 -0.024861 + +Polar angle tht: 1.1781; Azimuth angle phi: 1.0472 +Force: -1.203197 -1.859266 -2.142538 +Torque: 0.002716 0.062476 -0.017955 + +Polar angle tht: 1.1781; Azimuth angle phi: 1.0908 +Force: -1.108694 -1.926934 -2.142991 +Torque: -0.000931 0.058801 -0.012145 + +Polar angle tht: 1.1781; Azimuth angle phi: 1.1345 +Force: -1.010712 -1.988199 -2.142508 +Torque: -0.004341 0.054781 -0.007383 + +Polar angle tht: 1.1781; Azimuth angle phi: 1.1781 +Force: -0.909955 -2.042624 -2.141108 +Torque: -0.007504 0.050431 -0.003607 + +Polar angle tht: 1.1781; Azimuth angle phi: 1.2217 +Force: -0.807146 -2.089823 -2.138814 +Torque: -0.010408 0.045770 -0.000748 + +Polar angle tht: 1.1781; Azimuth angle phi: 1.2654 +Force: -0.703024 -2.129463 -2.135646 +Torque: -0.013044 0.040818 0.001273 + +Polar angle tht: 1.1781; Azimuth angle phi: 1.3090 +Force: -0.598337 -2.161264 -2.131623 +Torque: -0.015401 0.035594 0.002542 + +Polar angle tht: 1.1781; Azimuth angle phi: 1.3526 +Force: -0.493838 -2.185003 -2.126768 +Torque: -0.017472 0.030124 0.003153 + +Polar angle tht: 1.1781; Azimuth angle phi: 1.3963 +Force: -0.390274 -2.200517 -2.121101 +Torque: -0.019248 0.024432 0.003206 + +Polar angle tht: 1.1781; Azimuth angle phi: 1.4399 +Force: -0.288390 -2.207700 -2.114641 +Torque: -0.020723 0.018545 0.002807 + +Polar angle tht: 1.1781; Azimuth angle phi: 1.4835 +Force: -0.188913 -2.206510 -2.107409 +Torque: -0.021890 0.012491 0.002064 + +Polar angle tht: 1.1781; Azimuth angle phi: 1.5272 +Force: -0.092554 -2.196961 -2.099423 +Torque: -0.022743 0.006299 0.001090 + +Polar angle tht: 1.1781; Azimuth angle phi: 1.5708 +Force: 0.000000 -2.179133 -2.090702 +Torque: -0.023280 -0.000000 0.000000 + +Polar angle tht: 1.1781; Azimuth angle phi: 1.6144 +Force: 0.092554 -2.196961 -2.099423 +Torque: -0.022743 -0.006299 -0.001090 + +Polar angle tht: 1.1781; Azimuth angle phi: 1.6581 +Force: 0.188913 -2.206510 -2.107409 +Torque: -0.021890 -0.012491 -0.002064 + +Polar angle tht: 1.1781; Azimuth angle phi: 1.7017 +Force: 0.288390 -2.207700 -2.114641 +Torque: -0.020723 -0.018545 -0.002807 + +Polar angle tht: 1.1781; Azimuth angle phi: 1.7453 +Force: 0.390274 -2.200517 -2.121101 +Torque: -0.019248 -0.024432 -0.003206 + +Polar angle tht: 1.1781; Azimuth angle phi: 1.7890 +Force: 0.493838 -2.185003 -2.126768 +Torque: -0.017472 -0.030124 -0.003153 + +Polar angle tht: 1.1781; Azimuth angle phi: 1.8326 +Force: 0.598337 -2.161264 -2.131623 +Torque: -0.015401 -0.035594 -0.002542 + +Polar angle tht: 1.1781; Azimuth angle phi: 1.8762 +Force: 0.703024 -2.129463 -2.135646 +Torque: -0.013044 -0.040818 -0.001273 + +Polar angle tht: 1.1781; Azimuth angle phi: 1.9199 +Force: 0.807146 -2.089823 -2.138814 +Torque: -0.010408 -0.045770 0.000748 + +Polar angle tht: 1.1781; Azimuth angle phi: 1.9635 +Force: 0.909955 -2.042624 -2.141108 +Torque: -0.007504 -0.050431 0.003607 + +Polar angle tht: 1.1781; Azimuth angle phi: 2.0071 +Force: 1.010712 -1.988199 -2.142508 +Torque: -0.004341 -0.054781 0.007383 + +Polar angle tht: 1.1781; Azimuth angle phi: 2.0508 +Force: 1.108694 -1.926934 -2.142991 +Torque: -0.000931 -0.058801 0.012145 + +Polar angle tht: 1.1781; Azimuth angle phi: 2.0944 +Force: 1.203197 -1.859266 -2.142538 +Torque: 0.002716 -0.062476 0.017955 + +Polar angle tht: 1.1781; Azimuth angle phi: 2.1380 +Force: 1.293542 -1.785676 -2.141130 +Torque: 0.006588 -0.065794 0.024861 + +Polar angle tht: 1.1781; Azimuth angle phi: 2.1817 +Force: 1.379083 -1.706688 -2.138747 +Torque: 0.010673 -0.068743 0.032904 + +Polar angle tht: 1.1781; Azimuth angle phi: 2.2253 +Force: 1.459207 -1.622864 -2.135372 +Torque: 0.014957 -0.071316 0.042112 + +Polar angle tht: 1.1781; Azimuth angle phi: 2.2689 +Force: 1.533343 -1.534801 -2.130987 +Torque: 0.019429 -0.073505 0.052501 + +Polar angle tht: 1.1781; Azimuth angle phi: 2.3126 +Force: 1.600962 -1.443126 -2.125578 +Torque: 0.024074 -0.075309 0.064077 + +Polar angle tht: 1.1781; Azimuth angle phi: 2.3562 +Force: 1.661586 -1.348491 -2.119130 +Torque: 0.028879 -0.076725 0.076832 + +Polar angle tht: 1.1781; Azimuth angle phi: 2.3998 +Force: 1.714786 -1.251567 -2.111633 +Torque: 0.033831 -0.077756 0.090747 + +Polar angle tht: 1.1781; Azimuth angle phi: 2.4435 +Force: 1.760191 -1.153044 -2.103074 +Torque: 0.038916 -0.078405 0.105790 + +Polar angle tht: 1.1781; Azimuth angle phi: 2.4871 +Force: 1.797486 -1.053617 -2.093447 +Torque: 0.044120 -0.078679 0.121919 + +Polar angle tht: 1.1781; Azimuth angle phi: 2.5307 +Force: 1.826416 -0.953989 -2.082747 +Torque: 0.049429 -0.078585 0.139077 + +Polar angle tht: 1.1781; Azimuth angle phi: 2.5744 +Force: 1.846789 -0.854864 -2.070970 +Torque: 0.054830 -0.078136 0.157198 + +Polar angle tht: 1.1781; Azimuth angle phi: 2.6180 +Force: 1.858476 -0.756936 -2.058117 +Torque: 0.060309 -0.077343 0.176203 + +Polar angle tht: 1.1781; Azimuth angle phi: 2.6616 +Force: 1.861412 -0.660893 -2.044190 +Torque: 0.065854 -0.076221 0.196005 + +Polar angle tht: 1.1781; Azimuth angle phi: 2.7053 +Force: 1.855598 -0.567404 -2.029195 +Torque: 0.071450 -0.074788 0.216503 + +Polar angle tht: 1.1781; Azimuth angle phi: 2.7489 +Force: 1.841098 -0.477119 -2.013142 +Torque: 0.077085 -0.073061 0.237590 + +Polar angle tht: 1.1781; Azimuth angle phi: 2.7925 +Force: 1.828562 -0.396438 -1.999043 +Torque: 0.080532 -0.071492 0.252211 + +Polar angle tht: 1.1781; Azimuth angle phi: 2.8362 +Force: 1.871536 -0.350670 -2.001962 +Torque: 0.070840 -0.072289 0.225054 + +Polar angle tht: 1.1781; Azimuth angle phi: 2.8798 +Force: 1.909323 -0.303411 -2.004503 +Torque: 0.061000 -0.072977 0.196185 + +Polar angle tht: 1.1781; Azimuth angle phi: 2.9234 +Force: 1.941694 -0.254858 -2.006662 +Torque: 0.051031 -0.073557 0.165823 + +Polar angle tht: 1.1781; Azimuth angle phi: 2.9671 +Force: 1.968452 -0.205214 -2.008434 +Torque: 0.040955 -0.074029 0.134198 + +Polar angle tht: 1.1781; Azimuth angle phi: 3.0107 +Force: 1.989434 -0.154689 -2.009816 +Torque: 0.030792 -0.074396 0.101553 + +Polar angle tht: 1.1781; Azimuth angle phi: 3.0543 +Force: 2.004514 -0.103498 -2.010804 +Torque: 0.020564 -0.074657 0.068134 + +Polar angle tht: 1.1781; Azimuth angle phi: 3.0980 +Force: 2.013599 -0.051861 -2.011398 +Torque: 0.010293 -0.074813 0.034197 + +Polar angle tht: 1.1781; Azimuth angle phi: 3.1416 +Force: 2.016633 0.000000 -2.011597 +Torque: -0.000000 -0.074866 -0.000000 + +Polar angle tht: 1.1781; Azimuth angle phi: 3.1852 +Force: 2.013599 0.051861 -2.011398 +Torque: -0.010293 -0.074813 -0.034197 + +Polar angle tht: 1.1781; Azimuth angle phi: 3.2289 +Force: 2.004514 0.103498 -2.010804 +Torque: -0.020564 -0.074657 -0.068134 + +Polar angle tht: 1.1781; Azimuth angle phi: 3.2725 +Force: 1.989434 0.154689 -2.009816 +Torque: -0.030792 -0.074396 -0.101553 + +Polar angle tht: 1.1781; Azimuth angle phi: 3.3161 +Force: 1.968452 0.205214 -2.008434 +Torque: -0.040955 -0.074029 -0.134198 + +Polar angle tht: 1.1781; Azimuth angle phi: 3.3598 +Force: 1.941694 0.254858 -2.006662 +Torque: -0.051031 -0.073557 -0.165823 + +Polar angle tht: 1.1781; Azimuth angle phi: 3.4034 +Force: 1.909323 0.303411 -2.004503 +Torque: -0.061000 -0.072977 -0.196185 + +Polar angle tht: 1.1781; Azimuth angle phi: 3.4470 +Force: 1.871536 0.350670 -2.001962 +Torque: -0.070840 -0.072289 -0.225054 + +Polar angle tht: 1.1781; Azimuth angle phi: 3.4907 +Force: 1.828562 0.396438 -1.999043 +Torque: -0.080532 -0.071492 -0.252211 + +Polar angle tht: 1.1781; Azimuth angle phi: 3.5343 +Force: 1.841098 0.477119 -2.013142 +Torque: -0.077085 -0.073061 -0.237588 + +Polar angle tht: 1.1781; Azimuth angle phi: 3.5779 +Force: 1.855598 0.567404 -2.029195 +Torque: -0.071449 -0.074788 -0.216500 + +Polar angle tht: 1.1781; Azimuth angle phi: 3.6216 +Force: 1.861412 0.660893 -2.044190 +Torque: -0.065853 -0.076221 -0.196001 + +Polar angle tht: 1.1781; Azimuth angle phi: 3.6652 +Force: 1.858476 0.756936 -2.058117 +Torque: -0.060308 -0.077343 -0.176198 + +Polar angle tht: 1.1781; Azimuth angle phi: 3.7088 +Force: 1.846789 0.854864 -2.070970 +Torque: -0.054828 -0.078136 -0.157192 + +Polar angle tht: 1.1781; Azimuth angle phi: 3.7525 +Force: 1.826416 0.953989 -2.082747 +Torque: -0.049427 -0.078585 -0.139070 + +Polar angle tht: 1.1781; Azimuth angle phi: 3.7961 +Force: 1.797486 1.053617 -2.093447 +Torque: -0.044117 -0.078679 -0.121911 + +Polar angle tht: 1.1781; Azimuth angle phi: 3.8397 +Force: 1.760191 1.153044 -2.103074 +Torque: -0.038913 -0.078405 -0.105782 + +Polar angle tht: 1.1781; Azimuth angle phi: 3.8834 +Force: 1.714786 1.251567 -2.111633 +Torque: -0.033828 -0.077756 -0.090738 + +Polar angle tht: 1.1781; Azimuth angle phi: 3.9270 +Force: 1.661586 1.348491 -2.119130 +Torque: -0.028876 -0.076725 -0.076822 + +Polar angle tht: 1.1781; Azimuth angle phi: 3.9706 +Force: 1.600962 1.443126 -2.125578 +Torque: -0.024070 -0.075309 -0.064067 + +Polar angle tht: 1.1781; Azimuth angle phi: 4.0143 +Force: 1.533343 1.534801 -2.130987 +Torque: -0.019425 -0.073505 -0.052491 + +Polar angle tht: 1.1781; Azimuth angle phi: 4.0579 +Force: 1.459207 1.622864 -2.135372 +Torque: -0.014953 -0.071316 -0.042101 + +Polar angle tht: 1.1781; Azimuth angle phi: 4.1015 +Force: 1.379083 1.706688 -2.138747 +Torque: -0.010669 -0.068743 -0.032894 + +Polar angle tht: 1.1781; Azimuth angle phi: 4.1452 +Force: 1.293542 1.785676 -2.141130 +Torque: -0.006584 -0.065794 -0.024851 + +Polar angle tht: 1.1781; Azimuth angle phi: 4.1888 +Force: 1.203197 1.859266 -2.142538 +Torque: -0.002712 -0.062476 -0.017945 + +Polar angle tht: 1.1781; Azimuth angle phi: 4.2324 +Force: 1.108694 1.926934 -2.142991 +Torque: 0.000936 -0.058801 -0.012136 + +Polar angle tht: 1.1781; Azimuth angle phi: 4.2761 +Force: 1.010712 1.988199 -2.142508 +Torque: 0.004346 -0.054781 -0.007374 + +Polar angle tht: 1.1781; Azimuth angle phi: 4.3197 +Force: 0.909955 2.042624 -2.141108 +Torque: 0.007509 -0.050431 -0.003599 + +Polar angle tht: 1.1781; Azimuth angle phi: 4.3633 +Force: 0.807146 2.089823 -2.138814 +Torque: 0.010413 -0.045770 -0.000741 + +Polar angle tht: 1.1781; Azimuth angle phi: 4.4070 +Force: 0.703024 2.129463 -2.135646 +Torque: 0.013049 -0.040818 0.001280 + +Polar angle tht: 1.1781; Azimuth angle phi: 4.4506 +Force: 0.598337 2.161264 -2.131623 +Torque: 0.015407 -0.035594 0.002548 + +Polar angle tht: 1.1781; Azimuth angle phi: 4.4942 +Force: 0.493838 2.185003 -2.126768 +Torque: 0.017477 -0.030124 0.003158 + +Polar angle tht: 1.1781; Azimuth angle phi: 4.5379 +Force: 0.390274 2.200517 -2.121101 +Torque: 0.019254 -0.024432 0.003210 + +Polar angle tht: 1.1781; Azimuth angle phi: 4.5815 +Force: 0.288390 2.207700 -2.114641 +Torque: 0.020728 -0.018545 0.002810 + +Polar angle tht: 1.1781; Azimuth angle phi: 4.6251 +Force: 0.188913 2.206510 -2.107409 +Torque: 0.021895 -0.012491 0.002066 + +Polar angle tht: 1.1781; Azimuth angle phi: 4.6688 +Force: 0.092554 2.196961 -2.099423 +Torque: 0.022749 -0.006299 0.001091 + +Polar angle tht: 1.1781; Azimuth angle phi: 4.7124 +Force: 0.000000 2.179133 -2.090702 +Torque: 0.023285 -0.000000 -0.000000 + +Polar angle tht: 1.1781; Azimuth angle phi: 4.7560 +Force: -0.092554 2.196961 -2.099423 +Torque: 0.022749 0.006299 -0.001091 + +Polar angle tht: 1.1781; Azimuth angle phi: 4.7997 +Force: -0.188913 2.206510 -2.107409 +Torque: 0.021895 0.012491 -0.002066 + +Polar angle tht: 1.1781; Azimuth angle phi: 4.8433 +Force: -0.288390 2.207700 -2.114641 +Torque: 0.020728 0.018545 -0.002810 + +Polar angle tht: 1.1781; Azimuth angle phi: 4.8869 +Force: -0.390274 2.200517 -2.121101 +Torque: 0.019254 0.024432 -0.003210 + +Polar angle tht: 1.1781; Azimuth angle phi: 4.9306 +Force: -0.493838 2.185003 -2.126768 +Torque: 0.017477 0.030124 -0.003158 + +Polar angle tht: 1.1781; Azimuth angle phi: 4.9742 +Force: -0.598337 2.161264 -2.131623 +Torque: 0.015407 0.035594 -0.002548 + +Polar angle tht: 1.1781; Azimuth angle phi: 5.0178 +Force: -0.703024 2.129463 -2.135646 +Torque: 0.013049 0.040818 -0.001280 + +Polar angle tht: 1.1781; Azimuth angle phi: 5.0615 +Force: -0.807146 2.089823 -2.138814 +Torque: 0.010413 0.045770 0.000741 + +Polar angle tht: 1.1781; Azimuth angle phi: 5.1051 +Force: -0.909955 2.042624 -2.141108 +Torque: 0.007509 0.050431 0.003599 + +Polar angle tht: 1.1781; Azimuth angle phi: 5.1487 +Force: -1.010712 1.988199 -2.142508 +Torque: 0.004346 0.054781 0.007374 + +Polar angle tht: 1.1781; Azimuth angle phi: 5.1924 +Force: -1.108694 1.926934 -2.142991 +Torque: 0.000936 0.058801 0.012136 + +Polar angle tht: 1.1781; Azimuth angle phi: 5.2360 +Force: -1.203197 1.859266 -2.142538 +Torque: -0.002712 0.062476 0.017945 + +Polar angle tht: 1.1781; Azimuth angle phi: 5.2796 +Force: -1.293542 1.785676 -2.141130 +Torque: -0.006584 0.065794 0.024851 + +Polar angle tht: 1.1781; Azimuth angle phi: 5.3233 +Force: -1.379083 1.706688 -2.138747 +Torque: -0.010669 0.068743 0.032894 + +Polar angle tht: 1.1781; Azimuth angle phi: 5.3669 +Force: -1.459207 1.622864 -2.135372 +Torque: -0.014953 0.071316 0.042101 + +Polar angle tht: 1.1781; Azimuth angle phi: 5.4105 +Force: -1.533343 1.534801 -2.130987 +Torque: -0.019425 0.073505 0.052491 + +Polar angle tht: 1.1781; Azimuth angle phi: 5.4542 +Force: -1.600962 1.443126 -2.125578 +Torque: -0.024070 0.075309 0.064067 + +Polar angle tht: 1.1781; Azimuth angle phi: 5.4978 +Force: -1.661586 1.348491 -2.119130 +Torque: -0.028876 0.076725 0.076822 + +Polar angle tht: 1.1781; Azimuth angle phi: 5.5414 +Force: -1.714786 1.251567 -2.111633 +Torque: -0.033828 0.077756 0.090738 + +Polar angle tht: 1.1781; Azimuth angle phi: 5.5851 +Force: -1.760191 1.153044 -2.103074 +Torque: -0.038913 0.078405 0.105782 + +Polar angle tht: 1.1781; Azimuth angle phi: 5.6287 +Force: -1.797486 1.053617 -2.093447 +Torque: -0.044117 0.078679 0.121911 + +Polar angle tht: 1.1781; Azimuth angle phi: 5.6723 +Force: -1.826416 0.953989 -2.082747 +Torque: -0.049427 0.078585 0.139070 + +Polar angle tht: 1.1781; Azimuth angle phi: 5.7160 +Force: -1.846789 0.854864 -2.070970 +Torque: -0.054828 0.078136 0.157192 + +Polar angle tht: 1.1781; Azimuth angle phi: 5.7596 +Force: -1.858476 0.756936 -2.058117 +Torque: -0.060308 0.077343 0.176198 + +Polar angle tht: 1.1781; Azimuth angle phi: 5.8032 +Force: -1.861412 0.660893 -2.044190 +Torque: -0.065853 0.076221 0.196001 + +Polar angle tht: 1.1781; Azimuth angle phi: 5.8469 +Force: -1.855598 0.567404 -2.029195 +Torque: -0.071449 0.074788 0.216500 + +Polar angle tht: 1.1781; Azimuth angle phi: 5.8905 +Force: -1.841098 0.477119 -2.013142 +Torque: -0.077085 0.073061 0.237588 + +Polar angle tht: 1.1781; Azimuth angle phi: 5.9341 +Force: -1.828562 0.396438 -1.999043 +Torque: -0.080532 0.071492 0.252211 + +Polar angle tht: 1.1781; Azimuth angle phi: 5.9778 +Force: -1.871536 0.350670 -2.001962 +Torque: -0.070840 0.072289 0.225054 + +Polar angle tht: 1.1781; Azimuth angle phi: 6.0214 +Force: -1.909323 0.303411 -2.004503 +Torque: -0.061000 0.072977 0.196185 + +Polar angle tht: 1.1781; Azimuth angle phi: 6.0650 +Force: -1.941694 0.254858 -2.006662 +Torque: -0.051031 0.073557 0.165823 + +Polar angle tht: 1.1781; Azimuth angle phi: 6.1087 +Force: -1.968452 0.205214 -2.008434 +Torque: -0.040955 0.074029 0.134198 + +Polar angle tht: 1.1781; Azimuth angle phi: 6.1523 +Force: -1.989434 0.154689 -2.009816 +Torque: -0.030792 0.074396 0.101553 + +Polar angle tht: 1.1781; Azimuth angle phi: 6.1959 +Force: -2.004514 0.103498 -2.010804 +Torque: -0.020564 0.074657 0.068134 + +Polar angle tht: 1.1781; Azimuth angle phi: 6.2396 +Force: -2.013599 0.051861 -2.011398 +Torque: -0.010293 0.074813 0.034197 + +Polar angle tht: 1.1781; Azimuth angle phi: 6.2832 +Force: -2.016633 0.000000 -2.011597 +Torque: -0.000000 0.074866 0.000000 + +Polar angle tht: 1.2217; Azimuth angle phi: 0.0000 +Force: -1.997330 0.000000 -1.659183 +Torque: -0.000000 0.065237 0.000000 + +Polar angle tht: 1.2217; Azimuth angle phi: 0.0436 +Force: -1.994276 -0.049892 -1.659003 +Torque: 0.009404 0.065195 -0.035378 + +Polar angle tht: 1.2217; Azimuth angle phi: 0.0873 +Force: -1.985131 -0.099559 -1.658463 +Torque: 0.018788 0.065068 -0.070487 + +Polar angle tht: 1.2217; Azimuth angle phi: 0.1309 +Force: -1.969953 -0.148779 -1.657564 +Torque: 0.028131 0.064856 -0.105059 + +Polar angle tht: 1.2217; Azimuth angle phi: 0.1745 +Force: -1.948836 -0.197332 -1.656308 +Torque: 0.037415 0.064558 -0.138832 + +Polar angle tht: 1.2217; Azimuth angle phi: 0.2182 +Force: -1.921911 -0.245002 -1.654697 +Torque: 0.046618 0.064173 -0.171548 + +Polar angle tht: 1.2217; Azimuth angle phi: 0.2618 +Force: -1.889345 -0.291578 -1.652735 +Torque: 0.055722 0.063700 -0.202958 + +Polar angle tht: 1.2217; Azimuth angle phi: 0.3054 +Force: -1.851340 -0.336858 -1.650425 +Torque: 0.064707 0.063137 -0.232824 + +Polar angle tht: 1.2217; Azimuth angle phi: 0.3491 +Force: -1.874552 -0.417106 -1.663180 +Torque: 0.061898 0.065207 -0.217114 + +Polar angle tht: 1.2217; Azimuth angle phi: 0.3927 +Force: -1.898509 -0.506570 -1.677148 +Torque: 0.057462 0.067416 -0.195669 + +Polar angle tht: 1.2217; Azimuth angle phi: 0.4363 +Force: -1.913627 -0.599993 -1.690155 +Torque: 0.053028 0.069358 -0.174808 + +Polar angle tht: 1.2217; Azimuth angle phi: 0.4800 +Force: -1.919770 -0.696729 -1.702194 +Torque: 0.048607 0.071012 -0.154649 + +Polar angle tht: 1.2217; Azimuth angle phi: 0.5236 +Force: -1.916872 -0.796108 -1.713262 +Torque: 0.044208 0.072357 -0.135302 + +Polar angle tht: 1.2217; Azimuth angle phi: 0.5672 +Force: -1.904932 -0.897435 -1.723358 +Torque: 0.039843 0.073378 -0.116869 + +Polar angle tht: 1.2217; Azimuth angle phi: 0.6109 +Force: -1.884017 -1.000001 -1.732487 +Torque: 0.035524 0.074057 -0.099437 + +Polar angle tht: 1.2217; Azimuth angle phi: 0.6545 +Force: -1.854260 -1.103086 -1.740654 +Torque: 0.031261 0.074382 -0.083086 + +Polar angle tht: 1.2217; Azimuth angle phi: 0.6981 +Force: -1.815860 -1.205963 -1.747868 +Torque: 0.027067 0.074340 -0.067882 + +Polar angle tht: 1.2217; Azimuth angle phi: 0.7418 +Force: -1.769079 -1.307905 -1.754139 +Torque: 0.022953 0.073923 -0.053880 + +Polar angle tht: 1.2217; Azimuth angle phi: 0.7854 +Force: -1.714243 -1.408190 -1.759480 +Torque: 0.018932 0.073124 -0.041122 + +Polar angle tht: 1.2217; Azimuth angle phi: 0.8290 +Force: -1.651736 -1.506108 -1.763906 +Torque: 0.015015 0.071937 -0.029636 + +Polar angle tht: 1.2217; Azimuth angle phi: 0.8727 +Force: -1.582000 -1.600963 -1.767435 +Torque: 0.011215 0.070361 -0.019440 + +Polar angle tht: 1.2217; Azimuth angle phi: 0.9163 +Force: -1.505532 -1.692080 -1.770084 +Torque: 0.007544 0.068396 -0.010538 + +Polar angle tht: 1.2217; Azimuth angle phi: 0.9599 +Force: -1.422876 -1.778811 -1.771872 +Torque: 0.004013 0.066046 -0.002922 + +Polar angle tht: 1.2217; Azimuth angle phi: 1.0036 +Force: -1.334623 -1.860539 -1.772821 +Torque: 0.000635 0.063316 0.003431 + +Polar angle tht: 1.2217; Azimuth angle phi: 1.0472 +Force: -1.241407 -1.936681 -1.772951 +Torque: -0.002579 0.060213 0.008552 + +Polar angle tht: 1.2217; Azimuth angle phi: 1.0908 +Force: -1.143896 -2.006696 -1.772285 +Torque: -0.005619 0.056749 0.012486 + +Polar angle tht: 1.2217; Azimuth angle phi: 1.1345 +Force: -1.042792 -2.070085 -1.770846 +Torque: -0.008473 0.052936 0.015290 + +Polar angle tht: 1.2217; Azimuth angle phi: 1.1781 +Force: -0.938822 -2.126398 -1.768656 +Torque: -0.011131 0.048790 0.017030 + +Polar angle tht: 1.2217; Azimuth angle phi: 1.2217 +Force: -0.832735 -2.175235 -1.765737 +Torque: -0.013582 0.044327 0.017782 + +Polar angle tht: 1.2217; Azimuth angle phi: 1.2654 +Force: -0.725293 -2.216250 -1.762112 +Torque: -0.015818 0.039569 0.017631 + +Polar angle tht: 1.2217; Azimuth angle phi: 1.3090 +Force: -0.617271 -2.249155 -1.757804 +Torque: -0.017831 0.034535 0.016671 + +Polar angle tht: 1.2217; Azimuth angle phi: 1.3526 +Force: -0.509446 -2.273720 -1.752835 +Torque: -0.019610 0.029251 0.015004 + +Polar angle tht: 1.2217; Azimuth angle phi: 1.3963 +Force: -0.402592 -2.289773 -1.747224 +Torque: -0.021150 0.023741 0.012738 + +Polar angle tht: 1.2217; Azimuth angle phi: 1.4399 +Force: -0.297477 -2.297208 -1.740993 +Torque: -0.022444 0.018032 0.009985 + +Polar angle tht: 1.2217; Azimuth angle phi: 1.4835 +Force: -0.194854 -2.295979 -1.734161 +Torque: -0.023485 0.012152 0.006863 + +Polar angle tht: 1.2217; Azimuth angle phi: 1.5272 +Force: -0.095459 -2.286102 -1.726747 +Torque: -0.024269 0.006131 0.003494 + +Polar angle tht: 1.2217; Azimuth angle phi: 1.5708 +Force: 0.000000 -2.267659 -1.718767 +Torque: -0.024790 -0.000000 0.000000 + +Polar angle tht: 1.2217; Azimuth angle phi: 1.6144 +Force: 0.095459 -2.286102 -1.726747 +Torque: -0.024269 -0.006131 -0.003494 + +Polar angle tht: 1.2217; Azimuth angle phi: 1.6581 +Force: 0.194854 -2.295979 -1.734161 +Torque: -0.023485 -0.012152 -0.006863 + +Polar angle tht: 1.2217; Azimuth angle phi: 1.7017 +Force: 0.297477 -2.297208 -1.740993 +Torque: -0.022444 -0.018032 -0.009985 + +Polar angle tht: 1.2217; Azimuth angle phi: 1.7453 +Force: 0.402592 -2.289773 -1.747224 +Torque: -0.021150 -0.023741 -0.012738 + +Polar angle tht: 1.2217; Azimuth angle phi: 1.7890 +Force: 0.509446 -2.273720 -1.752835 +Torque: -0.019610 -0.029251 -0.015004 + +Polar angle tht: 1.2217; Azimuth angle phi: 1.8326 +Force: 0.617271 -2.249155 -1.757804 +Torque: -0.017831 -0.034535 -0.016671 + +Polar angle tht: 1.2217; Azimuth angle phi: 1.8762 +Force: 0.725293 -2.216250 -1.762112 +Torque: -0.015818 -0.039569 -0.017631 + +Polar angle tht: 1.2217; Azimuth angle phi: 1.9199 +Force: 0.832735 -2.175235 -1.765737 +Torque: -0.013582 -0.044327 -0.017782 + +Polar angle tht: 1.2217; Azimuth angle phi: 1.9635 +Force: 0.938822 -2.126398 -1.768656 +Torque: -0.011131 -0.048790 -0.017030 + +Polar angle tht: 1.2217; Azimuth angle phi: 2.0071 +Force: 1.042792 -2.070085 -1.770846 +Torque: -0.008473 -0.052936 -0.015290 + +Polar angle tht: 1.2217; Azimuth angle phi: 2.0508 +Force: 1.143896 -2.006696 -1.772285 +Torque: -0.005619 -0.056749 -0.012486 + +Polar angle tht: 1.2217; Azimuth angle phi: 2.0944 +Force: 1.241407 -1.936681 -1.772951 +Torque: -0.002579 -0.060213 -0.008552 + +Polar angle tht: 1.2217; Azimuth angle phi: 2.1380 +Force: 1.334623 -1.860539 -1.772821 +Torque: 0.000635 -0.063316 -0.003431 + +Polar angle tht: 1.2217; Azimuth angle phi: 2.1817 +Force: 1.422876 -1.778811 -1.771872 +Torque: 0.004013 -0.066046 0.002922 + +Polar angle tht: 1.2217; Azimuth angle phi: 2.2253 +Force: 1.505532 -1.692080 -1.770084 +Torque: 0.007544 -0.068396 0.010538 + +Polar angle tht: 1.2217; Azimuth angle phi: 2.2689 +Force: 1.582000 -1.600963 -1.767435 +Torque: 0.011215 -0.070361 0.019440 + +Polar angle tht: 1.2217; Azimuth angle phi: 2.3126 +Force: 1.651736 -1.506108 -1.763906 +Torque: 0.015015 -0.071937 0.029636 + +Polar angle tht: 1.2217; Azimuth angle phi: 2.3562 +Force: 1.714243 -1.408190 -1.759480 +Torque: 0.018932 -0.073124 0.041122 + +Polar angle tht: 1.2217; Azimuth angle phi: 2.3998 +Force: 1.769079 -1.307905 -1.754139 +Torque: 0.022953 -0.073923 0.053880 + +Polar angle tht: 1.2217; Azimuth angle phi: 2.4435 +Force: 1.815860 -1.205963 -1.747868 +Torque: 0.027067 -0.074340 0.067882 + +Polar angle tht: 1.2217; Azimuth angle phi: 2.4871 +Force: 1.854260 -1.103086 -1.740654 +Torque: 0.031261 -0.074382 0.083086 + +Polar angle tht: 1.2217; Azimuth angle phi: 2.5307 +Force: 1.884017 -1.000001 -1.732487 +Torque: 0.035524 -0.074057 0.099437 + +Polar angle tht: 1.2217; Azimuth angle phi: 2.5744 +Force: 1.904932 -0.897435 -1.723358 +Torque: 0.039843 -0.073378 0.116869 + +Polar angle tht: 1.2217; Azimuth angle phi: 2.6180 +Force: 1.916872 -0.796108 -1.713262 +Torque: 0.044208 -0.072357 0.135302 + +Polar angle tht: 1.2217; Azimuth angle phi: 2.6616 +Force: 1.919770 -0.696729 -1.702194 +Torque: 0.048607 -0.071012 0.154649 + +Polar angle tht: 1.2217; Azimuth angle phi: 2.7053 +Force: 1.913627 -0.599993 -1.690155 +Torque: 0.053028 -0.069358 0.174808 + +Polar angle tht: 1.2217; Azimuth angle phi: 2.7489 +Force: 1.898509 -0.506570 -1.677148 +Torque: 0.057462 -0.067416 0.195669 + +Polar angle tht: 1.2217; Azimuth angle phi: 2.7925 +Force: 1.874552 -0.417106 -1.663180 +Torque: 0.061898 -0.065207 0.217114 + +Polar angle tht: 1.2217; Azimuth angle phi: 2.8362 +Force: 1.851340 -0.336858 -1.650425 +Torque: 0.064707 -0.063137 0.232824 + +Polar angle tht: 1.2217; Azimuth angle phi: 2.8798 +Force: 1.889345 -0.291578 -1.652735 +Torque: 0.055722 -0.063700 0.202958 + +Polar angle tht: 1.2217; Azimuth angle phi: 2.9234 +Force: 1.921911 -0.245002 -1.654697 +Torque: 0.046618 -0.064173 0.171548 + +Polar angle tht: 1.2217; Azimuth angle phi: 2.9671 +Force: 1.948836 -0.197332 -1.656308 +Torque: 0.037415 -0.064558 0.138832 + +Polar angle tht: 1.2217; Azimuth angle phi: 3.0107 +Force: 1.969953 -0.148779 -1.657564 +Torque: 0.028131 -0.064856 0.105059 + +Polar angle tht: 1.2217; Azimuth angle phi: 3.0543 +Force: 1.985131 -0.099559 -1.658463 +Torque: 0.018788 -0.065068 0.070487 + +Polar angle tht: 1.2217; Azimuth angle phi: 3.0980 +Force: 1.994276 -0.049892 -1.659003 +Torque: 0.009404 -0.065195 0.035378 + +Polar angle tht: 1.2217; Azimuth angle phi: 3.1416 +Force: 1.997330 0.000000 -1.659183 +Torque: -0.000000 -0.065237 -0.000000 + +Polar angle tht: 1.2217; Azimuth angle phi: 3.1852 +Force: 1.994276 0.049892 -1.659003 +Torque: -0.009404 -0.065195 -0.035378 + +Polar angle tht: 1.2217; Azimuth angle phi: 3.2289 +Force: 1.985131 0.099559 -1.658463 +Torque: -0.018788 -0.065068 -0.070487 + +Polar angle tht: 1.2217; Azimuth angle phi: 3.2725 +Force: 1.969953 0.148779 -1.657564 +Torque: -0.028131 -0.064856 -0.105059 + +Polar angle tht: 1.2217; Azimuth angle phi: 3.3161 +Force: 1.948836 0.197332 -1.656308 +Torque: -0.037415 -0.064558 -0.138832 + +Polar angle tht: 1.2217; Azimuth angle phi: 3.3598 +Force: 1.921911 0.245002 -1.654697 +Torque: -0.046618 -0.064173 -0.171548 + +Polar angle tht: 1.2217; Azimuth angle phi: 3.4034 +Force: 1.889345 0.291578 -1.652735 +Torque: -0.055722 -0.063700 -0.202958 + +Polar angle tht: 1.2217; Azimuth angle phi: 3.4470 +Force: 1.851340 0.336858 -1.650425 +Torque: -0.064707 -0.063137 -0.232824 + +Polar angle tht: 1.2217; Azimuth angle phi: 3.4907 +Force: 1.874552 0.417106 -1.663180 +Torque: -0.061898 -0.065207 -0.217112 + +Polar angle tht: 1.2217; Azimuth angle phi: 3.5343 +Force: 1.898509 0.506570 -1.677148 +Torque: -0.057462 -0.067416 -0.195666 + +Polar angle tht: 1.2217; Azimuth angle phi: 3.5779 +Force: 1.913627 0.599993 -1.690155 +Torque: -0.053028 -0.069358 -0.174804 + +Polar angle tht: 1.2217; Azimuth angle phi: 3.6216 +Force: 1.919770 0.696729 -1.702194 +Torque: -0.048606 -0.071012 -0.154643 + +Polar angle tht: 1.2217; Azimuth angle phi: 3.6652 +Force: 1.916872 0.796108 -1.713262 +Torque: -0.044207 -0.072357 -0.135296 + +Polar angle tht: 1.2217; Azimuth angle phi: 3.7088 +Force: 1.904932 0.897435 -1.723358 +Torque: -0.039841 -0.073378 -0.116861 + +Polar angle tht: 1.2217; Azimuth angle phi: 3.7525 +Force: 1.884017 1.000001 -1.732487 +Torque: -0.035522 -0.074057 -0.099429 + +Polar angle tht: 1.2217; Azimuth angle phi: 3.7961 +Force: 1.854260 1.103086 -1.740654 +Torque: -0.031259 -0.074382 -0.083077 + +Polar angle tht: 1.2217; Azimuth angle phi: 3.8397 +Force: 1.815860 1.205963 -1.747868 +Torque: -0.027064 -0.074340 -0.067872 + +Polar angle tht: 1.2217; Azimuth angle phi: 3.8834 +Force: 1.769079 1.307905 -1.754139 +Torque: -0.022950 -0.073923 -0.053870 + +Polar angle tht: 1.2217; Azimuth angle phi: 3.9270 +Force: 1.714243 1.408190 -1.759480 +Torque: -0.018929 -0.073124 -0.041111 + +Polar angle tht: 1.2217; Azimuth angle phi: 3.9706 +Force: 1.651736 1.506108 -1.763906 +Torque: -0.015012 -0.071937 -0.029625 + +Polar angle tht: 1.2217; Azimuth angle phi: 4.0143 +Force: 1.582000 1.600963 -1.767435 +Torque: -0.011212 -0.070361 -0.019429 + +Polar angle tht: 1.2217; Azimuth angle phi: 4.0579 +Force: 1.505532 1.692080 -1.770084 +Torque: -0.007540 -0.068396 -0.010527 + +Polar angle tht: 1.2217; Azimuth angle phi: 4.1015 +Force: 1.422876 1.778811 -1.771872 +Torque: -0.004010 -0.066046 -0.002910 + +Polar angle tht: 1.2217; Azimuth angle phi: 4.1452 +Force: 1.334623 1.860539 -1.772821 +Torque: -0.000631 -0.063316 0.003442 + +Polar angle tht: 1.2217; Azimuth angle phi: 4.1888 +Force: 1.241407 1.936681 -1.772951 +Torque: 0.002584 -0.060213 0.008563 + +Polar angle tht: 1.2217; Azimuth angle phi: 4.2324 +Force: 1.143896 2.006696 -1.772285 +Torque: 0.005623 -0.056749 0.012497 + +Polar angle tht: 1.2217; Azimuth angle phi: 4.2761 +Force: 1.042792 2.070085 -1.770846 +Torque: 0.008477 -0.052936 0.015300 + +Polar angle tht: 1.2217; Azimuth angle phi: 4.3197 +Force: 0.938822 2.126398 -1.768656 +Torque: 0.011135 -0.048790 0.017039 + +Polar angle tht: 1.2217; Azimuth angle phi: 4.3633 +Force: 0.832735 2.175235 -1.765737 +Torque: 0.013587 -0.044327 0.017790 + +Polar angle tht: 1.2217; Azimuth angle phi: 4.4070 +Force: 0.725293 2.216250 -1.762112 +Torque: 0.015823 -0.039569 0.017638 + +Polar angle tht: 1.2217; Azimuth angle phi: 4.4506 +Force: 0.617271 2.249155 -1.757804 +Torque: 0.017835 -0.034535 0.016678 + +Polar angle tht: 1.2217; Azimuth angle phi: 4.4942 +Force: 0.509446 2.273720 -1.752835 +Torque: 0.019615 -0.029251 0.015010 + +Polar angle tht: 1.2217; Azimuth angle phi: 4.5379 +Force: 0.402592 2.289773 -1.747224 +Torque: 0.021155 -0.023741 0.012743 + +Polar angle tht: 1.2217; Azimuth angle phi: 4.5815 +Force: 0.297477 2.297208 -1.740993 +Torque: 0.022449 -0.018032 0.009988 + +Polar angle tht: 1.2217; Azimuth angle phi: 4.6251 +Force: 0.194854 2.295979 -1.734161 +Torque: 0.023490 -0.012152 0.006866 + +Polar angle tht: 1.2217; Azimuth angle phi: 4.6688 +Force: 0.095459 2.286102 -1.726747 +Torque: 0.024273 -0.006131 0.003495 + +Polar angle tht: 1.2217; Azimuth angle phi: 4.7124 +Force: 0.000000 2.267659 -1.718767 +Torque: 0.024795 -0.000000 -0.000000 + +Polar angle tht: 1.2217; Azimuth angle phi: 4.7560 +Force: -0.095459 2.286102 -1.726747 +Torque: 0.024273 0.006131 -0.003495 + +Polar angle tht: 1.2217; Azimuth angle phi: 4.7997 +Force: -0.194854 2.295979 -1.734161 +Torque: 0.023490 0.012152 -0.006866 + +Polar angle tht: 1.2217; Azimuth angle phi: 4.8433 +Force: -0.297477 2.297208 -1.740993 +Torque: 0.022449 0.018032 -0.009988 + +Polar angle tht: 1.2217; Azimuth angle phi: 4.8869 +Force: -0.402592 2.289773 -1.747224 +Torque: 0.021155 0.023741 -0.012743 + +Polar angle tht: 1.2217; Azimuth angle phi: 4.9306 +Force: -0.509446 2.273720 -1.752835 +Torque: 0.019615 0.029251 -0.015010 + +Polar angle tht: 1.2217; Azimuth angle phi: 4.9742 +Force: -0.617271 2.249155 -1.757804 +Torque: 0.017835 0.034535 -0.016678 + +Polar angle tht: 1.2217; Azimuth angle phi: 5.0178 +Force: -0.725293 2.216250 -1.762112 +Torque: 0.015823 0.039569 -0.017638 + +Polar angle tht: 1.2217; Azimuth angle phi: 5.0615 +Force: -0.832735 2.175235 -1.765737 +Torque: 0.013587 0.044327 -0.017790 + +Polar angle tht: 1.2217; Azimuth angle phi: 5.1051 +Force: -0.938822 2.126398 -1.768656 +Torque: 0.011135 0.048790 -0.017039 + +Polar angle tht: 1.2217; Azimuth angle phi: 5.1487 +Force: -1.042792 2.070085 -1.770846 +Torque: 0.008477 0.052936 -0.015300 + +Polar angle tht: 1.2217; Azimuth angle phi: 5.1924 +Force: -1.143896 2.006696 -1.772285 +Torque: 0.005623 0.056749 -0.012497 + +Polar angle tht: 1.2217; Azimuth angle phi: 5.2360 +Force: -1.241407 1.936681 -1.772951 +Torque: 0.002584 0.060213 -0.008563 + +Polar angle tht: 1.2217; Azimuth angle phi: 5.2796 +Force: -1.334623 1.860539 -1.772821 +Torque: -0.000631 0.063316 -0.003442 + +Polar angle tht: 1.2217; Azimuth angle phi: 5.3233 +Force: -1.422876 1.778811 -1.771872 +Torque: -0.004010 0.066046 0.002910 + +Polar angle tht: 1.2217; Azimuth angle phi: 5.3669 +Force: -1.505532 1.692080 -1.770084 +Torque: -0.007540 0.068396 0.010527 + +Polar angle tht: 1.2217; Azimuth angle phi: 5.4105 +Force: -1.582000 1.600963 -1.767435 +Torque: -0.011212 0.070361 0.019429 + +Polar angle tht: 1.2217; Azimuth angle phi: 5.4542 +Force: -1.651736 1.506108 -1.763906 +Torque: -0.015012 0.071937 0.029625 + +Polar angle tht: 1.2217; Azimuth angle phi: 5.4978 +Force: -1.714243 1.408190 -1.759480 +Torque: -0.018929 0.073124 0.041111 + +Polar angle tht: 1.2217; Azimuth angle phi: 5.5414 +Force: -1.769079 1.307905 -1.754139 +Torque: -0.022950 0.073923 0.053870 + +Polar angle tht: 1.2217; Azimuth angle phi: 5.5851 +Force: -1.815860 1.205963 -1.747868 +Torque: -0.027064 0.074340 0.067872 + +Polar angle tht: 1.2217; Azimuth angle phi: 5.6287 +Force: -1.854260 1.103086 -1.740654 +Torque: -0.031259 0.074382 0.083077 + +Polar angle tht: 1.2217; Azimuth angle phi: 5.6723 +Force: -1.884017 1.000001 -1.732487 +Torque: -0.035522 0.074057 0.099429 + +Polar angle tht: 1.2217; Azimuth angle phi: 5.7160 +Force: -1.904932 0.897435 -1.723358 +Torque: -0.039841 0.073378 0.116861 + +Polar angle tht: 1.2217; Azimuth angle phi: 5.7596 +Force: -1.916872 0.796108 -1.713262 +Torque: -0.044207 0.072357 0.135296 + +Polar angle tht: 1.2217; Azimuth angle phi: 5.8032 +Force: -1.919770 0.696729 -1.702194 +Torque: -0.048606 0.071012 0.154643 + +Polar angle tht: 1.2217; Azimuth angle phi: 5.8469 +Force: -1.913627 0.599993 -1.690155 +Torque: -0.053028 0.069358 0.174804 + +Polar angle tht: 1.2217; Azimuth angle phi: 5.8905 +Force: -1.898509 0.506570 -1.677148 +Torque: -0.057462 0.067416 0.195666 + +Polar angle tht: 1.2217; Azimuth angle phi: 5.9341 +Force: -1.874552 0.417106 -1.663180 +Torque: -0.061898 0.065207 0.217112 + +Polar angle tht: 1.2217; Azimuth angle phi: 5.9778 +Force: -1.851340 0.336858 -1.650425 +Torque: -0.064707 0.063137 0.232824 + +Polar angle tht: 1.2217; Azimuth angle phi: 6.0214 +Force: -1.889345 0.291578 -1.652735 +Torque: -0.055722 0.063700 0.202958 + +Polar angle tht: 1.2217; Azimuth angle phi: 6.0650 +Force: -1.921911 0.245002 -1.654697 +Torque: -0.046618 0.064173 0.171548 + +Polar angle tht: 1.2217; Azimuth angle phi: 6.1087 +Force: -1.948836 0.197332 -1.656308 +Torque: -0.037415 0.064558 0.138832 + +Polar angle tht: 1.2217; Azimuth angle phi: 6.1523 +Force: -1.969953 0.148779 -1.657564 +Torque: -0.028131 0.064856 0.105059 + +Polar angle tht: 1.2217; Azimuth angle phi: 6.1959 +Force: -1.985131 0.099559 -1.658463 +Torque: -0.018788 0.065068 0.070487 + +Polar angle tht: 1.2217; Azimuth angle phi: 6.2396 +Force: -1.994276 0.049892 -1.659003 +Torque: -0.009404 0.065195 0.035378 + +Polar angle tht: 1.2217; Azimuth angle phi: 6.2832 +Force: -1.997330 0.000000 -1.659183 +Torque: -0.000000 0.065237 0.000000 + +Polar angle tht: 1.2654; Azimuth angle phi: 0.0000 +Force: -1.968966 0.000000 -1.334534 +Torque: -0.000000 0.055007 0.000000 + +Polar angle tht: 1.2654; Azimuth angle phi: 0.0436 +Force: -1.965904 -0.047640 -1.334373 +Torque: 0.008445 0.054975 -0.036442 + +Polar angle tht: 1.2654; Azimuth angle phi: 0.0873 +Force: -1.956737 -0.095057 -1.333891 +Torque: 0.016871 0.054879 -0.072606 + +Polar angle tht: 1.2654; Azimuth angle phi: 0.1309 +Force: -1.941522 -0.142027 -1.333089 +Torque: 0.025261 0.054719 -0.108218 + +Polar angle tht: 1.2654; Azimuth angle phi: 0.1745 +Force: -1.920357 -0.188331 -1.331968 +Torque: 0.033596 0.054493 -0.143006 + +Polar angle tht: 1.2654; Azimuth angle phi: 0.2182 +Force: -1.893376 -0.233754 -1.330531 +Torque: 0.041858 0.054200 -0.176706 + +Polar angle tht: 1.2654; Azimuth angle phi: 0.2618 +Force: -1.860747 -0.278087 -1.328780 +Torque: 0.050030 0.053839 -0.209061 + +Polar angle tht: 1.2654; Azimuth angle phi: 0.3054 +Force: -1.891301 -0.355083 -1.339055 +Torque: 0.048565 0.056222 -0.194570 + +Polar angle tht: 1.2654; Azimuth angle phi: 0.3491 +Force: -1.924968 -0.442575 -1.350577 +Torque: 0.045458 0.058874 -0.172771 + +Polar angle tht: 1.2654; Azimuth angle phi: 0.3927 +Force: -1.949746 -0.534777 -1.361232 +Torque: 0.042321 0.061289 -0.151538 + +Polar angle tht: 1.2654; Azimuth angle phi: 0.4363 +Force: -1.965429 -0.631055 -1.371015 +Torque: 0.039160 0.063444 -0.131000 + +Polar angle tht: 1.2654; Azimuth angle phi: 0.4800 +Force: -1.971880 -0.730745 -1.379929 +Torque: 0.035983 0.065318 -0.111280 + +Polar angle tht: 1.2654; Azimuth angle phi: 0.5236 +Force: -1.969028 -0.833156 -1.387975 +Torque: 0.032799 0.066890 -0.092488 + +Polar angle tht: 1.2654; Azimuth angle phi: 0.5672 +Force: -1.956872 -0.937574 -1.395162 +Torque: 0.029616 0.068141 -0.074725 + +Polar angle tht: 1.2654; Azimuth angle phi: 0.6109 +Force: -1.935482 -1.043266 -1.401498 +Torque: 0.026444 0.069054 -0.058082 + +Polar angle tht: 1.2654; Azimuth angle phi: 0.6545 +Force: -1.904994 -1.149491 -1.406995 +Torque: 0.023291 0.069617 -0.042636 + +Polar angle tht: 1.2654; Azimuth angle phi: 0.6981 +Force: -1.865611 -1.255501 -1.411667 +Torque: 0.020169 0.069815 -0.028453 + +Polar angle tht: 1.2654; Azimuth angle phi: 0.7418 +Force: -1.817606 -1.360546 -1.415532 +Torque: 0.017087 0.069639 -0.015587 + +Polar angle tht: 1.2654; Azimuth angle phi: 0.7854 +Force: -1.761312 -1.463884 -1.418606 +Torque: 0.014054 0.069081 -0.004078 + +Polar angle tht: 1.2654; Azimuth angle phi: 0.8290 +Force: -1.697125 -1.564781 -1.420910 +Torque: 0.011082 0.068137 0.006046 + +Polar angle tht: 1.2654; Azimuth angle phi: 0.8727 +Force: -1.625500 -1.662521 -1.422466 +Torque: 0.008181 0.066803 0.014773 + +Polar angle tht: 1.2654; Azimuth angle phi: 0.9163 +Force: -1.546948 -1.756409 -1.423297 +Torque: 0.005361 0.065080 0.022101 + +Polar angle tht: 1.2654; Azimuth angle phi: 0.9599 +Force: -1.462029 -1.845778 -1.423425 +Torque: 0.002632 0.062970 0.028042 + +Polar angle tht: 1.2654; Azimuth angle phi: 1.0036 +Force: -1.371353 -1.929992 -1.422876 +Torque: 0.000006 0.060477 0.032621 + +Polar angle tht: 1.2654; Azimuth angle phi: 1.0472 +Force: -1.275570 -2.008450 -1.421674 +Torque: -0.002508 0.057611 0.035877 + +Polar angle tht: 1.2654; Azimuth angle phi: 1.0908 +Force: -1.175369 -2.080595 -1.419846 +Torque: -0.004900 0.054380 0.037859 + +Polar angle tht: 1.2654; Azimuth angle phi: 1.1345 +Force: -1.071473 -2.145912 -1.417415 +Torque: -0.007161 0.050798 0.038629 + +Polar angle tht: 1.2654; Azimuth angle phi: 1.1781 +Force: -0.964629 -2.203939 -1.414408 +Torque: -0.009280 0.046879 0.038259 + +Polar angle tht: 1.2654; Azimuth angle phi: 1.2217 +Force: -0.855609 -2.254262 -1.410849 +Torque: -0.011248 0.042641 0.036832 + +Polar angle tht: 1.2654; Azimuth angle phi: 1.2654 +Force: -0.745199 -2.296527 -1.406762 +Torque: -0.013058 0.038104 0.034440 + +Polar angle tht: 1.2654; Azimuth angle phi: 1.3090 +Force: -0.634194 -2.330436 -1.402171 +Torque: -0.014701 0.033289 0.031184 + +Polar angle tht: 1.2654; Azimuth angle phi: 1.3526 +Force: -0.523394 -2.355751 -1.397099 +Torque: -0.016169 0.028220 0.027173 + +Polar angle tht: 1.2654; Azimuth angle phi: 1.3963 +Force: -0.413598 -2.372297 -1.391567 +Torque: -0.017456 0.022922 0.022522 + +Polar angle tht: 1.2654; Azimuth angle phi: 1.4399 +Force: -0.305595 -2.379963 -1.385596 +Torque: -0.018554 0.017422 0.017351 + +Polar angle tht: 1.2654; Azimuth angle phi: 1.4835 +Force: -0.200162 -2.378702 -1.379205 +Torque: -0.019459 0.011748 0.011788 + +Polar angle tht: 1.2654; Azimuth angle phi: 1.5272 +Force: -0.098053 -2.368532 -1.372411 +Torque: -0.020166 0.005931 0.005960 + +Polar angle tht: 1.2654; Azimuth angle phi: 1.5708 +Force: 0.000000 -2.349535 -1.365231 +Torque: -0.020670 -0.000000 0.000000 + +Polar angle tht: 1.2654; Azimuth angle phi: 1.6144 +Force: 0.098053 -2.368532 -1.372411 +Torque: -0.020166 -0.005931 -0.005960 + +Polar angle tht: 1.2654; Azimuth angle phi: 1.6581 +Force: 0.200162 -2.378702 -1.379205 +Torque: -0.019459 -0.011748 -0.011788 + +Polar angle tht: 1.2654; Azimuth angle phi: 1.7017 +Force: 0.305595 -2.379963 -1.385596 +Torque: -0.018554 -0.017422 -0.017351 + +Polar angle tht: 1.2654; Azimuth angle phi: 1.7453 +Force: 0.413598 -2.372297 -1.391567 +Torque: -0.017456 -0.022922 -0.022522 + +Polar angle tht: 1.2654; Azimuth angle phi: 1.7890 +Force: 0.523394 -2.355751 -1.397099 +Torque: -0.016169 -0.028220 -0.027173 + +Polar angle tht: 1.2654; Azimuth angle phi: 1.8326 +Force: 0.634194 -2.330436 -1.402171 +Torque: -0.014701 -0.033289 -0.031184 + +Polar angle tht: 1.2654; Azimuth angle phi: 1.8762 +Force: 0.745199 -2.296527 -1.406762 +Torque: -0.013058 -0.038104 -0.034440 + +Polar angle tht: 1.2654; Azimuth angle phi: 1.9199 +Force: 0.855609 -2.254262 -1.410849 +Torque: -0.011248 -0.042641 -0.036832 + +Polar angle tht: 1.2654; Azimuth angle phi: 1.9635 +Force: 0.964629 -2.203939 -1.414408 +Torque: -0.009280 -0.046879 -0.038259 + +Polar angle tht: 1.2654; Azimuth angle phi: 2.0071 +Force: 1.071473 -2.145912 -1.417415 +Torque: -0.007161 -0.050798 -0.038629 + +Polar angle tht: 1.2654; Azimuth angle phi: 2.0508 +Force: 1.175369 -2.080595 -1.419846 +Torque: -0.004900 -0.054380 -0.037859 + +Polar angle tht: 1.2654; Azimuth angle phi: 2.0944 +Force: 1.275570 -2.008450 -1.421674 +Torque: -0.002508 -0.057611 -0.035877 + +Polar angle tht: 1.2654; Azimuth angle phi: 2.1380 +Force: 1.371353 -1.929992 -1.422876 +Torque: 0.000006 -0.060477 -0.032621 + +Polar angle tht: 1.2654; Azimuth angle phi: 2.1817 +Force: 1.462029 -1.845778 -1.423425 +Torque: 0.002632 -0.062970 -0.028042 + +Polar angle tht: 1.2654; Azimuth angle phi: 2.2253 +Force: 1.546948 -1.756409 -1.423297 +Torque: 0.005361 -0.065080 -0.022101 + +Polar angle tht: 1.2654; Azimuth angle phi: 2.2689 +Force: 1.625500 -1.662521 -1.422466 +Torque: 0.008181 -0.066803 -0.014773 + +Polar angle tht: 1.2654; Azimuth angle phi: 2.3126 +Force: 1.697125 -1.564781 -1.420910 +Torque: 0.011082 -0.068137 -0.006046 + +Polar angle tht: 1.2654; Azimuth angle phi: 2.3562 +Force: 1.761312 -1.463884 -1.418606 +Torque: 0.014054 -0.069081 0.004078 + +Polar angle tht: 1.2654; Azimuth angle phi: 2.3998 +Force: 1.817606 -1.360546 -1.415532 +Torque: 0.017087 -0.069639 0.015587 + +Polar angle tht: 1.2654; Azimuth angle phi: 2.4435 +Force: 1.865611 -1.255501 -1.411667 +Torque: 0.020169 -0.069815 0.028453 + +Polar angle tht: 1.2654; Azimuth angle phi: 2.4871 +Force: 1.904994 -1.149491 -1.406995 +Torque: 0.023291 -0.069617 0.042636 + +Polar angle tht: 1.2654; Azimuth angle phi: 2.5307 +Force: 1.935482 -1.043266 -1.401498 +Torque: 0.026444 -0.069054 0.058082 + +Polar angle tht: 1.2654; Azimuth angle phi: 2.5744 +Force: 1.956872 -0.937574 -1.395162 +Torque: 0.029616 -0.068141 0.074725 + +Polar angle tht: 1.2654; Azimuth angle phi: 2.6180 +Force: 1.969028 -0.833156 -1.387975 +Torque: 0.032799 -0.066890 0.092488 + +Polar angle tht: 1.2654; Azimuth angle phi: 2.6616 +Force: 1.971880 -0.730745 -1.379929 +Torque: 0.035983 -0.065318 0.111280 + +Polar angle tht: 1.2654; Azimuth angle phi: 2.7053 +Force: 1.965429 -0.631055 -1.371015 +Torque: 0.039160 -0.063444 0.131000 + +Polar angle tht: 1.2654; Azimuth angle phi: 2.7489 +Force: 1.949746 -0.534777 -1.361232 +Torque: 0.042321 -0.061289 0.151538 + +Polar angle tht: 1.2654; Azimuth angle phi: 2.7925 +Force: 1.924968 -0.442575 -1.350577 +Torque: 0.045458 -0.058874 0.172771 + +Polar angle tht: 1.2654; Azimuth angle phi: 2.8362 +Force: 1.891301 -0.355083 -1.339055 +Torque: 0.048565 -0.056222 0.194570 + +Polar angle tht: 1.2654; Azimuth angle phi: 2.8798 +Force: 1.860747 -0.278087 -1.328780 +Torque: 0.050030 -0.053839 0.209061 + +Polar angle tht: 1.2654; Azimuth angle phi: 2.9234 +Force: 1.893376 -0.233754 -1.330531 +Torque: 0.041858 -0.054200 0.176706 + +Polar angle tht: 1.2654; Azimuth angle phi: 2.9671 +Force: 1.920357 -0.188331 -1.331968 +Torque: 0.033596 -0.054493 0.143006 + +Polar angle tht: 1.2654; Azimuth angle phi: 3.0107 +Force: 1.941522 -0.142027 -1.333089 +Torque: 0.025261 -0.054719 0.108218 + +Polar angle tht: 1.2654; Azimuth angle phi: 3.0543 +Force: 1.956737 -0.095057 -1.333891 +Torque: 0.016871 -0.054879 0.072606 + +Polar angle tht: 1.2654; Azimuth angle phi: 3.0980 +Force: 1.965904 -0.047640 -1.334373 +Torque: 0.008445 -0.054975 0.036442 + +Polar angle tht: 1.2654; Azimuth angle phi: 3.1416 +Force: 1.968966 0.000000 -1.334534 +Torque: -0.000000 -0.055007 -0.000000 + +Polar angle tht: 1.2654; Azimuth angle phi: 3.1852 +Force: 1.965904 0.047640 -1.334373 +Torque: -0.008445 -0.054975 -0.036442 + +Polar angle tht: 1.2654; Azimuth angle phi: 3.2289 +Force: 1.956737 0.095057 -1.333891 +Torque: -0.016871 -0.054879 -0.072606 + +Polar angle tht: 1.2654; Azimuth angle phi: 3.2725 +Force: 1.941522 0.142027 -1.333089 +Torque: -0.025261 -0.054719 -0.108218 + +Polar angle tht: 1.2654; Azimuth angle phi: 3.3161 +Force: 1.920357 0.188331 -1.331968 +Torque: -0.033596 -0.054493 -0.143006 + +Polar angle tht: 1.2654; Azimuth angle phi: 3.3598 +Force: 1.893376 0.233754 -1.330531 +Torque: -0.041858 -0.054200 -0.176706 + +Polar angle tht: 1.2654; Azimuth angle phi: 3.4034 +Force: 1.860747 0.278087 -1.328780 +Torque: -0.050030 -0.053839 -0.209061 + +Polar angle tht: 1.2654; Azimuth angle phi: 3.4470 +Force: 1.891301 0.355083 -1.339055 +Torque: -0.048564 -0.056222 -0.194569 + +Polar angle tht: 1.2654; Azimuth angle phi: 3.4907 +Force: 1.924968 0.442575 -1.350577 +Torque: -0.045458 -0.058874 -0.172768 + +Polar angle tht: 1.2654; Azimuth angle phi: 3.5343 +Force: 1.949746 0.534777 -1.361232 +Torque: -0.042320 -0.061289 -0.151534 + +Polar angle tht: 1.2654; Azimuth angle phi: 3.5779 +Force: 1.965429 0.631055 -1.371015 +Torque: -0.039158 -0.063444 -0.130995 + +Polar angle tht: 1.2654; Azimuth angle phi: 3.6216 +Force: 1.971880 0.730745 -1.379929 +Torque: -0.035981 -0.065318 -0.111273 + +Polar angle tht: 1.2654; Azimuth angle phi: 3.6652 +Force: 1.969028 0.833156 -1.387975 +Torque: -0.032797 -0.066890 -0.092480 + +Polar angle tht: 1.2654; Azimuth angle phi: 3.7088 +Force: 1.956872 0.937574 -1.395162 +Torque: -0.029614 -0.068141 -0.074716 + +Polar angle tht: 1.2654; Azimuth angle phi: 3.7525 +Force: 1.935482 1.043266 -1.401498 +Torque: -0.026442 -0.069054 -0.058071 + +Polar angle tht: 1.2654; Azimuth angle phi: 3.7961 +Force: 1.904994 1.149491 -1.406995 +Torque: -0.023289 -0.069617 -0.042625 + +Polar angle tht: 1.2654; Azimuth angle phi: 3.8397 +Force: 1.865611 1.255501 -1.411667 +Torque: -0.020167 -0.069815 -0.028441 + +Polar angle tht: 1.2654; Azimuth angle phi: 3.8834 +Force: 1.817606 1.360546 -1.415532 +Torque: -0.017084 -0.069639 -0.015575 + +Polar angle tht: 1.2654; Azimuth angle phi: 3.9270 +Force: 1.761312 1.463884 -1.418606 +Torque: -0.014052 -0.069081 -0.004066 + +Polar angle tht: 1.2654; Azimuth angle phi: 3.9706 +Force: 1.697125 1.564781 -1.420910 +Torque: -0.011079 -0.068137 0.006059 + +Polar angle tht: 1.2654; Azimuth angle phi: 4.0143 +Force: 1.625500 1.662521 -1.422466 +Torque: -0.008178 -0.066803 0.014786 + +Polar angle tht: 1.2654; Azimuth angle phi: 4.0579 +Force: 1.546948 1.756409 -1.423297 +Torque: -0.005358 -0.065080 0.022113 + +Polar angle tht: 1.2654; Azimuth angle phi: 4.1015 +Force: 1.462029 1.845778 -1.423425 +Torque: -0.002629 -0.062970 0.028054 + +Polar angle tht: 1.2654; Azimuth angle phi: 4.1452 +Force: 1.371353 1.929992 -1.422876 +Torque: -0.000003 -0.060477 0.032634 + +Polar angle tht: 1.2654; Azimuth angle phi: 4.1888 +Force: 1.275570 2.008450 -1.421674 +Torque: 0.002512 -0.057611 0.035889 + +Polar angle tht: 1.2654; Azimuth angle phi: 4.2324 +Force: 1.175369 2.080595 -1.419846 +Torque: 0.004904 -0.054380 0.037871 + +Polar angle tht: 1.2654; Azimuth angle phi: 4.2761 +Force: 1.071473 2.145912 -1.417415 +Torque: 0.007164 -0.050798 0.038640 + +Polar angle tht: 1.2654; Azimuth angle phi: 4.3197 +Force: 0.964629 2.203939 -1.414408 +Torque: 0.009283 -0.046879 0.038269 + +Polar angle tht: 1.2654; Azimuth angle phi: 4.3633 +Force: 0.855609 2.254262 -1.410849 +Torque: 0.011252 -0.042641 0.036841 + +Polar angle tht: 1.2654; Azimuth angle phi: 4.4070 +Force: 0.745199 2.296527 -1.406762 +Torque: 0.013062 -0.038104 0.034448 + +Polar angle tht: 1.2654; Azimuth angle phi: 4.4506 +Force: 0.634194 2.330436 -1.402171 +Torque: 0.014705 -0.033289 0.031191 + +Polar angle tht: 1.2654; Azimuth angle phi: 4.4942 +Force: 0.523394 2.355751 -1.397099 +Torque: 0.016173 -0.028220 0.027179 + +Polar angle tht: 1.2654; Azimuth angle phi: 4.5379 +Force: 0.413598 2.372297 -1.391567 +Torque: 0.017459 -0.022922 0.022527 + +Polar angle tht: 1.2654; Azimuth angle phi: 4.5815 +Force: 0.305595 2.379963 -1.385596 +Torque: 0.018558 -0.017422 0.017355 + +Polar angle tht: 1.2654; Azimuth angle phi: 4.6251 +Force: 0.200162 2.378702 -1.379205 +Torque: 0.019463 -0.011748 0.011791 + +Polar angle tht: 1.2654; Azimuth angle phi: 4.6688 +Force: 0.098053 2.368532 -1.372411 +Torque: 0.020170 -0.005931 0.005962 + +Polar angle tht: 1.2654; Azimuth angle phi: 4.7124 +Force: 0.000000 2.349535 -1.365231 +Torque: 0.020674 -0.000000 -0.000000 + +Polar angle tht: 1.2654; Azimuth angle phi: 4.7560 +Force: -0.098053 2.368532 -1.372411 +Torque: 0.020170 0.005931 -0.005962 + +Polar angle tht: 1.2654; Azimuth angle phi: 4.7997 +Force: -0.200162 2.378702 -1.379205 +Torque: 0.019463 0.011748 -0.011791 + +Polar angle tht: 1.2654; Azimuth angle phi: 4.8433 +Force: -0.305595 2.379963 -1.385596 +Torque: 0.018558 0.017422 -0.017355 + +Polar angle tht: 1.2654; Azimuth angle phi: 4.8869 +Force: -0.413598 2.372297 -1.391567 +Torque: 0.017459 0.022922 -0.022527 + +Polar angle tht: 1.2654; Azimuth angle phi: 4.9306 +Force: -0.523394 2.355751 -1.397099 +Torque: 0.016173 0.028220 -0.027179 + +Polar angle tht: 1.2654; Azimuth angle phi: 4.9742 +Force: -0.634194 2.330436 -1.402171 +Torque: 0.014705 0.033289 -0.031191 + +Polar angle tht: 1.2654; Azimuth angle phi: 5.0178 +Force: -0.745199 2.296527 -1.406762 +Torque: 0.013062 0.038104 -0.034448 + +Polar angle tht: 1.2654; Azimuth angle phi: 5.0615 +Force: -0.855609 2.254262 -1.410849 +Torque: 0.011252 0.042641 -0.036841 + +Polar angle tht: 1.2654; Azimuth angle phi: 5.1051 +Force: -0.964629 2.203939 -1.414408 +Torque: 0.009283 0.046879 -0.038269 + +Polar angle tht: 1.2654; Azimuth angle phi: 5.1487 +Force: -1.071473 2.145912 -1.417415 +Torque: 0.007164 0.050798 -0.038640 + +Polar angle tht: 1.2654; Azimuth angle phi: 5.1924 +Force: -1.175369 2.080595 -1.419846 +Torque: 0.004904 0.054380 -0.037871 + +Polar angle tht: 1.2654; Azimuth angle phi: 5.2360 +Force: -1.275570 2.008450 -1.421674 +Torque: 0.002512 0.057611 -0.035889 + +Polar angle tht: 1.2654; Azimuth angle phi: 5.2796 +Force: -1.371353 1.929992 -1.422876 +Torque: -0.000003 0.060477 -0.032634 + +Polar angle tht: 1.2654; Azimuth angle phi: 5.3233 +Force: -1.462029 1.845778 -1.423425 +Torque: -0.002629 0.062970 -0.028054 + +Polar angle tht: 1.2654; Azimuth angle phi: 5.3669 +Force: -1.546948 1.756409 -1.423297 +Torque: -0.005358 0.065080 -0.022113 + +Polar angle tht: 1.2654; Azimuth angle phi: 5.4105 +Force: -1.625500 1.662521 -1.422466 +Torque: -0.008178 0.066803 -0.014786 + +Polar angle tht: 1.2654; Azimuth angle phi: 5.4542 +Force: -1.697125 1.564781 -1.420910 +Torque: -0.011079 0.068137 -0.006059 + +Polar angle tht: 1.2654; Azimuth angle phi: 5.4978 +Force: -1.761312 1.463884 -1.418606 +Torque: -0.014052 0.069081 0.004066 + +Polar angle tht: 1.2654; Azimuth angle phi: 5.5414 +Force: -1.817606 1.360546 -1.415532 +Torque: -0.017084 0.069639 0.015575 + +Polar angle tht: 1.2654; Azimuth angle phi: 5.5851 +Force: -1.865611 1.255501 -1.411667 +Torque: -0.020167 0.069815 0.028441 + +Polar angle tht: 1.2654; Azimuth angle phi: 5.6287 +Force: -1.904994 1.149491 -1.406995 +Torque: -0.023289 0.069617 0.042625 + +Polar angle tht: 1.2654; Azimuth angle phi: 5.6723 +Force: -1.935482 1.043266 -1.401498 +Torque: -0.026442 0.069054 0.058071 + +Polar angle tht: 1.2654; Azimuth angle phi: 5.7160 +Force: -1.956872 0.937574 -1.395162 +Torque: -0.029614 0.068141 0.074716 + +Polar angle tht: 1.2654; Azimuth angle phi: 5.7596 +Force: -1.969028 0.833156 -1.387975 +Torque: -0.032797 0.066890 0.092480 + +Polar angle tht: 1.2654; Azimuth angle phi: 5.8032 +Force: -1.971880 0.730745 -1.379929 +Torque: -0.035981 0.065318 0.111273 + +Polar angle tht: 1.2654; Azimuth angle phi: 5.8469 +Force: -1.965429 0.631055 -1.371015 +Torque: -0.039158 0.063444 0.130995 + +Polar angle tht: 1.2654; Azimuth angle phi: 5.8905 +Force: -1.949746 0.534777 -1.361232 +Torque: -0.042320 0.061289 0.151534 + +Polar angle tht: 1.2654; Azimuth angle phi: 5.9341 +Force: -1.924968 0.442575 -1.350577 +Torque: -0.045458 0.058874 0.172768 + +Polar angle tht: 1.2654; Azimuth angle phi: 5.9778 +Force: -1.891301 0.355083 -1.339055 +Torque: -0.048564 0.056222 0.194569 + +Polar angle tht: 1.2654; Azimuth angle phi: 6.0214 +Force: -1.860747 0.278087 -1.328780 +Torque: -0.050030 0.053839 0.209061 + +Polar angle tht: 1.2654; Azimuth angle phi: 6.0650 +Force: -1.893376 0.233754 -1.330531 +Torque: -0.041858 0.054200 0.176706 + +Polar angle tht: 1.2654; Azimuth angle phi: 6.1087 +Force: -1.920357 0.188331 -1.331968 +Torque: -0.033596 0.054493 0.143006 + +Polar angle tht: 1.2654; Azimuth angle phi: 6.1523 +Force: -1.941522 0.142027 -1.333089 +Torque: -0.025261 0.054719 0.108218 + +Polar angle tht: 1.2654; Azimuth angle phi: 6.1959 +Force: -1.956737 0.095057 -1.333891 +Torque: -0.016871 0.054879 0.072606 + +Polar angle tht: 1.2654; Azimuth angle phi: 6.2396 +Force: -1.965904 0.047640 -1.334373 +Torque: -0.008445 0.054975 0.036442 + +Polar angle tht: 1.2654; Azimuth angle phi: 6.2832 +Force: -1.968966 0.000000 -1.334534 +Torque: -0.000000 0.055007 0.000000 + +Polar angle tht: 1.3090; Azimuth angle phi: 0.0000 +Force: -1.931771 0.000000 -1.039928 +Torque: -0.000000 0.044253 0.000000 + +Polar angle tht: 1.3090; Azimuth angle phi: 0.0436 +Force: -1.928714 -0.045124 -1.039788 +Torque: 0.007423 0.044232 -0.037381 + +Polar angle tht: 1.3090; Azimuth angle phi: 0.0873 +Force: -1.919561 -0.090026 -1.039368 +Torque: 0.014830 0.044168 -0.074477 + +Polar angle tht: 1.3090; Azimuth angle phi: 0.1309 +Force: -1.904372 -0.134484 -1.038669 +Torque: 0.022204 0.044061 -0.111007 + +Polar angle tht: 1.3090; Azimuth angle phi: 0.1745 +Force: -1.883246 -0.178281 -1.037692 +Torque: 0.029529 0.043910 -0.146691 + +Polar angle tht: 1.3090; Azimuth angle phi: 0.2182 +Force: -1.856317 -0.221201 -1.036439 +Torque: 0.036788 0.043713 -0.181260 + +Polar angle tht: 1.3090; Azimuth angle phi: 0.2618 +Force: -1.890854 -0.292753 -1.043666 +Torque: 0.036976 0.046220 -0.170202 + +Polar angle tht: 1.3090; Azimuth angle phi: 0.3054 +Force: -1.934301 -0.377134 -1.052401 +Torque: 0.035314 0.049265 -0.148061 + +Polar angle tht: 1.3090; Azimuth angle phi: 0.3491 +Force: -1.968920 -0.466955 -1.060357 +Torque: 0.033593 0.052109 -0.126458 + +Polar angle tht: 1.3090; Azimuth angle phi: 0.3927 +Force: -1.994431 -0.561605 -1.067537 +Torque: 0.031817 0.054726 -0.105532 + +Polar angle tht: 1.3090; Azimuth angle phi: 0.4363 +Force: -2.010624 -0.660436 -1.073944 +Torque: 0.029991 0.057092 -0.085415 + +Polar angle tht: 1.3090; Azimuth angle phi: 0.4800 +Force: -2.017357 -0.762766 -1.079585 +Torque: 0.028120 0.059184 -0.066228 + +Polar angle tht: 1.3090; Azimuth angle phi: 0.5236 +Force: -2.014557 -0.867885 -1.084472 +Torque: 0.026211 0.060981 -0.048086 + +Polar angle tht: 1.3090; Azimuth angle phi: 0.5672 +Force: -2.002225 -0.975060 -1.088616 +Torque: 0.024269 0.062463 -0.031088 + +Polar angle tht: 1.3090; Azimuth angle phi: 0.6109 +Force: -1.980429 -1.083541 -1.092034 +Torque: 0.022302 0.063614 -0.015325 + +Polar angle tht: 1.3090; Azimuth angle phi: 0.6545 +Force: -1.949310 -1.192567 -1.094744 +Torque: 0.020317 0.064418 -0.000875 + +Polar angle tht: 1.3090; Azimuth angle phi: 0.6981 +Force: -1.909077 -1.301369 -1.096766 +Torque: 0.018321 0.064862 0.012198 + +Polar angle tht: 1.3090; Azimuth angle phi: 0.7418 +Force: -1.860008 -1.409180 -1.098122 +Torque: 0.016323 0.064935 0.023841 + +Polar angle tht: 1.3090; Azimuth angle phi: 0.7854 +Force: -1.802445 -1.515237 -1.098835 +Torque: 0.014330 0.064630 0.034017 + +Polar angle tht: 1.3090; Azimuth angle phi: 0.8290 +Force: -1.736793 -1.618789 -1.098932 +Torque: 0.012352 0.063939 0.042700 + +Polar angle tht: 1.3090; Azimuth angle phi: 0.8727 +Force: -1.663520 -1.719099 -1.098438 +Torque: 0.010396 0.062860 0.049879 + +Polar angle tht: 1.3090; Azimuth angle phi: 0.9163 +Force: -1.583149 -1.815456 -1.097381 +Torque: 0.008472 0.061392 0.055557 + +Polar angle tht: 1.3090; Azimuth angle phi: 0.9599 +Force: -1.496253 -1.907175 -1.095788 +Torque: 0.006588 0.059537 0.059750 + +Polar angle tht: 1.3090; Azimuth angle phi: 1.0036 +Force: -1.403458 -1.993602 -1.093689 +Torque: 0.004754 0.057300 0.062488 + +Polar angle tht: 1.3090; Azimuth angle phi: 1.0472 +Force: -1.305431 -2.074122 -1.091111 +Torque: 0.002978 0.054689 0.063813 + +Polar angle tht: 1.3090; Azimuth angle phi: 1.0908 +Force: -1.202879 -2.148163 -1.088083 +Torque: 0.001268 0.051712 0.063780 + +Polar angle tht: 1.3090; Azimuth angle phi: 1.1345 +Force: -1.096541 -2.215199 -1.084633 +Torque: -0.000366 0.048382 0.062455 + +Polar angle tht: 1.3090; Azimuth angle phi: 1.1781 +Force: -0.987184 -2.274752 -1.080789 +Torque: -0.001916 0.044714 0.059918 + +Polar angle tht: 1.3090; Azimuth angle phi: 1.2217 +Force: -0.875599 -2.326401 -1.076578 +Torque: -0.003374 0.040726 0.056258 + +Polar angle tht: 1.3090; Azimuth angle phi: 1.2654 +Force: -0.762592 -2.369780 -1.072026 +Torque: -0.004733 0.036436 0.051572 + +Polar angle tht: 1.3090; Azimuth angle phi: 1.3090 +Force: -0.648979 -2.404585 -1.067157 +Torque: -0.005985 0.031866 0.045970 + +Polar angle tht: 1.3090; Azimuth angle phi: 1.3526 +Force: -0.535579 -2.430571 -1.061996 +Torque: -0.007123 0.027040 0.039566 + +Polar angle tht: 1.3090; Azimuth angle phi: 1.3963 +Force: -0.423211 -2.447558 -1.056564 +Torque: -0.008141 0.021982 0.032483 + +Polar angle tht: 1.3090; Azimuth angle phi: 1.4399 +Force: -0.312685 -2.455434 -1.050881 +Torque: -0.009033 0.016720 0.024850 + +Polar angle tht: 1.3090; Azimuth angle phi: 1.4835 +Force: -0.204795 -2.454149 -1.044967 +Torque: -0.009793 0.011283 0.016800 + +Polar angle tht: 1.3090; Azimuth angle phi: 1.5272 +Force: -0.100317 -2.443722 -1.038839 +Torque: -0.010416 0.005699 0.008470 + +Polar angle tht: 1.3090; Azimuth angle phi: 1.5708 +Force: 0.000000 -2.424237 -1.032512 +Torque: -0.010899 -0.000000 0.000000 + +Polar angle tht: 1.3090; Azimuth angle phi: 1.6144 +Force: 0.100317 -2.443722 -1.038839 +Torque: -0.010416 -0.005699 -0.008470 + +Polar angle tht: 1.3090; Azimuth angle phi: 1.6581 +Force: 0.204795 -2.454149 -1.044967 +Torque: -0.009793 -0.011283 -0.016800 + +Polar angle tht: 1.3090; Azimuth angle phi: 1.7017 +Force: 0.312685 -2.455434 -1.050881 +Torque: -0.009033 -0.016720 -0.024850 + +Polar angle tht: 1.3090; Azimuth angle phi: 1.7453 +Force: 0.423211 -2.447558 -1.056564 +Torque: -0.008141 -0.021982 -0.032483 + +Polar angle tht: 1.3090; Azimuth angle phi: 1.7890 +Force: 0.535579 -2.430571 -1.061996 +Torque: -0.007123 -0.027040 -0.039566 + +Polar angle tht: 1.3090; Azimuth angle phi: 1.8326 +Force: 0.648979 -2.404585 -1.067157 +Torque: -0.005985 -0.031866 -0.045970 + +Polar angle tht: 1.3090; Azimuth angle phi: 1.8762 +Force: 0.762592 -2.369780 -1.072026 +Torque: -0.004733 -0.036436 -0.051572 + +Polar angle tht: 1.3090; Azimuth angle phi: 1.9199 +Force: 0.875599 -2.326401 -1.076578 +Torque: -0.003374 -0.040726 -0.056258 + +Polar angle tht: 1.3090; Azimuth angle phi: 1.9635 +Force: 0.987184 -2.274752 -1.080789 +Torque: -0.001916 -0.044714 -0.059918 + +Polar angle tht: 1.3090; Azimuth angle phi: 2.0071 +Force: 1.096541 -2.215199 -1.084633 +Torque: -0.000366 -0.048382 -0.062455 + +Polar angle tht: 1.3090; Azimuth angle phi: 2.0508 +Force: 1.202879 -2.148163 -1.088083 +Torque: 0.001268 -0.051712 -0.063780 + +Polar angle tht: 1.3090; Azimuth angle phi: 2.0944 +Force: 1.305431 -2.074122 -1.091111 +Torque: 0.002978 -0.054689 -0.063813 + +Polar angle tht: 1.3090; Azimuth angle phi: 2.1380 +Force: 1.403458 -1.993602 -1.093689 +Torque: 0.004754 -0.057300 -0.062488 + +Polar angle tht: 1.3090; Azimuth angle phi: 2.1817 +Force: 1.496253 -1.907175 -1.095788 +Torque: 0.006588 -0.059537 -0.059750 + +Polar angle tht: 1.3090; Azimuth angle phi: 2.2253 +Force: 1.583149 -1.815456 -1.097381 +Torque: 0.008472 -0.061392 -0.055557 + +Polar angle tht: 1.3090; Azimuth angle phi: 2.2689 +Force: 1.663520 -1.719099 -1.098438 +Torque: 0.010396 -0.062860 -0.049879 + +Polar angle tht: 1.3090; Azimuth angle phi: 2.3126 +Force: 1.736793 -1.618789 -1.098932 +Torque: 0.012352 -0.063939 -0.042700 + +Polar angle tht: 1.3090; Azimuth angle phi: 2.3562 +Force: 1.802445 -1.515237 -1.098835 +Torque: 0.014330 -0.064630 -0.034017 + +Polar angle tht: 1.3090; Azimuth angle phi: 2.3998 +Force: 1.860008 -1.409180 -1.098122 +Torque: 0.016323 -0.064935 -0.023841 + +Polar angle tht: 1.3090; Azimuth angle phi: 2.4435 +Force: 1.909077 -1.301369 -1.096766 +Torque: 0.018321 -0.064862 -0.012198 + +Polar angle tht: 1.3090; Azimuth angle phi: 2.4871 +Force: 1.949310 -1.192567 -1.094744 +Torque: 0.020317 -0.064418 0.000875 + +Polar angle tht: 1.3090; Azimuth angle phi: 2.5307 +Force: 1.980429 -1.083541 -1.092034 +Torque: 0.022302 -0.063614 0.015325 + +Polar angle tht: 1.3090; Azimuth angle phi: 2.5744 +Force: 2.002225 -0.975060 -1.088616 +Torque: 0.024269 -0.062463 0.031088 + +Polar angle tht: 1.3090; Azimuth angle phi: 2.6180 +Force: 2.014557 -0.867885 -1.084472 +Torque: 0.026211 -0.060981 0.048086 + +Polar angle tht: 1.3090; Azimuth angle phi: 2.6616 +Force: 2.017357 -0.762766 -1.079585 +Torque: 0.028120 -0.059184 0.066228 + +Polar angle tht: 1.3090; Azimuth angle phi: 2.7053 +Force: 2.010624 -0.660436 -1.073944 +Torque: 0.029991 -0.057092 0.085415 + +Polar angle tht: 1.3090; Azimuth angle phi: 2.7489 +Force: 1.994431 -0.561605 -1.067537 +Torque: 0.031817 -0.054726 0.105532 + +Polar angle tht: 1.3090; Azimuth angle phi: 2.7925 +Force: 1.968920 -0.466955 -1.060357 +Torque: 0.033593 -0.052109 0.126458 + +Polar angle tht: 1.3090; Azimuth angle phi: 2.8362 +Force: 1.934301 -0.377134 -1.052401 +Torque: 0.035314 -0.049265 0.148061 + +Polar angle tht: 1.3090; Azimuth angle phi: 2.8798 +Force: 1.890854 -0.292753 -1.043666 +Torque: 0.036976 -0.046220 0.170202 + +Polar angle tht: 1.3090; Azimuth angle phi: 2.9234 +Force: 1.856317 -0.221201 -1.036439 +Torque: 0.036788 -0.043713 0.181260 + +Polar angle tht: 1.3090; Azimuth angle phi: 2.9671 +Force: 1.883246 -0.178281 -1.037692 +Torque: 0.029529 -0.043910 0.146691 + +Polar angle tht: 1.3090; Azimuth angle phi: 3.0107 +Force: 1.904372 -0.134484 -1.038669 +Torque: 0.022204 -0.044061 0.111007 + +Polar angle tht: 1.3090; Azimuth angle phi: 3.0543 +Force: 1.919561 -0.090026 -1.039368 +Torque: 0.014830 -0.044168 0.074477 + +Polar angle tht: 1.3090; Azimuth angle phi: 3.0980 +Force: 1.928714 -0.045124 -1.039788 +Torque: 0.007423 -0.044232 0.037381 + +Polar angle tht: 1.3090; Azimuth angle phi: 3.1416 +Force: 1.931771 0.000000 -1.039928 +Torque: -0.000000 -0.044253 -0.000000 + +Polar angle tht: 1.3090; Azimuth angle phi: 3.1852 +Force: 1.928714 0.045124 -1.039788 +Torque: -0.007423 -0.044232 -0.037381 + +Polar angle tht: 1.3090; Azimuth angle phi: 3.2289 +Force: 1.919561 0.090026 -1.039368 +Torque: -0.014830 -0.044168 -0.074477 + +Polar angle tht: 1.3090; Azimuth angle phi: 3.2725 +Force: 1.904372 0.134484 -1.038669 +Torque: -0.022204 -0.044061 -0.111007 + +Polar angle tht: 1.3090; Azimuth angle phi: 3.3161 +Force: 1.883246 0.178281 -1.037692 +Torque: -0.029529 -0.043910 -0.146691 + +Polar angle tht: 1.3090; Azimuth angle phi: 3.3598 +Force: 1.856317 0.221201 -1.036439 +Torque: -0.036788 -0.043713 -0.181260 + +Polar angle tht: 1.3090; Azimuth angle phi: 3.4034 +Force: 1.890854 0.292753 -1.043666 +Torque: -0.036976 -0.046220 -0.170200 + +Polar angle tht: 1.3090; Azimuth angle phi: 3.4470 +Force: 1.934301 0.377134 -1.052401 +Torque: -0.035314 -0.049265 -0.148058 + +Polar angle tht: 1.3090; Azimuth angle phi: 3.4907 +Force: 1.968920 0.466955 -1.060357 +Torque: -0.033592 -0.052109 -0.126454 + +Polar angle tht: 1.3090; Azimuth angle phi: 3.5343 +Force: 1.994431 0.561605 -1.067537 +Torque: -0.031816 -0.054726 -0.105526 + +Polar angle tht: 1.3090; Azimuth angle phi: 3.5779 +Force: 2.010624 0.660436 -1.073944 +Torque: -0.029990 -0.057092 -0.085407 + +Polar angle tht: 1.3090; Azimuth angle phi: 3.6216 +Force: 2.017357 0.762766 -1.079585 +Torque: -0.028119 -0.059184 -0.066220 + +Polar angle tht: 1.3090; Azimuth angle phi: 3.6652 +Force: 2.014557 0.867885 -1.084472 +Torque: -0.026210 -0.060981 -0.048076 + +Polar angle tht: 1.3090; Azimuth angle phi: 3.7088 +Force: 2.002225 0.975060 -1.088616 +Torque: -0.024268 -0.062463 -0.031077 + +Polar angle tht: 1.3090; Azimuth angle phi: 3.7525 +Force: 1.980429 1.083541 -1.092034 +Torque: -0.022301 -0.063614 -0.015314 + +Polar angle tht: 1.3090; Azimuth angle phi: 3.7961 +Force: 1.949310 1.192567 -1.094744 +Torque: -0.020315 -0.064418 -0.000863 + +Polar angle tht: 1.3090; Azimuth angle phi: 3.8397 +Force: 1.909077 1.301369 -1.096766 +Torque: -0.018319 -0.064862 0.012211 + +Polar angle tht: 1.3090; Azimuth angle phi: 3.8834 +Force: 1.860008 1.409180 -1.098122 +Torque: -0.016321 -0.064935 0.023855 + +Polar angle tht: 1.3090; Azimuth angle phi: 3.9270 +Force: 1.802445 1.515237 -1.098835 +Torque: -0.014328 -0.064630 0.034031 + +Polar angle tht: 1.3090; Azimuth angle phi: 3.9706 +Force: 1.736793 1.618789 -1.098932 +Torque: -0.012349 -0.063939 0.042714 + +Polar angle tht: 1.3090; Azimuth angle phi: 4.0143 +Force: 1.663520 1.719099 -1.098438 +Torque: -0.010394 -0.062860 0.049893 + +Polar angle tht: 1.3090; Azimuth angle phi: 4.0579 +Force: 1.583149 1.815456 -1.097381 +Torque: -0.008470 -0.061392 0.055571 + +Polar angle tht: 1.3090; Azimuth angle phi: 4.1015 +Force: 1.496253 1.907175 -1.095788 +Torque: -0.006586 -0.059537 0.059764 + +Polar angle tht: 1.3090; Azimuth angle phi: 4.1452 +Force: 1.403458 1.993602 -1.093689 +Torque: -0.004752 -0.057300 0.062502 + +Polar angle tht: 1.3090; Azimuth angle phi: 4.1888 +Force: 1.305431 2.074122 -1.091111 +Torque: -0.002975 -0.054689 0.063826 + +Polar angle tht: 1.3090; Azimuth angle phi: 4.2324 +Force: 1.202879 2.148163 -1.088083 +Torque: -0.001266 -0.051712 0.063792 + +Polar angle tht: 1.3090; Azimuth angle phi: 4.2761 +Force: 1.096541 2.215199 -1.084633 +Torque: 0.000368 -0.048382 0.062467 + +Polar angle tht: 1.3090; Azimuth angle phi: 4.3197 +Force: 0.987184 2.274752 -1.080789 +Torque: 0.001918 -0.044714 0.059930 + +Polar angle tht: 1.3090; Azimuth angle phi: 4.3633 +Force: 0.875599 2.326401 -1.076578 +Torque: 0.003377 -0.040726 0.056268 + +Polar angle tht: 1.3090; Azimuth angle phi: 4.4070 +Force: 0.762592 2.369780 -1.072026 +Torque: 0.004736 -0.036436 0.051581 + +Polar angle tht: 1.3090; Azimuth angle phi: 4.4506 +Force: 0.648979 2.404585 -1.067157 +Torque: 0.005988 -0.031866 0.045978 + +Polar angle tht: 1.3090; Azimuth angle phi: 4.4942 +Force: 0.535579 2.430571 -1.061996 +Torque: 0.007126 -0.027040 0.039572 + +Polar angle tht: 1.3090; Azimuth angle phi: 4.5379 +Force: 0.423211 2.447558 -1.056564 +Torque: 0.008144 -0.021982 0.032488 + +Polar angle tht: 1.3090; Azimuth angle phi: 4.5815 +Force: 0.312685 2.455434 -1.050881 +Torque: 0.009036 -0.016720 0.024854 + +Polar angle tht: 1.3090; Azimuth angle phi: 4.6251 +Force: 0.204795 2.454149 -1.044967 +Torque: 0.009796 -0.011283 0.016803 + +Polar angle tht: 1.3090; Azimuth angle phi: 4.6688 +Force: 0.100317 2.443722 -1.038839 +Torque: 0.010419 -0.005699 0.008472 + +Polar angle tht: 1.3090; Azimuth angle phi: 4.7124 +Force: 0.000000 2.424237 -1.032512 +Torque: 0.010902 -0.000000 -0.000000 + +Polar angle tht: 1.3090; Azimuth angle phi: 4.7560 +Force: -0.100317 2.443722 -1.038839 +Torque: 0.010419 0.005699 -0.008472 + +Polar angle tht: 1.3090; Azimuth angle phi: 4.7997 +Force: -0.204795 2.454149 -1.044967 +Torque: 0.009796 0.011283 -0.016803 + +Polar angle tht: 1.3090; Azimuth angle phi: 4.8433 +Force: -0.312685 2.455434 -1.050881 +Torque: 0.009036 0.016720 -0.024854 + +Polar angle tht: 1.3090; Azimuth angle phi: 4.8869 +Force: -0.423211 2.447558 -1.056564 +Torque: 0.008144 0.021982 -0.032488 + +Polar angle tht: 1.3090; Azimuth angle phi: 4.9306 +Force: -0.535579 2.430571 -1.061996 +Torque: 0.007126 0.027040 -0.039572 + +Polar angle tht: 1.3090; Azimuth angle phi: 4.9742 +Force: -0.648979 2.404585 -1.067157 +Torque: 0.005988 0.031866 -0.045978 + +Polar angle tht: 1.3090; Azimuth angle phi: 5.0178 +Force: -0.762592 2.369780 -1.072026 +Torque: 0.004736 0.036436 -0.051581 + +Polar angle tht: 1.3090; Azimuth angle phi: 5.0615 +Force: -0.875599 2.326401 -1.076578 +Torque: 0.003377 0.040726 -0.056268 + +Polar angle tht: 1.3090; Azimuth angle phi: 5.1051 +Force: -0.987184 2.274752 -1.080789 +Torque: 0.001918 0.044714 -0.059930 + +Polar angle tht: 1.3090; Azimuth angle phi: 5.1487 +Force: -1.096541 2.215199 -1.084633 +Torque: 0.000368 0.048382 -0.062467 + +Polar angle tht: 1.3090; Azimuth angle phi: 5.1924 +Force: -1.202879 2.148163 -1.088083 +Torque: -0.001266 0.051712 -0.063792 + +Polar angle tht: 1.3090; Azimuth angle phi: 5.2360 +Force: -1.305431 2.074122 -1.091111 +Torque: -0.002975 0.054689 -0.063826 + +Polar angle tht: 1.3090; Azimuth angle phi: 5.2796 +Force: -1.403458 1.993602 -1.093689 +Torque: -0.004752 0.057300 -0.062502 + +Polar angle tht: 1.3090; Azimuth angle phi: 5.3233 +Force: -1.496253 1.907175 -1.095788 +Torque: -0.006586 0.059537 -0.059764 + +Polar angle tht: 1.3090; Azimuth angle phi: 5.3669 +Force: -1.583149 1.815456 -1.097381 +Torque: -0.008470 0.061392 -0.055571 + +Polar angle tht: 1.3090; Azimuth angle phi: 5.4105 +Force: -1.663520 1.719099 -1.098438 +Torque: -0.010394 0.062860 -0.049893 + +Polar angle tht: 1.3090; Azimuth angle phi: 5.4542 +Force: -1.736793 1.618789 -1.098932 +Torque: -0.012349 0.063939 -0.042714 + +Polar angle tht: 1.3090; Azimuth angle phi: 5.4978 +Force: -1.802445 1.515237 -1.098835 +Torque: -0.014328 0.064630 -0.034031 + +Polar angle tht: 1.3090; Azimuth angle phi: 5.5414 +Force: -1.860008 1.409180 -1.098122 +Torque: -0.016321 0.064935 -0.023855 + +Polar angle tht: 1.3090; Azimuth angle phi: 5.5851 +Force: -1.909077 1.301369 -1.096766 +Torque: -0.018319 0.064862 -0.012211 + +Polar angle tht: 1.3090; Azimuth angle phi: 5.6287 +Force: -1.949310 1.192567 -1.094744 +Torque: -0.020315 0.064418 0.000863 + +Polar angle tht: 1.3090; Azimuth angle phi: 5.6723 +Force: -1.980429 1.083541 -1.092034 +Torque: -0.022301 0.063614 0.015314 + +Polar angle tht: 1.3090; Azimuth angle phi: 5.7160 +Force: -2.002225 0.975060 -1.088616 +Torque: -0.024268 0.062463 0.031077 + +Polar angle tht: 1.3090; Azimuth angle phi: 5.7596 +Force: -2.014557 0.867885 -1.084472 +Torque: -0.026210 0.060981 0.048076 + +Polar angle tht: 1.3090; Azimuth angle phi: 5.8032 +Force: -2.017357 0.762766 -1.079585 +Torque: -0.028119 0.059184 0.066220 + +Polar angle tht: 1.3090; Azimuth angle phi: 5.8469 +Force: -2.010624 0.660436 -1.073944 +Torque: -0.029990 0.057092 0.085407 + +Polar angle tht: 1.3090; Azimuth angle phi: 5.8905 +Force: -1.994431 0.561605 -1.067537 +Torque: -0.031816 0.054726 0.105526 + +Polar angle tht: 1.3090; Azimuth angle phi: 5.9341 +Force: -1.968920 0.466955 -1.060357 +Torque: -0.033592 0.052109 0.126454 + +Polar angle tht: 1.3090; Azimuth angle phi: 5.9778 +Force: -1.934301 0.377134 -1.052401 +Torque: -0.035314 0.049265 0.148058 + +Polar angle tht: 1.3090; Azimuth angle phi: 6.0214 +Force: -1.890854 0.292753 -1.043666 +Torque: -0.036976 0.046220 0.170200 + +Polar angle tht: 1.3090; Azimuth angle phi: 6.0650 +Force: -1.856317 0.221201 -1.036439 +Torque: -0.036788 0.043713 0.181260 + +Polar angle tht: 1.3090; Azimuth angle phi: 6.1087 +Force: -1.883246 0.178281 -1.037692 +Torque: -0.029529 0.043910 0.146691 + +Polar angle tht: 1.3090; Azimuth angle phi: 6.1523 +Force: -1.904372 0.134484 -1.038669 +Torque: -0.022204 0.044061 0.111007 + +Polar angle tht: 1.3090; Azimuth angle phi: 6.1959 +Force: -1.919561 0.090026 -1.039368 +Torque: -0.014830 0.044168 0.074477 + +Polar angle tht: 1.3090; Azimuth angle phi: 6.2396 +Force: -1.928714 0.045124 -1.039788 +Torque: -0.007423 0.044232 0.037381 + +Polar angle tht: 1.3090; Azimuth angle phi: 6.2832 +Force: -1.931771 0.000000 -1.039928 +Torque: -0.000000 0.044253 0.000000 + +Polar angle tht: 1.3526; Azimuth angle phi: 0.0000 +Force: -1.886039 0.000000 -0.777416 +Torque: -0.000000 0.033056 0.000000 + +Polar angle tht: 1.3526; Azimuth angle phi: 0.0436 +Force: -1.882999 -0.042362 -0.777298 +Torque: 0.006347 0.033046 -0.038188 + +Polar angle tht: 1.3526; Azimuth angle phi: 0.0873 +Force: -1.873898 -0.084504 -0.776943 +Torque: 0.012680 0.033015 -0.076085 + +Polar angle tht: 1.3526; Azimuth angle phi: 0.1309 +Force: -1.858797 -0.126208 -0.776352 +Torque: 0.018983 0.032964 -0.113403 + +Polar angle tht: 1.3526; Azimuth angle phi: 0.1745 +Force: -1.837795 -0.167256 -0.775526 +Torque: 0.025243 0.032890 -0.149858 + +Polar angle tht: 1.3526; Azimuth angle phi: 0.2182 +Force: -1.873070 -0.231803 -0.779641 +Torque: 0.027035 0.035336 -0.144258 + +Polar angle tht: 1.3526; Azimuth angle phi: 0.2618 +Force: -1.926183 -0.311972 -0.785276 +Torque: 0.026916 0.038717 -0.121800 + +Polar angle tht: 1.3526; Azimuth angle phi: 0.3054 +Force: -1.970638 -0.398278 -0.790216 +Torque: 0.026716 0.041936 -0.099840 + +Polar angle tht: 1.3526; Azimuth angle phi: 0.3491 +Force: -2.006084 -0.490139 -0.794468 +Torque: 0.026434 0.044964 -0.078527 + +Polar angle tht: 1.3526; Azimuth angle phi: 0.3927 +Force: -2.032236 -0.586933 -0.798038 +Torque: 0.026073 0.047777 -0.058001 + +Polar angle tht: 1.3526; Azimuth angle phi: 0.4363 +Force: -2.048878 -0.687996 -0.800940 +Torque: 0.025635 0.050348 -0.038397 + +Polar angle tht: 1.3526; Azimuth angle phi: 0.4800 +Force: -2.055866 -0.792631 -0.803187 +Torque: 0.025122 0.052655 -0.019837 + +Polar angle tht: 1.3526; Azimuth angle phi: 0.5236 +Force: -2.053125 -0.900113 -0.804797 +Torque: 0.024538 0.054676 -0.002434 + +Polar angle tht: 1.3526; Azimuth angle phi: 0.5672 +Force: -2.040655 -1.009693 -0.805789 +Torque: 0.023888 0.056389 0.013710 + +Polar angle tht: 1.3526; Azimuth angle phi: 0.6109 +Force: -2.018527 -1.120606 -0.806186 +Torque: 0.023175 0.057779 0.028507 + +Polar angle tht: 1.3526; Azimuth angle phi: 0.6545 +Force: -1.986882 -1.232072 -0.806012 +Torque: 0.022404 0.058827 0.041878 + +Polar angle tht: 1.3526; Azimuth angle phi: 0.6981 +Force: -1.945936 -1.343307 -0.805293 +Torque: 0.021581 0.059521 0.053760 + +Polar angle tht: 1.3526; Azimuth angle phi: 0.7418 +Force: -1.895971 -1.453526 -0.804057 +Torque: 0.020712 0.059849 0.064104 + +Polar angle tht: 1.3526; Azimuth angle phi: 0.7854 +Force: -1.837336 -1.561950 -0.802334 +Torque: 0.019803 0.059802 0.072873 + +Polar angle tht: 1.3526; Azimuth angle phi: 0.8290 +Force: -1.770447 -1.667811 -0.800154 +Torque: 0.018860 0.059373 0.080044 + +Polar angle tht: 1.3526; Azimuth angle phi: 0.8727 +Force: -1.695779 -1.770357 -0.797547 +Torque: 0.017890 0.058560 0.085610 + +Polar angle tht: 1.3526; Azimuth angle phi: 0.9163 +Force: -1.613865 -1.868862 -0.794547 +Torque: 0.016900 0.057360 0.089576 + +Polar angle tht: 1.3526; Azimuth angle phi: 0.9599 +Force: -1.525294 -1.962624 -0.791185 +Torque: 0.015898 0.055775 0.091963 + +Polar angle tht: 1.3526; Azimuth angle phi: 1.0036 +Force: -1.430702 -2.050976 -0.787493 +Torque: 0.014891 0.053809 0.092804 + +Polar angle tht: 1.3526; Azimuth angle phi: 1.0472 +Force: -1.330771 -2.133290 -0.783504 +Torque: 0.013885 0.051469 0.092147 + +Polar angle tht: 1.3526; Azimuth angle phi: 1.0908 +Force: -1.226222 -2.208982 -0.779249 +Torque: 0.012889 0.048764 0.090051 + +Polar angle tht: 1.3526; Azimuth angle phi: 1.1345 +Force: -1.117811 -2.277512 -0.774760 +Torque: 0.011909 0.045707 0.086588 + +Polar angle tht: 1.3526; Azimuth angle phi: 1.1781 +Force: -1.006320 -2.338394 -0.770066 +Torque: 0.010953 0.042312 0.081843 + +Polar angle tht: 1.3526; Azimuth angle phi: 1.2217 +Force: -0.892558 -2.391197 -0.765196 +Torque: 0.010029 0.038595 0.075912 + +Polar angle tht: 1.3526; Azimuth angle phi: 1.2654 +Force: -0.777346 -2.435547 -0.760178 +Torque: 0.009142 0.034576 0.068898 + +Polar angle tht: 1.3526; Azimuth angle phi: 1.3090 +Force: -0.661518 -2.471133 -0.755038 +Torque: 0.008299 0.030276 0.060916 + +Polar angle tht: 1.3526; Azimuth angle phi: 1.3526 +Force: -0.545911 -2.497705 -0.749801 +Torque: 0.007507 0.025719 0.052089 + +Polar angle tht: 1.3526; Azimuth angle phi: 1.3963 +Force: -0.431361 -2.515081 -0.744488 +Torque: 0.006771 0.020928 0.042546 + +Polar angle tht: 1.3526; Azimuth angle phi: 1.4399 +Force: -0.318693 -2.523143 -0.739121 +Torque: 0.006097 0.015933 0.032423 + +Polar angle tht: 1.3526; Azimuth angle phi: 1.4835 +Force: -0.208721 -2.521842 -0.733718 +Torque: 0.005491 0.010759 0.021862 + +Polar angle tht: 1.3526; Azimuth angle phi: 1.5272 +Force: -0.102235 -2.511197 -0.728295 +Torque: 0.004956 0.005438 0.011005 + +Polar angle tht: 1.3526; Azimuth angle phi: 1.5708 +Force: 0.000000 -2.491293 -0.722865 +Torque: 0.004496 -0.000000 0.000000 + +Polar angle tht: 1.3526; Azimuth angle phi: 1.6144 +Force: 0.102235 -2.511197 -0.728295 +Torque: 0.004956 -0.005438 -0.011005 + +Polar angle tht: 1.3526; Azimuth angle phi: 1.6581 +Force: 0.208721 -2.521842 -0.733718 +Torque: 0.005491 -0.010759 -0.021862 + +Polar angle tht: 1.3526; Azimuth angle phi: 1.7017 +Force: 0.318693 -2.523143 -0.739121 +Torque: 0.006097 -0.015933 -0.032423 + +Polar angle tht: 1.3526; Azimuth angle phi: 1.7453 +Force: 0.431361 -2.515081 -0.744488 +Torque: 0.006771 -0.020928 -0.042546 + +Polar angle tht: 1.3526; Azimuth angle phi: 1.7890 +Force: 0.545911 -2.497705 -0.749801 +Torque: 0.007507 -0.025719 -0.052089 + +Polar angle tht: 1.3526; Azimuth angle phi: 1.8326 +Force: 0.661518 -2.471133 -0.755038 +Torque: 0.008299 -0.030276 -0.060916 + +Polar angle tht: 1.3526; Azimuth angle phi: 1.8762 +Force: 0.777346 -2.435547 -0.760178 +Torque: 0.009142 -0.034576 -0.068898 + +Polar angle tht: 1.3526; Azimuth angle phi: 1.9199 +Force: 0.892558 -2.391197 -0.765196 +Torque: 0.010029 -0.038595 -0.075912 + +Polar angle tht: 1.3526; Azimuth angle phi: 1.9635 +Force: 1.006320 -2.338394 -0.770066 +Torque: 0.010953 -0.042312 -0.081843 + +Polar angle tht: 1.3526; Azimuth angle phi: 2.0071 +Force: 1.117811 -2.277512 -0.774760 +Torque: 0.011909 -0.045707 -0.086588 + +Polar angle tht: 1.3526; Azimuth angle phi: 2.0508 +Force: 1.226222 -2.208982 -0.779249 +Torque: 0.012889 -0.048764 -0.090051 + +Polar angle tht: 1.3526; Azimuth angle phi: 2.0944 +Force: 1.330771 -2.133290 -0.783504 +Torque: 0.013885 -0.051469 -0.092147 + +Polar angle tht: 1.3526; Azimuth angle phi: 2.1380 +Force: 1.430702 -2.050976 -0.787493 +Torque: 0.014891 -0.053809 -0.092804 + +Polar angle tht: 1.3526; Azimuth angle phi: 2.1817 +Force: 1.525294 -1.962624 -0.791185 +Torque: 0.015898 -0.055775 -0.091963 + +Polar angle tht: 1.3526; Azimuth angle phi: 2.2253 +Force: 1.613865 -1.868862 -0.794547 +Torque: 0.016900 -0.057360 -0.089576 + +Polar angle tht: 1.3526; Azimuth angle phi: 2.2689 +Force: 1.695779 -1.770357 -0.797547 +Torque: 0.017890 -0.058560 -0.085610 + +Polar angle tht: 1.3526; Azimuth angle phi: 2.3126 +Force: 1.770447 -1.667811 -0.800154 +Torque: 0.018860 -0.059373 -0.080044 + +Polar angle tht: 1.3526; Azimuth angle phi: 2.3562 +Force: 1.837336 -1.561950 -0.802334 +Torque: 0.019803 -0.059802 -0.072873 + +Polar angle tht: 1.3526; Azimuth angle phi: 2.3998 +Force: 1.895971 -1.453526 -0.804057 +Torque: 0.020712 -0.059849 -0.064104 + +Polar angle tht: 1.3526; Azimuth angle phi: 2.4435 +Force: 1.945936 -1.343307 -0.805293 +Torque: 0.021581 -0.059521 -0.053760 + +Polar angle tht: 1.3526; Azimuth angle phi: 2.4871 +Force: 1.986882 -1.232072 -0.806012 +Torque: 0.022404 -0.058827 -0.041878 + +Polar angle tht: 1.3526; Azimuth angle phi: 2.5307 +Force: 2.018527 -1.120606 -0.806186 +Torque: 0.023175 -0.057779 -0.028507 + +Polar angle tht: 1.3526; Azimuth angle phi: 2.5744 +Force: 2.040655 -1.009693 -0.805789 +Torque: 0.023888 -0.056389 -0.013710 + +Polar angle tht: 1.3526; Azimuth angle phi: 2.6180 +Force: 2.053125 -0.900113 -0.804797 +Torque: 0.024538 -0.054676 0.002434 + +Polar angle tht: 1.3526; Azimuth angle phi: 2.6616 +Force: 2.055866 -0.792631 -0.803187 +Torque: 0.025122 -0.052655 0.019837 + +Polar angle tht: 1.3526; Azimuth angle phi: 2.7053 +Force: 2.048878 -0.687996 -0.800940 +Torque: 0.025635 -0.050348 0.038397 + +Polar angle tht: 1.3526; Azimuth angle phi: 2.7489 +Force: 2.032236 -0.586933 -0.798038 +Torque: 0.026073 -0.047777 0.058001 + +Polar angle tht: 1.3526; Azimuth angle phi: 2.7925 +Force: 2.006084 -0.490139 -0.794468 +Torque: 0.026434 -0.044964 0.078527 + +Polar angle tht: 1.3526; Azimuth angle phi: 2.8362 +Force: 1.970638 -0.398278 -0.790216 +Torque: 0.026716 -0.041936 0.099840 + +Polar angle tht: 1.3526; Azimuth angle phi: 2.8798 +Force: 1.926183 -0.311972 -0.785276 +Torque: 0.026916 -0.038717 0.121800 + +Polar angle tht: 1.3526; Azimuth angle phi: 2.9234 +Force: 1.873070 -0.231803 -0.779641 +Torque: 0.027035 -0.035336 0.144258 + +Polar angle tht: 1.3526; Azimuth angle phi: 2.9671 +Force: 1.837795 -0.167256 -0.775526 +Torque: 0.025243 -0.032890 0.149858 + +Polar angle tht: 1.3526; Azimuth angle phi: 3.0107 +Force: 1.858797 -0.126208 -0.776352 +Torque: 0.018983 -0.032964 0.113403 + +Polar angle tht: 1.3526; Azimuth angle phi: 3.0543 +Force: 1.873898 -0.084504 -0.776943 +Torque: 0.012680 -0.033015 0.076085 + +Polar angle tht: 1.3526; Azimuth angle phi: 3.0980 +Force: 1.882999 -0.042362 -0.777298 +Torque: 0.006347 -0.033046 0.038188 + +Polar angle tht: 1.3526; Azimuth angle phi: 3.1416 +Force: 1.886039 0.000000 -0.777416 +Torque: -0.000000 -0.033056 -0.000000 + +Polar angle tht: 1.3526; Azimuth angle phi: 3.1852 +Force: 1.882999 0.042362 -0.777298 +Torque: -0.006347 -0.033046 -0.038188 + +Polar angle tht: 1.3526; Azimuth angle phi: 3.2289 +Force: 1.873898 0.084504 -0.776943 +Torque: -0.012680 -0.033015 -0.076085 + +Polar angle tht: 1.3526; Azimuth angle phi: 3.2725 +Force: 1.858797 0.126208 -0.776352 +Torque: -0.018983 -0.032964 -0.113403 + +Polar angle tht: 1.3526; Azimuth angle phi: 3.3161 +Force: 1.837795 0.167256 -0.775526 +Torque: -0.025243 -0.032890 -0.149858 + +Polar angle tht: 1.3526; Azimuth angle phi: 3.3598 +Force: 1.873070 0.231803 -0.779641 +Torque: -0.027035 -0.035336 -0.144257 + +Polar angle tht: 1.3526; Azimuth angle phi: 3.4034 +Force: 1.926183 0.311972 -0.785276 +Torque: -0.026916 -0.038717 -0.121797 + +Polar angle tht: 1.3526; Azimuth angle phi: 3.4470 +Force: 1.970638 0.398278 -0.790216 +Torque: -0.026715 -0.041936 -0.099836 + +Polar angle tht: 1.3526; Azimuth angle phi: 3.4907 +Force: 2.006084 0.490139 -0.794468 +Torque: -0.026433 -0.044964 -0.078521 + +Polar angle tht: 1.3526; Azimuth angle phi: 3.5343 +Force: 2.032236 0.586933 -0.798038 +Torque: -0.026072 -0.047777 -0.057994 + +Polar angle tht: 1.3526; Azimuth angle phi: 3.5779 +Force: 2.048878 0.687996 -0.800940 +Torque: -0.025634 -0.050348 -0.038388 + +Polar angle tht: 1.3526; Azimuth angle phi: 3.6216 +Force: 2.055866 0.792631 -0.803187 +Torque: -0.025121 -0.052655 -0.019827 + +Polar angle tht: 1.3526; Azimuth angle phi: 3.6652 +Force: 2.053125 0.900113 -0.804797 +Torque: -0.024538 -0.054676 -0.002423 + +Polar angle tht: 1.3526; Azimuth angle phi: 3.7088 +Force: 2.040655 1.009693 -0.805789 +Torque: -0.023887 -0.056389 0.013723 + +Polar angle tht: 1.3526; Azimuth angle phi: 3.7525 +Force: 2.018527 1.120606 -0.806186 +Torque: -0.023174 -0.057779 0.028520 + +Polar angle tht: 1.3526; Azimuth angle phi: 3.7961 +Force: 1.986882 1.232072 -0.806012 +Torque: -0.022403 -0.058827 0.041892 + +Polar angle tht: 1.3526; Azimuth angle phi: 3.8397 +Force: 1.945936 1.343307 -0.805293 +Torque: -0.021580 -0.059521 0.053775 + +Polar angle tht: 1.3526; Azimuth angle phi: 3.8834 +Force: 1.895971 1.453526 -0.804057 +Torque: -0.020711 -0.059849 0.064119 + +Polar angle tht: 1.3526; Azimuth angle phi: 3.9270 +Force: 1.837336 1.561950 -0.802334 +Torque: -0.019802 -0.059802 0.072888 + +Polar angle tht: 1.3526; Azimuth angle phi: 3.9706 +Force: 1.770447 1.667811 -0.800154 +Torque: -0.018859 -0.059373 0.080060 + +Polar angle tht: 1.3526; Azimuth angle phi: 4.0143 +Force: 1.695779 1.770357 -0.797547 +Torque: -0.017889 -0.058560 0.085626 + +Polar angle tht: 1.3526; Azimuth angle phi: 4.0579 +Force: 1.613865 1.868862 -0.794547 +Torque: -0.016899 -0.057360 0.089592 + +Polar angle tht: 1.3526; Azimuth angle phi: 4.1015 +Force: 1.525294 1.962624 -0.791185 +Torque: -0.015897 -0.055775 0.091978 + +Polar angle tht: 1.3526; Azimuth angle phi: 4.1452 +Force: 1.430702 2.050976 -0.787493 +Torque: -0.014889 -0.053809 0.092819 + +Polar angle tht: 1.3526; Azimuth angle phi: 4.1888 +Force: 1.330771 2.133290 -0.783504 +Torque: -0.013884 -0.051469 0.092161 + +Polar angle tht: 1.3526; Azimuth angle phi: 4.2324 +Force: 1.226222 2.208982 -0.779249 +Torque: -0.012887 -0.048764 0.090064 + +Polar angle tht: 1.3526; Azimuth angle phi: 4.2761 +Force: 1.117811 2.277512 -0.774760 +Torque: -0.011908 -0.045707 0.086601 + +Polar angle tht: 1.3526; Azimuth angle phi: 4.3197 +Force: 1.006320 2.338394 -0.770066 +Torque: -0.010952 -0.042312 0.081855 + +Polar angle tht: 1.3526; Azimuth angle phi: 4.3633 +Force: 0.892558 2.391197 -0.765196 +Torque: -0.010027 -0.038595 0.075922 + +Polar angle tht: 1.3526; Azimuth angle phi: 4.4070 +Force: 0.777346 2.435547 -0.760178 +Torque: -0.009140 -0.034576 0.068907 + +Polar angle tht: 1.3526; Azimuth angle phi: 4.4506 +Force: 0.661518 2.471133 -0.755038 +Torque: -0.008297 -0.030276 0.060924 + +Polar angle tht: 1.3526; Azimuth angle phi: 4.4942 +Force: 0.545911 2.497705 -0.749801 +Torque: -0.007505 -0.025719 0.052096 + +Polar angle tht: 1.3526; Azimuth angle phi: 4.5379 +Force: 0.431361 2.515081 -0.744488 +Torque: -0.006770 -0.020928 0.042552 + +Polar angle tht: 1.3526; Azimuth angle phi: 4.5815 +Force: 0.318693 2.523143 -0.739121 +Torque: -0.006096 -0.015933 0.032428 + +Polar angle tht: 1.3526; Azimuth angle phi: 4.6251 +Force: 0.208721 2.521842 -0.733718 +Torque: -0.005489 -0.010759 0.021865 + +Polar angle tht: 1.3526; Azimuth angle phi: 4.6688 +Force: 0.102235 2.511197 -0.728295 +Torque: -0.004954 -0.005438 0.011006 + +Polar angle tht: 1.3526; Azimuth angle phi: 4.7124 +Force: 0.000000 2.491293 -0.722865 +Torque: -0.004495 -0.000000 -0.000000 + +Polar angle tht: 1.3526; Azimuth angle phi: 4.7560 +Force: -0.102235 2.511197 -0.728295 +Torque: -0.004954 0.005438 -0.011006 + +Polar angle tht: 1.3526; Azimuth angle phi: 4.7997 +Force: -0.208721 2.521842 -0.733718 +Torque: -0.005489 0.010759 -0.021865 + +Polar angle tht: 1.3526; Azimuth angle phi: 4.8433 +Force: -0.318693 2.523143 -0.739121 +Torque: -0.006096 0.015933 -0.032428 + +Polar angle tht: 1.3526; Azimuth angle phi: 4.8869 +Force: -0.431361 2.515081 -0.744488 +Torque: -0.006770 0.020928 -0.042552 + +Polar angle tht: 1.3526; Azimuth angle phi: 4.9306 +Force: -0.545911 2.497705 -0.749801 +Torque: -0.007505 0.025719 -0.052096 + +Polar angle tht: 1.3526; Azimuth angle phi: 4.9742 +Force: -0.661518 2.471133 -0.755038 +Torque: -0.008297 0.030276 -0.060924 + +Polar angle tht: 1.3526; Azimuth angle phi: 5.0178 +Force: -0.777346 2.435547 -0.760178 +Torque: -0.009140 0.034576 -0.068907 + +Polar angle tht: 1.3526; Azimuth angle phi: 5.0615 +Force: -0.892558 2.391197 -0.765196 +Torque: -0.010027 0.038595 -0.075922 + +Polar angle tht: 1.3526; Azimuth angle phi: 5.1051 +Force: -1.006320 2.338394 -0.770066 +Torque: -0.010952 0.042312 -0.081855 + +Polar angle tht: 1.3526; Azimuth angle phi: 5.1487 +Force: -1.117811 2.277512 -0.774760 +Torque: -0.011908 0.045707 -0.086601 + +Polar angle tht: 1.3526; Azimuth angle phi: 5.1924 +Force: -1.226222 2.208982 -0.779249 +Torque: -0.012887 0.048764 -0.090064 + +Polar angle tht: 1.3526; Azimuth angle phi: 5.2360 +Force: -1.330771 2.133290 -0.783504 +Torque: -0.013884 0.051469 -0.092161 + +Polar angle tht: 1.3526; Azimuth angle phi: 5.2796 +Force: -1.430702 2.050976 -0.787493 +Torque: -0.014889 0.053809 -0.092819 + +Polar angle tht: 1.3526; Azimuth angle phi: 5.3233 +Force: -1.525294 1.962624 -0.791185 +Torque: -0.015897 0.055775 -0.091978 + +Polar angle tht: 1.3526; Azimuth angle phi: 5.3669 +Force: -1.613865 1.868862 -0.794547 +Torque: -0.016899 0.057360 -0.089592 + +Polar angle tht: 1.3526; Azimuth angle phi: 5.4105 +Force: -1.695779 1.770357 -0.797547 +Torque: -0.017889 0.058560 -0.085626 + +Polar angle tht: 1.3526; Azimuth angle phi: 5.4542 +Force: -1.770447 1.667811 -0.800154 +Torque: -0.018859 0.059373 -0.080060 + +Polar angle tht: 1.3526; Azimuth angle phi: 5.4978 +Force: -1.837336 1.561950 -0.802334 +Torque: -0.019802 0.059802 -0.072888 + +Polar angle tht: 1.3526; Azimuth angle phi: 5.5414 +Force: -1.895971 1.453526 -0.804057 +Torque: -0.020711 0.059849 -0.064119 + +Polar angle tht: 1.3526; Azimuth angle phi: 5.5851 +Force: -1.945936 1.343307 -0.805293 +Torque: -0.021580 0.059521 -0.053775 + +Polar angle tht: 1.3526; Azimuth angle phi: 5.6287 +Force: -1.986882 1.232072 -0.806012 +Torque: -0.022403 0.058827 -0.041892 + +Polar angle tht: 1.3526; Azimuth angle phi: 5.6723 +Force: -2.018527 1.120606 -0.806186 +Torque: -0.023174 0.057779 -0.028520 + +Polar angle tht: 1.3526; Azimuth angle phi: 5.7160 +Force: -2.040655 1.009693 -0.805789 +Torque: -0.023887 0.056389 -0.013723 + +Polar angle tht: 1.3526; Azimuth angle phi: 5.7596 +Force: -2.053125 0.900113 -0.804797 +Torque: -0.024538 0.054676 0.002423 + +Polar angle tht: 1.3526; Azimuth angle phi: 5.8032 +Force: -2.055866 0.792631 -0.803187 +Torque: -0.025121 0.052655 0.019827 + +Polar angle tht: 1.3526; Azimuth angle phi: 5.8469 +Force: -2.048878 0.687996 -0.800940 +Torque: -0.025634 0.050348 0.038388 + +Polar angle tht: 1.3526; Azimuth angle phi: 5.8905 +Force: -2.032236 0.586933 -0.798038 +Torque: -0.026072 0.047777 0.057994 + +Polar angle tht: 1.3526; Azimuth angle phi: 5.9341 +Force: -2.006084 0.490139 -0.794468 +Torque: -0.026433 0.044964 0.078521 + +Polar angle tht: 1.3526; Azimuth angle phi: 5.9778 +Force: -1.970638 0.398278 -0.790216 +Torque: -0.026715 0.041936 0.099836 + +Polar angle tht: 1.3526; Azimuth angle phi: 6.0214 +Force: -1.926183 0.311972 -0.785276 +Torque: -0.026916 0.038717 0.121797 + +Polar angle tht: 1.3526; Azimuth angle phi: 6.0650 +Force: -1.873070 0.231803 -0.779641 +Torque: -0.027035 0.035336 0.144257 + +Polar angle tht: 1.3526; Azimuth angle phi: 6.1087 +Force: -1.837795 0.167256 -0.775526 +Torque: -0.025243 0.032890 0.149858 + +Polar angle tht: 1.3526; Azimuth angle phi: 6.1523 +Force: -1.858797 0.126208 -0.776352 +Torque: -0.018983 0.032964 0.113403 + +Polar angle tht: 1.3526; Azimuth angle phi: 6.1959 +Force: -1.873898 0.084504 -0.776943 +Torque: -0.012680 0.033015 0.076085 + +Polar angle tht: 1.3526; Azimuth angle phi: 6.2396 +Force: -1.882999 0.042362 -0.777298 +Torque: -0.006347 0.033046 0.038188 + +Polar angle tht: 1.3526; Azimuth angle phi: 6.2832 +Force: -1.886039 0.000000 -0.777416 +Torque: -0.000000 0.033056 0.000000 + +Polar angle tht: 1.3963; Azimuth angle phi: 0.0000 +Force: -1.832129 0.000000 -0.548799 +Torque: -0.000000 0.021501 0.000000 + +Polar angle tht: 1.3963; Azimuth angle phi: 0.0436 +Force: -1.829118 -0.039376 -0.548703 +Torque: 0.005224 0.021502 -0.038857 + +Polar angle tht: 1.3963; Azimuth angle phi: 0.0873 +Force: -1.820106 -0.078534 -0.548415 +Torque: 0.010436 0.021506 -0.077417 + +Polar angle tht: 1.3963; Azimuth angle phi: 0.1309 +Force: -1.805154 -0.117261 -0.547937 +Torque: 0.015622 0.021511 -0.115389 + +Polar angle tht: 1.3963; Azimuth angle phi: 0.1745 +Force: -1.838172 -0.173860 -0.549318 +Torque: 0.018662 0.023723 -0.116995 + +Polar angle tht: 1.3963; Azimuth angle phi: 0.2182 +Force: -1.900648 -0.248779 -0.551572 +Torque: 0.020166 0.027375 -0.094255 + +Polar angle tht: 1.3963; Azimuth angle phi: 0.2618 +Force: -1.954746 -0.330484 -0.553208 +Torque: 0.021571 0.030906 -0.071962 + +Polar angle tht: 1.3963; Azimuth angle phi: 0.3054 +Force: -2.000045 -0.418432 -0.554236 +Torque: 0.022875 0.034288 -0.050274 + +Polar angle tht: 1.3963; Azimuth angle phi: 0.3491 +Force: -2.036187 -0.512031 -0.554669 +Torque: 0.024076 0.037493 -0.029342 + +Polar angle tht: 1.3963; Azimuth angle phi: 0.3927 +Force: -2.062881 -0.610647 -0.554523 +Torque: 0.025173 0.040494 -0.009308 + +Polar angle tht: 1.3963; Azimuth angle phi: 0.4363 +Force: -2.079909 -0.713605 -0.553817 +Torque: 0.026165 0.043265 0.009694 + +Polar angle tht: 1.3963; Azimuth angle phi: 0.4800 +Force: -2.087122 -0.820195 -0.552572 +Torque: 0.027053 0.045782 0.027541 + +Polar angle tht: 1.3963; Azimuth angle phi: 0.5236 +Force: -2.084446 -0.929678 -0.550813 +Torque: 0.027836 0.048022 0.044120 + +Polar angle tht: 1.3963; Azimuth angle phi: 0.5672 +Force: -2.071879 -1.041294 -0.548567 +Torque: 0.028517 0.049965 0.059329 + +Polar angle tht: 1.3963; Azimuth angle phi: 0.6109 +Force: -2.049492 -1.154262 -0.545862 +Torque: 0.029098 0.051591 0.073080 + +Polar angle tht: 1.3963; Azimuth angle phi: 0.6545 +Force: -2.017432 -1.267790 -0.542728 +Torque: 0.029581 0.052885 0.085298 + +Polar angle tht: 1.3963; Azimuth angle phi: 0.6981 +Force: -1.975915 -1.381079 -0.539199 +Torque: 0.029969 0.053831 0.095919 + +Polar angle tht: 1.3963; Azimuth angle phi: 0.7418 +Force: -1.925229 -1.493331 -0.535308 +Torque: 0.030266 0.054417 0.104896 + +Polar angle tht: 1.3963; Azimuth angle phi: 0.7854 +Force: -1.865729 -1.603753 -0.531089 +Torque: 0.030476 0.054635 0.112195 + +Polar angle tht: 1.3963; Azimuth angle phi: 0.8290 +Force: -1.797837 -1.711562 -0.526579 +Torque: 0.030602 0.054476 0.117796 + +Polar angle tht: 1.3963; Azimuth angle phi: 0.8727 +Force: -1.722036 -1.815994 -0.521814 +Torque: 0.030652 0.053936 0.121694 + +Polar angle tht: 1.3963; Azimuth angle phi: 0.9163 +Force: -1.638870 -1.916309 -0.516829 +Torque: 0.030628 0.053014 0.123899 + +Polar angle tht: 1.3963; Azimuth angle phi: 0.9599 +Force: -1.548936 -2.011793 -0.511662 +Torque: 0.030537 0.051711 0.124435 + +Polar angle tht: 1.3963; Azimuth angle phi: 1.0036 +Force: -1.452882 -2.101769 -0.506348 +Torque: 0.030385 0.050029 0.123339 + +Polar angle tht: 1.3963; Azimuth angle phi: 1.0472 +Force: -1.351401 -2.185595 -0.500924 +Torque: 0.030177 0.047976 0.120663 + +Polar angle tht: 1.3963; Azimuth angle phi: 1.0908 +Force: -1.245225 -2.262678 -0.495424 +Torque: 0.029919 0.045560 0.116472 + +Polar angle tht: 1.3963; Azimuth angle phi: 1.1345 +Force: -1.135125 -2.332468 -0.489882 +Torque: 0.029617 0.042794 0.110844 + +Polar angle tht: 1.3963; Azimuth angle phi: 1.1781 +Force: -1.021896 -2.394471 -0.484330 +Torque: 0.029277 0.039690 0.103867 + +Polar angle tht: 1.3963; Azimuth angle phi: 1.2217 +Force: -0.906358 -2.448248 -0.478799 +Torque: 0.028905 0.036265 0.095643 + +Polar angle tht: 1.3963; Azimuth angle phi: 1.2654 +Force: -0.789350 -2.493419 -0.473319 +Torque: 0.028508 0.032539 0.086284 + +Polar angle tht: 1.3963; Azimuth angle phi: 1.3090 +Force: -0.671718 -2.529666 -0.467916 +Torque: 0.028090 0.028532 0.075908 + +Polar angle tht: 1.3963; Azimuth angle phi: 1.3526 +Force: -0.554313 -2.556736 -0.462617 +Torque: 0.027657 0.024267 0.064646 + +Polar angle tht: 1.3963; Azimuth angle phi: 1.3963 +Force: -0.437986 -2.574443 -0.457443 +Torque: 0.027215 0.019769 0.052634 + +Polar angle tht: 1.3963; Azimuth angle phi: 1.4399 +Force: -0.323576 -2.582667 -0.452415 +Torque: 0.026769 0.015064 0.040014 + +Polar angle tht: 1.3963; Azimuth angle phi: 1.4835 +Force: -0.211910 -2.581358 -0.447552 +Torque: 0.026323 0.010182 0.026934 + +Polar angle tht: 1.3963; Azimuth angle phi: 1.5272 +Force: -0.103792 -2.570535 -0.442867 +Torque: 0.025881 0.005150 0.013544 + +Polar angle tht: 1.3963; Azimuth angle phi: 1.5708 +Force: 0.000000 -2.550286 -0.438375 +Torque: 0.025448 -0.000000 0.000000 + +Polar angle tht: 1.3963; Azimuth angle phi: 1.6144 +Force: 0.103792 -2.570535 -0.442867 +Torque: 0.025881 -0.005150 -0.013544 + +Polar angle tht: 1.3963; Azimuth angle phi: 1.6581 +Force: 0.211910 -2.581358 -0.447552 +Torque: 0.026323 -0.010182 -0.026934 + +Polar angle tht: 1.3963; Azimuth angle phi: 1.7017 +Force: 0.323576 -2.582667 -0.452415 +Torque: 0.026769 -0.015064 -0.040014 + +Polar angle tht: 1.3963; Azimuth angle phi: 1.7453 +Force: 0.437986 -2.574443 -0.457443 +Torque: 0.027215 -0.019769 -0.052634 + +Polar angle tht: 1.3963; Azimuth angle phi: 1.7890 +Force: 0.554313 -2.556736 -0.462617 +Torque: 0.027657 -0.024267 -0.064646 + +Polar angle tht: 1.3963; Azimuth angle phi: 1.8326 +Force: 0.671718 -2.529666 -0.467916 +Torque: 0.028090 -0.028532 -0.075908 + +Polar angle tht: 1.3963; Azimuth angle phi: 1.8762 +Force: 0.789350 -2.493419 -0.473319 +Torque: 0.028508 -0.032539 -0.086284 + +Polar angle tht: 1.3963; Azimuth angle phi: 1.9199 +Force: 0.906358 -2.448248 -0.478799 +Torque: 0.028905 -0.036265 -0.095643 + +Polar angle tht: 1.3963; Azimuth angle phi: 1.9635 +Force: 1.021896 -2.394471 -0.484330 +Torque: 0.029277 -0.039690 -0.103867 + +Polar angle tht: 1.3963; Azimuth angle phi: 2.0071 +Force: 1.135125 -2.332468 -0.489882 +Torque: 0.029617 -0.042794 -0.110844 + +Polar angle tht: 1.3963; Azimuth angle phi: 2.0508 +Force: 1.245225 -2.262678 -0.495424 +Torque: 0.029919 -0.045560 -0.116472 + +Polar angle tht: 1.3963; Azimuth angle phi: 2.0944 +Force: 1.351401 -2.185595 -0.500924 +Torque: 0.030177 -0.047976 -0.120663 + +Polar angle tht: 1.3963; Azimuth angle phi: 2.1380 +Force: 1.452882 -2.101769 -0.506348 +Torque: 0.030385 -0.050029 -0.123339 + +Polar angle tht: 1.3963; Azimuth angle phi: 2.1817 +Force: 1.548936 -2.011793 -0.511662 +Torque: 0.030537 -0.051711 -0.124435 + +Polar angle tht: 1.3963; Azimuth angle phi: 2.2253 +Force: 1.638870 -1.916309 -0.516829 +Torque: 0.030628 -0.053014 -0.123899 + +Polar angle tht: 1.3963; Azimuth angle phi: 2.2689 +Force: 1.722036 -1.815994 -0.521814 +Torque: 0.030652 -0.053936 -0.121694 + +Polar angle tht: 1.3963; Azimuth angle phi: 2.3126 +Force: 1.797837 -1.711562 -0.526579 +Torque: 0.030602 -0.054476 -0.117796 + +Polar angle tht: 1.3963; Azimuth angle phi: 2.3562 +Force: 1.865729 -1.603753 -0.531089 +Torque: 0.030476 -0.054635 -0.112195 + +Polar angle tht: 1.3963; Azimuth angle phi: 2.3998 +Force: 1.925229 -1.493331 -0.535308 +Torque: 0.030266 -0.054417 -0.104896 + +Polar angle tht: 1.3963; Azimuth angle phi: 2.4435 +Force: 1.975915 -1.381079 -0.539199 +Torque: 0.029969 -0.053831 -0.095919 + +Polar angle tht: 1.3963; Azimuth angle phi: 2.4871 +Force: 2.017432 -1.267790 -0.542728 +Torque: 0.029581 -0.052885 -0.085298 + +Polar angle tht: 1.3963; Azimuth angle phi: 2.5307 +Force: 2.049492 -1.154262 -0.545862 +Torque: 0.029098 -0.051591 -0.073080 + +Polar angle tht: 1.3963; Azimuth angle phi: 2.5744 +Force: 2.071879 -1.041294 -0.548567 +Torque: 0.028517 -0.049965 -0.059329 + +Polar angle tht: 1.3963; Azimuth angle phi: 2.6180 +Force: 2.084446 -0.929678 -0.550813 +Torque: 0.027836 -0.048022 -0.044120 + +Polar angle tht: 1.3963; Azimuth angle phi: 2.6616 +Force: 2.087122 -0.820195 -0.552572 +Torque: 0.027053 -0.045782 -0.027541 + +Polar angle tht: 1.3963; Azimuth angle phi: 2.7053 +Force: 2.079909 -0.713605 -0.553817 +Torque: 0.026165 -0.043265 -0.009694 + +Polar angle tht: 1.3963; Azimuth angle phi: 2.7489 +Force: 2.062881 -0.610647 -0.554523 +Torque: 0.025173 -0.040494 0.009308 + +Polar angle tht: 1.3963; Azimuth angle phi: 2.7925 +Force: 2.036187 -0.512031 -0.554669 +Torque: 0.024076 -0.037493 0.029342 + +Polar angle tht: 1.3963; Azimuth angle phi: 2.8362 +Force: 2.000045 -0.418432 -0.554236 +Torque: 0.022875 -0.034288 0.050274 + +Polar angle tht: 1.3963; Azimuth angle phi: 2.8798 +Force: 1.954746 -0.330484 -0.553208 +Torque: 0.021571 -0.030906 0.071962 + +Polar angle tht: 1.3963; Azimuth angle phi: 2.9234 +Force: 1.900648 -0.248779 -0.551572 +Torque: 0.020166 -0.027375 0.094255 + +Polar angle tht: 1.3963; Azimuth angle phi: 2.9671 +Force: 1.838172 -0.173860 -0.549318 +Torque: 0.018662 -0.023723 0.116995 + +Polar angle tht: 1.3963; Azimuth angle phi: 3.0107 +Force: 1.805154 -0.117261 -0.547937 +Torque: 0.015622 -0.021511 0.115389 + +Polar angle tht: 1.3963; Azimuth angle phi: 3.0543 +Force: 1.820106 -0.078534 -0.548415 +Torque: 0.010436 -0.021506 0.077417 + +Polar angle tht: 1.3963; Azimuth angle phi: 3.0980 +Force: 1.829118 -0.039376 -0.548703 +Torque: 0.005224 -0.021502 0.038857 + +Polar angle tht: 1.3963; Azimuth angle phi: 3.1416 +Force: 1.832129 0.000000 -0.548799 +Torque: -0.000000 -0.021501 -0.000000 + +Polar angle tht: 1.3963; Azimuth angle phi: 3.1852 +Force: 1.829118 0.039376 -0.548703 +Torque: -0.005224 -0.021502 -0.038857 + +Polar angle tht: 1.3963; Azimuth angle phi: 3.2289 +Force: 1.820106 0.078534 -0.548415 +Torque: -0.010436 -0.021506 -0.077417 + +Polar angle tht: 1.3963; Azimuth angle phi: 3.2725 +Force: 1.805154 0.117261 -0.547937 +Torque: -0.015622 -0.021511 -0.115389 + +Polar angle tht: 1.3963; Azimuth angle phi: 3.3161 +Force: 1.838172 0.173860 -0.549318 +Torque: -0.018662 -0.023723 -0.116994 + +Polar angle tht: 1.3963; Azimuth angle phi: 3.3598 +Force: 1.900648 0.248779 -0.551572 +Torque: -0.020166 -0.027375 -0.094252 + +Polar angle tht: 1.3963; Azimuth angle phi: 3.4034 +Force: 1.954746 0.330484 -0.553208 +Torque: -0.021571 -0.030906 -0.071957 + +Polar angle tht: 1.3963; Azimuth angle phi: 3.4470 +Force: 2.000045 0.418432 -0.554236 +Torque: -0.022875 -0.034288 -0.050268 + +Polar angle tht: 1.3963; Azimuth angle phi: 3.4907 +Force: 2.036187 0.512031 -0.554669 +Torque: -0.024076 -0.037493 -0.029334 + +Polar angle tht: 1.3963; Azimuth angle phi: 3.5343 +Force: 2.062881 0.610647 -0.554523 +Torque: -0.025173 -0.040494 -0.009298 + +Polar angle tht: 1.3963; Azimuth angle phi: 3.5779 +Force: 2.079909 0.713605 -0.553817 +Torque: -0.026165 -0.043265 0.009705 + +Polar angle tht: 1.3963; Azimuth angle phi: 3.6216 +Force: 2.087122 0.820195 -0.552572 +Torque: -0.027052 -0.045782 0.027553 + +Polar angle tht: 1.3963; Azimuth angle phi: 3.6652 +Force: 2.084446 0.929678 -0.550813 +Torque: -0.027836 -0.048022 0.044133 + +Polar angle tht: 1.3963; Azimuth angle phi: 3.7088 +Force: 2.071879 1.041294 -0.548567 +Torque: -0.028517 -0.049965 0.059343 + +Polar angle tht: 1.3963; Azimuth angle phi: 3.7525 +Force: 2.049492 1.154262 -0.545862 +Torque: -0.029098 -0.051591 0.073095 + +Polar angle tht: 1.3963; Azimuth angle phi: 3.7961 +Force: 2.017432 1.267790 -0.542728 +Torque: -0.029581 -0.052885 0.085313 + +Polar angle tht: 1.3963; Azimuth angle phi: 3.8397 +Force: 1.975915 1.381079 -0.539199 +Torque: -0.029969 -0.053831 0.095935 + +Polar angle tht: 1.3963; Azimuth angle phi: 3.8834 +Force: 1.925229 1.493331 -0.535308 +Torque: -0.030266 -0.054417 0.104913 + +Polar angle tht: 1.3963; Azimuth angle phi: 3.9270 +Force: 1.865729 1.603753 -0.531089 +Torque: -0.030475 -0.054635 0.112212 + +Polar angle tht: 1.3963; Azimuth angle phi: 3.9706 +Force: 1.797837 1.711562 -0.526579 +Torque: -0.030602 -0.054476 0.117813 + +Polar angle tht: 1.3963; Azimuth angle phi: 4.0143 +Force: 1.722036 1.815994 -0.521814 +Torque: -0.030651 -0.053936 0.121711 + +Polar angle tht: 1.3963; Azimuth angle phi: 4.0579 +Force: 1.638870 1.916309 -0.516829 +Torque: -0.030628 -0.053014 0.123916 + +Polar angle tht: 1.3963; Azimuth angle phi: 4.1015 +Force: 1.548936 2.011793 -0.511662 +Torque: -0.030537 -0.051711 0.124451 + +Polar angle tht: 1.3963; Azimuth angle phi: 4.1452 +Force: 1.452882 2.101769 -0.506348 +Torque: -0.030385 -0.050029 0.123355 + +Polar angle tht: 1.3963; Azimuth angle phi: 4.1888 +Force: 1.351401 2.185595 -0.500924 +Torque: -0.030177 -0.047976 0.120678 + +Polar angle tht: 1.3963; Azimuth angle phi: 4.2324 +Force: 1.245225 2.262678 -0.495424 +Torque: -0.029919 -0.045560 0.116487 + +Polar angle tht: 1.3963; Azimuth angle phi: 4.2761 +Force: 1.135125 2.332468 -0.489882 +Torque: -0.029617 -0.042794 0.110857 + +Polar angle tht: 1.3963; Azimuth angle phi: 4.3197 +Force: 1.021896 2.394471 -0.484330 +Torque: -0.029277 -0.039690 0.103880 + +Polar angle tht: 1.3963; Azimuth angle phi: 4.3633 +Force: 0.906358 2.448248 -0.478799 +Torque: -0.028905 -0.036265 0.095655 + +Polar angle tht: 1.3963; Azimuth angle phi: 4.4070 +Force: 0.789350 2.493419 -0.473319 +Torque: -0.028508 -0.032539 0.086294 + +Polar angle tht: 1.3963; Azimuth angle phi: 4.4506 +Force: 0.671718 2.529666 -0.467916 +Torque: -0.028090 -0.028532 0.075917 + +Polar angle tht: 1.3963; Azimuth angle phi: 4.4942 +Force: 0.554313 2.556736 -0.462617 +Torque: -0.027658 -0.024267 0.064654 + +Polar angle tht: 1.3963; Azimuth angle phi: 4.5379 +Force: 0.437986 2.574443 -0.457443 +Torque: -0.027216 -0.019769 0.052640 + +Polar angle tht: 1.3963; Azimuth angle phi: 4.5815 +Force: 0.323576 2.582667 -0.452415 +Torque: -0.026769 -0.015064 0.040019 + +Polar angle tht: 1.3963; Azimuth angle phi: 4.6251 +Force: 0.211910 2.581358 -0.447552 +Torque: -0.026323 -0.010182 0.026937 + +Polar angle tht: 1.3963; Azimuth angle phi: 4.6688 +Force: 0.103792 2.570535 -0.442867 +Torque: -0.025881 -0.005150 0.013546 + +Polar angle tht: 1.3963; Azimuth angle phi: 4.7124 +Force: 0.000000 2.550286 -0.438375 +Torque: -0.025448 -0.000000 -0.000000 + +Polar angle tht: 1.3963; Azimuth angle phi: 4.7560 +Force: -0.103792 2.570535 -0.442867 +Torque: -0.025881 0.005150 -0.013546 + +Polar angle tht: 1.3963; Azimuth angle phi: 4.7997 +Force: -0.211910 2.581358 -0.447552 +Torque: -0.026323 0.010182 -0.026937 + +Polar angle tht: 1.3963; Azimuth angle phi: 4.8433 +Force: -0.323576 2.582667 -0.452415 +Torque: -0.026769 0.015064 -0.040019 + +Polar angle tht: 1.3963; Azimuth angle phi: 4.8869 +Force: -0.437986 2.574443 -0.457443 +Torque: -0.027216 0.019769 -0.052640 + +Polar angle tht: 1.3963; Azimuth angle phi: 4.9306 +Force: -0.554313 2.556736 -0.462617 +Torque: -0.027658 0.024267 -0.064654 + +Polar angle tht: 1.3963; Azimuth angle phi: 4.9742 +Force: -0.671718 2.529666 -0.467916 +Torque: -0.028090 0.028532 -0.075917 + +Polar angle tht: 1.3963; Azimuth angle phi: 5.0178 +Force: -0.789350 2.493419 -0.473319 +Torque: -0.028508 0.032539 -0.086294 + +Polar angle tht: 1.3963; Azimuth angle phi: 5.0615 +Force: -0.906358 2.448248 -0.478799 +Torque: -0.028905 0.036265 -0.095655 + +Polar angle tht: 1.3963; Azimuth angle phi: 5.1051 +Force: -1.021896 2.394471 -0.484330 +Torque: -0.029277 0.039690 -0.103880 + +Polar angle tht: 1.3963; Azimuth angle phi: 5.1487 +Force: -1.135125 2.332468 -0.489882 +Torque: -0.029617 0.042794 -0.110857 + +Polar angle tht: 1.3963; Azimuth angle phi: 5.1924 +Force: -1.245225 2.262678 -0.495424 +Torque: -0.029919 0.045560 -0.116487 + +Polar angle tht: 1.3963; Azimuth angle phi: 5.2360 +Force: -1.351401 2.185595 -0.500924 +Torque: -0.030177 0.047976 -0.120678 + +Polar angle tht: 1.3963; Azimuth angle phi: 5.2796 +Force: -1.452882 2.101769 -0.506348 +Torque: -0.030385 0.050029 -0.123355 + +Polar angle tht: 1.3963; Azimuth angle phi: 5.3233 +Force: -1.548936 2.011793 -0.511662 +Torque: -0.030537 0.051711 -0.124451 + +Polar angle tht: 1.3963; Azimuth angle phi: 5.3669 +Force: -1.638870 1.916309 -0.516829 +Torque: -0.030628 0.053014 -0.123916 + +Polar angle tht: 1.3963; Azimuth angle phi: 5.4105 +Force: -1.722036 1.815994 -0.521814 +Torque: -0.030651 0.053936 -0.121711 + +Polar angle tht: 1.3963; Azimuth angle phi: 5.4542 +Force: -1.797837 1.711562 -0.526579 +Torque: -0.030602 0.054476 -0.117813 + +Polar angle tht: 1.3963; Azimuth angle phi: 5.4978 +Force: -1.865729 1.603753 -0.531089 +Torque: -0.030475 0.054635 -0.112212 + +Polar angle tht: 1.3963; Azimuth angle phi: 5.5414 +Force: -1.925229 1.493331 -0.535308 +Torque: -0.030266 0.054417 -0.104913 + +Polar angle tht: 1.3963; Azimuth angle phi: 5.5851 +Force: -1.975915 1.381079 -0.539199 +Torque: -0.029969 0.053831 -0.095935 + +Polar angle tht: 1.3963; Azimuth angle phi: 5.6287 +Force: -2.017432 1.267790 -0.542728 +Torque: -0.029581 0.052885 -0.085313 + +Polar angle tht: 1.3963; Azimuth angle phi: 5.6723 +Force: -2.049492 1.154262 -0.545862 +Torque: -0.029098 0.051591 -0.073095 + +Polar angle tht: 1.3963; Azimuth angle phi: 5.7160 +Force: -2.071879 1.041294 -0.548567 +Torque: -0.028517 0.049965 -0.059343 + +Polar angle tht: 1.3963; Azimuth angle phi: 5.7596 +Force: -2.084446 0.929678 -0.550813 +Torque: -0.027836 0.048022 -0.044133 + +Polar angle tht: 1.3963; Azimuth angle phi: 5.8032 +Force: -2.087122 0.820195 -0.552572 +Torque: -0.027052 0.045782 -0.027553 + +Polar angle tht: 1.3963; Azimuth angle phi: 5.8469 +Force: -2.079909 0.713605 -0.553817 +Torque: -0.026165 0.043265 -0.009705 + +Polar angle tht: 1.3963; Azimuth angle phi: 5.8905 +Force: -2.062881 0.610647 -0.554523 +Torque: -0.025173 0.040494 0.009298 + +Polar angle tht: 1.3963; Azimuth angle phi: 5.9341 +Force: -2.036187 0.512031 -0.554669 +Torque: -0.024076 0.037493 0.029334 + +Polar angle tht: 1.3963; Azimuth angle phi: 5.9778 +Force: -2.000045 0.418432 -0.554236 +Torque: -0.022875 0.034288 0.050268 + +Polar angle tht: 1.3963; Azimuth angle phi: 6.0214 +Force: -1.954746 0.330484 -0.553208 +Torque: -0.021571 0.030906 0.071957 + +Polar angle tht: 1.3963; Azimuth angle phi: 6.0650 +Force: -1.900648 0.248779 -0.551572 +Torque: -0.020166 0.027375 0.094252 + +Polar angle tht: 1.3963; Azimuth angle phi: 6.1087 +Force: -1.838172 0.173860 -0.549318 +Torque: -0.018662 0.023723 0.116994 + +Polar angle tht: 1.3963; Azimuth angle phi: 6.1523 +Force: -1.805154 0.117261 -0.547937 +Torque: -0.015622 0.021511 0.115389 + +Polar angle tht: 1.3963; Azimuth angle phi: 6.1959 +Force: -1.820106 0.078534 -0.548415 +Torque: -0.010436 0.021506 0.077417 + +Polar angle tht: 1.3963; Azimuth angle phi: 6.2396 +Force: -1.829118 0.039376 -0.548703 +Torque: -0.005224 0.021502 0.038857 + +Polar angle tht: 1.3963; Azimuth angle phi: 6.2832 +Force: -1.832129 0.000000 -0.548799 +Torque: -0.000000 0.021501 0.000000 + +Polar angle tht: 1.4399; Azimuth angle phi: 0.0000 +Force: -1.770459 0.000000 -0.355618 +Torque: -0.000000 0.009677 0.000000 + +Polar angle tht: 1.4399; Azimuth angle phi: 0.0436 +Force: -1.767490 -0.036187 -0.355546 +Torque: 0.004063 0.009689 -0.039382 + +Polar angle tht: 1.4399; Azimuth angle phi: 0.0873 +Force: -1.758603 -0.072161 -0.355328 +Torque: 0.008116 0.009728 -0.078464 + +Polar angle tht: 1.4399; Azimuth angle phi: 0.1309 +Force: -1.786733 -0.120440 -0.354708 +Torque: 0.011796 0.011548 -0.088675 + +Polar angle tht: 1.4399; Azimuth angle phi: 0.1745 +Force: -1.858087 -0.189161 -0.353339 +Torque: 0.014982 0.015400 -0.065694 + +Polar angle tht: 1.4399; Azimuth angle phi: 0.2182 +Force: -1.921451 -0.265255 -0.351420 +Torque: 0.018059 0.019176 -0.043103 + +Polar angle tht: 1.4399; Azimuth angle phi: 0.2618 +Force: -1.976334 -0.348225 -0.348965 +Torque: 0.021020 0.022847 -0.021065 + +Polar angle tht: 1.4399; Azimuth angle phi: 0.3054 +Force: -2.022306 -0.437521 -0.345993 +Torque: 0.023862 0.026382 0.000260 + +Polar angle tht: 1.4399; Azimuth angle phi: 0.3491 +Force: -2.059007 -0.532543 -0.342523 +Torque: 0.026578 0.029753 0.020722 + +Polar angle tht: 1.4399; Azimuth angle phi: 0.3927 +Force: -2.086142 -0.632647 -0.338580 +Torque: 0.029165 0.032933 0.040178 + +Polar angle tht: 1.4399; Azimuth angle phi: 0.4363 +Force: -2.103488 -0.737148 -0.334191 +Torque: 0.031620 0.035896 0.058494 + +Polar angle tht: 1.4399; Azimuth angle phi: 0.4800 +Force: -2.110896 -0.845328 -0.329383 +Torque: 0.033939 0.038616 0.075546 + +Polar angle tht: 1.4399; Azimuth angle phi: 0.5236 +Force: -2.108289 -0.956437 -0.324188 +Torque: 0.036121 0.041071 0.091222 + +Polar angle tht: 1.4399; Azimuth angle phi: 0.5672 +Force: -2.095665 -1.069704 -0.318641 +Torque: 0.038165 0.043238 0.105421 + +Polar angle tht: 1.4399; Azimuth angle phi: 0.6109 +Force: -2.073098 -1.184337 -0.312775 +Torque: 0.040070 0.045100 0.118057 + +Polar angle tht: 1.4399; Azimuth angle phi: 0.6545 +Force: -2.040734 -1.299534 -0.306629 +Torque: 0.041836 0.046637 0.129054 + +Polar angle tht: 1.4399; Azimuth angle phi: 0.6981 +Force: -1.998792 -1.414484 -0.300241 +Torque: 0.043464 0.047836 0.138352 + +Polar angle tht: 1.4399; Azimuth angle phi: 0.7418 +Force: -1.947565 -1.528379 -0.293650 +Torque: 0.044955 0.048682 0.145906 + +Polar angle tht: 1.4399; Azimuth angle phi: 0.7854 +Force: -1.887412 -1.640413 -0.286896 +Torque: 0.046311 0.049167 0.151684 + +Polar angle tht: 1.4399; Azimuth angle phi: 0.8290 +Force: -1.818760 -1.749794 -0.280021 +Torque: 0.047534 0.049283 0.155668 + +Polar angle tht: 1.4399; Azimuth angle phi: 0.8727 +Force: -1.742099 -1.855748 -0.273065 +Torque: 0.048628 0.049024 0.157858 + +Polar angle tht: 1.4399; Azimuth angle phi: 0.9163 +Force: -1.657979 -1.957523 -0.266070 +Torque: 0.049595 0.048388 0.158265 + +Polar angle tht: 1.4399; Azimuth angle phi: 0.9599 +Force: -1.567005 -2.054396 -0.259075 +Torque: 0.050439 0.047376 0.156919 + +Polar angle tht: 1.4399; Azimuth angle phi: 1.0036 +Force: -1.469834 -2.145680 -0.252122 +Torque: 0.051164 0.045990 0.153860 + +Polar angle tht: 1.4399; Azimuth angle phi: 1.0472 +Force: -1.367167 -2.230727 -0.245249 +Torque: 0.051774 0.044236 0.149145 + +Polar angle tht: 1.4399; Azimuth angle phi: 1.0908 +Force: -1.259748 -2.308931 -0.238494 +Torque: 0.052274 0.042124 0.142843 + +Polar angle tht: 1.4399; Azimuth angle phi: 1.1345 +Force: -1.148355 -2.379738 -0.231894 +Torque: 0.052668 0.039663 0.135037 + +Polar angle tht: 1.4399; Azimuth angle phi: 1.1781 +Force: -1.033795 -2.442647 -0.225483 +Torque: 0.052961 0.036868 0.125822 + +Polar angle tht: 1.4399; Azimuth angle phi: 1.2217 +Force: -0.916899 -2.497211 -0.219294 +Torque: 0.053158 0.033754 0.115303 + +Polar angle tht: 1.4399; Azimuth angle phi: 1.2654 +Force: -0.798516 -2.543046 -0.213358 +Torque: 0.053264 0.030340 0.103598 + +Polar angle tht: 1.4399; Azimuth angle phi: 1.3090 +Force: -0.679503 -2.579829 -0.207704 +Torque: 0.053284 0.026646 0.090833 + +Polar angle tht: 1.4399; Azimuth angle phi: 1.3526 +Force: -0.560723 -2.607305 -0.202356 +Torque: 0.053222 0.022695 0.077143 + +Polar angle tht: 1.4399; Azimuth angle phi: 1.3963 +Force: -0.443037 -2.625283 -0.197339 +Torque: 0.053082 0.018512 0.062671 + +Polar angle tht: 1.4399; Azimuth angle phi: 1.4399 +Force: -0.327297 -2.633643 -0.192672 +Torque: 0.052871 0.014123 0.047565 + +Polar angle tht: 1.4399; Azimuth angle phi: 1.4835 +Force: -0.214338 -2.632335 -0.188373 +Torque: 0.052591 0.009555 0.031978 + +Polar angle tht: 1.4399; Azimuth angle phi: 1.5272 +Force: -0.104977 -2.621377 -0.184456 +Torque: 0.052247 0.004837 0.016070 + +Polar angle tht: 1.4399; Azimuth angle phi: 1.5708 +Force: 0.000000 -2.600857 -0.180932 +Torque: 0.051842 -0.000000 0.000000 + +Polar angle tht: 1.4399; Azimuth angle phi: 1.6144 +Force: 0.104977 -2.621377 -0.184456 +Torque: 0.052247 -0.004837 -0.016070 + +Polar angle tht: 1.4399; Azimuth angle phi: 1.6581 +Force: 0.214338 -2.632335 -0.188373 +Torque: 0.052591 -0.009555 -0.031978 + +Polar angle tht: 1.4399; Azimuth angle phi: 1.7017 +Force: 0.327297 -2.633643 -0.192672 +Torque: 0.052871 -0.014123 -0.047565 + +Polar angle tht: 1.4399; Azimuth angle phi: 1.7453 +Force: 0.443037 -2.625283 -0.197339 +Torque: 0.053082 -0.018512 -0.062671 + +Polar angle tht: 1.4399; Azimuth angle phi: 1.7890 +Force: 0.560723 -2.607305 -0.202356 +Torque: 0.053222 -0.022695 -0.077143 + +Polar angle tht: 1.4399; Azimuth angle phi: 1.8326 +Force: 0.679503 -2.579829 -0.207704 +Torque: 0.053284 -0.026646 -0.090833 + +Polar angle tht: 1.4399; Azimuth angle phi: 1.8762 +Force: 0.798516 -2.543046 -0.213358 +Torque: 0.053264 -0.030340 -0.103598 + +Polar angle tht: 1.4399; Azimuth angle phi: 1.9199 +Force: 0.916899 -2.497211 -0.219294 +Torque: 0.053158 -0.033754 -0.115303 + +Polar angle tht: 1.4399; Azimuth angle phi: 1.9635 +Force: 1.033795 -2.442647 -0.225483 +Torque: 0.052961 -0.036868 -0.125822 + +Polar angle tht: 1.4399; Azimuth angle phi: 2.0071 +Force: 1.148355 -2.379738 -0.231894 +Torque: 0.052668 -0.039663 -0.135037 + +Polar angle tht: 1.4399; Azimuth angle phi: 2.0508 +Force: 1.259748 -2.308931 -0.238494 +Torque: 0.052274 -0.042124 -0.142843 + +Polar angle tht: 1.4399; Azimuth angle phi: 2.0944 +Force: 1.367167 -2.230727 -0.245249 +Torque: 0.051774 -0.044236 -0.149145 + +Polar angle tht: 1.4399; Azimuth angle phi: 2.1380 +Force: 1.469834 -2.145680 -0.252122 +Torque: 0.051164 -0.045990 -0.153860 + +Polar angle tht: 1.4399; Azimuth angle phi: 2.1817 +Force: 1.567005 -2.054396 -0.259075 +Torque: 0.050439 -0.047376 -0.156919 + +Polar angle tht: 1.4399; Azimuth angle phi: 2.2253 +Force: 1.657979 -1.957523 -0.266070 +Torque: 0.049595 -0.048388 -0.158265 + +Polar angle tht: 1.4399; Azimuth angle phi: 2.2689 +Force: 1.742099 -1.855748 -0.273065 +Torque: 0.048628 -0.049024 -0.157858 + +Polar angle tht: 1.4399; Azimuth angle phi: 2.3126 +Force: 1.818760 -1.749794 -0.280021 +Torque: 0.047534 -0.049283 -0.155668 + +Polar angle tht: 1.4399; Azimuth angle phi: 2.3562 +Force: 1.887412 -1.640413 -0.286896 +Torque: 0.046311 -0.049167 -0.151684 + +Polar angle tht: 1.4399; Azimuth angle phi: 2.3998 +Force: 1.947565 -1.528379 -0.293650 +Torque: 0.044955 -0.048682 -0.145906 + +Polar angle tht: 1.4399; Azimuth angle phi: 2.4435 +Force: 1.998792 -1.414484 -0.300241 +Torque: 0.043464 -0.047836 -0.138352 + +Polar angle tht: 1.4399; Azimuth angle phi: 2.4871 +Force: 2.040734 -1.299534 -0.306629 +Torque: 0.041836 -0.046637 -0.129054 + +Polar angle tht: 1.4399; Azimuth angle phi: 2.5307 +Force: 2.073098 -1.184337 -0.312775 +Torque: 0.040070 -0.045100 -0.118057 + +Polar angle tht: 1.4399; Azimuth angle phi: 2.5744 +Force: 2.095665 -1.069704 -0.318641 +Torque: 0.038165 -0.043238 -0.105421 + +Polar angle tht: 1.4399; Azimuth angle phi: 2.6180 +Force: 2.108289 -0.956437 -0.324188 +Torque: 0.036121 -0.041071 -0.091222 + +Polar angle tht: 1.4399; Azimuth angle phi: 2.6616 +Force: 2.110896 -0.845328 -0.329383 +Torque: 0.033939 -0.038616 -0.075546 + +Polar angle tht: 1.4399; Azimuth angle phi: 2.7053 +Force: 2.103488 -0.737148 -0.334191 +Torque: 0.031620 -0.035896 -0.058494 + +Polar angle tht: 1.4399; Azimuth angle phi: 2.7489 +Force: 2.086142 -0.632647 -0.338580 +Torque: 0.029165 -0.032933 -0.040178 + +Polar angle tht: 1.4399; Azimuth angle phi: 2.7925 +Force: 2.059007 -0.532543 -0.342523 +Torque: 0.026578 -0.029753 -0.020722 + +Polar angle tht: 1.4399; Azimuth angle phi: 2.8362 +Force: 2.022306 -0.437521 -0.345993 +Torque: 0.023862 -0.026382 -0.000260 + +Polar angle tht: 1.4399; Azimuth angle phi: 2.8798 +Force: 1.976334 -0.348225 -0.348965 +Torque: 0.021020 -0.022847 0.021065 + +Polar angle tht: 1.4399; Azimuth angle phi: 2.9234 +Force: 1.921451 -0.265255 -0.351420 +Torque: 0.018059 -0.019176 0.043103 + +Polar angle tht: 1.4399; Azimuth angle phi: 2.9671 +Force: 1.858087 -0.189161 -0.353339 +Torque: 0.014982 -0.015400 0.065694 + +Polar angle tht: 1.4399; Azimuth angle phi: 3.0107 +Force: 1.786733 -0.120440 -0.354708 +Torque: 0.011796 -0.011548 0.088675 + +Polar angle tht: 1.4399; Azimuth angle phi: 3.0543 +Force: 1.758603 -0.072161 -0.355328 +Torque: 0.008116 -0.009728 0.078464 + +Polar angle tht: 1.4399; Azimuth angle phi: 3.0980 +Force: 1.767490 -0.036187 -0.355546 +Torque: 0.004063 -0.009689 0.039382 + +Polar angle tht: 1.4399; Azimuth angle phi: 3.1416 +Force: 1.770459 0.000000 -0.355618 +Torque: -0.000000 -0.009677 -0.000000 + +Polar angle tht: 1.4399; Azimuth angle phi: 3.1852 +Force: 1.767490 0.036187 -0.355546 +Torque: -0.004063 -0.009689 -0.039382 + +Polar angle tht: 1.4399; Azimuth angle phi: 3.2289 +Force: 1.758603 0.072161 -0.355328 +Torque: -0.008116 -0.009728 -0.078464 + +Polar angle tht: 1.4399; Azimuth angle phi: 3.2725 +Force: 1.786733 0.120440 -0.354708 +Torque: -0.011796 -0.011548 -0.088674 + +Polar angle tht: 1.4399; Azimuth angle phi: 3.3161 +Force: 1.858087 0.189161 -0.353339 +Torque: -0.014982 -0.015400 -0.065691 + +Polar angle tht: 1.4399; Azimuth angle phi: 3.3598 +Force: 1.921451 0.265255 -0.351420 +Torque: -0.018059 -0.019176 -0.043098 + +Polar angle tht: 1.4399; Azimuth angle phi: 3.4034 +Force: 1.976334 0.348225 -0.348965 +Torque: -0.021021 -0.022847 -0.021059 + +Polar angle tht: 1.4399; Azimuth angle phi: 3.4470 +Force: 2.022306 0.437521 -0.345993 +Torque: -0.023862 -0.026382 0.000268 + +Polar angle tht: 1.4399; Azimuth angle phi: 3.4907 +Force: 2.059007 0.532543 -0.342523 +Torque: -0.026579 -0.029753 0.020732 + +Polar angle tht: 1.4399; Azimuth angle phi: 3.5343 +Force: 2.086142 0.632647 -0.338580 +Torque: -0.029166 -0.032933 0.040189 + +Polar angle tht: 1.4399; Azimuth angle phi: 3.5779 +Force: 2.103488 0.737148 -0.334191 +Torque: -0.031620 -0.035896 0.058506 + +Polar angle tht: 1.4399; Azimuth angle phi: 3.6216 +Force: 2.110896 0.845328 -0.329383 +Torque: -0.033940 -0.038616 0.075559 + +Polar angle tht: 1.4399; Azimuth angle phi: 3.6652 +Force: 2.108289 0.956437 -0.324188 +Torque: -0.036122 -0.041071 0.091236 + +Polar angle tht: 1.4399; Azimuth angle phi: 3.7088 +Force: 2.095665 1.069704 -0.318641 +Torque: -0.038166 -0.043238 0.105437 + +Polar angle tht: 1.4399; Azimuth angle phi: 3.7525 +Force: 2.073098 1.184337 -0.312775 +Torque: -0.040070 -0.045100 0.118073 + +Polar angle tht: 1.4399; Azimuth angle phi: 3.7961 +Force: 2.040734 1.299534 -0.306629 +Torque: -0.041837 -0.046637 0.129071 + +Polar angle tht: 1.4399; Azimuth angle phi: 3.8397 +Force: 1.998792 1.414484 -0.300241 +Torque: -0.043464 -0.047836 0.138370 + +Polar angle tht: 1.4399; Azimuth angle phi: 3.8834 +Force: 1.947565 1.528379 -0.293650 +Torque: -0.044956 -0.048682 0.145924 + +Polar angle tht: 1.4399; Azimuth angle phi: 3.9270 +Force: 1.887412 1.640413 -0.286896 +Torque: -0.046312 -0.049167 0.151702 + +Polar angle tht: 1.4399; Azimuth angle phi: 3.9706 +Force: 1.818760 1.749794 -0.280021 +Torque: -0.047535 -0.049283 0.155686 + +Polar angle tht: 1.4399; Azimuth angle phi: 4.0143 +Force: 1.742099 1.855748 -0.273065 +Torque: -0.048629 -0.049024 0.157876 + +Polar angle tht: 1.4399; Azimuth angle phi: 4.0579 +Force: 1.657979 1.957523 -0.266070 +Torque: -0.049596 -0.048388 0.158283 + +Polar angle tht: 1.4399; Azimuth angle phi: 4.1015 +Force: 1.567005 2.054396 -0.259075 +Torque: -0.050440 -0.047376 0.156936 + +Polar angle tht: 1.4399; Azimuth angle phi: 4.1452 +Force: 1.469834 2.145680 -0.252122 +Torque: -0.051165 -0.045990 0.153877 + +Polar angle tht: 1.4399; Azimuth angle phi: 4.1888 +Force: 1.367167 2.230727 -0.245249 +Torque: -0.051775 -0.044236 0.149161 + +Polar angle tht: 1.4399; Azimuth angle phi: 4.2324 +Force: 1.259748 2.308931 -0.238494 +Torque: -0.052275 -0.042124 0.142858 + +Polar angle tht: 1.4399; Azimuth angle phi: 4.2761 +Force: 1.148355 2.379738 -0.231894 +Torque: -0.052669 -0.039663 0.135052 + +Polar angle tht: 1.4399; Azimuth angle phi: 4.3197 +Force: 1.033795 2.442647 -0.225483 +Torque: -0.052963 -0.036868 0.125835 + +Polar angle tht: 1.4399; Azimuth angle phi: 4.3633 +Force: 0.916899 2.497211 -0.219294 +Torque: -0.053160 -0.033754 0.115316 + +Polar angle tht: 1.4399; Azimuth angle phi: 4.4070 +Force: 0.798516 2.543046 -0.213358 +Torque: -0.053266 -0.030340 0.103609 + +Polar angle tht: 1.4399; Azimuth angle phi: 4.4506 +Force: 0.679503 2.579829 -0.207704 +Torque: -0.053286 -0.026646 0.090843 + +Polar angle tht: 1.4399; Azimuth angle phi: 4.4942 +Force: 0.560723 2.607305 -0.202356 +Torque: -0.053223 -0.022695 0.077152 + +Polar angle tht: 1.4399; Azimuth angle phi: 4.5379 +Force: 0.443037 2.625283 -0.197339 +Torque: -0.053084 -0.018512 0.062677 + +Polar angle tht: 1.4399; Azimuth angle phi: 4.5815 +Force: 0.327297 2.633643 -0.192672 +Torque: -0.052873 -0.014123 0.047570 + +Polar angle tht: 1.4399; Azimuth angle phi: 4.6251 +Force: 0.214338 2.632335 -0.188373 +Torque: -0.052593 -0.009555 0.031982 + +Polar angle tht: 1.4399; Azimuth angle phi: 4.6688 +Force: 0.104977 2.621377 -0.184456 +Torque: -0.052249 -0.004837 0.016072 + +Polar angle tht: 1.4399; Azimuth angle phi: 4.7124 +Force: 0.000000 2.600857 -0.180932 +Torque: -0.051844 -0.000000 -0.000000 + +Polar angle tht: 1.4399; Azimuth angle phi: 4.7560 +Force: -0.104977 2.621377 -0.184456 +Torque: -0.052249 0.004837 -0.016072 + +Polar angle tht: 1.4399; Azimuth angle phi: 4.7997 +Force: -0.214338 2.632335 -0.188373 +Torque: -0.052593 0.009555 -0.031982 + +Polar angle tht: 1.4399; Azimuth angle phi: 4.8433 +Force: -0.327297 2.633643 -0.192672 +Torque: -0.052873 0.014123 -0.047570 + +Polar angle tht: 1.4399; Azimuth angle phi: 4.8869 +Force: -0.443037 2.625283 -0.197339 +Torque: -0.053084 0.018512 -0.062677 + +Polar angle tht: 1.4399; Azimuth angle phi: 4.9306 +Force: -0.560723 2.607305 -0.202356 +Torque: -0.053223 0.022695 -0.077152 + +Polar angle tht: 1.4399; Azimuth angle phi: 4.9742 +Force: -0.679503 2.579829 -0.207704 +Torque: -0.053286 0.026646 -0.090843 + +Polar angle tht: 1.4399; Azimuth angle phi: 5.0178 +Force: -0.798516 2.543046 -0.213358 +Torque: -0.053266 0.030340 -0.103609 + +Polar angle tht: 1.4399; Azimuth angle phi: 5.0615 +Force: -0.916899 2.497211 -0.219294 +Torque: -0.053160 0.033754 -0.115316 + +Polar angle tht: 1.4399; Azimuth angle phi: 5.1051 +Force: -1.033795 2.442647 -0.225483 +Torque: -0.052963 0.036868 -0.125835 + +Polar angle tht: 1.4399; Azimuth angle phi: 5.1487 +Force: -1.148355 2.379738 -0.231894 +Torque: -0.052669 0.039663 -0.135052 + +Polar angle tht: 1.4399; Azimuth angle phi: 5.1924 +Force: -1.259748 2.308931 -0.238494 +Torque: -0.052275 0.042124 -0.142858 + +Polar angle tht: 1.4399; Azimuth angle phi: 5.2360 +Force: -1.367167 2.230727 -0.245249 +Torque: -0.051775 0.044236 -0.149161 + +Polar angle tht: 1.4399; Azimuth angle phi: 5.2796 +Force: -1.469834 2.145680 -0.252122 +Torque: -0.051165 0.045990 -0.153877 + +Polar angle tht: 1.4399; Azimuth angle phi: 5.3233 +Force: -1.567005 2.054396 -0.259075 +Torque: -0.050440 0.047376 -0.156936 + +Polar angle tht: 1.4399; Azimuth angle phi: 5.3669 +Force: -1.657979 1.957523 -0.266070 +Torque: -0.049596 0.048388 -0.158283 + +Polar angle tht: 1.4399; Azimuth angle phi: 5.4105 +Force: -1.742099 1.855748 -0.273065 +Torque: -0.048629 0.049024 -0.157876 + +Polar angle tht: 1.4399; Azimuth angle phi: 5.4542 +Force: -1.818760 1.749794 -0.280021 +Torque: -0.047535 0.049283 -0.155686 + +Polar angle tht: 1.4399; Azimuth angle phi: 5.4978 +Force: -1.887412 1.640413 -0.286896 +Torque: -0.046312 0.049167 -0.151702 + +Polar angle tht: 1.4399; Azimuth angle phi: 5.5414 +Force: -1.947565 1.528379 -0.293650 +Torque: -0.044956 0.048682 -0.145924 + +Polar angle tht: 1.4399; Azimuth angle phi: 5.5851 +Force: -1.998792 1.414484 -0.300241 +Torque: -0.043464 0.047836 -0.138370 + +Polar angle tht: 1.4399; Azimuth angle phi: 5.6287 +Force: -2.040734 1.299534 -0.306629 +Torque: -0.041837 0.046637 -0.129071 + +Polar angle tht: 1.4399; Azimuth angle phi: 5.6723 +Force: -2.073098 1.184337 -0.312775 +Torque: -0.040070 0.045100 -0.118073 + +Polar angle tht: 1.4399; Azimuth angle phi: 5.7160 +Force: -2.095665 1.069704 -0.318641 +Torque: -0.038166 0.043238 -0.105437 + +Polar angle tht: 1.4399; Azimuth angle phi: 5.7596 +Force: -2.108289 0.956437 -0.324188 +Torque: -0.036122 0.041071 -0.091236 + +Polar angle tht: 1.4399; Azimuth angle phi: 5.8032 +Force: -2.110896 0.845328 -0.329383 +Torque: -0.033940 0.038616 -0.075559 + +Polar angle tht: 1.4399; Azimuth angle phi: 5.8469 +Force: -2.103488 0.737148 -0.334191 +Torque: -0.031620 0.035896 -0.058506 + +Polar angle tht: 1.4399; Azimuth angle phi: 5.8905 +Force: -2.086142 0.632647 -0.338580 +Torque: -0.029166 0.032933 -0.040189 + +Polar angle tht: 1.4399; Azimuth angle phi: 5.9341 +Force: -2.059007 0.532543 -0.342523 +Torque: -0.026579 0.029753 -0.020732 + +Polar angle tht: 1.4399; Azimuth angle phi: 5.9778 +Force: -2.022306 0.437521 -0.345993 +Torque: -0.023862 0.026382 -0.000268 + +Polar angle tht: 1.4399; Azimuth angle phi: 6.0214 +Force: -1.976334 0.348225 -0.348965 +Torque: -0.021021 0.022847 0.021059 + +Polar angle tht: 1.4399; Azimuth angle phi: 6.0650 +Force: -1.921451 0.265255 -0.351420 +Torque: -0.018059 0.019176 0.043098 + +Polar angle tht: 1.4399; Azimuth angle phi: 6.1087 +Force: -1.858087 0.189161 -0.353339 +Torque: -0.014982 0.015400 0.065691 + +Polar angle tht: 1.4399; Azimuth angle phi: 6.1523 +Force: -1.786733 0.120440 -0.354708 +Torque: -0.011796 0.011548 0.088674 + +Polar angle tht: 1.4399; Azimuth angle phi: 6.1959 +Force: -1.758603 0.072161 -0.355328 +Torque: -0.008116 0.009728 0.078464 + +Polar angle tht: 1.4399; Azimuth angle phi: 6.2396 +Force: -1.767490 0.036187 -0.355546 +Torque: -0.004063 0.009689 0.039382 + +Polar angle tht: 1.4399; Azimuth angle phi: 6.2832 +Force: -1.770459 0.000000 -0.355618 +Torque: -0.000000 0.009677 0.000000 + +Polar angle tht: 1.4835; Azimuth angle phi: 0.0000 +Force: -1.701505 0.000000 -0.199146 +Torque: -0.000000 -0.002328 0.000000 + +Polar angle tht: 1.4835; Azimuth angle phi: 0.0436 +Force: -1.698589 -0.032820 -0.199097 +Torque: 0.002873 -0.002303 -0.039760 + +Polar angle tht: 1.4835; Azimuth angle phi: 0.0873 +Force: -1.719673 -0.072909 -0.197481 +Torque: 0.006401 -0.001008 -0.059559 + +Polar angle tht: 1.4835; Azimuth angle phi: 0.1309 +Force: -1.799246 -0.134593 -0.192287 +Torque: 0.011305 0.002969 -0.036389 + +Polar angle tht: 1.4835; Azimuth angle phi: 0.1745 +Force: -1.871317 -0.204166 -0.186602 +Torque: 0.016098 0.006916 -0.013544 + +Polar angle tht: 1.4835; Azimuth angle phi: 0.2182 +Force: -1.935329 -0.281182 -0.180445 +Torque: 0.020769 0.010803 0.008808 + +Polar angle tht: 1.4835; Azimuth angle phi: 0.2618 +Force: -1.990787 -0.365138 -0.173838 +Torque: 0.025308 0.014599 0.030502 + +Polar angle tht: 1.4835; Azimuth angle phi: 0.3054 +Force: -2.037258 -0.455479 -0.166806 +Torque: 0.029709 0.018275 0.051378 + +Polar angle tht: 1.4835; Azimuth angle phi: 0.3491 +Force: -2.074377 -0.551597 -0.159379 +Torque: 0.033961 0.021802 0.071285 + +Polar angle tht: 1.4835; Azimuth angle phi: 0.3927 +Force: -2.101847 -0.652844 -0.151588 +Torque: 0.038060 0.025151 0.090080 + +Polar angle tht: 1.4835; Azimuth angle phi: 0.4363 +Force: -2.119443 -0.758527 -0.143467 +Torque: 0.041998 0.028296 0.107630 + +Polar angle tht: 1.4835; Azimuth angle phi: 0.4800 +Force: -2.127012 -0.867920 -0.135051 +Torque: 0.045770 0.031212 0.123811 + +Polar angle tht: 1.4835; Azimuth angle phi: 0.5236 +Force: -2.124478 -0.980267 -0.126380 +Torque: 0.049372 0.033874 0.138513 + +Polar angle tht: 1.4835; Azimuth angle phi: 0.5672 +Force: -2.111839 -1.094787 -0.117493 +Torque: 0.052799 0.036261 0.151636 + +Polar angle tht: 1.4835; Azimuth angle phi: 0.6109 +Force: -2.089169 -1.210683 -0.108434 +Torque: 0.056048 0.038353 0.163093 + +Polar angle tht: 1.4835; Azimuth angle phi: 0.6545 +Force: -2.056615 -1.327143 -0.099244 +Torque: 0.059117 0.040131 0.172814 + +Polar angle tht: 1.4835; Azimuth angle phi: 0.6981 +Force: -2.014398 -1.443349 -0.089969 +Torque: 0.062005 0.041580 0.180738 + +Polar angle tht: 1.4835; Azimuth angle phi: 0.7418 +Force: -1.962814 -1.558484 -0.080654 +Torque: 0.064709 0.042688 0.186822 + +Polar angle tht: 1.4835; Azimuth angle phi: 0.7854 +Force: -1.902224 -1.671734 -0.071344 +Torque: 0.067231 0.043442 0.191038 + +Polar angle tht: 1.4835; Azimuth angle phi: 0.8290 +Force: -1.833061 -1.782301 -0.062086 +Torque: 0.069569 0.043835 0.193372 + +Polar angle tht: 1.4835; Azimuth angle phi: 0.8727 +Force: -1.755817 -1.889400 -0.052926 +Torque: 0.071724 0.043861 0.193824 + +Polar angle tht: 1.4835; Azimuth angle phi: 0.9163 +Force: -1.671049 -1.992274 -0.043908 +Torque: 0.073699 0.043517 0.192412 + +Polar angle tht: 1.4835; Azimuth angle phi: 0.9599 +Force: -1.579367 -2.090193 -0.035078 +Torque: 0.075494 0.042803 0.189167 + +Polar angle tht: 1.4835; Azimuth angle phi: 1.0036 +Force: -1.481432 -2.182462 -0.026480 +Torque: 0.077112 0.041722 0.184134 + +Polar angle tht: 1.4835; Azimuth angle phi: 1.0472 +Force: -1.377954 -2.268426 -0.018155 +Torque: 0.078556 0.040279 0.177375 + +Polar angle tht: 1.4835; Azimuth angle phi: 1.0908 +Force: -1.269683 -2.347475 -0.010145 +Torque: 0.079828 0.038481 0.168962 + +Polar angle tht: 1.4835; Azimuth angle phi: 1.1345 +Force: -1.157403 -2.419048 -0.002489 +Torque: 0.080931 0.036340 0.158984 + +Polar angle tht: 1.4835; Azimuth angle phi: 1.1781 +Force: -1.041930 -2.482639 0.004776 +Torque: 0.081870 0.033867 0.147540 + +Polar angle tht: 1.4835; Azimuth angle phi: 1.2217 +Force: -0.924102 -2.537798 0.011615 +Torque: 0.082647 0.031080 0.134741 + +Polar angle tht: 1.4835; Azimuth angle phi: 1.2654 +Force: -0.804775 -2.584136 0.017997 +Torque: 0.083267 0.027995 0.120710 + +Polar angle tht: 1.4835; Azimuth angle phi: 1.3090 +Force: -0.684816 -2.621327 0.023892 +Torque: 0.083733 0.024633 0.105577 + +Polar angle tht: 1.4835; Azimuth angle phi: 1.3526 +Force: -0.565094 -2.649112 0.029273 +Torque: 0.084049 0.021016 0.089485 + +Polar angle tht: 1.4835; Azimuth angle phi: 1.3963 +Force: -0.446478 -2.667301 0.034117 +Torque: 0.084220 0.017168 0.072580 + +Polar angle tht: 1.4835; Azimuth angle phi: 1.4399 +Force: -0.329828 -2.675771 0.038404 +Torque: 0.084249 0.013114 0.055017 + +Polar angle tht: 1.4835; Azimuth angle phi: 1.4835 +Force: -0.215988 -2.674472 0.042119 +Torque: 0.084140 0.008882 0.036957 + +Polar angle tht: 1.4835; Azimuth angle phi: 1.5272 +Force: -0.105781 -2.663421 0.045246 +Torque: 0.083897 0.004501 0.018562 + +Polar angle tht: 1.4835; Azimuth angle phi: 1.5708 +Force: 0.000000 -2.642709 0.047777 +Torque: 0.083523 -0.000000 0.000000 + +Polar angle tht: 1.4835; Azimuth angle phi: 1.6144 +Force: 0.105781 -2.663421 0.045246 +Torque: 0.083897 -0.004501 -0.018562 + +Polar angle tht: 1.4835; Azimuth angle phi: 1.6581 +Force: 0.215988 -2.674472 0.042119 +Torque: 0.084140 -0.008882 -0.036957 + +Polar angle tht: 1.4835; Azimuth angle phi: 1.7017 +Force: 0.329828 -2.675771 0.038404 +Torque: 0.084249 -0.013114 -0.055017 + +Polar angle tht: 1.4835; Azimuth angle phi: 1.7453 +Force: 0.446478 -2.667301 0.034117 +Torque: 0.084220 -0.017168 -0.072580 + +Polar angle tht: 1.4835; Azimuth angle phi: 1.7890 +Force: 0.565094 -2.649112 0.029273 +Torque: 0.084049 -0.021016 -0.089485 + +Polar angle tht: 1.4835; Azimuth angle phi: 1.8326 +Force: 0.684816 -2.621327 0.023892 +Torque: 0.083733 -0.024633 -0.105577 + +Polar angle tht: 1.4835; Azimuth angle phi: 1.8762 +Force: 0.804775 -2.584136 0.017997 +Torque: 0.083267 -0.027995 -0.120710 + +Polar angle tht: 1.4835; Azimuth angle phi: 1.9199 +Force: 0.924102 -2.537798 0.011615 +Torque: 0.082647 -0.031080 -0.134741 + +Polar angle tht: 1.4835; Azimuth angle phi: 1.9635 +Force: 1.041930 -2.482639 0.004776 +Torque: 0.081870 -0.033867 -0.147540 + +Polar angle tht: 1.4835; Azimuth angle phi: 2.0071 +Force: 1.157403 -2.419048 -0.002489 +Torque: 0.080931 -0.036340 -0.158984 + +Polar angle tht: 1.4835; Azimuth angle phi: 2.0508 +Force: 1.269683 -2.347475 -0.010145 +Torque: 0.079828 -0.038481 -0.168962 + +Polar angle tht: 1.4835; Azimuth angle phi: 2.0944 +Force: 1.377954 -2.268426 -0.018155 +Torque: 0.078556 -0.040279 -0.177375 + +Polar angle tht: 1.4835; Azimuth angle phi: 2.1380 +Force: 1.481432 -2.182462 -0.026480 +Torque: 0.077112 -0.041722 -0.184134 + +Polar angle tht: 1.4835; Azimuth angle phi: 2.1817 +Force: 1.579367 -2.090193 -0.035078 +Torque: 0.075494 -0.042803 -0.189167 + +Polar angle tht: 1.4835; Azimuth angle phi: 2.2253 +Force: 1.671049 -1.992274 -0.043908 +Torque: 0.073699 -0.043517 -0.192412 + +Polar angle tht: 1.4835; Azimuth angle phi: 2.2689 +Force: 1.755817 -1.889400 -0.052926 +Torque: 0.071724 -0.043861 -0.193824 + +Polar angle tht: 1.4835; Azimuth angle phi: 2.3126 +Force: 1.833061 -1.782301 -0.062086 +Torque: 0.069569 -0.043835 -0.193372 + +Polar angle tht: 1.4835; Azimuth angle phi: 2.3562 +Force: 1.902224 -1.671734 -0.071344 +Torque: 0.067231 -0.043442 -0.191038 + +Polar angle tht: 1.4835; Azimuth angle phi: 2.3998 +Force: 1.962814 -1.558484 -0.080654 +Torque: 0.064709 -0.042688 -0.186822 + +Polar angle tht: 1.4835; Azimuth angle phi: 2.4435 +Force: 2.014398 -1.443349 -0.089969 +Torque: 0.062005 -0.041580 -0.180738 + +Polar angle tht: 1.4835; Azimuth angle phi: 2.4871 +Force: 2.056615 -1.327143 -0.099244 +Torque: 0.059117 -0.040131 -0.172814 + +Polar angle tht: 1.4835; Azimuth angle phi: 2.5307 +Force: 2.089169 -1.210683 -0.108434 +Torque: 0.056048 -0.038353 -0.163093 + +Polar angle tht: 1.4835; Azimuth angle phi: 2.5744 +Force: 2.111839 -1.094787 -0.117493 +Torque: 0.052799 -0.036261 -0.151636 + +Polar angle tht: 1.4835; Azimuth angle phi: 2.6180 +Force: 2.124478 -0.980267 -0.126380 +Torque: 0.049372 -0.033874 -0.138513 + +Polar angle tht: 1.4835; Azimuth angle phi: 2.6616 +Force: 2.127012 -0.867920 -0.135051 +Torque: 0.045770 -0.031212 -0.123811 + +Polar angle tht: 1.4835; Azimuth angle phi: 2.7053 +Force: 2.119443 -0.758527 -0.143467 +Torque: 0.041998 -0.028296 -0.107630 + +Polar angle tht: 1.4835; Azimuth angle phi: 2.7489 +Force: 2.101847 -0.652844 -0.151588 +Torque: 0.038060 -0.025151 -0.090080 + +Polar angle tht: 1.4835; Azimuth angle phi: 2.7925 +Force: 2.074377 -0.551597 -0.159379 +Torque: 0.033961 -0.021802 -0.071285 + +Polar angle tht: 1.4835; Azimuth angle phi: 2.8362 +Force: 2.037258 -0.455479 -0.166806 +Torque: 0.029709 -0.018275 -0.051378 + +Polar angle tht: 1.4835; Azimuth angle phi: 2.8798 +Force: 1.990787 -0.365138 -0.173838 +Torque: 0.025308 -0.014599 -0.030502 + +Polar angle tht: 1.4835; Azimuth angle phi: 2.9234 +Force: 1.935329 -0.281182 -0.180445 +Torque: 0.020769 -0.010803 -0.008808 + +Polar angle tht: 1.4835; Azimuth angle phi: 2.9671 +Force: 1.871317 -0.204166 -0.186602 +Torque: 0.016098 -0.006916 0.013544 + +Polar angle tht: 1.4835; Azimuth angle phi: 3.0107 +Force: 1.799246 -0.134593 -0.192287 +Torque: 0.011305 -0.002969 0.036389 + +Polar angle tht: 1.4835; Azimuth angle phi: 3.0543 +Force: 1.719673 -0.072909 -0.197481 +Torque: 0.006401 0.001008 0.059559 + +Polar angle tht: 1.4835; Azimuth angle phi: 3.0980 +Force: 1.698589 -0.032820 -0.199097 +Torque: 0.002873 0.002303 0.039760 + +Polar angle tht: 1.4835; Azimuth angle phi: 3.1416 +Force: 1.701505 0.000000 -0.199146 +Torque: -0.000000 0.002328 -0.000000 + +Polar angle tht: 1.4835; Azimuth angle phi: 3.1852 +Force: 1.698589 0.032820 -0.199097 +Torque: -0.002873 0.002303 -0.039760 + +Polar angle tht: 1.4835; Azimuth angle phi: 3.2289 +Force: 1.719673 0.072909 -0.197481 +Torque: -0.006401 0.001008 -0.059558 + +Polar angle tht: 1.4835; Azimuth angle phi: 3.2725 +Force: 1.799246 0.134593 -0.192287 +Torque: -0.011305 -0.002969 -0.036387 + +Polar angle tht: 1.4835; Azimuth angle phi: 3.3161 +Force: 1.871317 0.204166 -0.186602 +Torque: -0.016098 -0.006916 -0.013539 + +Polar angle tht: 1.4835; Azimuth angle phi: 3.3598 +Force: 1.935329 0.281182 -0.180445 +Torque: -0.020769 -0.010803 0.008815 + +Polar angle tht: 1.4835; Azimuth angle phi: 3.4034 +Force: 1.990787 0.365138 -0.173838 +Torque: -0.025309 -0.014599 0.030510 + +Polar angle tht: 1.4835; Azimuth angle phi: 3.4470 +Force: 2.037258 0.455479 -0.166806 +Torque: -0.029709 -0.018275 0.051387 + +Polar angle tht: 1.4835; Azimuth angle phi: 3.4907 +Force: 2.074377 0.551597 -0.159379 +Torque: -0.033962 -0.021802 0.071296 + +Polar angle tht: 1.4835; Azimuth angle phi: 3.5343 +Force: 2.101847 0.652844 -0.151588 +Torque: -0.038061 -0.025151 0.090092 + +Polar angle tht: 1.4835; Azimuth angle phi: 3.5779 +Force: 2.119443 0.758527 -0.143467 +Torque: -0.041999 -0.028296 0.107644 + +Polar angle tht: 1.4835; Azimuth angle phi: 3.6216 +Force: 2.127012 0.867920 -0.135051 +Torque: -0.045771 -0.031212 0.123826 + +Polar angle tht: 1.4835; Azimuth angle phi: 3.6652 +Force: 2.124478 0.980267 -0.126380 +Torque: -0.049373 -0.033874 0.138529 + +Polar angle tht: 1.4835; Azimuth angle phi: 3.7088 +Force: 2.111839 1.094787 -0.117493 +Torque: -0.052800 -0.036261 0.151653 + +Polar angle tht: 1.4835; Azimuth angle phi: 3.7525 +Force: 2.089169 1.210683 -0.108434 +Torque: -0.056050 -0.038353 0.163111 + +Polar angle tht: 1.4835; Azimuth angle phi: 3.7961 +Force: 2.056615 1.327143 -0.099244 +Torque: -0.059119 -0.040131 0.172832 + +Polar angle tht: 1.4835; Azimuth angle phi: 3.8397 +Force: 2.014398 1.443349 -0.089969 +Torque: -0.062007 -0.041580 0.180757 + +Polar angle tht: 1.4835; Azimuth angle phi: 3.8834 +Force: 1.962814 1.558484 -0.080654 +Torque: -0.064711 -0.042688 0.186842 + +Polar angle tht: 1.4835; Azimuth angle phi: 3.9270 +Force: 1.902224 1.671734 -0.071344 +Torque: -0.067233 -0.043442 0.191058 + +Polar angle tht: 1.4835; Azimuth angle phi: 3.9706 +Force: 1.833061 1.782301 -0.062086 +Torque: -0.069571 -0.043835 0.193391 + +Polar angle tht: 1.4835; Azimuth angle phi: 4.0143 +Force: 1.755817 1.889400 -0.052926 +Torque: -0.071727 -0.043861 0.193844 + +Polar angle tht: 1.4835; Azimuth angle phi: 4.0579 +Force: 1.671049 1.992274 -0.043908 +Torque: -0.073702 -0.043517 0.192431 + +Polar angle tht: 1.4835; Azimuth angle phi: 4.1015 +Force: 1.579367 2.090193 -0.035078 +Torque: -0.075497 -0.042803 0.189186 + +Polar angle tht: 1.4835; Azimuth angle phi: 4.1452 +Force: 1.481432 2.182462 -0.026480 +Torque: -0.077115 -0.041722 0.184153 + +Polar angle tht: 1.4835; Azimuth angle phi: 4.1888 +Force: 1.377954 2.268426 -0.018155 +Torque: -0.078559 -0.040279 0.177392 + +Polar angle tht: 1.4835; Azimuth angle phi: 4.2324 +Force: 1.269683 2.347475 -0.010145 +Torque: -0.079831 -0.038481 0.168979 + +Polar angle tht: 1.4835; Azimuth angle phi: 4.2761 +Force: 1.157403 2.419048 -0.002489 +Torque: -0.080935 -0.036340 0.159000 + +Polar angle tht: 1.4835; Azimuth angle phi: 4.3197 +Force: 1.041930 2.482639 0.004776 +Torque: -0.081873 -0.033867 0.147555 + +Polar angle tht: 1.4835; Azimuth angle phi: 4.3633 +Force: 0.924102 2.537798 0.011615 +Torque: -0.082651 -0.031080 0.134754 + +Polar angle tht: 1.4835; Azimuth angle phi: 4.4070 +Force: 0.804775 2.584136 0.017997 +Torque: -0.083270 -0.027995 0.120721 + +Polar angle tht: 1.4835; Azimuth angle phi: 4.4506 +Force: 0.684816 2.621327 0.023892 +Torque: -0.083736 -0.024633 0.105587 + +Polar angle tht: 1.4835; Azimuth angle phi: 4.4942 +Force: 0.565094 2.649112 0.029273 +Torque: -0.084053 -0.021016 0.089493 + +Polar angle tht: 1.4835; Azimuth angle phi: 4.5379 +Force: 0.446478 2.667301 0.034117 +Torque: -0.084224 -0.017168 0.072586 + +Polar angle tht: 1.4835; Azimuth angle phi: 4.5815 +Force: 0.329828 2.675771 0.038404 +Torque: -0.084253 -0.013114 0.055022 + +Polar angle tht: 1.4835; Azimuth angle phi: 4.6251 +Force: 0.215988 2.674472 0.042119 +Torque: -0.084144 -0.008882 0.036960 + +Polar angle tht: 1.4835; Azimuth angle phi: 4.6688 +Force: 0.105781 2.663421 0.045246 +Torque: -0.083900 -0.004501 0.018564 + +Polar angle tht: 1.4835; Azimuth angle phi: 4.7124 +Force: 0.000000 2.642709 0.047777 +Torque: -0.083527 -0.000000 -0.000000 + +Polar angle tht: 1.4835; Azimuth angle phi: 4.7560 +Force: -0.105781 2.663421 0.045246 +Torque: -0.083900 0.004501 -0.018564 + +Polar angle tht: 1.4835; Azimuth angle phi: 4.7997 +Force: -0.215988 2.674472 0.042119 +Torque: -0.084144 0.008882 -0.036960 + +Polar angle tht: 1.4835; Azimuth angle phi: 4.8433 +Force: -0.329828 2.675771 0.038404 +Torque: -0.084253 0.013114 -0.055022 + +Polar angle tht: 1.4835; Azimuth angle phi: 4.8869 +Force: -0.446478 2.667301 0.034117 +Torque: -0.084224 0.017168 -0.072586 + +Polar angle tht: 1.4835; Azimuth angle phi: 4.9306 +Force: -0.565094 2.649112 0.029273 +Torque: -0.084053 0.021016 -0.089493 + +Polar angle tht: 1.4835; Azimuth angle phi: 4.9742 +Force: -0.684816 2.621327 0.023892 +Torque: -0.083736 0.024633 -0.105587 + +Polar angle tht: 1.4835; Azimuth angle phi: 5.0178 +Force: -0.804775 2.584136 0.017997 +Torque: -0.083270 0.027995 -0.120721 + +Polar angle tht: 1.4835; Azimuth angle phi: 5.0615 +Force: -0.924102 2.537798 0.011615 +Torque: -0.082651 0.031080 -0.134754 + +Polar angle tht: 1.4835; Azimuth angle phi: 5.1051 +Force: -1.041930 2.482639 0.004776 +Torque: -0.081873 0.033867 -0.147555 + +Polar angle tht: 1.4835; Azimuth angle phi: 5.1487 +Force: -1.157403 2.419048 -0.002489 +Torque: -0.080935 0.036340 -0.159000 + +Polar angle tht: 1.4835; Azimuth angle phi: 5.1924 +Force: -1.269683 2.347475 -0.010145 +Torque: -0.079831 0.038481 -0.168979 + +Polar angle tht: 1.4835; Azimuth angle phi: 5.2360 +Force: -1.377954 2.268426 -0.018155 +Torque: -0.078559 0.040279 -0.177392 + +Polar angle tht: 1.4835; Azimuth angle phi: 5.2796 +Force: -1.481432 2.182462 -0.026480 +Torque: -0.077115 0.041722 -0.184153 + +Polar angle tht: 1.4835; Azimuth angle phi: 5.3233 +Force: -1.579367 2.090193 -0.035078 +Torque: -0.075497 0.042803 -0.189186 + +Polar angle tht: 1.4835; Azimuth angle phi: 5.3669 +Force: -1.671049 1.992274 -0.043908 +Torque: -0.073702 0.043517 -0.192431 + +Polar angle tht: 1.4835; Azimuth angle phi: 5.4105 +Force: -1.755817 1.889400 -0.052926 +Torque: -0.071727 0.043861 -0.193844 + +Polar angle tht: 1.4835; Azimuth angle phi: 5.4542 +Force: -1.833061 1.782301 -0.062086 +Torque: -0.069571 0.043835 -0.193391 + +Polar angle tht: 1.4835; Azimuth angle phi: 5.4978 +Force: -1.902224 1.671734 -0.071344 +Torque: -0.067233 0.043442 -0.191058 + +Polar angle tht: 1.4835; Azimuth angle phi: 5.5414 +Force: -1.962814 1.558484 -0.080654 +Torque: -0.064711 0.042688 -0.186842 + +Polar angle tht: 1.4835; Azimuth angle phi: 5.5851 +Force: -2.014398 1.443349 -0.089969 +Torque: -0.062007 0.041580 -0.180757 + +Polar angle tht: 1.4835; Azimuth angle phi: 5.6287 +Force: -2.056615 1.327143 -0.099244 +Torque: -0.059119 0.040131 -0.172832 + +Polar angle tht: 1.4835; Azimuth angle phi: 5.6723 +Force: -2.089169 1.210683 -0.108434 +Torque: -0.056050 0.038353 -0.163111 + +Polar angle tht: 1.4835; Azimuth angle phi: 5.7160 +Force: -2.111839 1.094787 -0.117493 +Torque: -0.052800 0.036261 -0.151653 + +Polar angle tht: 1.4835; Azimuth angle phi: 5.7596 +Force: -2.124478 0.980267 -0.126380 +Torque: -0.049373 0.033874 -0.138529 + +Polar angle tht: 1.4835; Azimuth angle phi: 5.8032 +Force: -2.127012 0.867920 -0.135051 +Torque: -0.045771 0.031212 -0.123826 + +Polar angle tht: 1.4835; Azimuth angle phi: 5.8469 +Force: -2.119443 0.758527 -0.143467 +Torque: -0.041999 0.028296 -0.107644 + +Polar angle tht: 1.4835; Azimuth angle phi: 5.8905 +Force: -2.101847 0.652844 -0.151588 +Torque: -0.038061 0.025151 -0.090092 + +Polar angle tht: 1.4835; Azimuth angle phi: 5.9341 +Force: -2.074377 0.551597 -0.159379 +Torque: -0.033962 0.021802 -0.071296 + +Polar angle tht: 1.4835; Azimuth angle phi: 5.9778 +Force: -2.037258 0.455479 -0.166806 +Torque: -0.029709 0.018275 -0.051387 + +Polar angle tht: 1.4835; Azimuth angle phi: 6.0214 +Force: -1.990787 0.365138 -0.173838 +Torque: -0.025309 0.014599 -0.030510 + +Polar angle tht: 1.4835; Azimuth angle phi: 6.0650 +Force: -1.935329 0.281182 -0.180445 +Torque: -0.020769 0.010803 -0.008815 + +Polar angle tht: 1.4835; Azimuth angle phi: 6.1087 +Force: -1.871317 0.204166 -0.186602 +Torque: -0.016098 0.006916 0.013539 + +Polar angle tht: 1.4835; Azimuth angle phi: 6.1523 +Force: -1.799246 0.134593 -0.192287 +Torque: -0.011305 0.002969 0.036387 + +Polar angle tht: 1.4835; Azimuth angle phi: 6.1959 +Force: -1.719673 0.072909 -0.197481 +Torque: -0.006401 -0.001008 0.059558 + +Polar angle tht: 1.4835; Azimuth angle phi: 6.2396 +Force: -1.698589 0.032820 -0.199097 +Torque: -0.002873 -0.002303 0.039760 + +Polar angle tht: 1.4835; Azimuth angle phi: 6.2832 +Force: -1.701505 0.000000 -0.199146 +Torque: -0.000000 -0.002328 0.000000 + +Polar angle tht: 1.5272; Azimuth angle phi: 0.0000 +Force: -1.625796 0.000000 -0.080372 +Torque: -0.000000 -0.014421 0.000000 + +Polar angle tht: 1.5272; Azimuth angle phi: 0.0436 +Force: -1.638224 -0.032443 -0.078937 +Torque: 0.002464 -0.013758 -0.029912 + +Polar angle tht: 1.5272; Azimuth angle phi: 0.0873 +Force: -1.725199 -0.086385 -0.069765 +Torque: 0.009102 -0.009735 -0.006611 + +Polar angle tht: 1.5272; Azimuth angle phi: 0.1309 +Force: -1.805250 -0.148646 -0.060149 +Torque: 0.015632 -0.005693 0.016437 + +Polar angle tht: 1.5272; Azimuth angle phi: 0.1745 +Force: -1.877763 -0.218839 -0.050113 +Torque: 0.022041 -0.001665 0.039059 + +Polar angle tht: 1.5272; Azimuth angle phi: 0.2182 +Force: -1.942179 -0.296516 -0.039684 +Torque: 0.028314 0.002318 0.061084 + +Polar angle tht: 1.5272; Azimuth angle phi: 0.2618 +Force: -1.998001 -0.381171 -0.028894 +Torque: 0.034441 0.006227 0.082347 + +Polar angle tht: 1.5272; Azimuth angle phi: 0.3054 +Force: -2.044792 -0.472244 -0.017776 +Torque: 0.040410 0.010031 0.102689 + +Polar angle tht: 1.5272; Azimuth angle phi: 0.3491 +Force: -2.082185 -0.569126 -0.006366 +Torque: 0.046209 0.013701 0.121961 + +Polar angle tht: 1.5272; Azimuth angle phi: 0.3927 +Force: -2.109881 -0.671161 0.005296 +Torque: 0.051829 0.017208 0.140018 + +Polar angle tht: 1.5272; Azimuth angle phi: 0.4363 +Force: -2.127654 -0.777655 0.017170 +Torque: 0.057260 0.020525 0.156728 + +Polar angle tht: 1.5272; Azimuth angle phi: 0.4800 +Force: -2.135351 -0.887876 0.029211 +Torque: 0.062496 0.023626 0.171970 + +Polar angle tht: 1.5272; Azimuth angle phi: 0.5236 +Force: -2.132894 -1.001064 0.041374 +Torque: 0.067527 0.026487 0.185634 + +Polar angle tht: 1.5272; Azimuth angle phi: 0.5672 +Force: -2.120281 -1.116433 0.053611 +Torque: 0.072347 0.029086 0.197621 + +Polar angle tht: 1.5272; Azimuth angle phi: 0.6109 +Force: -2.097586 -1.233179 0.065876 +Torque: 0.076952 0.031402 0.207848 + +Polar angle tht: 1.5272; Azimuth angle phi: 0.6545 +Force: -2.064958 -1.350488 0.078117 +Torque: 0.081335 0.033416 0.216244 + +Polar angle tht: 1.5272; Azimuth angle phi: 0.6981 +Force: -2.022618 -1.467535 0.090284 +Torque: 0.085492 0.035113 0.222753 + +Polar angle tht: 1.5272; Azimuth angle phi: 0.7418 +Force: -1.970863 -1.583498 0.102327 +Torque: 0.089421 0.036478 0.227333 + +Polar angle tht: 1.5272; Azimuth angle phi: 0.7854 +Force: -1.910057 -1.697560 0.114194 +Torque: 0.093117 0.037501 0.229959 + +Polar angle tht: 1.5272; Azimuth angle phi: 0.8290 +Force: -1.840634 -1.808915 0.125835 +Torque: 0.096580 0.038172 0.230620 + +Polar angle tht: 1.5272; Azimuth angle phi: 0.8727 +Force: -1.763091 -1.916776 0.137198 +Torque: 0.099808 0.038485 0.229321 + +Polar angle tht: 1.5272; Azimuth angle phi: 0.9163 +Force: -1.677984 -2.020381 0.148234 +Torque: 0.102800 0.038437 0.226080 + +Polar angle tht: 1.5272; Azimuth angle phi: 0.9599 +Force: -1.585929 -2.118994 0.158895 +Torque: 0.105556 0.038028 0.220934 + +Polar angle tht: 1.5272; Azimuth angle phi: 1.0036 +Force: -1.487591 -2.211916 0.169132 +Torque: 0.108076 0.037258 0.213932 + +Polar angle tht: 1.5272; Azimuth angle phi: 1.0472 +Force: -1.383681 -2.298489 0.178900 +Torque: 0.110362 0.036133 0.205139 + +Polar angle tht: 1.5272; Azimuth angle phi: 1.0908 +Force: -1.274955 -2.378099 0.188156 +Torque: 0.112414 0.034660 0.194632 + +Polar angle tht: 1.5272; Azimuth angle phi: 1.1345 +Force: -1.162202 -2.450182 0.196857 +Torque: 0.114234 0.032848 0.182504 + +Polar angle tht: 1.5272; Azimuth angle phi: 1.1781 +Force: -1.046241 -2.514228 0.204964 +Torque: 0.115826 0.030712 0.168858 + +Polar angle tht: 1.5272; Azimuth angle phi: 1.2217 +Force: -0.927914 -2.569784 0.212442 +Torque: 0.117190 0.028264 0.153810 + +Polar angle tht: 1.5272; Azimuth angle phi: 1.2654 +Force: -0.808083 -2.616459 0.219256 +Torque: 0.118329 0.025524 0.137488 + +Polar angle tht: 1.5272; Azimuth angle phi: 1.3090 +Force: -0.687617 -2.653926 0.225377 +Torque: 0.119248 0.022509 0.120028 + +Polar angle tht: 1.5272; Azimuth angle phi: 1.3526 +Force: -0.567393 -2.681924 0.230777 +Torque: 0.119948 0.019242 0.101576 + +Polar angle tht: 1.5272; Azimuth angle phi: 1.3963 +Force: -0.448283 -2.700261 0.235433 +Torque: 0.120433 0.015746 0.082285 + +Polar angle tht: 1.5272; Azimuth angle phi: 1.4399 +Force: -0.331152 -2.708814 0.239326 +Torque: 0.120707 0.012047 0.062315 + +Polar angle tht: 1.5272; Azimuth angle phi: 1.4835 +Force: -0.216848 -2.707531 0.242439 +Torque: 0.120772 0.008170 0.041831 + +Polar angle tht: 1.5272; Azimuth angle phi: 1.5272 +Force: -0.106197 -2.696432 0.244760 +Torque: 0.120633 0.004145 0.021002 + +Polar angle tht: 1.5272; Azimuth angle phi: 1.5708 +Force: 0.000000 -2.675606 0.246281 +Torque: 0.120292 0.000000 0.000000 + +Polar angle tht: 1.5272; Azimuth angle phi: 1.6144 +Force: 0.106197 -2.696432 0.244760 +Torque: 0.120633 -0.004145 -0.021002 + +Polar angle tht: 1.5272; Azimuth angle phi: 1.6581 +Force: 0.216848 -2.707531 0.242439 +Torque: 0.120772 -0.008170 -0.041831 + +Polar angle tht: 1.5272; Azimuth angle phi: 1.7017 +Force: 0.331152 -2.708814 0.239326 +Torque: 0.120707 -0.012047 -0.062315 + +Polar angle tht: 1.5272; Azimuth angle phi: 1.7453 +Force: 0.448283 -2.700261 0.235433 +Torque: 0.120433 -0.015746 -0.082285 + +Polar angle tht: 1.5272; Azimuth angle phi: 1.7890 +Force: 0.567393 -2.681924 0.230777 +Torque: 0.119948 -0.019242 -0.101576 + +Polar angle tht: 1.5272; Azimuth angle phi: 1.8326 +Force: 0.687617 -2.653926 0.225377 +Torque: 0.119248 -0.022509 -0.120028 + +Polar angle tht: 1.5272; Azimuth angle phi: 1.8762 +Force: 0.808083 -2.616459 0.219256 +Torque: 0.118329 -0.025524 -0.137488 + +Polar angle tht: 1.5272; Azimuth angle phi: 1.9199 +Force: 0.927914 -2.569784 0.212442 +Torque: 0.117190 -0.028264 -0.153810 + +Polar angle tht: 1.5272; Azimuth angle phi: 1.9635 +Force: 1.046241 -2.514228 0.204964 +Torque: 0.115826 -0.030712 -0.168858 + +Polar angle tht: 1.5272; Azimuth angle phi: 2.0071 +Force: 1.162202 -2.450182 0.196857 +Torque: 0.114234 -0.032848 -0.182504 + +Polar angle tht: 1.5272; Azimuth angle phi: 2.0508 +Force: 1.274955 -2.378099 0.188156 +Torque: 0.112414 -0.034660 -0.194632 + +Polar angle tht: 1.5272; Azimuth angle phi: 2.0944 +Force: 1.383681 -2.298489 0.178900 +Torque: 0.110362 -0.036133 -0.205139 + +Polar angle tht: 1.5272; Azimuth angle phi: 2.1380 +Force: 1.487591 -2.211916 0.169132 +Torque: 0.108076 -0.037258 -0.213932 + +Polar angle tht: 1.5272; Azimuth angle phi: 2.1817 +Force: 1.585929 -2.118994 0.158895 +Torque: 0.105556 -0.038028 -0.220934 + +Polar angle tht: 1.5272; Azimuth angle phi: 2.2253 +Force: 1.677984 -2.020381 0.148234 +Torque: 0.102800 -0.038437 -0.226080 + +Polar angle tht: 1.5272; Azimuth angle phi: 2.2689 +Force: 1.763091 -1.916776 0.137198 +Torque: 0.099808 -0.038485 -0.229321 + +Polar angle tht: 1.5272; Azimuth angle phi: 2.3126 +Force: 1.840634 -1.808915 0.125835 +Torque: 0.096580 -0.038172 -0.230620 + +Polar angle tht: 1.5272; Azimuth angle phi: 2.3562 +Force: 1.910057 -1.697560 0.114194 +Torque: 0.093117 -0.037501 -0.229959 + +Polar angle tht: 1.5272; Azimuth angle phi: 2.3998 +Force: 1.970863 -1.583498 0.102327 +Torque: 0.089421 -0.036478 -0.227333 + +Polar angle tht: 1.5272; Azimuth angle phi: 2.4435 +Force: 2.022618 -1.467535 0.090284 +Torque: 0.085492 -0.035113 -0.222753 + +Polar angle tht: 1.5272; Azimuth angle phi: 2.4871 +Force: 2.064958 -1.350488 0.078117 +Torque: 0.081335 -0.033416 -0.216244 + +Polar angle tht: 1.5272; Azimuth angle phi: 2.5307 +Force: 2.097586 -1.233179 0.065876 +Torque: 0.076952 -0.031402 -0.207848 + +Polar angle tht: 1.5272; Azimuth angle phi: 2.5744 +Force: 2.120281 -1.116433 0.053611 +Torque: 0.072347 -0.029086 -0.197621 + +Polar angle tht: 1.5272; Azimuth angle phi: 2.6180 +Force: 2.132894 -1.001064 0.041374 +Torque: 0.067527 -0.026487 -0.185634 + +Polar angle tht: 1.5272; Azimuth angle phi: 2.6616 +Force: 2.135351 -0.887876 0.029211 +Torque: 0.062496 -0.023626 -0.171970 + +Polar angle tht: 1.5272; Azimuth angle phi: 2.7053 +Force: 2.127654 -0.777655 0.017170 +Torque: 0.057260 -0.020525 -0.156728 + +Polar angle tht: 1.5272; Azimuth angle phi: 2.7489 +Force: 2.109881 -0.671161 0.005296 +Torque: 0.051829 -0.017208 -0.140018 + +Polar angle tht: 1.5272; Azimuth angle phi: 2.7925 +Force: 2.082185 -0.569126 -0.006366 +Torque: 0.046209 -0.013701 -0.121961 + +Polar angle tht: 1.5272; Azimuth angle phi: 2.8362 +Force: 2.044792 -0.472244 -0.017776 +Torque: 0.040410 -0.010031 -0.102689 + +Polar angle tht: 1.5272; Azimuth angle phi: 2.8798 +Force: 1.998001 -0.381171 -0.028894 +Torque: 0.034441 -0.006227 -0.082347 + +Polar angle tht: 1.5272; Azimuth angle phi: 2.9234 +Force: 1.942179 -0.296516 -0.039684 +Torque: 0.028314 -0.002318 -0.061084 + +Polar angle tht: 1.5272; Azimuth angle phi: 2.9671 +Force: 1.877763 -0.218839 -0.050113 +Torque: 0.022041 0.001665 -0.039059 + +Polar angle tht: 1.5272; Azimuth angle phi: 3.0107 +Force: 1.805250 -0.148646 -0.060149 +Torque: 0.015632 0.005693 -0.016437 + +Polar angle tht: 1.5272; Azimuth angle phi: 3.0543 +Force: 1.725199 -0.086385 -0.069765 +Torque: 0.009102 0.009735 0.006611 + +Polar angle tht: 1.5272; Azimuth angle phi: 3.0980 +Force: 1.638224 -0.032443 -0.078937 +Torque: 0.002464 0.013758 0.029912 + +Polar angle tht: 1.5272; Azimuth angle phi: 3.1416 +Force: 1.625796 0.000000 -0.080372 +Torque: -0.000000 0.014421 -0.000000 + +Polar angle tht: 1.5272; Azimuth angle phi: 3.1852 +Force: 1.638224 0.032443 -0.078937 +Torque: -0.002464 0.013758 -0.029912 + +Polar angle tht: 1.5272; Azimuth angle phi: 3.2289 +Force: 1.725199 0.086385 -0.069765 +Torque: -0.009102 0.009735 -0.006609 + +Polar angle tht: 1.5272; Azimuth angle phi: 3.2725 +Force: 1.805250 0.148646 -0.060149 +Torque: -0.015632 0.005693 0.016441 + +Polar angle tht: 1.5272; Azimuth angle phi: 3.3161 +Force: 1.877763 0.218839 -0.050113 +Torque: -0.022041 0.001665 0.039065 + +Polar angle tht: 1.5272; Azimuth angle phi: 3.3598 +Force: 1.942179 0.296516 -0.039684 +Torque: -0.028315 -0.002318 0.061091 + +Polar angle tht: 1.5272; Azimuth angle phi: 3.4034 +Force: 1.998001 0.381171 -0.028894 +Torque: -0.034442 -0.006227 0.082356 + +Polar angle tht: 1.5272; Azimuth angle phi: 3.4470 +Force: 2.044792 0.472244 -0.017776 +Torque: -0.040411 -0.010031 0.102701 + +Polar angle tht: 1.5272; Azimuth angle phi: 3.4907 +Force: 2.082185 0.569126 -0.006366 +Torque: -0.046210 -0.013701 0.121973 + +Polar angle tht: 1.5272; Azimuth angle phi: 3.5343 +Force: 2.109881 0.671161 0.005296 +Torque: -0.051830 -0.017208 0.140032 + +Polar angle tht: 1.5272; Azimuth angle phi: 3.5779 +Force: 2.127654 0.777655 0.017170 +Torque: -0.057262 -0.020525 0.156744 + +Polar angle tht: 1.5272; Azimuth angle phi: 3.6216 +Force: 2.135351 0.887876 0.029211 +Torque: -0.062498 -0.023626 0.171987 + +Polar angle tht: 1.5272; Azimuth angle phi: 3.6652 +Force: 2.132894 1.001064 0.041374 +Torque: -0.067529 -0.026487 0.185651 + +Polar angle tht: 1.5272; Azimuth angle phi: 3.7088 +Force: 2.120281 1.116433 0.053611 +Torque: -0.072350 -0.029086 0.197640 + +Polar angle tht: 1.5272; Azimuth angle phi: 3.7525 +Force: 2.097586 1.233179 0.065876 +Torque: -0.076955 -0.031402 0.207867 + +Polar angle tht: 1.5272; Azimuth angle phi: 3.7961 +Force: 2.064958 1.350488 0.078117 +Torque: -0.081338 -0.033416 0.216264 + +Polar angle tht: 1.5272; Azimuth angle phi: 3.8397 +Force: 2.022618 1.467535 0.090284 +Torque: -0.085495 -0.035113 0.222773 + +Polar angle tht: 1.5272; Azimuth angle phi: 3.8834 +Force: 1.970863 1.583498 0.102327 +Torque: -0.089424 -0.036478 0.227354 + +Polar angle tht: 1.5272; Azimuth angle phi: 3.9270 +Force: 1.910057 1.697560 0.114194 +Torque: -0.093121 -0.037501 0.229980 + +Polar angle tht: 1.5272; Azimuth angle phi: 3.9706 +Force: 1.840634 1.808915 0.125835 +Torque: -0.096584 -0.038172 0.230641 + +Polar angle tht: 1.5272; Azimuth angle phi: 4.0143 +Force: 1.763091 1.916776 0.137198 +Torque: -0.099812 -0.038485 0.229341 + +Polar angle tht: 1.5272; Azimuth angle phi: 4.0579 +Force: 1.677984 2.020381 0.148234 +Torque: -0.102804 -0.038437 0.226101 + +Polar angle tht: 1.5272; Azimuth angle phi: 4.1015 +Force: 1.585929 2.118994 0.158895 +Torque: -0.105560 -0.038028 0.220954 + +Polar angle tht: 1.5272; Azimuth angle phi: 4.1452 +Force: 1.487591 2.211916 0.169132 +Torque: -0.108081 -0.037258 0.213952 + +Polar angle tht: 1.5272; Azimuth angle phi: 4.1888 +Force: 1.383681 2.298489 0.178900 +Torque: -0.110366 -0.036133 0.205157 + +Polar angle tht: 1.5272; Azimuth angle phi: 4.2324 +Force: 1.274955 2.378099 0.188156 +Torque: -0.112419 -0.034660 0.194649 + +Polar angle tht: 1.5272; Azimuth angle phi: 4.2761 +Force: 1.162202 2.450182 0.196857 +Torque: -0.114240 -0.032848 0.182520 + +Polar angle tht: 1.5272; Azimuth angle phi: 4.3197 +Force: 1.046241 2.514228 0.204964 +Torque: -0.115831 -0.030712 0.168872 + +Polar angle tht: 1.5272; Azimuth angle phi: 4.3633 +Force: 0.927914 2.569784 0.212442 +Torque: -0.117195 -0.028264 0.153824 + +Polar angle tht: 1.5272; Azimuth angle phi: 4.4070 +Force: 0.808083 2.616459 0.219256 +Torque: -0.118335 -0.025524 0.137500 + +Polar angle tht: 1.5272; Azimuth angle phi: 4.4506 +Force: 0.687617 2.653926 0.225377 +Torque: -0.119254 -0.022509 0.120039 + +Polar angle tht: 1.5272; Azimuth angle phi: 4.4942 +Force: 0.567393 2.681924 0.230777 +Torque: -0.119954 -0.019242 0.101585 + +Polar angle tht: 1.5272; Azimuth angle phi: 4.5379 +Force: 0.448283 2.700261 0.235433 +Torque: -0.120439 -0.015746 0.082292 + +Polar angle tht: 1.5272; Azimuth angle phi: 4.5815 +Force: 0.331152 2.708814 0.239326 +Torque: -0.120713 -0.012047 0.062320 + +Polar angle tht: 1.5272; Azimuth angle phi: 4.6251 +Force: 0.216848 2.707531 0.242439 +Torque: -0.120778 -0.008170 0.041835 + +Polar angle tht: 1.5272; Azimuth angle phi: 4.6688 +Force: 0.106197 2.696432 0.244760 +Torque: -0.120639 -0.004145 0.021004 + +Polar angle tht: 1.5272; Azimuth angle phi: 4.7124 +Force: 0.000000 2.675606 0.246281 +Torque: -0.120298 0.000000 -0.000000 + +Polar angle tht: 1.5272; Azimuth angle phi: 4.7560 +Force: -0.106197 2.696432 0.244760 +Torque: -0.120639 0.004145 -0.021004 + +Polar angle tht: 1.5272; Azimuth angle phi: 4.7997 +Force: -0.216848 2.707531 0.242439 +Torque: -0.120778 0.008170 -0.041835 + +Polar angle tht: 1.5272; Azimuth angle phi: 4.8433 +Force: -0.331152 2.708814 0.239326 +Torque: -0.120713 0.012047 -0.062320 + +Polar angle tht: 1.5272; Azimuth angle phi: 4.8869 +Force: -0.448283 2.700261 0.235433 +Torque: -0.120439 0.015746 -0.082292 + +Polar angle tht: 1.5272; Azimuth angle phi: 4.9306 +Force: -0.567393 2.681924 0.230777 +Torque: -0.119954 0.019242 -0.101585 + +Polar angle tht: 1.5272; Azimuth angle phi: 4.9742 +Force: -0.687617 2.653926 0.225377 +Torque: -0.119254 0.022509 -0.120039 + +Polar angle tht: 1.5272; Azimuth angle phi: 5.0178 +Force: -0.808083 2.616459 0.219256 +Torque: -0.118335 0.025524 -0.137500 + +Polar angle tht: 1.5272; Azimuth angle phi: 5.0615 +Force: -0.927914 2.569784 0.212442 +Torque: -0.117195 0.028264 -0.153824 + +Polar angle tht: 1.5272; Azimuth angle phi: 5.1051 +Force: -1.046241 2.514228 0.204964 +Torque: -0.115831 0.030712 -0.168872 + +Polar angle tht: 1.5272; Azimuth angle phi: 5.1487 +Force: -1.162202 2.450182 0.196857 +Torque: -0.114240 0.032848 -0.182520 + +Polar angle tht: 1.5272; Azimuth angle phi: 5.1924 +Force: -1.274955 2.378099 0.188156 +Torque: -0.112419 0.034660 -0.194649 + +Polar angle tht: 1.5272; Azimuth angle phi: 5.2360 +Force: -1.383681 2.298489 0.178900 +Torque: -0.110366 0.036133 -0.205157 + +Polar angle tht: 1.5272; Azimuth angle phi: 5.2796 +Force: -1.487591 2.211916 0.169132 +Torque: -0.108081 0.037258 -0.213952 + +Polar angle tht: 1.5272; Azimuth angle phi: 5.3233 +Force: -1.585929 2.118994 0.158895 +Torque: -0.105560 0.038028 -0.220954 + +Polar angle tht: 1.5272; Azimuth angle phi: 5.3669 +Force: -1.677984 2.020381 0.148234 +Torque: -0.102804 0.038437 -0.226101 + +Polar angle tht: 1.5272; Azimuth angle phi: 5.4105 +Force: -1.763091 1.916776 0.137198 +Torque: -0.099812 0.038485 -0.229341 + +Polar angle tht: 1.5272; Azimuth angle phi: 5.4542 +Force: -1.840634 1.808915 0.125835 +Torque: -0.096584 0.038172 -0.230641 + +Polar angle tht: 1.5272; Azimuth angle phi: 5.4978 +Force: -1.910057 1.697560 0.114194 +Torque: -0.093121 0.037501 -0.229980 + +Polar angle tht: 1.5272; Azimuth angle phi: 5.5414 +Force: -1.970863 1.583498 0.102327 +Torque: -0.089424 0.036478 -0.227354 + +Polar angle tht: 1.5272; Azimuth angle phi: 5.5851 +Force: -2.022618 1.467535 0.090284 +Torque: -0.085495 0.035113 -0.222773 + +Polar angle tht: 1.5272; Azimuth angle phi: 5.6287 +Force: -2.064958 1.350488 0.078117 +Torque: -0.081338 0.033416 -0.216264 + +Polar angle tht: 1.5272; Azimuth angle phi: 5.6723 +Force: -2.097586 1.233179 0.065876 +Torque: -0.076955 0.031402 -0.207867 + +Polar angle tht: 1.5272; Azimuth angle phi: 5.7160 +Force: -2.120281 1.116433 0.053611 +Torque: -0.072350 0.029086 -0.197640 + +Polar angle tht: 1.5272; Azimuth angle phi: 5.7596 +Force: -2.132894 1.001064 0.041374 +Torque: -0.067529 0.026487 -0.185651 + +Polar angle tht: 1.5272; Azimuth angle phi: 5.8032 +Force: -2.135351 0.887876 0.029211 +Torque: -0.062498 0.023626 -0.171987 + +Polar angle tht: 1.5272; Azimuth angle phi: 5.8469 +Force: -2.127654 0.777655 0.017170 +Torque: -0.057262 0.020525 -0.156744 + +Polar angle tht: 1.5272; Azimuth angle phi: 5.8905 +Force: -2.109881 0.671161 0.005296 +Torque: -0.051830 0.017208 -0.140032 + +Polar angle tht: 1.5272; Azimuth angle phi: 5.9341 +Force: -2.082185 0.569126 -0.006366 +Torque: -0.046210 0.013701 -0.121973 + +Polar angle tht: 1.5272; Azimuth angle phi: 5.9778 +Force: -2.044792 0.472244 -0.017776 +Torque: -0.040411 0.010031 -0.102701 + +Polar angle tht: 1.5272; Azimuth angle phi: 6.0214 +Force: -1.998001 0.381171 -0.028894 +Torque: -0.034442 0.006227 -0.082356 + +Polar angle tht: 1.5272; Azimuth angle phi: 6.0650 +Force: -1.942179 0.296516 -0.039684 +Torque: -0.028315 0.002318 -0.061091 + +Polar angle tht: 1.5272; Azimuth angle phi: 6.1087 +Force: -1.877763 0.218839 -0.050113 +Torque: -0.022041 -0.001665 -0.039065 + +Polar angle tht: 1.5272; Azimuth angle phi: 6.1523 +Force: -1.805250 0.148646 -0.060149 +Torque: -0.015632 -0.005693 -0.016441 + +Polar angle tht: 1.5272; Azimuth angle phi: 6.1959 +Force: -1.725199 0.086385 -0.069765 +Torque: -0.009102 -0.009735 0.006609 + +Polar angle tht: 1.5272; Azimuth angle phi: 6.2396 +Force: -1.638224 0.032443 -0.078937 +Torque: -0.002464 -0.013758 0.029912 + +Polar angle tht: 1.5272; Azimuth angle phi: 6.2832 +Force: -1.625796 0.000000 -0.080372 +Torque: -0.000000 -0.014421 0.000000 + +Polar angle tht: 1.5708; Azimuth angle phi: 0.0000 +Force: -1.543912 0.000000 0.000000 +Torque: 0.000000 -0.026511 -0.000000 + +Polar angle tht: 1.5708; Azimuth angle phi: 0.0436 +Force: -1.637327 -0.045637 0.013256 +Torque: 0.008363 -0.022519 0.023371 + +Polar angle tht: 1.5708; Azimuth angle phi: 0.0873 +Force: -1.724479 -0.099934 0.026921 +Torque: 0.016630 -0.018463 0.046564 + +Polar angle tht: 1.5708; Azimuth angle phi: 0.1309 +Force: -1.804702 -0.162565 0.040964 +Torque: 0.024782 -0.014372 0.069403 + +Polar angle tht: 1.5708; Azimuth angle phi: 0.1745 +Force: -1.877380 -0.233141 0.055355 +Torque: 0.032803 -0.010279 0.091713 + +Polar angle tht: 1.5708; Azimuth angle phi: 0.2182 +Force: -1.941953 -0.311214 0.070056 +Torque: 0.040677 -0.006213 0.113325 + +Polar angle tht: 1.5708; Azimuth angle phi: 0.2618 +Force: -1.997923 -0.396276 0.085028 +Torque: 0.048389 -0.002206 0.134075 + +Polar angle tht: 1.5708; Azimuth angle phi: 0.3054 +Force: -2.044852 -0.487765 0.100230 +Torque: 0.055923 0.001712 0.153805 + +Polar angle tht: 1.5708; Azimuth angle phi: 0.3491 +Force: -2.082373 -0.585071 0.115618 +Torque: 0.063267 0.005511 0.172364 + +Polar angle tht: 1.5708; Azimuth angle phi: 0.3927 +Force: -2.110186 -0.687537 0.131144 +Torque: 0.070406 0.009163 0.189611 + +Polar angle tht: 1.5708; Azimuth angle phi: 0.4363 +Force: -2.128063 -0.794465 0.146761 +Torque: 0.077330 0.012640 0.205415 + +Polar angle tht: 1.5708; Azimuth angle phi: 0.4800 +Force: -2.135852 -0.905123 0.162417 +Torque: 0.084028 0.015916 0.219656 + +Polar angle tht: 1.5708; Azimuth angle phi: 0.5236 +Force: -2.133475 -1.018748 0.178061 +Torque: 0.090488 0.018966 0.232225 + +Polar angle tht: 1.5708; Azimuth angle phi: 0.5672 +Force: -2.120930 -1.134553 0.193637 +Torque: 0.096702 0.021768 0.243027 + +Polar angle tht: 1.5708; Azimuth angle phi: 0.6109 +Force: -2.098289 -1.251732 0.209092 +Torque: 0.102662 0.024300 0.251979 + +Polar angle tht: 1.5708; Azimuth angle phi: 0.6545 +Force: -2.065702 -1.369468 0.224370 +Torque: 0.108359 0.026544 0.259014 + +Polar angle tht: 1.5708; Azimuth angle phi: 0.6981 +Force: -2.023391 -1.486935 0.239413 +Torque: 0.113787 0.028482 0.264077 + +Polar angle tht: 1.5708; Azimuth angle phi: 0.7418 +Force: -1.971653 -1.603309 0.254167 +Torque: 0.118940 0.030102 0.267130 + +Polar angle tht: 1.5708; Azimuth angle phi: 0.7854 +Force: -1.910853 -1.717771 0.268574 +Torque: 0.123814 0.031390 0.268151 + +Polar angle tht: 1.5708; Azimuth angle phi: 0.8290 +Force: -1.841425 -1.829513 0.282579 +Torque: 0.128403 0.032338 0.267130 + +Polar angle tht: 1.5708; Azimuth angle phi: 0.8727 +Force: -1.763865 -1.937747 0.296126 +Torque: 0.132705 0.032939 0.264077 + +Polar angle tht: 1.5708; Azimuth angle phi: 0.9163 +Force: -1.678733 -2.041707 0.309162 +Torque: 0.136716 0.033188 0.259014 + +Polar angle tht: 1.5708; Azimuth angle phi: 0.9599 +Force: -1.586644 -2.140657 0.321634 +Torque: 0.140434 0.033085 0.251979 + +Polar angle tht: 1.5708; Azimuth angle phi: 1.0036 +Force: -1.488264 -2.233897 0.333491 +Torque: 0.143859 0.032631 0.243027 + +Polar angle tht: 1.5708; Azimuth angle phi: 1.0472 +Force: -1.384307 -2.320766 0.344684 +Torque: 0.146989 0.031830 0.232225 + +Polar angle tht: 1.5708; Azimuth angle phi: 1.0908 +Force: -1.275528 -2.400649 0.355166 +Torque: 0.149824 0.030689 0.219656 + +Polar angle tht: 1.5708; Azimuth angle phi: 1.1345 +Force: -1.162717 -2.472982 0.364894 +Torque: 0.152364 0.029216 0.205415 + +Polar angle tht: 1.5708; Azimuth angle phi: 1.1781 +Force: -1.046695 -2.537251 0.373827 +Torque: 0.154611 0.027425 0.189611 + +Polar angle tht: 1.5708; Azimuth angle phi: 1.2217 +Force: -0.928307 -2.593005 0.381926 +Torque: 0.156564 0.025328 0.172364 + +Polar angle tht: 1.5708; Azimuth angle phi: 1.2654 +Force: -0.808413 -2.639850 0.389156 +Torque: 0.158227 0.022943 0.153805 + +Polar angle tht: 1.5708; Azimuth angle phi: 1.3090 +Force: -0.687887 -2.677460 0.395487 +Torque: 0.159600 0.020289 0.134075 + +Polar angle tht: 1.5708; Azimuth angle phi: 1.3526 +Force: -0.567604 -2.705571 0.400892 +Torque: 0.160686 0.017386 0.113325 + +Polar angle tht: 1.5708; Azimuth angle phi: 1.3963 +Force: -0.448439 -2.723992 0.405346 +Torque: 0.161488 0.014258 0.091713 + +Polar angle tht: 1.5708; Azimuth angle phi: 1.4399 +Force: -0.331258 -2.732600 0.408831 +Torque: 0.162009 0.010929 0.069403 + +Polar angle tht: 1.5708; Azimuth angle phi: 1.4835 +Force: -0.216910 -2.731342 0.411331 +Torque: 0.162251 0.007424 0.046564 + +Polar angle tht: 1.5708; Azimuth angle phi: 1.5272 +Force: -0.106224 -2.720238 0.412836 +Torque: 0.162217 0.003772 0.023371 + +Polar angle tht: 1.5708; Azimuth angle phi: 1.5708 +Force: 0.000000 -2.699378 0.413338 +Torque: 0.161911 0.000000 0.000000 + +Polar angle tht: 1.5708; Azimuth angle phi: 1.6144 +Force: 0.106224 -2.720238 0.412836 +Torque: 0.162217 -0.003772 -0.023371 + +Polar angle tht: 1.5708; Azimuth angle phi: 1.6581 +Force: 0.216910 -2.731342 0.411331 +Torque: 0.162251 -0.007424 -0.046564 + +Polar angle tht: 1.5708; Azimuth angle phi: 1.7017 +Force: 0.331258 -2.732600 0.408831 +Torque: 0.162009 -0.010929 -0.069403 + +Polar angle tht: 1.5708; Azimuth angle phi: 1.7453 +Force: 0.448439 -2.723992 0.405346 +Torque: 0.161488 -0.014258 -0.091713 + +Polar angle tht: 1.5708; Azimuth angle phi: 1.7890 +Force: 0.567604 -2.705571 0.400892 +Torque: 0.160686 -0.017386 -0.113325 + +Polar angle tht: 1.5708; Azimuth angle phi: 1.8326 +Force: 0.687887 -2.677460 0.395487 +Torque: 0.159600 -0.020289 -0.134075 + +Polar angle tht: 1.5708; Azimuth angle phi: 1.8762 +Force: 0.808413 -2.639850 0.389156 +Torque: 0.158227 -0.022943 -0.153805 + +Polar angle tht: 1.5708; Azimuth angle phi: 1.9199 +Force: 0.928307 -2.593005 0.381926 +Torque: 0.156564 -0.025328 -0.172364 + +Polar angle tht: 1.5708; Azimuth angle phi: 1.9635 +Force: 1.046695 -2.537251 0.373827 +Torque: 0.154611 -0.027425 -0.189611 + +Polar angle tht: 1.5708; Azimuth angle phi: 2.0071 +Force: 1.162717 -2.472982 0.364894 +Torque: 0.152364 -0.029216 -0.205415 + +Polar angle tht: 1.5708; Azimuth angle phi: 2.0508 +Force: 1.275528 -2.400649 0.355166 +Torque: 0.149824 -0.030689 -0.219656 + +Polar angle tht: 1.5708; Azimuth angle phi: 2.0944 +Force: 1.384307 -2.320766 0.344684 +Torque: 0.146989 -0.031830 -0.232225 + +Polar angle tht: 1.5708; Azimuth angle phi: 2.1380 +Force: 1.488264 -2.233897 0.333491 +Torque: 0.143859 -0.032631 -0.243027 + +Polar angle tht: 1.5708; Azimuth angle phi: 2.1817 +Force: 1.586644 -2.140657 0.321634 +Torque: 0.140434 -0.033085 -0.251979 + +Polar angle tht: 1.5708; Azimuth angle phi: 2.2253 +Force: 1.678733 -2.041707 0.309162 +Torque: 0.136716 -0.033188 -0.259014 + +Polar angle tht: 1.5708; Azimuth angle phi: 2.2689 +Force: 1.763865 -1.937747 0.296126 +Torque: 0.132705 -0.032939 -0.264077 + +Polar angle tht: 1.5708; Azimuth angle phi: 2.3126 +Force: 1.841425 -1.829513 0.282579 +Torque: 0.128403 -0.032338 -0.267130 + +Polar angle tht: 1.5708; Azimuth angle phi: 2.3562 +Force: 1.910853 -1.717771 0.268574 +Torque: 0.123814 -0.031390 -0.268151 + +Polar angle tht: 1.5708; Azimuth angle phi: 2.3998 +Force: 1.971653 -1.603309 0.254167 +Torque: 0.118940 -0.030102 -0.267130 + +Polar angle tht: 1.5708; Azimuth angle phi: 2.4435 +Force: 2.023391 -1.486935 0.239413 +Torque: 0.113787 -0.028482 -0.264077 + +Polar angle tht: 1.5708; Azimuth angle phi: 2.4871 +Force: 2.065702 -1.369468 0.224370 +Torque: 0.108359 -0.026544 -0.259014 + +Polar angle tht: 1.5708; Azimuth angle phi: 2.5307 +Force: 2.098289 -1.251732 0.209092 +Torque: 0.102662 -0.024300 -0.251979 + +Polar angle tht: 1.5708; Azimuth angle phi: 2.5744 +Force: 2.120930 -1.134553 0.193637 +Torque: 0.096702 -0.021768 -0.243027 + +Polar angle tht: 1.5708; Azimuth angle phi: 2.6180 +Force: 2.133475 -1.018748 0.178061 +Torque: 0.090488 -0.018966 -0.232225 + +Polar angle tht: 1.5708; Azimuth angle phi: 2.6616 +Force: 2.135852 -0.905123 0.162417 +Torque: 0.084028 -0.015916 -0.219656 + +Polar angle tht: 1.5708; Azimuth angle phi: 2.7053 +Force: 2.128063 -0.794465 0.146761 +Torque: 0.077330 -0.012640 -0.205415 + +Polar angle tht: 1.5708; Azimuth angle phi: 2.7489 +Force: 2.110186 -0.687537 0.131144 +Torque: 0.070406 -0.009163 -0.189611 + +Polar angle tht: 1.5708; Azimuth angle phi: 2.7925 +Force: 2.082373 -0.585071 0.115618 +Torque: 0.063267 -0.005511 -0.172364 + +Polar angle tht: 1.5708; Azimuth angle phi: 2.8362 +Force: 2.044852 -0.487765 0.100230 +Torque: 0.055923 -0.001712 -0.153805 + +Polar angle tht: 1.5708; Azimuth angle phi: 2.8798 +Force: 1.997923 -0.396276 0.085028 +Torque: 0.048389 0.002206 -0.134075 + +Polar angle tht: 1.5708; Azimuth angle phi: 2.9234 +Force: 1.941953 -0.311214 0.070056 +Torque: 0.040677 0.006213 -0.113325 + +Polar angle tht: 1.5708; Azimuth angle phi: 2.9671 +Force: 1.877380 -0.233141 0.055355 +Torque: 0.032803 0.010279 -0.091713 + +Polar angle tht: 1.5708; Azimuth angle phi: 3.0107 +Force: 1.804702 -0.162565 0.040964 +Torque: 0.024782 0.014372 -0.069403 + +Polar angle tht: 1.5708; Azimuth angle phi: 3.0543 +Force: 1.724479 -0.099934 0.026921 +Torque: 0.016630 0.018463 -0.046564 + +Polar angle tht: 1.5708; Azimuth angle phi: 3.0980 +Force: 1.637327 -0.045637 0.013256 +Torque: 0.008363 0.022519 -0.023371 + +Polar angle tht: 1.5708; Azimuth angle phi: 3.1416 +Force: 1.543912 0.000000 0.000000 +Torque: 0.000000 0.026511 -0.000000 + +Polar angle tht: 1.5708; Azimuth angle phi: 3.1852 +Force: 1.637327 0.045637 0.013256 +Torque: -0.008364 0.022519 0.023373 + +Polar angle tht: 1.5708; Azimuth angle phi: 3.2289 +Force: 1.724479 0.099934 0.026921 +Torque: -0.016630 0.018463 0.046568 + +Polar angle tht: 1.5708; Azimuth angle phi: 3.2725 +Force: 1.804702 0.162565 0.040964 +Torque: -0.024783 0.014372 0.069408 + +Polar angle tht: 1.5708; Azimuth angle phi: 3.3161 +Force: 1.877380 0.233141 0.055355 +Torque: -0.032804 0.010279 0.091721 + +Polar angle tht: 1.5708; Azimuth angle phi: 3.3598 +Force: 1.941953 0.311214 0.070056 +Torque: -0.040679 0.006213 0.113335 + +Polar angle tht: 1.5708; Azimuth angle phi: 3.4034 +Force: 1.997923 0.396276 0.085028 +Torque: -0.048390 0.002206 0.134086 + +Polar angle tht: 1.5708; Azimuth angle phi: 3.4470 +Force: 2.044852 0.487765 0.100230 +Torque: -0.055925 -0.001712 0.153818 + +Polar angle tht: 1.5708; Azimuth angle phi: 3.4907 +Force: 2.082373 0.585071 0.115618 +Torque: -0.063269 -0.005511 0.172378 + +Polar angle tht: 1.5708; Azimuth angle phi: 3.5343 +Force: 2.110186 0.687537 0.131144 +Torque: -0.070409 -0.009163 0.189627 + +Polar angle tht: 1.5708; Azimuth angle phi: 3.5779 +Force: 2.128063 0.794465 0.146761 +Torque: -0.077333 -0.012640 0.205432 + +Polar angle tht: 1.5708; Azimuth angle phi: 3.6216 +Force: 2.135852 0.905123 0.162417 +Torque: -0.084031 -0.015916 0.219674 + +Polar angle tht: 1.5708; Azimuth angle phi: 3.6652 +Force: 2.133475 1.018748 0.178061 +Torque: -0.090492 -0.018966 0.232244 + +Polar angle tht: 1.5708; Azimuth angle phi: 3.7088 +Force: 2.120930 1.134553 0.193637 +Torque: -0.096706 -0.021768 0.243047 + +Polar angle tht: 1.5708; Azimuth angle phi: 3.7525 +Force: 2.098289 1.251732 0.209092 +Torque: -0.102666 -0.024300 0.252000 + +Polar angle tht: 1.5708; Azimuth angle phi: 3.7961 +Force: 2.065702 1.369468 0.224370 +Torque: -0.108363 -0.026544 0.259035 + +Polar angle tht: 1.5708; Azimuth angle phi: 3.8397 +Force: 2.023391 1.486935 0.239413 +Torque: -0.113792 -0.028482 0.264099 + +Polar angle tht: 1.5708; Azimuth angle phi: 3.8834 +Force: 1.971653 1.603309 0.254167 +Torque: -0.118946 -0.030102 0.267152 + +Polar angle tht: 1.5708; Azimuth angle phi: 3.9270 +Force: 1.910853 1.717771 0.268574 +Torque: -0.123819 -0.031390 0.268173 + +Polar angle tht: 1.5708; Azimuth angle phi: 3.9706 +Force: 1.841425 1.829513 0.282579 +Torque: -0.128409 -0.032338 0.267152 + +Polar angle tht: 1.5708; Azimuth angle phi: 4.0143 +Force: 1.763865 1.937747 0.296126 +Torque: -0.132711 -0.032939 0.264099 + +Polar angle tht: 1.5708; Azimuth angle phi: 4.0579 +Force: 1.678733 2.041707 0.309162 +Torque: -0.136722 -0.033188 0.259035 + +Polar angle tht: 1.5708; Azimuth angle phi: 4.1015 +Force: 1.586644 2.140657 0.321634 +Torque: -0.140441 -0.033085 0.252000 + +Polar angle tht: 1.5708; Azimuth angle phi: 4.1452 +Force: 1.488264 2.233897 0.333491 +Torque: -0.143866 -0.032631 0.243047 + +Polar angle tht: 1.5708; Azimuth angle phi: 4.1888 +Force: 1.384307 2.320766 0.344684 +Torque: -0.146996 -0.031830 0.232244 + +Polar angle tht: 1.5708; Azimuth angle phi: 4.2324 +Force: 1.275528 2.400649 0.355166 +Torque: -0.149831 -0.030689 0.219674 + +Polar angle tht: 1.5708; Azimuth angle phi: 4.2761 +Force: 1.162717 2.472982 0.364894 +Torque: -0.152372 -0.029216 0.205432 + +Polar angle tht: 1.5708; Azimuth angle phi: 4.3197 +Force: 1.046695 2.537251 0.373827 +Torque: -0.154618 -0.027425 0.189627 + +Polar angle tht: 1.5708; Azimuth angle phi: 4.3633 +Force: 0.928307 2.593005 0.381926 +Torque: -0.156572 -0.025328 0.172378 + +Polar angle tht: 1.5708; Azimuth angle phi: 4.4070 +Force: 0.808413 2.639850 0.389156 +Torque: -0.158234 -0.022943 0.153818 + +Polar angle tht: 1.5708; Azimuth angle phi: 4.4506 +Force: 0.687887 2.677460 0.395487 +Torque: -0.159608 -0.020289 0.134086 + +Polar angle tht: 1.5708; Azimuth angle phi: 4.4942 +Force: 0.567604 2.705571 0.400892 +Torque: -0.160694 -0.017386 0.113335 + +Polar angle tht: 1.5708; Azimuth angle phi: 4.5379 +Force: 0.448439 2.723992 0.405346 +Torque: -0.161497 -0.014258 0.091721 + +Polar angle tht: 1.5708; Azimuth angle phi: 4.5815 +Force: 0.331258 2.732600 0.408831 +Torque: -0.162017 -0.010929 0.069408 + +Polar angle tht: 1.5708; Azimuth angle phi: 4.6251 +Force: 0.216910 2.731342 0.411331 +Torque: -0.162259 -0.007424 0.046568 + +Polar angle tht: 1.5708; Azimuth angle phi: 4.6688 +Force: 0.106224 2.720238 0.412836 +Torque: -0.162225 -0.003772 0.023373 + +Polar angle tht: 1.5708; Azimuth angle phi: 4.7124 +Force: 0.000000 2.699378 0.413338 +Torque: -0.161919 0.000000 -0.000000 + +Polar angle tht: 1.5708; Azimuth angle phi: 4.7560 +Force: -0.106224 2.720238 0.412836 +Torque: -0.162225 0.003772 -0.023373 + +Polar angle tht: 1.5708; Azimuth angle phi: 4.7997 +Force: -0.216910 2.731342 0.411331 +Torque: -0.162259 0.007424 -0.046568 + +Polar angle tht: 1.5708; Azimuth angle phi: 4.8433 +Force: -0.331258 2.732600 0.408831 +Torque: -0.162017 0.010929 -0.069408 + +Polar angle tht: 1.5708; Azimuth angle phi: 4.8869 +Force: -0.448439 2.723992 0.405346 +Torque: -0.161497 0.014258 -0.091721 + +Polar angle tht: 1.5708; Azimuth angle phi: 4.9306 +Force: -0.567604 2.705571 0.400892 +Torque: -0.160694 0.017386 -0.113335 + +Polar angle tht: 1.5708; Azimuth angle phi: 4.9742 +Force: -0.687887 2.677460 0.395487 +Torque: -0.159608 0.020289 -0.134086 + +Polar angle tht: 1.5708; Azimuth angle phi: 5.0178 +Force: -0.808413 2.639850 0.389156 +Torque: -0.158234 0.022943 -0.153818 + +Polar angle tht: 1.5708; Azimuth angle phi: 5.0615 +Force: -0.928307 2.593005 0.381926 +Torque: -0.156572 0.025328 -0.172378 + +Polar angle tht: 1.5708; Azimuth angle phi: 5.1051 +Force: -1.046695 2.537251 0.373827 +Torque: -0.154618 0.027425 -0.189627 + +Polar angle tht: 1.5708; Azimuth angle phi: 5.1487 +Force: -1.162717 2.472982 0.364894 +Torque: -0.152372 0.029216 -0.205432 + +Polar angle tht: 1.5708; Azimuth angle phi: 5.1924 +Force: -1.275528 2.400649 0.355166 +Torque: -0.149831 0.030689 -0.219674 + +Polar angle tht: 1.5708; Azimuth angle phi: 5.2360 +Force: -1.384307 2.320766 0.344684 +Torque: -0.146996 0.031830 -0.232244 + +Polar angle tht: 1.5708; Azimuth angle phi: 5.2796 +Force: -1.488264 2.233897 0.333491 +Torque: -0.143866 0.032631 -0.243047 + +Polar angle tht: 1.5708; Azimuth angle phi: 5.3233 +Force: -1.586644 2.140657 0.321634 +Torque: -0.140441 0.033085 -0.252000 + +Polar angle tht: 1.5708; Azimuth angle phi: 5.3669 +Force: -1.678733 2.041707 0.309162 +Torque: -0.136722 0.033188 -0.259035 + +Polar angle tht: 1.5708; Azimuth angle phi: 5.4105 +Force: -1.763865 1.937747 0.296126 +Torque: -0.132711 0.032939 -0.264099 + +Polar angle tht: 1.5708; Azimuth angle phi: 5.4542 +Force: -1.841425 1.829513 0.282579 +Torque: -0.128409 0.032338 -0.267152 + +Polar angle tht: 1.5708; Azimuth angle phi: 5.4978 +Force: -1.910853 1.717771 0.268574 +Torque: -0.123819 0.031390 -0.268173 + +Polar angle tht: 1.5708; Azimuth angle phi: 5.5414 +Force: -1.971653 1.603309 0.254167 +Torque: -0.118946 0.030102 -0.267152 + +Polar angle tht: 1.5708; Azimuth angle phi: 5.5851 +Force: -2.023391 1.486935 0.239413 +Torque: -0.113792 0.028482 -0.264099 + +Polar angle tht: 1.5708; Azimuth angle phi: 5.6287 +Force: -2.065702 1.369468 0.224370 +Torque: -0.108363 0.026544 -0.259035 + +Polar angle tht: 1.5708; Azimuth angle phi: 5.6723 +Force: -2.098289 1.251732 0.209092 +Torque: -0.102666 0.024300 -0.252000 + +Polar angle tht: 1.5708; Azimuth angle phi: 5.7160 +Force: -2.120930 1.134553 0.193637 +Torque: -0.096706 0.021768 -0.243047 + +Polar angle tht: 1.5708; Azimuth angle phi: 5.7596 +Force: -2.133475 1.018748 0.178061 +Torque: -0.090492 0.018966 -0.232244 + +Polar angle tht: 1.5708; Azimuth angle phi: 5.8032 +Force: -2.135852 0.905123 0.162417 +Torque: -0.084031 0.015916 -0.219674 + +Polar angle tht: 1.5708; Azimuth angle phi: 5.8469 +Force: -2.128063 0.794465 0.146761 +Torque: -0.077333 0.012640 -0.205432 + +Polar angle tht: 1.5708; Azimuth angle phi: 5.8905 +Force: -2.110186 0.687537 0.131144 +Torque: -0.070409 0.009163 -0.189627 + +Polar angle tht: 1.5708; Azimuth angle phi: 5.9341 +Force: -2.082373 0.585071 0.115618 +Torque: -0.063269 0.005511 -0.172378 + +Polar angle tht: 1.5708; Azimuth angle phi: 5.9778 +Force: -2.044852 0.487765 0.100230 +Torque: -0.055925 0.001712 -0.153818 + +Polar angle tht: 1.5708; Azimuth angle phi: 6.0214 +Force: -1.997923 0.396276 0.085028 +Torque: -0.048390 -0.002206 -0.134086 + +Polar angle tht: 1.5708; Azimuth angle phi: 6.0650 +Force: -1.941953 0.311214 0.070056 +Torque: -0.040679 -0.006213 -0.113335 + +Polar angle tht: 1.5708; Azimuth angle phi: 6.1087 +Force: -1.877380 0.233141 0.055355 +Torque: -0.032804 -0.010279 -0.091721 + +Polar angle tht: 1.5708; Azimuth angle phi: 6.1523 +Force: -1.804702 0.162565 0.040964 +Torque: -0.024783 -0.014372 -0.069408 + +Polar angle tht: 1.5708; Azimuth angle phi: 6.1959 +Force: -1.724479 0.099934 0.026921 +Torque: -0.016630 -0.018463 -0.046568 + +Polar angle tht: 1.5708; Azimuth angle phi: 6.2396 +Force: -1.637327 0.045637 0.013256 +Torque: -0.008364 -0.022519 -0.023373 + +Polar angle tht: 1.5708; Azimuth angle phi: 6.2832 +Force: -1.543912 0.000000 0.000000 +Torque: 0.000000 -0.026511 -0.000000 + +Polar angle tht: 1.6144; Azimuth angle phi: 0.0000 +Force: -1.792487 0.000000 0.078168 +Torque: 0.000000 -0.022839 -0.000000 + +Polar angle tht: 1.6144; Azimuth angle phi: 0.0436 +Force: -1.804757 -0.066660 0.081313 +Torque: 0.018693 -0.022169 0.076566 + +Polar angle tht: 1.6144; Azimuth angle phi: 0.0873 +Force: -1.891256 -0.128727 0.099444 +Torque: 0.028178 -0.018121 0.099563 + +Polar angle tht: 1.6144; Azimuth angle phi: 0.1309 +Force: -1.970515 -0.199083 0.117886 +Torque: 0.037545 -0.014039 0.122105 + +Polar angle tht: 1.6144; Azimuth angle phi: 0.1745 +Force: -2.041921 -0.277324 0.136601 +Torque: 0.046773 -0.009956 0.144019 + +Polar angle tht: 1.6144; Azimuth angle phi: 0.2182 +Force: -2.104919 -0.362988 0.155542 +Torque: 0.055845 -0.005900 0.165137 + +Polar angle tht: 1.6144; Azimuth angle phi: 0.2618 +Force: -2.159012 -0.455552 0.174663 +Torque: 0.064743 -0.001904 0.185295 + +Polar angle tht: 1.6144; Azimuth angle phi: 0.3054 +Force: -2.203768 -0.554443 0.193915 +Torque: 0.073451 0.002003 0.204336 + +Polar angle tht: 1.6144; Azimuth angle phi: 0.3491 +Force: -2.238823 -0.659036 0.213246 +Torque: 0.081952 0.005790 0.222113 + +Polar angle tht: 1.6144; Azimuth angle phi: 0.3927 +Force: -2.263884 -0.768661 0.232601 +Torque: 0.090231 0.009430 0.238484 + +Polar angle tht: 1.6144; Azimuth angle phi: 0.4363 +Force: -2.278728 -0.882608 0.251924 +Torque: 0.098274 0.012895 0.253322 + +Polar angle tht: 1.6144; Azimuth angle phi: 0.4800 +Force: -2.283208 -1.000132 0.271159 +Torque: 0.106068 0.016159 0.266507 + +Polar angle tht: 1.6144; Azimuth angle phi: 0.5236 +Force: -2.277253 -1.120459 0.290244 +Torque: 0.113600 0.019197 0.277934 + +Polar angle tht: 1.6144; Azimuth angle phi: 0.5672 +Force: -2.260867 -1.242789 0.309122 +Torque: 0.120860 0.021986 0.287509 + +Polar angle tht: 1.6144; Azimuth angle phi: 0.6109 +Force: -2.234132 -1.366307 0.327729 +Torque: 0.127837 0.024506 0.295153 + +Polar angle tht: 1.6144; Azimuth angle phi: 0.6545 +Force: -2.197203 -1.490182 0.346005 +Torque: 0.134520 0.026738 0.300799 + +Polar angle tht: 1.6144; Azimuth angle phi: 0.6981 +Force: -2.150311 -1.613580 0.363887 +Torque: 0.140903 0.028664 0.304397 + +Polar angle tht: 1.6144; Azimuth angle phi: 0.7418 +Force: -2.093761 -1.735665 0.381314 +Torque: 0.146976 0.030272 0.305912 + +Polar angle tht: 1.6144; Azimuth angle phi: 0.7854 +Force: -2.027926 -1.855609 0.398224 +Torque: 0.152734 0.031548 0.305323 + +Polar angle tht: 1.6144; Azimuth angle phi: 0.8290 +Force: -1.953249 -1.972595 0.414557 +Torque: 0.158170 0.032485 0.302625 + +Polar angle tht: 1.6144; Azimuth angle phi: 0.8727 +Force: -1.870238 -2.085826 0.430254 +Torque: 0.163279 0.033074 0.297829 + +Polar angle tht: 1.6144; Azimuth angle phi: 0.9163 +Force: -1.779459 -2.194527 0.445255 +Torque: 0.168056 0.033313 0.290962 + +Polar angle tht: 1.6144; Azimuth angle phi: 0.9599 +Force: -1.681539 -2.297955 0.459506 +Torque: 0.172499 0.033199 0.282066 + +Polar angle tht: 1.6144; Azimuth angle phi: 1.0036 +Force: -1.577154 -2.395401 0.472951 +Torque: 0.176605 0.032735 0.271198 + +Polar angle tht: 1.6144; Azimuth angle phi: 1.0472 +Force: -1.467027 -2.486198 0.485539 +Torque: 0.180370 0.031924 0.258429 + +Polar angle tht: 1.6144; Azimuth angle phi: 1.0908 +Force: -1.351925 -2.569725 0.497220 +Torque: 0.183795 0.030773 0.243845 + +Polar angle tht: 1.6144; Azimuth angle phi: 1.1345 +Force: -1.232649 -2.645410 0.507949 +Torque: 0.186877 0.029291 0.227546 + +Polar angle tht: 1.6144; Azimuth angle phi: 1.1781 +Force: -1.110031 -2.712735 0.517682 +Torque: 0.189618 0.027490 0.209644 + +Polar angle tht: 1.6144; Azimuth angle phi: 1.2217 +Force: -0.984926 -2.771243 0.526380 +Torque: 0.192016 0.025385 0.190262 + +Polar angle tht: 1.6144; Azimuth angle phi: 1.2654 +Force: -0.858208 -2.820535 0.534007 +Torque: 0.194073 0.022992 0.169537 + +Polar angle tht: 1.6144; Azimuth angle phi: 1.3090 +Force: -0.730760 -2.860281 0.540532 +Torque: 0.195789 0.020330 0.147613 + +Polar angle tht: 1.6144; Azimuth angle phi: 1.3526 +Force: -0.603472 -2.890215 0.545926 +Torque: 0.197168 0.017420 0.124644 + +Polar angle tht: 1.6144; Azimuth angle phi: 1.3963 +Force: -0.477229 -2.910140 0.550167 +Torque: 0.198210 0.014284 0.100792 + +Polar angle tht: 1.6144; Azimuth angle phi: 1.4399 +Force: -0.352910 -2.919932 0.553234 +Torque: 0.198917 0.010948 0.076226 + +Polar angle tht: 1.6144; Azimuth angle phi: 1.4835 +Force: -0.231376 -2.919535 0.555115 +Torque: 0.199293 0.007437 0.051120 + +Polar angle tht: 1.6144; Azimuth angle phi: 1.5272 +Force: -0.113468 -2.908968 0.555799 +Torque: 0.199340 0.003778 0.025651 + +Polar angle tht: 1.6144; Azimuth angle phi: 1.5708 +Force: 0.000000 -2.888320 0.555281 +Torque: 0.199062 0.000000 0.000000 + +Polar angle tht: 1.6144; Azimuth angle phi: 1.6144 +Force: 0.113468 -2.908968 0.555799 +Torque: 0.199340 -0.003778 -0.025651 + +Polar angle tht: 1.6144; Azimuth angle phi: 1.6581 +Force: 0.231376 -2.919535 0.555115 +Torque: 0.199293 -0.007437 -0.051120 + +Polar angle tht: 1.6144; Azimuth angle phi: 1.7017 +Force: 0.352910 -2.919932 0.553234 +Torque: 0.198917 -0.010948 -0.076226 + +Polar angle tht: 1.6144; Azimuth angle phi: 1.7453 +Force: 0.477229 -2.910140 0.550167 +Torque: 0.198210 -0.014284 -0.100792 + +Polar angle tht: 1.6144; Azimuth angle phi: 1.7890 +Force: 0.603472 -2.890215 0.545926 +Torque: 0.197168 -0.017420 -0.124644 + +Polar angle tht: 1.6144; Azimuth angle phi: 1.8326 +Force: 0.730760 -2.860281 0.540532 +Torque: 0.195789 -0.020330 -0.147613 + +Polar angle tht: 1.6144; Azimuth angle phi: 1.8762 +Force: 0.858208 -2.820535 0.534007 +Torque: 0.194073 -0.022992 -0.169537 + +Polar angle tht: 1.6144; Azimuth angle phi: 1.9199 +Force: 0.984926 -2.771243 0.526380 +Torque: 0.192016 -0.025385 -0.190262 + +Polar angle tht: 1.6144; Azimuth angle phi: 1.9635 +Force: 1.110031 -2.712735 0.517682 +Torque: 0.189618 -0.027490 -0.209644 + +Polar angle tht: 1.6144; Azimuth angle phi: 2.0071 +Force: 1.232649 -2.645410 0.507949 +Torque: 0.186877 -0.029291 -0.227546 + +Polar angle tht: 1.6144; Azimuth angle phi: 2.0508 +Force: 1.351925 -2.569725 0.497220 +Torque: 0.183795 -0.030773 -0.243845 + +Polar angle tht: 1.6144; Azimuth angle phi: 2.0944 +Force: 1.467027 -2.486198 0.485539 +Torque: 0.180370 -0.031924 -0.258429 + +Polar angle tht: 1.6144; Azimuth angle phi: 2.1380 +Force: 1.577154 -2.395401 0.472951 +Torque: 0.176605 -0.032735 -0.271198 + +Polar angle tht: 1.6144; Azimuth angle phi: 2.1817 +Force: 1.681539 -2.297955 0.459506 +Torque: 0.172499 -0.033199 -0.282066 + +Polar angle tht: 1.6144; Azimuth angle phi: 2.2253 +Force: 1.779459 -2.194527 0.445255 +Torque: 0.168056 -0.033313 -0.290962 + +Polar angle tht: 1.6144; Azimuth angle phi: 2.2689 +Force: 1.870238 -2.085826 0.430254 +Torque: 0.163279 -0.033074 -0.297829 + +Polar angle tht: 1.6144; Azimuth angle phi: 2.3126 +Force: 1.953249 -1.972595 0.414557 +Torque: 0.158170 -0.032485 -0.302625 + +Polar angle tht: 1.6144; Azimuth angle phi: 2.3562 +Force: 2.027926 -1.855609 0.398224 +Torque: 0.152734 -0.031548 -0.305323 + +Polar angle tht: 1.6144; Azimuth angle phi: 2.3998 +Force: 2.093761 -1.735665 0.381314 +Torque: 0.146976 -0.030272 -0.305912 + +Polar angle tht: 1.6144; Azimuth angle phi: 2.4435 +Force: 2.150311 -1.613580 0.363887 +Torque: 0.140903 -0.028664 -0.304397 + +Polar angle tht: 1.6144; Azimuth angle phi: 2.4871 +Force: 2.197203 -1.490182 0.346005 +Torque: 0.134520 -0.026738 -0.300799 + +Polar angle tht: 1.6144; Azimuth angle phi: 2.5307 +Force: 2.234132 -1.366307 0.327729 +Torque: 0.127837 -0.024506 -0.295153 + +Polar angle tht: 1.6144; Azimuth angle phi: 2.5744 +Force: 2.260867 -1.242789 0.309122 +Torque: 0.120860 -0.021986 -0.287509 + +Polar angle tht: 1.6144; Azimuth angle phi: 2.6180 +Force: 2.277253 -1.120459 0.290244 +Torque: 0.113600 -0.019197 -0.277934 + +Polar angle tht: 1.6144; Azimuth angle phi: 2.6616 +Force: 2.283208 -1.000132 0.271159 +Torque: 0.106068 -0.016159 -0.266507 + +Polar angle tht: 1.6144; Azimuth angle phi: 2.7053 +Force: 2.278728 -0.882608 0.251924 +Torque: 0.098274 -0.012895 -0.253322 + +Polar angle tht: 1.6144; Azimuth angle phi: 2.7489 +Force: 2.263884 -0.768661 0.232601 +Torque: 0.090231 -0.009430 -0.238484 + +Polar angle tht: 1.6144; Azimuth angle phi: 2.7925 +Force: 2.238823 -0.659036 0.213246 +Torque: 0.081952 -0.005790 -0.222113 + +Polar angle tht: 1.6144; Azimuth angle phi: 2.8362 +Force: 2.203768 -0.554443 0.193915 +Torque: 0.073451 -0.002003 -0.204336 + +Polar angle tht: 1.6144; Azimuth angle phi: 2.8798 +Force: 2.159012 -0.455552 0.174663 +Torque: 0.064743 0.001904 -0.185295 + +Polar angle tht: 1.6144; Azimuth angle phi: 2.9234 +Force: 2.104919 -0.362988 0.155542 +Torque: 0.055845 0.005900 -0.165137 + +Polar angle tht: 1.6144; Azimuth angle phi: 2.9671 +Force: 2.041921 -0.277324 0.136601 +Torque: 0.046773 0.009956 -0.144019 + +Polar angle tht: 1.6144; Azimuth angle phi: 3.0107 +Force: 1.970515 -0.199083 0.117886 +Torque: 0.037545 0.014039 -0.122105 + +Polar angle tht: 1.6144; Azimuth angle phi: 3.0543 +Force: 1.891256 -0.128727 0.099444 +Torque: 0.028178 0.018121 -0.099563 + +Polar angle tht: 1.6144; Azimuth angle phi: 3.0980 +Force: 1.804757 -0.066660 0.081313 +Torque: 0.018693 0.022169 -0.076566 + +Polar angle tht: 1.6144; Azimuth angle phi: 3.1416 +Force: 1.792487 0.000000 0.078168 +Torque: 0.000000 0.022839 0.000000 + +Polar angle tht: 1.6144; Azimuth angle phi: 3.1852 +Force: 1.804757 0.066660 0.081313 +Torque: -0.018693 0.022169 0.076567 + +Polar angle tht: 1.6144; Azimuth angle phi: 3.2289 +Force: 1.891256 0.128727 0.099444 +Torque: -0.028179 0.018121 0.099566 + +Polar angle tht: 1.6144; Azimuth angle phi: 3.2725 +Force: 1.970515 0.199083 0.117886 +Torque: -0.037545 0.014039 0.122110 + +Polar angle tht: 1.6144; Azimuth angle phi: 3.3161 +Force: 2.041921 0.277324 0.136601 +Torque: -0.046774 0.009956 0.144026 + +Polar angle tht: 1.6144; Azimuth angle phi: 3.3598 +Force: 2.104919 0.362988 0.155542 +Torque: -0.055847 0.005900 0.165146 + +Polar angle tht: 1.6144; Azimuth angle phi: 3.4034 +Force: 2.159012 0.455552 0.174663 +Torque: -0.064745 0.001904 0.185305 + +Polar angle tht: 1.6144; Azimuth angle phi: 3.4470 +Force: 2.203768 0.554443 0.193915 +Torque: -0.073453 -0.002003 0.204348 + +Polar angle tht: 1.6144; Azimuth angle phi: 3.4907 +Force: 2.238823 0.659036 0.213246 +Torque: -0.081954 -0.005790 0.222126 + +Polar angle tht: 1.6144; Azimuth angle phi: 3.5343 +Force: 2.263884 0.768661 0.232601 +Torque: -0.090234 -0.009430 0.238499 + +Polar angle tht: 1.6144; Azimuth angle phi: 3.5779 +Force: 2.278728 0.882608 0.251924 +Torque: -0.098277 -0.012895 0.253338 + +Polar angle tht: 1.6144; Azimuth angle phi: 3.6216 +Force: 2.283208 1.000132 0.271159 +Torque: -0.106072 -0.016159 0.266525 + +Polar angle tht: 1.6144; Azimuth angle phi: 3.6652 +Force: 2.277253 1.120459 0.290244 +Torque: -0.113605 -0.019197 0.277953 + +Polar angle tht: 1.6144; Azimuth angle phi: 3.7088 +Force: 2.260867 1.242789 0.309122 +Torque: -0.120865 -0.021986 0.287529 + +Polar angle tht: 1.6144; Azimuth angle phi: 3.7525 +Force: 2.234132 1.366307 0.327729 +Torque: -0.127842 -0.024506 0.295173 + +Polar angle tht: 1.6144; Azimuth angle phi: 3.7961 +Force: 2.197203 1.490182 0.346005 +Torque: -0.134526 -0.026738 0.300820 + +Polar angle tht: 1.6144; Azimuth angle phi: 3.8397 +Force: 2.150311 1.613580 0.363887 +Torque: -0.140909 -0.028664 0.304418 + +Polar angle tht: 1.6144; Azimuth angle phi: 3.8834 +Force: 2.093761 1.735665 0.381314 +Torque: -0.146982 -0.030272 0.305933 + +Polar angle tht: 1.6144; Azimuth angle phi: 3.9270 +Force: 2.027926 1.855609 0.398224 +Torque: -0.152740 -0.031548 0.305344 + +Polar angle tht: 1.6144; Azimuth angle phi: 3.9706 +Force: 1.953249 1.972595 0.414557 +Torque: -0.158177 -0.032485 0.302646 + +Polar angle tht: 1.6144; Azimuth angle phi: 4.0143 +Force: 1.870238 2.085826 0.430254 +Torque: -0.163286 -0.033074 0.297850 + +Polar angle tht: 1.6144; Azimuth angle phi: 4.0579 +Force: 1.779459 2.194527 0.445255 +Torque: -0.168064 -0.033313 0.290983 + +Polar angle tht: 1.6144; Azimuth angle phi: 4.1015 +Force: 1.681539 2.297955 0.459506 +Torque: -0.172507 -0.033199 0.282086 + +Polar angle tht: 1.6144; Azimuth angle phi: 4.1452 +Force: 1.577154 2.395401 0.472951 +Torque: -0.176613 -0.032735 0.271217 + +Polar angle tht: 1.6144; Azimuth angle phi: 4.1888 +Force: 1.467027 2.486198 0.485539 +Torque: -0.180379 -0.031924 0.258447 + +Polar angle tht: 1.6144; Azimuth angle phi: 4.2324 +Force: 1.351925 2.569725 0.497220 +Torque: -0.183803 -0.030773 0.243863 + +Polar angle tht: 1.6144; Azimuth angle phi: 4.2761 +Force: 1.232649 2.645410 0.507949 +Torque: -0.186886 -0.029291 0.227563 + +Polar angle tht: 1.6144; Azimuth angle phi: 4.3197 +Force: 1.110031 2.712735 0.517682 +Torque: -0.189627 -0.027490 0.209659 + +Polar angle tht: 1.6144; Azimuth angle phi: 4.3633 +Force: 0.984926 2.771243 0.526380 +Torque: -0.192025 -0.025385 0.190276 + +Polar angle tht: 1.6144; Azimuth angle phi: 4.4070 +Force: 0.858208 2.820535 0.534007 +Torque: -0.194082 -0.022992 0.169549 + +Polar angle tht: 1.6144; Azimuth angle phi: 4.4506 +Force: 0.730760 2.860281 0.540532 +Torque: -0.195799 -0.020330 0.147624 + +Polar angle tht: 1.6144; Azimuth angle phi: 4.4942 +Force: 0.603472 2.890215 0.545926 +Torque: -0.197177 -0.017420 0.124653 + +Polar angle tht: 1.6144; Azimuth angle phi: 4.5379 +Force: 0.477229 2.910140 0.550167 +Torque: -0.198219 -0.014284 0.100800 + +Polar angle tht: 1.6144; Azimuth angle phi: 4.5815 +Force: 0.352910 2.919932 0.553234 +Torque: -0.198927 -0.010948 0.076232 + +Polar angle tht: 1.6144; Azimuth angle phi: 4.6251 +Force: 0.231376 2.919535 0.555115 +Torque: -0.199303 -0.007437 0.051124 + +Polar angle tht: 1.6144; Azimuth angle phi: 4.6688 +Force: 0.113468 2.908968 0.555799 +Torque: -0.199350 -0.003778 0.025653 + +Polar angle tht: 1.6144; Azimuth angle phi: 4.7124 +Force: 0.000000 2.888320 0.555281 +Torque: -0.199072 0.000000 -0.000000 + +Polar angle tht: 1.6144; Azimuth angle phi: 4.7560 +Force: -0.113468 2.908968 0.555799 +Torque: -0.199350 0.003778 -0.025653 + +Polar angle tht: 1.6144; Azimuth angle phi: 4.7997 +Force: -0.231376 2.919535 0.555115 +Torque: -0.199303 0.007437 -0.051124 + +Polar angle tht: 1.6144; Azimuth angle phi: 4.8433 +Force: -0.352910 2.919932 0.553234 +Torque: -0.198927 0.010948 -0.076232 + +Polar angle tht: 1.6144; Azimuth angle phi: 4.8869 +Force: -0.477229 2.910140 0.550167 +Torque: -0.198219 0.014284 -0.100800 + +Polar angle tht: 1.6144; Azimuth angle phi: 4.9306 +Force: -0.603472 2.890215 0.545926 +Torque: -0.197177 0.017420 -0.124653 + +Polar angle tht: 1.6144; Azimuth angle phi: 4.9742 +Force: -0.730760 2.860281 0.540532 +Torque: -0.195799 0.020330 -0.147624 + +Polar angle tht: 1.6144; Azimuth angle phi: 5.0178 +Force: -0.858208 2.820535 0.534007 +Torque: -0.194082 0.022992 -0.169549 + +Polar angle tht: 1.6144; Azimuth angle phi: 5.0615 +Force: -0.984926 2.771243 0.526380 +Torque: -0.192025 0.025385 -0.190276 + +Polar angle tht: 1.6144; Azimuth angle phi: 5.1051 +Force: -1.110031 2.712735 0.517682 +Torque: -0.189627 0.027490 -0.209659 + +Polar angle tht: 1.6144; Azimuth angle phi: 5.1487 +Force: -1.232649 2.645410 0.507949 +Torque: -0.186886 0.029291 -0.227563 + +Polar angle tht: 1.6144; Azimuth angle phi: 5.1924 +Force: -1.351925 2.569725 0.497220 +Torque: -0.183803 0.030773 -0.243863 + +Polar angle tht: 1.6144; Azimuth angle phi: 5.2360 +Force: -1.467027 2.486198 0.485539 +Torque: -0.180379 0.031924 -0.258447 + +Polar angle tht: 1.6144; Azimuth angle phi: 5.2796 +Force: -1.577154 2.395401 0.472951 +Torque: -0.176613 0.032735 -0.271217 + +Polar angle tht: 1.6144; Azimuth angle phi: 5.3233 +Force: -1.681539 2.297955 0.459506 +Torque: -0.172507 0.033199 -0.282086 + +Polar angle tht: 1.6144; Azimuth angle phi: 5.3669 +Force: -1.779459 2.194527 0.445255 +Torque: -0.168064 0.033313 -0.290983 + +Polar angle tht: 1.6144; Azimuth angle phi: 5.4105 +Force: -1.870238 2.085826 0.430254 +Torque: -0.163286 0.033074 -0.297850 + +Polar angle tht: 1.6144; Azimuth angle phi: 5.4542 +Force: -1.953249 1.972595 0.414557 +Torque: -0.158177 0.032485 -0.302646 + +Polar angle tht: 1.6144; Azimuth angle phi: 5.4978 +Force: -2.027926 1.855609 0.398224 +Torque: -0.152740 0.031548 -0.305344 + +Polar angle tht: 1.6144; Azimuth angle phi: 5.5414 +Force: -2.093761 1.735665 0.381314 +Torque: -0.146982 0.030272 -0.305933 + +Polar angle tht: 1.6144; Azimuth angle phi: 5.5851 +Force: -2.150311 1.613580 0.363887 +Torque: -0.140909 0.028664 -0.304418 + +Polar angle tht: 1.6144; Azimuth angle phi: 5.6287 +Force: -2.197203 1.490182 0.346005 +Torque: -0.134526 0.026738 -0.300820 + +Polar angle tht: 1.6144; Azimuth angle phi: 5.6723 +Force: -2.234132 1.366307 0.327729 +Torque: -0.127842 0.024506 -0.295173 + +Polar angle tht: 1.6144; Azimuth angle phi: 5.7160 +Force: -2.260867 1.242789 0.309122 +Torque: -0.120865 0.021986 -0.287529 + +Polar angle tht: 1.6144; Azimuth angle phi: 5.7596 +Force: -2.277253 1.120459 0.290244 +Torque: -0.113605 0.019197 -0.277953 + +Polar angle tht: 1.6144; Azimuth angle phi: 5.8032 +Force: -2.283208 1.000132 0.271159 +Torque: -0.106072 0.016159 -0.266525 + +Polar angle tht: 1.6144; Azimuth angle phi: 5.8469 +Force: -2.278728 0.882608 0.251924 +Torque: -0.098277 0.012895 -0.253338 + +Polar angle tht: 1.6144; Azimuth angle phi: 5.8905 +Force: -2.263884 0.768661 0.232601 +Torque: -0.090234 0.009430 -0.238499 + +Polar angle tht: 1.6144; Azimuth angle phi: 5.9341 +Force: -2.238823 0.659036 0.213246 +Torque: -0.081954 0.005790 -0.222126 + +Polar angle tht: 1.6144; Azimuth angle phi: 5.9778 +Force: -2.203768 0.554443 0.193915 +Torque: -0.073453 0.002003 -0.204348 + +Polar angle tht: 1.6144; Azimuth angle phi: 6.0214 +Force: -2.159012 0.455552 0.174663 +Torque: -0.064745 -0.001904 -0.185305 + +Polar angle tht: 1.6144; Azimuth angle phi: 6.0650 +Force: -2.104919 0.362988 0.155542 +Torque: -0.055847 -0.005900 -0.165146 + +Polar angle tht: 1.6144; Azimuth angle phi: 6.1087 +Force: -2.041921 0.277324 0.136601 +Torque: -0.046774 -0.009956 -0.144026 + +Polar angle tht: 1.6144; Azimuth angle phi: 6.1523 +Force: -1.970515 0.199083 0.117886 +Torque: -0.037545 -0.014039 -0.122110 + +Polar angle tht: 1.6144; Azimuth angle phi: 6.1959 +Force: -1.891256 0.128727 0.099444 +Torque: -0.028179 -0.018121 -0.099566 + +Polar angle tht: 1.6144; Azimuth angle phi: 6.2396 +Force: -1.804757 0.066660 0.081313 +Torque: -0.018693 -0.022169 -0.076567 + +Polar angle tht: 1.6144; Azimuth angle phi: 6.2832 +Force: -1.792487 0.000000 0.078168 +Torque: 0.000000 -0.022839 -0.000000 + +Polar angle tht: 1.6581; Azimuth angle phi: 0.0000 +Force: -2.033619 0.000000 0.179361 +Torque: -0.000000 -0.019100 -0.000001 + +Polar angle tht: 1.6581; Azimuth angle phi: 0.0436 +Force: -2.030387 -0.079963 0.179745 +Torque: 0.024419 -0.019060 0.086148 + +Polar angle tht: 1.6581; Azimuth angle phi: 0.0873 +Force: -2.050522 -0.157420 0.187556 +Torque: 0.044485 -0.017717 0.151981 + +Polar angle tht: 1.6581; Azimuth angle phi: 0.1309 +Force: -2.128518 -0.235233 0.210336 +Torque: 0.055040 -0.013660 0.174142 + +Polar angle tht: 1.6581; Azimuth angle phi: 0.1745 +Force: -2.198385 -0.320841 0.233311 +Torque: 0.065451 -0.009601 0.195579 + +Polar angle tht: 1.6581; Azimuth angle phi: 0.2182 +Force: -2.259570 -0.413769 0.256429 +Torque: 0.075697 -0.005572 0.216123 + +Polar angle tht: 1.6581; Azimuth angle phi: 0.2618 +Force: -2.311584 -0.513484 0.279634 +Torque: 0.085758 -0.001601 0.235614 + +Polar angle tht: 1.6581; Azimuth angle phi: 0.3054 +Force: -2.354001 -0.619400 0.302871 +Torque: 0.095616 0.002279 0.253898 + +Polar angle tht: 1.6581; Azimuth angle phi: 0.3491 +Force: -2.386462 -0.730882 0.326079 +Torque: 0.105251 0.006041 0.270827 + +Polar angle tht: 1.6581; Azimuth angle phi: 0.3927 +Force: -2.408680 -0.847249 0.349198 +Torque: 0.114648 0.009656 0.286264 + +Polar angle tht: 1.6581; Azimuth angle phi: 0.4363 +Force: -2.420440 -0.967782 0.372163 +Torque: 0.123789 0.013095 0.300082 + +Polar angle tht: 1.6581; Azimuth angle phi: 0.4800 +Force: -2.421600 -1.091726 0.394911 +Torque: 0.132659 0.016335 0.312166 + +Polar angle tht: 1.6581; Azimuth angle phi: 0.5236 +Force: -2.412097 -1.218297 0.417375 +Torque: 0.141244 0.019349 0.322412 + +Polar angle tht: 1.6581; Azimuth angle phi: 0.5672 +Force: -2.391941 -1.346688 0.439490 +Torque: 0.149531 0.022115 0.330728 + +Polar angle tht: 1.6581; Azimuth angle phi: 0.6109 +Force: -2.361220 -1.476074 0.461187 +Torque: 0.157507 0.024614 0.337039 + +Polar angle tht: 1.6581; Azimuth angle phi: 0.6545 +Force: -2.320098 -1.605617 0.482400 +Torque: 0.165160 0.026825 0.341281 + +Polar angle tht: 1.6581; Azimuth angle phi: 0.6981 +Force: -2.268812 -1.734476 0.503061 +Torque: 0.172481 0.028732 0.343406 + +Polar angle tht: 1.6581; Azimuth angle phi: 0.7418 +Force: -2.207674 -1.861808 0.523104 +Torque: 0.179459 0.030322 0.343382 + +Polar angle tht: 1.6581; Azimuth angle phi: 0.7854 +Force: -2.137064 -1.986779 0.542461 +Torque: 0.186087 0.031582 0.341191 + +Polar angle tht: 1.6581; Azimuth angle phi: 0.8290 +Force: -2.057433 -2.108564 0.561069 +Torque: 0.192356 0.032503 0.336832 + +Polar angle tht: 1.6581; Azimuth angle phi: 0.8727 +Force: -1.969296 -2.226361 0.578862 +Torque: 0.198259 0.033080 0.330319 + +Polar angle tht: 1.6581; Azimuth angle phi: 0.9163 +Force: -1.873227 -2.339390 0.595780 +Torque: 0.203792 0.033307 0.321682 + +Polar angle tht: 1.6581; Azimuth angle phi: 0.9599 +Force: -1.769859 -2.446902 0.611763 +Torque: 0.208949 0.033183 0.310965 + +Polar angle tht: 1.6581; Azimuth angle phi: 1.0036 +Force: -1.659876 -2.548185 0.626753 +Torque: 0.213725 0.032710 0.298229 + +Polar angle tht: 1.6581; Azimuth angle phi: 1.0472 +Force: -1.544011 -2.642565 0.640695 +Torque: 0.218117 0.031893 0.283549 + +Polar angle tht: 1.6581; Azimuth angle phi: 1.0908 +Force: -1.423036 -2.729418 0.653539 +Torque: 0.222123 0.030737 0.267014 + +Polar angle tht: 1.6581; Azimuth angle phi: 1.1345 +Force: -1.297760 -2.808167 0.665235 +Torque: 0.225741 0.029251 0.248727 + +Polar angle tht: 1.6581; Azimuth angle phi: 1.1781 +Force: -1.169024 -2.878292 0.675739 +Torque: 0.228969 0.027449 0.228802 + +Polar angle tht: 1.6581; Azimuth angle phi: 1.2217 +Force: -1.037692 -2.939331 0.685010 +Torque: 0.231806 0.025344 0.207369 + +Polar angle tht: 1.6581; Azimuth angle phi: 1.2654 +Force: -0.904644 -2.990883 0.693011 +Torque: 0.234253 0.022952 0.184564 + +Polar angle tht: 1.6581; Azimuth angle phi: 1.3090 +Force: -0.770773 -3.032614 0.699710 +Torque: 0.236310 0.020292 0.160537 + +Polar angle tht: 1.6581; Azimuth angle phi: 1.3526 +Force: -0.636977 -3.064256 0.705080 +Torque: 0.237977 0.017386 0.135445 + +Polar angle tht: 1.6581; Azimuth angle phi: 1.3963 +Force: -0.504149 -3.085610 0.709096 +Torque: 0.239257 0.014255 0.109453 + +Polar angle tht: 1.6581; Azimuth angle phi: 1.4399 +Force: -0.373178 -3.096549 0.711740 +Torque: 0.240150 0.010925 0.082734 + +Polar angle tht: 1.6581; Azimuth angle phi: 1.4835 +Force: -0.244934 -3.097015 0.712999 +Torque: 0.240660 0.007421 0.055464 + +Polar angle tht: 1.6581; Azimuth angle phi: 1.5272 +Force: -0.120267 -3.087025 0.712864 +Torque: 0.240789 0.003769 0.027825 + +Polar angle tht: 1.6581; Azimuth angle phi: 1.5708 +Force: 0.000000 -3.066667 0.711332 +Torque: 0.240539 0.000000 0.000000 + +Polar angle tht: 1.6581; Azimuth angle phi: 1.6144 +Force: 0.120267 -3.087025 0.712864 +Torque: 0.240789 -0.003769 -0.027825 + +Polar angle tht: 1.6581; Azimuth angle phi: 1.6581 +Force: 0.244934 -3.097015 0.712999 +Torque: 0.240660 -0.007421 -0.055464 + +Polar angle tht: 1.6581; Azimuth angle phi: 1.7017 +Force: 0.373178 -3.096549 0.711740 +Torque: 0.240150 -0.010925 -0.082734 + +Polar angle tht: 1.6581; Azimuth angle phi: 1.7453 +Force: 0.504149 -3.085610 0.709096 +Torque: 0.239257 -0.014255 -0.109453 + +Polar angle tht: 1.6581; Azimuth angle phi: 1.7890 +Force: 0.636977 -3.064256 0.705080 +Torque: 0.237977 -0.017386 -0.135445 + +Polar angle tht: 1.6581; Azimuth angle phi: 1.8326 +Force: 0.770773 -3.032614 0.699710 +Torque: 0.236310 -0.020292 -0.160537 + +Polar angle tht: 1.6581; Azimuth angle phi: 1.8762 +Force: 0.904644 -2.990883 0.693011 +Torque: 0.234253 -0.022952 -0.184564 + +Polar angle tht: 1.6581; Azimuth angle phi: 1.9199 +Force: 1.037692 -2.939331 0.685010 +Torque: 0.231806 -0.025344 -0.207369 + +Polar angle tht: 1.6581; Azimuth angle phi: 1.9635 +Force: 1.169024 -2.878292 0.675739 +Torque: 0.228969 -0.027449 -0.228802 + +Polar angle tht: 1.6581; Azimuth angle phi: 2.0071 +Force: 1.297760 -2.808167 0.665235 +Torque: 0.225741 -0.029251 -0.248727 + +Polar angle tht: 1.6581; Azimuth angle phi: 2.0508 +Force: 1.423036 -2.729418 0.653539 +Torque: 0.222123 -0.030737 -0.267014 + +Polar angle tht: 1.6581; Azimuth angle phi: 2.0944 +Force: 1.544011 -2.642565 0.640695 +Torque: 0.218117 -0.031893 -0.283549 + +Polar angle tht: 1.6581; Azimuth angle phi: 2.1380 +Force: 1.659876 -2.548185 0.626753 +Torque: 0.213725 -0.032710 -0.298229 + +Polar angle tht: 1.6581; Azimuth angle phi: 2.1817 +Force: 1.769859 -2.446902 0.611763 +Torque: 0.208949 -0.033183 -0.310965 + +Polar angle tht: 1.6581; Azimuth angle phi: 2.2253 +Force: 1.873227 -2.339390 0.595780 +Torque: 0.203792 -0.033307 -0.321682 + +Polar angle tht: 1.6581; Azimuth angle phi: 2.2689 +Force: 1.969296 -2.226361 0.578862 +Torque: 0.198259 -0.033080 -0.330319 + +Polar angle tht: 1.6581; Azimuth angle phi: 2.3126 +Force: 2.057433 -2.108564 0.561069 +Torque: 0.192356 -0.032503 -0.336832 + +Polar angle tht: 1.6581; Azimuth angle phi: 2.3562 +Force: 2.137064 -1.986779 0.542461 +Torque: 0.186087 -0.031582 -0.341191 + +Polar angle tht: 1.6581; Azimuth angle phi: 2.3998 +Force: 2.207674 -1.861808 0.523104 +Torque: 0.179459 -0.030322 -0.343382 + +Polar angle tht: 1.6581; Azimuth angle phi: 2.4435 +Force: 2.268812 -1.734476 0.503061 +Torque: 0.172481 -0.028732 -0.343406 + +Polar angle tht: 1.6581; Azimuth angle phi: 2.4871 +Force: 2.320098 -1.605617 0.482400 +Torque: 0.165160 -0.026825 -0.341281 + +Polar angle tht: 1.6581; Azimuth angle phi: 2.5307 +Force: 2.361220 -1.476074 0.461187 +Torque: 0.157507 -0.024614 -0.337039 + +Polar angle tht: 1.6581; Azimuth angle phi: 2.5744 +Force: 2.391941 -1.346688 0.439490 +Torque: 0.149531 -0.022115 -0.330728 + +Polar angle tht: 1.6581; Azimuth angle phi: 2.6180 +Force: 2.412097 -1.218297 0.417375 +Torque: 0.141244 -0.019349 -0.322412 + +Polar angle tht: 1.6581; Azimuth angle phi: 2.6616 +Force: 2.421600 -1.091726 0.394911 +Torque: 0.132659 -0.016335 -0.312166 + +Polar angle tht: 1.6581; Azimuth angle phi: 2.7053 +Force: 2.420440 -0.967782 0.372163 +Torque: 0.123789 -0.013095 -0.300082 + +Polar angle tht: 1.6581; Azimuth angle phi: 2.7489 +Force: 2.408680 -0.847249 0.349198 +Torque: 0.114648 -0.009656 -0.286264 + +Polar angle tht: 1.6581; Azimuth angle phi: 2.7925 +Force: 2.386462 -0.730882 0.326079 +Torque: 0.105251 -0.006041 -0.270827 + +Polar angle tht: 1.6581; Azimuth angle phi: 2.8362 +Force: 2.354001 -0.619400 0.302871 +Torque: 0.095616 -0.002279 -0.253898 + +Polar angle tht: 1.6581; Azimuth angle phi: 2.8798 +Force: 2.311584 -0.513484 0.279634 +Torque: 0.085758 0.001601 -0.235614 + +Polar angle tht: 1.6581; Azimuth angle phi: 2.9234 +Force: 2.259570 -0.413769 0.256429 +Torque: 0.075697 0.005572 -0.216123 + +Polar angle tht: 1.6581; Azimuth angle phi: 2.9671 +Force: 2.198385 -0.320841 0.233311 +Torque: 0.065451 0.009601 -0.195579 + +Polar angle tht: 1.6581; Azimuth angle phi: 3.0107 +Force: 2.128518 -0.235233 0.210336 +Torque: 0.055040 0.013660 -0.174142 + +Polar angle tht: 1.6581; Azimuth angle phi: 3.0543 +Force: 2.050522 -0.157420 0.187556 +Torque: 0.044485 0.017717 -0.151981 + +Polar angle tht: 1.6581; Azimuth angle phi: 3.0980 +Force: 2.030387 -0.079963 0.179745 +Torque: 0.024419 0.019060 -0.086148 + +Polar angle tht: 1.6581; Azimuth angle phi: 3.1416 +Force: 2.033619 0.000000 0.179361 +Torque: -0.000000 0.019100 0.000001 + +Polar angle tht: 1.6581; Azimuth angle phi: 3.1852 +Force: 2.030387 0.079963 0.179745 +Torque: -0.024419 0.019060 0.086150 + +Polar angle tht: 1.6581; Azimuth angle phi: 3.2289 +Force: 2.050522 0.157420 0.187556 +Torque: -0.044485 0.017717 0.151984 + +Polar angle tht: 1.6581; Azimuth angle phi: 3.2725 +Force: 2.128518 0.235233 0.210336 +Torque: -0.055041 0.013660 0.174146 + +Polar angle tht: 1.6581; Azimuth angle phi: 3.3161 +Force: 2.198385 0.320841 0.233311 +Torque: -0.065452 0.009601 0.195585 + +Polar angle tht: 1.6581; Azimuth angle phi: 3.3598 +Force: 2.259570 0.413769 0.256429 +Torque: -0.075699 0.005572 0.216131 + +Polar angle tht: 1.6581; Azimuth angle phi: 3.4034 +Force: 2.311584 0.513484 0.279634 +Torque: -0.085760 0.001601 0.235624 + +Polar angle tht: 1.6581; Azimuth angle phi: 3.4470 +Force: 2.354001 0.619400 0.302871 +Torque: -0.095618 -0.002279 0.253909 + +Polar angle tht: 1.6581; Azimuth angle phi: 3.4907 +Force: 2.386462 0.730882 0.326079 +Torque: -0.105254 -0.006041 0.270839 + +Polar angle tht: 1.6581; Azimuth angle phi: 3.5343 +Force: 2.408680 0.847249 0.349198 +Torque: -0.114651 -0.009656 0.286278 + +Polar angle tht: 1.6581; Azimuth angle phi: 3.5779 +Force: 2.420440 0.967782 0.372163 +Torque: -0.123793 -0.013095 0.300098 + +Polar angle tht: 1.6581; Azimuth angle phi: 3.6216 +Force: 2.421600 1.091726 0.394911 +Torque: -0.132664 -0.016335 0.312183 + +Polar angle tht: 1.6581; Azimuth angle phi: 3.6652 +Force: 2.412097 1.218297 0.417375 +Torque: -0.141249 -0.019349 0.322429 + +Polar angle tht: 1.6581; Azimuth angle phi: 3.7088 +Force: 2.391941 1.346688 0.439490 +Torque: -0.149536 -0.022115 0.330747 + +Polar angle tht: 1.6581; Azimuth angle phi: 3.7525 +Force: 2.361220 1.476074 0.461187 +Torque: -0.157513 -0.024614 0.337058 + +Polar angle tht: 1.6581; Azimuth angle phi: 3.7961 +Force: 2.320098 1.605617 0.482400 +Torque: -0.165166 -0.026825 0.341301 + +Polar angle tht: 1.6581; Azimuth angle phi: 3.8397 +Force: 2.268812 1.734476 0.503061 +Torque: -0.172488 -0.028732 0.343426 + +Polar angle tht: 1.6581; Azimuth angle phi: 3.8834 +Force: 2.207674 1.861808 0.523104 +Torque: -0.179466 -0.030322 0.343402 + +Polar angle tht: 1.6581; Azimuth angle phi: 3.9270 +Force: 2.137064 1.986779 0.542461 +Torque: -0.186094 -0.031582 0.341212 + +Polar angle tht: 1.6581; Azimuth angle phi: 3.9706 +Force: 2.057433 2.108564 0.561069 +Torque: -0.192364 -0.032503 0.336853 + +Polar angle tht: 1.6581; Azimuth angle phi: 4.0143 +Force: 1.969296 2.226361 0.578862 +Torque: -0.198268 -0.033080 0.330340 + +Polar angle tht: 1.6581; Azimuth angle phi: 4.0579 +Force: 1.873227 2.339390 0.595780 +Torque: -0.203801 -0.033307 0.321702 + +Polar angle tht: 1.6581; Azimuth angle phi: 4.1015 +Force: 1.769859 2.446902 0.611763 +Torque: -0.208958 -0.033183 0.310985 + +Polar angle tht: 1.6581; Azimuth angle phi: 4.1452 +Force: 1.659876 2.548185 0.626753 +Torque: -0.213734 -0.032710 0.298248 + +Polar angle tht: 1.6581; Azimuth angle phi: 4.1888 +Force: 1.544011 2.642565 0.640695 +Torque: -0.218127 -0.031893 0.283567 + +Polar angle tht: 1.6581; Azimuth angle phi: 4.2324 +Force: 1.423036 2.729418 0.653539 +Torque: -0.222133 -0.030737 0.267031 + +Polar angle tht: 1.6581; Azimuth angle phi: 4.2761 +Force: 1.297760 2.808167 0.665235 +Torque: -0.225751 -0.029251 0.248743 + +Polar angle tht: 1.6581; Azimuth angle phi: 4.3197 +Force: 1.169024 2.878292 0.675739 +Torque: -0.228979 -0.027449 0.228817 + +Polar angle tht: 1.6581; Azimuth angle phi: 4.3633 +Force: 1.037692 2.939331 0.685010 +Torque: -0.231817 -0.025344 0.207382 + +Polar angle tht: 1.6581; Azimuth angle phi: 4.4070 +Force: 0.904644 2.990883 0.693011 +Torque: -0.234264 -0.022952 0.184576 + +Polar angle tht: 1.6581; Azimuth angle phi: 4.4506 +Force: 0.770773 3.032614 0.699710 +Torque: -0.236321 -0.020292 0.160548 + +Polar angle tht: 1.6581; Azimuth angle phi: 4.4942 +Force: 0.636977 3.064256 0.705080 +Torque: -0.237988 -0.017386 0.135454 + +Polar angle tht: 1.6581; Azimuth angle phi: 4.5379 +Force: 0.504149 3.085610 0.709096 +Torque: -0.239268 -0.014255 0.109461 + +Polar angle tht: 1.6581; Azimuth angle phi: 4.5815 +Force: 0.373178 3.096549 0.711740 +Torque: -0.240162 -0.010925 0.082739 + +Polar angle tht: 1.6581; Azimuth angle phi: 4.6251 +Force: 0.244934 3.097015 0.712999 +Torque: -0.240672 -0.007421 0.055468 + +Polar angle tht: 1.6581; Azimuth angle phi: 4.6688 +Force: 0.120267 3.087025 0.712864 +Torque: -0.240801 -0.003769 0.027826 + +Polar angle tht: 1.6581; Azimuth angle phi: 4.7124 +Force: 0.000000 3.066667 0.711332 +Torque: -0.240551 0.000000 -0.000000 + +Polar angle tht: 1.6581; Azimuth angle phi: 4.7560 +Force: -0.120267 3.087025 0.712864 +Torque: -0.240801 0.003769 -0.027826 + +Polar angle tht: 1.6581; Azimuth angle phi: 4.7997 +Force: -0.244934 3.097015 0.712999 +Torque: -0.240672 0.007421 -0.055468 + +Polar angle tht: 1.6581; Azimuth angle phi: 4.8433 +Force: -0.373178 3.096549 0.711740 +Torque: -0.240162 0.010925 -0.082739 + +Polar angle tht: 1.6581; Azimuth angle phi: 4.8869 +Force: -0.504149 3.085610 0.709096 +Torque: -0.239268 0.014255 -0.109461 + +Polar angle tht: 1.6581; Azimuth angle phi: 4.9306 +Force: -0.636977 3.064256 0.705080 +Torque: -0.237988 0.017386 -0.135454 + +Polar angle tht: 1.6581; Azimuth angle phi: 4.9742 +Force: -0.770773 3.032614 0.699710 +Torque: -0.236321 0.020292 -0.160548 + +Polar angle tht: 1.6581; Azimuth angle phi: 5.0178 +Force: -0.904644 2.990883 0.693011 +Torque: -0.234264 0.022952 -0.184576 + +Polar angle tht: 1.6581; Azimuth angle phi: 5.0615 +Force: -1.037692 2.939331 0.685010 +Torque: -0.231817 0.025344 -0.207382 + +Polar angle tht: 1.6581; Azimuth angle phi: 5.1051 +Force: -1.169024 2.878292 0.675739 +Torque: -0.228979 0.027449 -0.228817 + +Polar angle tht: 1.6581; Azimuth angle phi: 5.1487 +Force: -1.297760 2.808167 0.665235 +Torque: -0.225751 0.029251 -0.248743 + +Polar angle tht: 1.6581; Azimuth angle phi: 5.1924 +Force: -1.423036 2.729418 0.653539 +Torque: -0.222133 0.030737 -0.267031 + +Polar angle tht: 1.6581; Azimuth angle phi: 5.2360 +Force: -1.544011 2.642565 0.640695 +Torque: -0.218127 0.031893 -0.283567 + +Polar angle tht: 1.6581; Azimuth angle phi: 5.2796 +Force: -1.659876 2.548185 0.626753 +Torque: -0.213734 0.032710 -0.298248 + +Polar angle tht: 1.6581; Azimuth angle phi: 5.3233 +Force: -1.769859 2.446902 0.611763 +Torque: -0.208958 0.033183 -0.310985 + +Polar angle tht: 1.6581; Azimuth angle phi: 5.3669 +Force: -1.873227 2.339390 0.595780 +Torque: -0.203801 0.033307 -0.321702 + +Polar angle tht: 1.6581; Azimuth angle phi: 5.4105 +Force: -1.969296 2.226361 0.578862 +Torque: -0.198268 0.033080 -0.330340 + +Polar angle tht: 1.6581; Azimuth angle phi: 5.4542 +Force: -2.057433 2.108564 0.561069 +Torque: -0.192364 0.032503 -0.336853 + +Polar angle tht: 1.6581; Azimuth angle phi: 5.4978 +Force: -2.137064 1.986779 0.542461 +Torque: -0.186094 0.031582 -0.341212 + +Polar angle tht: 1.6581; Azimuth angle phi: 5.5414 +Force: -2.207674 1.861808 0.523104 +Torque: -0.179466 0.030322 -0.343402 + +Polar angle tht: 1.6581; Azimuth angle phi: 5.5851 +Force: -2.268812 1.734476 0.503061 +Torque: -0.172488 0.028732 -0.343426 + +Polar angle tht: 1.6581; Azimuth angle phi: 5.6287 +Force: -2.320098 1.605617 0.482400 +Torque: -0.165166 0.026825 -0.341301 + +Polar angle tht: 1.6581; Azimuth angle phi: 5.6723 +Force: -2.361220 1.476074 0.461187 +Torque: -0.157513 0.024614 -0.337058 + +Polar angle tht: 1.6581; Azimuth angle phi: 5.7160 +Force: -2.391941 1.346688 0.439490 +Torque: -0.149536 0.022115 -0.330747 + +Polar angle tht: 1.6581; Azimuth angle phi: 5.7596 +Force: -2.412097 1.218297 0.417375 +Torque: -0.141249 0.019349 -0.322429 + +Polar angle tht: 1.6581; Azimuth angle phi: 5.8032 +Force: -2.421600 1.091726 0.394911 +Torque: -0.132664 0.016335 -0.312183 + +Polar angle tht: 1.6581; Azimuth angle phi: 5.8469 +Force: -2.420440 0.967782 0.372163 +Torque: -0.123793 0.013095 -0.300098 + +Polar angle tht: 1.6581; Azimuth angle phi: 5.8905 +Force: -2.408680 0.847249 0.349198 +Torque: -0.114651 0.009656 -0.286278 + +Polar angle tht: 1.6581; Azimuth angle phi: 5.9341 +Force: -2.386462 0.730882 0.326079 +Torque: -0.105254 0.006041 -0.270839 + +Polar angle tht: 1.6581; Azimuth angle phi: 5.9778 +Force: -2.354001 0.619400 0.302871 +Torque: -0.095618 0.002279 -0.253909 + +Polar angle tht: 1.6581; Azimuth angle phi: 6.0214 +Force: -2.311584 0.513484 0.279634 +Torque: -0.085760 -0.001601 -0.235624 + +Polar angle tht: 1.6581; Azimuth angle phi: 6.0650 +Force: -2.259570 0.413769 0.256429 +Torque: -0.075699 -0.005572 -0.216131 + +Polar angle tht: 1.6581; Azimuth angle phi: 6.1087 +Force: -2.198385 0.320841 0.233311 +Torque: -0.065452 -0.009601 -0.195585 + +Polar angle tht: 1.6581; Azimuth angle phi: 6.1523 +Force: -2.128518 0.235233 0.210336 +Torque: -0.055041 -0.013660 -0.174146 + +Polar angle tht: 1.6581; Azimuth angle phi: 6.1959 +Force: -2.050522 0.157420 0.187556 +Torque: -0.044485 -0.017717 -0.151984 + +Polar angle tht: 1.6581; Azimuth angle phi: 6.2396 +Force: -2.030387 0.079963 0.179745 +Torque: -0.024419 -0.019060 -0.086150 + +Polar angle tht: 1.6581; Azimuth angle phi: 6.2832 +Force: -2.033619 0.000000 0.179361 +Torque: -0.000000 -0.019100 -0.000001 + +Polar angle tht: 1.7017; Azimuth angle phi: 0.0000 +Force: -2.265468 0.000000 0.303043 +Torque: -0.000000 -0.015322 -0.000001 + +Polar angle tht: 1.7017; Azimuth angle phi: 0.0436 +Force: -2.262027 -0.091138 0.303399 +Torque: 0.028321 -0.015286 0.085328 + +Polar angle tht: 1.7017; Azimuth angle phi: 0.0873 +Force: -2.251728 -0.181959 0.304462 +Torque: 0.056587 -0.015176 0.170008 + +Polar angle tht: 1.7017; Azimuth angle phi: 0.1309 +Force: -2.277507 -0.270813 0.317779 +Torque: 0.077173 -0.013237 0.225118 + +Polar angle tht: 1.7017; Azimuth angle phi: 0.1745 +Force: -2.345576 -0.363434 0.344919 +Torque: 0.088733 -0.009219 0.245998 + +Polar angle tht: 1.7017; Azimuth angle phi: 0.2182 +Force: -2.404726 -0.463245 0.372117 +Torque: 0.100119 -0.005230 0.265896 + +Polar angle tht: 1.7017; Azimuth angle phi: 0.2618 +Force: -2.454475 -0.569704 0.399312 +Torque: 0.111311 -0.001300 0.284651 + +Polar angle tht: 1.7017; Azimuth angle phi: 0.3054 +Force: -2.494404 -0.682215 0.426438 +Torque: 0.122286 0.002540 0.302112 + +Polar angle tht: 1.7017; Azimuth angle phi: 0.3491 +Force: -2.524163 -0.800136 0.453429 +Torque: 0.133026 0.006262 0.318136 + +Polar angle tht: 1.7017; Azimuth angle phi: 0.3927 +Force: -2.543470 -0.922777 0.480216 +Torque: 0.143509 0.009837 0.332587 + +Polar angle tht: 1.7017; Azimuth angle phi: 0.4363 +Force: -2.552118 -1.049411 0.506731 +Torque: 0.153719 0.013239 0.345341 + +Polar angle tht: 1.7017; Azimuth angle phi: 0.4800 +Force: -2.549974 -1.179279 0.532900 +Torque: 0.163637 0.016442 0.356285 + +Polar angle tht: 1.7017; Azimuth angle phi: 0.5236 +Force: -2.536979 -1.311589 0.558653 +Torque: 0.173247 0.019421 0.365319 + +Polar angle tht: 1.7017; Azimuth angle phi: 0.5672 +Force: -2.513151 -1.445529 0.583917 +Torque: 0.182534 0.022155 0.372355 + +Polar angle tht: 1.7017; Azimuth angle phi: 0.6109 +Force: -2.478585 -1.580268 0.608619 +Torque: 0.191483 0.024622 0.377319 + +Polar angle tht: 1.7017; Azimuth angle phi: 0.6545 +Force: -2.433450 -1.714966 0.632686 +Torque: 0.200082 0.026804 0.380151 + +Polar angle tht: 1.7017; Azimuth angle phi: 0.6981 +Force: -2.377991 -1.848775 0.656045 +Torque: 0.208317 0.028685 0.380806 + +Polar angle tht: 1.7017; Azimuth angle phi: 0.7418 +Force: -2.312523 -1.980850 0.678625 +Torque: 0.216178 0.030251 0.379255 + +Polar angle tht: 1.7017; Azimuth angle phi: 0.7854 +Force: -2.237435 -2.110352 0.700354 +Torque: 0.223654 0.031491 0.375483 + +Polar angle tht: 1.7017; Azimuth angle phi: 0.8290 +Force: -2.153182 -2.236455 0.721165 +Torque: 0.230737 0.032394 0.369493 + +Polar angle tht: 1.7017; Azimuth angle phi: 0.8727 +Force: -2.060284 -2.358353 0.740988 +Torque: 0.237416 0.032955 0.361300 + +Polar angle tht: 1.7017; Azimuth angle phi: 0.9163 +Force: -1.959321 -2.475264 0.759759 +Torque: 0.243687 0.033170 0.350939 + +Polar angle tht: 1.7017; Azimuth angle phi: 0.9599 +Force: -1.850930 -2.586436 0.777414 +Torque: 0.249540 0.033037 0.338456 + +Polar angle tht: 1.7017; Azimuth angle phi: 1.0036 +Force: -1.735802 -2.691154 0.793893 +Torque: 0.254972 0.032558 0.323915 + +Polar angle tht: 1.7017; Azimuth angle phi: 1.0472 +Force: -1.614671 -2.788745 0.809139 +Torque: 0.259978 0.031737 0.307395 + +Polar angle tht: 1.7017; Azimuth angle phi: 1.0908 +Force: -1.488317 -2.878581 0.823098 +Torque: 0.264553 0.030581 0.288987 + +Polar angle tht: 1.7017; Azimuth angle phi: 1.1345 +Force: -1.357554 -2.960083 0.835720 +Torque: 0.268695 0.029098 0.268796 + +Polar angle tht: 1.7017; Azimuth angle phi: 1.1781 +Force: -1.223226 -3.032731 0.846959 +Torque: 0.272400 0.027301 0.246941 + +Polar angle tht: 1.7017; Azimuth angle phi: 1.2217 +Force: -1.086202 -3.096059 0.856772 +Torque: 0.275668 0.025204 0.223553 + +Polar angle tht: 1.7017; Azimuth angle phi: 1.2654 +Force: -0.947368 -3.149667 0.865122 +Torque: 0.278497 0.022823 0.198772 + +Polar angle tht: 1.7017; Azimuth angle phi: 1.3090 +Force: -0.807620 -3.193217 0.871976 +Torque: 0.280888 0.020176 0.172750 + +Polar angle tht: 1.7017; Azimuth angle phi: 1.3526 +Force: -0.667863 -3.226440 0.877306 +Torque: 0.282839 0.017285 0.145647 + +Polar angle tht: 1.7017; Azimuth angle phi: 1.3963 +Force: -0.528995 -3.249136 0.881089 +Torque: 0.284353 0.014171 0.117631 + +Polar angle tht: 1.7017; Azimuth angle phi: 1.4399 +Force: -0.391908 -3.261175 0.883307 +Torque: 0.285430 0.010860 0.088876 + +Polar angle tht: 1.7017; Azimuth angle phi: 1.4835 +Force: -0.257481 -3.262499 0.883947 +Torque: 0.286073 0.007376 0.059563 + +Polar angle tht: 1.7017; Azimuth angle phi: 1.5272 +Force: -0.126569 -3.253122 0.883002 +Torque: 0.286283 0.003746 0.029876 + +Polar angle tht: 1.7017; Azimuth angle phi: 1.5708 +Force: 0.000000 -3.233131 0.880470 +Torque: 0.286063 0.000000 0.000000 + +Polar angle tht: 1.7017; Azimuth angle phi: 1.6144 +Force: 0.126569 -3.253122 0.883002 +Torque: 0.286283 -0.003746 -0.029876 + +Polar angle tht: 1.7017; Azimuth angle phi: 1.6581 +Force: 0.257481 -3.262499 0.883947 +Torque: 0.286073 -0.007376 -0.059563 + +Polar angle tht: 1.7017; Azimuth angle phi: 1.7017 +Force: 0.391908 -3.261175 0.883307 +Torque: 0.285430 -0.010860 -0.088876 + +Polar angle tht: 1.7017; Azimuth angle phi: 1.7453 +Force: 0.528995 -3.249136 0.881089 +Torque: 0.284353 -0.014171 -0.117631 + +Polar angle tht: 1.7017; Azimuth angle phi: 1.7890 +Force: 0.667863 -3.226440 0.877306 +Torque: 0.282839 -0.017285 -0.145647 + +Polar angle tht: 1.7017; Azimuth angle phi: 1.8326 +Force: 0.807620 -3.193217 0.871976 +Torque: 0.280888 -0.020176 -0.172750 + +Polar angle tht: 1.7017; Azimuth angle phi: 1.8762 +Force: 0.947368 -3.149667 0.865122 +Torque: 0.278497 -0.022823 -0.198772 + +Polar angle tht: 1.7017; Azimuth angle phi: 1.9199 +Force: 1.086202 -3.096059 0.856772 +Torque: 0.275668 -0.025204 -0.223553 + +Polar angle tht: 1.7017; Azimuth angle phi: 1.9635 +Force: 1.223226 -3.032731 0.846959 +Torque: 0.272400 -0.027301 -0.246941 + +Polar angle tht: 1.7017; Azimuth angle phi: 2.0071 +Force: 1.357554 -2.960083 0.835720 +Torque: 0.268695 -0.029098 -0.268796 + +Polar angle tht: 1.7017; Azimuth angle phi: 2.0508 +Force: 1.488317 -2.878581 0.823098 +Torque: 0.264553 -0.030581 -0.288987 + +Polar angle tht: 1.7017; Azimuth angle phi: 2.0944 +Force: 1.614671 -2.788745 0.809139 +Torque: 0.259978 -0.031737 -0.307395 + +Polar angle tht: 1.7017; Azimuth angle phi: 2.1380 +Force: 1.735802 -2.691154 0.793893 +Torque: 0.254972 -0.032558 -0.323915 + +Polar angle tht: 1.7017; Azimuth angle phi: 2.1817 +Force: 1.850930 -2.586436 0.777414 +Torque: 0.249540 -0.033037 -0.338456 + +Polar angle tht: 1.7017; Azimuth angle phi: 2.2253 +Force: 1.959321 -2.475264 0.759759 +Torque: 0.243687 -0.033170 -0.350939 + +Polar angle tht: 1.7017; Azimuth angle phi: 2.2689 +Force: 2.060284 -2.358353 0.740988 +Torque: 0.237416 -0.032955 -0.361300 + +Polar angle tht: 1.7017; Azimuth angle phi: 2.3126 +Force: 2.153182 -2.236455 0.721165 +Torque: 0.230737 -0.032394 -0.369493 + +Polar angle tht: 1.7017; Azimuth angle phi: 2.3562 +Force: 2.237435 -2.110352 0.700354 +Torque: 0.223654 -0.031491 -0.375483 + +Polar angle tht: 1.7017; Azimuth angle phi: 2.3998 +Force: 2.312523 -1.980850 0.678625 +Torque: 0.216178 -0.030251 -0.379255 + +Polar angle tht: 1.7017; Azimuth angle phi: 2.4435 +Force: 2.377991 -1.848775 0.656045 +Torque: 0.208317 -0.028685 -0.380806 + +Polar angle tht: 1.7017; Azimuth angle phi: 2.4871 +Force: 2.433450 -1.714966 0.632686 +Torque: 0.200082 -0.026804 -0.380151 + +Polar angle tht: 1.7017; Azimuth angle phi: 2.5307 +Force: 2.478585 -1.580268 0.608619 +Torque: 0.191483 -0.024622 -0.377319 + +Polar angle tht: 1.7017; Azimuth angle phi: 2.5744 +Force: 2.513151 -1.445529 0.583917 +Torque: 0.182534 -0.022155 -0.372355 + +Polar angle tht: 1.7017; Azimuth angle phi: 2.6180 +Force: 2.536979 -1.311589 0.558653 +Torque: 0.173247 -0.019421 -0.365319 + +Polar angle tht: 1.7017; Azimuth angle phi: 2.6616 +Force: 2.549974 -1.179279 0.532900 +Torque: 0.163637 -0.016442 -0.356285 + +Polar angle tht: 1.7017; Azimuth angle phi: 2.7053 +Force: 2.552118 -1.049411 0.506731 +Torque: 0.153719 -0.013239 -0.345341 + +Polar angle tht: 1.7017; Azimuth angle phi: 2.7489 +Force: 2.543470 -0.922777 0.480216 +Torque: 0.143509 -0.009837 -0.332587 + +Polar angle tht: 1.7017; Azimuth angle phi: 2.7925 +Force: 2.524163 -0.800136 0.453429 +Torque: 0.133026 -0.006262 -0.318136 + +Polar angle tht: 1.7017; Azimuth angle phi: 2.8362 +Force: 2.494404 -0.682215 0.426438 +Torque: 0.122286 -0.002540 -0.302112 + +Polar angle tht: 1.7017; Azimuth angle phi: 2.8798 +Force: 2.454475 -0.569704 0.399312 +Torque: 0.111311 0.001300 -0.284651 + +Polar angle tht: 1.7017; Azimuth angle phi: 2.9234 +Force: 2.404726 -0.463245 0.372117 +Torque: 0.100119 0.005230 -0.265896 + +Polar angle tht: 1.7017; Azimuth angle phi: 2.9671 +Force: 2.345576 -0.363434 0.344919 +Torque: 0.088733 0.009219 -0.245998 + +Polar angle tht: 1.7017; Azimuth angle phi: 3.0107 +Force: 2.277507 -0.270813 0.317779 +Torque: 0.077173 0.013237 -0.225118 + +Polar angle tht: 1.7017; Azimuth angle phi: 3.0543 +Force: 2.251728 -0.181959 0.304462 +Torque: 0.056587 0.015176 -0.170008 + +Polar angle tht: 1.7017; Azimuth angle phi: 3.0980 +Force: 2.262027 -0.091138 0.303399 +Torque: 0.028321 0.015286 -0.085328 + +Polar angle tht: 1.7017; Azimuth angle phi: 3.1416 +Force: 2.265468 0.000000 0.303043 +Torque: -0.000000 0.015322 0.000001 + +Polar angle tht: 1.7017; Azimuth angle phi: 3.1852 +Force: 2.262027 0.091138 0.303399 +Torque: -0.028322 0.015286 0.085331 + +Polar angle tht: 1.7017; Azimuth angle phi: 3.2289 +Force: 2.251728 0.181959 0.304462 +Torque: -0.056587 0.015176 0.170011 + +Polar angle tht: 1.7017; Azimuth angle phi: 3.2725 +Force: 2.277507 0.270813 0.317779 +Torque: -0.077173 0.013237 0.225122 + +Polar angle tht: 1.7017; Azimuth angle phi: 3.3161 +Force: 2.345576 0.363434 0.344919 +Torque: -0.088733 0.009219 0.246003 + +Polar angle tht: 1.7017; Azimuth angle phi: 3.3598 +Force: 2.404726 0.463245 0.372117 +Torque: -0.100121 0.005230 0.265902 + +Polar angle tht: 1.7017; Azimuth angle phi: 3.4034 +Force: 2.454475 0.569704 0.399312 +Torque: -0.111313 0.001300 0.284660 + +Polar angle tht: 1.7017; Azimuth angle phi: 3.4470 +Force: 2.494404 0.682215 0.426438 +Torque: -0.122289 -0.002540 0.302122 + +Polar angle tht: 1.7017; Azimuth angle phi: 3.4907 +Force: 2.524163 0.800136 0.453429 +Torque: -0.133029 -0.006262 0.318147 + +Polar angle tht: 1.7017; Azimuth angle phi: 3.5343 +Force: 2.543470 0.922777 0.480216 +Torque: -0.143513 -0.009837 0.332600 + +Polar angle tht: 1.7017; Azimuth angle phi: 3.5779 +Force: 2.552118 1.049411 0.506731 +Torque: -0.153723 -0.013239 0.345355 + +Polar angle tht: 1.7017; Azimuth angle phi: 3.6216 +Force: 2.549974 1.179279 0.532900 +Torque: -0.163641 -0.016442 0.356301 + +Polar angle tht: 1.7017; Azimuth angle phi: 3.6652 +Force: 2.536979 1.311589 0.558653 +Torque: -0.173252 -0.019421 0.365336 + +Polar angle tht: 1.7017; Azimuth angle phi: 3.7088 +Force: 2.513151 1.445529 0.583917 +Torque: -0.182540 -0.022155 0.372373 + +Polar angle tht: 1.7017; Azimuth angle phi: 3.7525 +Force: 2.478585 1.580268 0.608619 +Torque: -0.191490 -0.024622 0.377337 + +Polar angle tht: 1.7017; Azimuth angle phi: 3.7961 +Force: 2.433450 1.714966 0.632686 +Torque: -0.200089 -0.026804 0.380170 + +Polar angle tht: 1.7017; Azimuth angle phi: 3.8397 +Force: 2.377991 1.848775 0.656045 +Torque: -0.208325 -0.028685 0.380826 + +Polar angle tht: 1.7017; Azimuth angle phi: 3.8834 +Force: 2.312523 1.980850 0.678625 +Torque: -0.216186 -0.030251 0.379275 + +Polar angle tht: 1.7017; Azimuth angle phi: 3.9270 +Force: 2.237435 2.110352 0.700354 +Torque: -0.223663 -0.031491 0.375503 + +Polar angle tht: 1.7017; Azimuth angle phi: 3.9706 +Force: 2.153182 2.236455 0.721165 +Torque: -0.230746 -0.032394 0.369513 + +Polar angle tht: 1.7017; Azimuth angle phi: 4.0143 +Force: 2.060284 2.358353 0.740988 +Torque: -0.237426 -0.032955 0.361320 + +Polar angle tht: 1.7017; Azimuth angle phi: 4.0579 +Force: 1.959321 2.475264 0.759759 +Torque: -0.243696 -0.033170 0.350958 + +Polar angle tht: 1.7017; Azimuth angle phi: 4.1015 +Force: 1.850930 2.586436 0.777414 +Torque: -0.249551 -0.033037 0.338475 + +Polar angle tht: 1.7017; Azimuth angle phi: 4.1452 +Force: 1.735802 2.691154 0.793893 +Torque: -0.254983 -0.032558 0.323934 + +Polar angle tht: 1.7017; Azimuth angle phi: 4.1888 +Force: 1.614671 2.788745 0.809139 +Torque: -0.259989 -0.031737 0.307413 + +Polar angle tht: 1.7017; Azimuth angle phi: 4.2324 +Force: 1.488317 2.878581 0.823098 +Torque: -0.264564 -0.030581 0.289003 + +Polar angle tht: 1.7017; Azimuth angle phi: 4.2761 +Force: 1.357554 2.960083 0.835720 +Torque: -0.268706 -0.029098 0.268812 + +Polar angle tht: 1.7017; Azimuth angle phi: 4.3197 +Force: 1.223226 3.032731 0.846959 +Torque: -0.272412 -0.027301 0.246956 + +Polar angle tht: 1.7017; Azimuth angle phi: 4.3633 +Force: 1.086202 3.096059 0.856772 +Torque: -0.275680 -0.025204 0.223566 + +Polar angle tht: 1.7017; Azimuth angle phi: 4.4070 +Force: 0.947368 3.149667 0.865122 +Torque: -0.278510 -0.022823 0.198784 + +Polar angle tht: 1.7017; Azimuth angle phi: 4.4506 +Force: 0.807620 3.193217 0.871976 +Torque: -0.280900 -0.020176 0.172760 + +Polar angle tht: 1.7017; Azimuth angle phi: 4.4942 +Force: 0.667863 3.226440 0.877306 +Torque: -0.282852 -0.017285 0.145655 + +Polar angle tht: 1.7017; Azimuth angle phi: 4.5379 +Force: 0.528995 3.249136 0.881089 +Torque: -0.284366 -0.014171 0.117638 + +Polar angle tht: 1.7017; Azimuth angle phi: 4.5815 +Force: 0.391908 3.261175 0.883307 +Torque: -0.285443 -0.010860 0.088881 + +Polar angle tht: 1.7017; Azimuth angle phi: 4.6251 +Force: 0.257481 3.262499 0.883947 +Torque: -0.286086 -0.007376 0.059567 + +Polar angle tht: 1.7017; Azimuth angle phi: 4.6688 +Force: 0.126569 3.253122 0.883002 +Torque: -0.286296 -0.003746 0.029877 + +Polar angle tht: 1.7017; Azimuth angle phi: 4.7124 +Force: 0.000000 3.233131 0.880470 +Torque: -0.286076 0.000000 -0.000000 + +Polar angle tht: 1.7017; Azimuth angle phi: 4.7560 +Force: -0.126569 3.253122 0.883002 +Torque: -0.286296 0.003746 -0.029877 + +Polar angle tht: 1.7017; Azimuth angle phi: 4.7997 +Force: -0.257481 3.262499 0.883947 +Torque: -0.286086 0.007376 -0.059567 + +Polar angle tht: 1.7017; Azimuth angle phi: 4.8433 +Force: -0.391908 3.261175 0.883307 +Torque: -0.285443 0.010860 -0.088881 + +Polar angle tht: 1.7017; Azimuth angle phi: 4.8869 +Force: -0.528995 3.249136 0.881089 +Torque: -0.284366 0.014171 -0.117638 + +Polar angle tht: 1.7017; Azimuth angle phi: 4.9306 +Force: -0.667863 3.226440 0.877306 +Torque: -0.282852 0.017285 -0.145655 + +Polar angle tht: 1.7017; Azimuth angle phi: 4.9742 +Force: -0.807620 3.193217 0.871976 +Torque: -0.280900 0.020176 -0.172760 + +Polar angle tht: 1.7017; Azimuth angle phi: 5.0178 +Force: -0.947368 3.149667 0.865122 +Torque: -0.278510 0.022823 -0.198784 + +Polar angle tht: 1.7017; Azimuth angle phi: 5.0615 +Force: -1.086202 3.096059 0.856772 +Torque: -0.275680 0.025204 -0.223566 + +Polar angle tht: 1.7017; Azimuth angle phi: 5.1051 +Force: -1.223226 3.032731 0.846959 +Torque: -0.272412 0.027301 -0.246956 + +Polar angle tht: 1.7017; Azimuth angle phi: 5.1487 +Force: -1.357554 2.960083 0.835720 +Torque: -0.268706 0.029098 -0.268812 + +Polar angle tht: 1.7017; Azimuth angle phi: 5.1924 +Force: -1.488317 2.878581 0.823098 +Torque: -0.264564 0.030581 -0.289003 + +Polar angle tht: 1.7017; Azimuth angle phi: 5.2360 +Force: -1.614671 2.788745 0.809139 +Torque: -0.259989 0.031737 -0.307413 + +Polar angle tht: 1.7017; Azimuth angle phi: 5.2796 +Force: -1.735802 2.691154 0.793893 +Torque: -0.254983 0.032558 -0.323934 + +Polar angle tht: 1.7017; Azimuth angle phi: 5.3233 +Force: -1.850930 2.586436 0.777414 +Torque: -0.249551 0.033037 -0.338475 + +Polar angle tht: 1.7017; Azimuth angle phi: 5.3669 +Force: -1.959321 2.475264 0.759759 +Torque: -0.243696 0.033170 -0.350958 + +Polar angle tht: 1.7017; Azimuth angle phi: 5.4105 +Force: -2.060284 2.358353 0.740988 +Torque: -0.237426 0.032955 -0.361320 + +Polar angle tht: 1.7017; Azimuth angle phi: 5.4542 +Force: -2.153182 2.236455 0.721165 +Torque: -0.230746 0.032394 -0.369513 + +Polar angle tht: 1.7017; Azimuth angle phi: 5.4978 +Force: -2.237435 2.110352 0.700354 +Torque: -0.223663 0.031491 -0.375503 + +Polar angle tht: 1.7017; Azimuth angle phi: 5.5414 +Force: -2.312523 1.980850 0.678625 +Torque: -0.216186 0.030251 -0.379275 + +Polar angle tht: 1.7017; Azimuth angle phi: 5.5851 +Force: -2.377991 1.848775 0.656045 +Torque: -0.208325 0.028685 -0.380826 + +Polar angle tht: 1.7017; Azimuth angle phi: 5.6287 +Force: -2.433450 1.714966 0.632686 +Torque: -0.200089 0.026804 -0.380170 + +Polar angle tht: 1.7017; Azimuth angle phi: 5.6723 +Force: -2.478585 1.580268 0.608619 +Torque: -0.191490 0.024622 -0.377337 + +Polar angle tht: 1.7017; Azimuth angle phi: 5.7160 +Force: -2.513151 1.445529 0.583917 +Torque: -0.182540 0.022155 -0.372373 + +Polar angle tht: 1.7017; Azimuth angle phi: 5.7596 +Force: -2.536979 1.311589 0.558653 +Torque: -0.173252 0.019421 -0.365336 + +Polar angle tht: 1.7017; Azimuth angle phi: 5.8032 +Force: -2.549974 1.179279 0.532900 +Torque: -0.163641 0.016442 -0.356301 + +Polar angle tht: 1.7017; Azimuth angle phi: 5.8469 +Force: -2.552118 1.049411 0.506731 +Torque: -0.153723 0.013239 -0.345355 + +Polar angle tht: 1.7017; Azimuth angle phi: 5.8905 +Force: -2.543470 0.922777 0.480216 +Torque: -0.143513 0.009837 -0.332600 + +Polar angle tht: 1.7017; Azimuth angle phi: 5.9341 +Force: -2.524163 0.800136 0.453429 +Torque: -0.133029 0.006262 -0.318147 + +Polar angle tht: 1.7017; Azimuth angle phi: 5.9778 +Force: -2.494404 0.682215 0.426438 +Torque: -0.122289 0.002540 -0.302122 + +Polar angle tht: 1.7017; Azimuth angle phi: 6.0214 +Force: -2.454475 0.569704 0.399312 +Torque: -0.111313 -0.001300 -0.284660 + +Polar angle tht: 1.7017; Azimuth angle phi: 6.0650 +Force: -2.404726 0.463245 0.372117 +Torque: -0.100121 -0.005230 -0.265902 + +Polar angle tht: 1.7017; Azimuth angle phi: 6.1087 +Force: -2.345576 0.363434 0.344919 +Torque: -0.088733 -0.009219 -0.246003 + +Polar angle tht: 1.7017; Azimuth angle phi: 6.1523 +Force: -2.277507 0.270813 0.317779 +Torque: -0.077173 -0.013237 -0.225122 + +Polar angle tht: 1.7017; Azimuth angle phi: 6.1959 +Force: -2.251728 0.181959 0.304462 +Torque: -0.056587 -0.015176 -0.170011 + +Polar angle tht: 1.7017; Azimuth angle phi: 6.2396 +Force: -2.262027 0.091138 0.303399 +Torque: -0.028322 -0.015286 -0.085331 + +Polar angle tht: 1.7017; Azimuth angle phi: 6.2832 +Force: -2.265468 0.000000 0.303043 +Torque: -0.000000 -0.015322 -0.000001 + +Polar angle tht: 1.7453; Azimuth angle phi: 0.0000 +Force: -2.486265 0.000000 0.448504 +Torque: -0.000000 -0.011534 -0.000002 + +Polar angle tht: 1.7453; Azimuth angle phi: 0.0436 +Force: -2.482632 -0.101892 0.448830 +Torque: 0.032100 -0.011501 0.084189 + +Polar angle tht: 1.7453; Azimuth angle phi: 0.0873 +Force: -2.471753 -0.203449 0.449807 +Torque: 0.064136 -0.011403 0.167739 + +Polar angle tht: 1.7453; Azimuth angle phi: 0.1309 +Force: -2.453693 -0.304335 0.451424 +Torque: 0.096046 -0.011241 0.250012 + +Polar angle tht: 1.7453; Azimuth angle phi: 0.1745 +Force: -2.482370 -0.404851 0.470743 +Torque: 0.116478 -0.008810 0.294895 + +Polar angle tht: 1.7453; Azimuth angle phi: 0.2182 +Force: -2.539278 -0.511111 0.501894 +Torque: 0.128963 -0.004877 0.314076 + +Polar angle tht: 1.7453; Azimuth angle phi: 0.2618 +Force: -2.586593 -0.623855 0.532951 +Torque: 0.141243 -0.001003 0.332031 + +Polar angle tht: 1.7453; Azimuth angle phi: 0.3054 +Force: -2.623906 -0.742481 0.563841 +Torque: 0.153296 0.002782 0.348613 + +Polar angle tht: 1.7453; Azimuth angle phi: 0.3491 +Force: -2.650874 -0.866340 0.594491 +Torque: 0.165099 0.006451 0.363679 + +Polar angle tht: 1.7453; Azimuth angle phi: 0.3927 +Force: -2.667224 -0.994738 0.624826 +Torque: 0.176631 0.009974 0.377100 + +Polar angle tht: 1.7453; Azimuth angle phi: 0.4363 +Force: -2.672758 -1.126944 0.654769 +Torque: 0.187871 0.013325 0.388752 + +Polar angle tht: 1.7453; Azimuth angle phi: 0.4800 +Force: -2.667348 -1.262194 0.684242 +Torque: 0.198800 0.016479 0.398528 + +Polar angle tht: 1.7453; Azimuth angle phi: 0.5236 +Force: -2.650945 -1.399693 0.713169 +Torque: 0.209399 0.019413 0.406330 + +Polar angle tht: 1.7453; Azimuth angle phi: 0.5672 +Force: -2.623572 -1.538628 0.741469 +Torque: 0.219652 0.022104 0.412073 + +Polar angle tht: 1.7453; Azimuth angle phi: 0.6109 +Force: -2.585329 -1.678166 0.769066 +Torque: 0.229542 0.024531 0.415686 + +Polar angle tht: 1.7453; Azimuth angle phi: 0.6545 +Force: -2.536393 -1.817463 0.795881 +Torque: 0.239054 0.026677 0.417113 + +Polar angle tht: 1.7453; Azimuth angle phi: 0.6981 +Force: -2.477012 -1.955674 0.821837 +Torque: 0.248174 0.028525 0.416313 + +Polar angle tht: 1.7453; Azimuth angle phi: 0.7418 +Force: -2.407508 -2.091951 0.846856 +Torque: 0.256888 0.030062 0.413258 + +Polar angle tht: 1.7453; Azimuth angle phi: 0.7854 +Force: -2.328273 -2.225455 0.870865 +Torque: 0.265186 0.031276 0.407938 + +Polar angle tht: 1.7453; Azimuth angle phi: 0.8290 +Force: -2.239765 -2.355362 0.893790 +Torque: 0.273055 0.032158 0.400358 + +Polar angle tht: 1.7453; Azimuth angle phi: 0.8727 +Force: -2.142507 -2.480864 0.915560 +Torque: 0.280486 0.032702 0.390537 + +Polar angle tht: 1.7453; Azimuth angle phi: 0.9163 +Force: -2.037083 -2.601180 0.936105 +Torque: 0.287470 0.032904 0.378510 + +Polar angle tht: 1.7453; Azimuth angle phi: 0.9599 +Force: -1.924133 -2.715559 0.955360 +Torque: 0.294000 0.032763 0.364330 + +Polar angle tht: 1.7453; Azimuth angle phi: 1.0036 +Force: -1.804349 -2.823288 0.973262 +Torque: 0.300068 0.032279 0.348061 + +Polar angle tht: 1.7453; Azimuth angle phi: 1.0472 +Force: -1.678469 -2.923692 0.989751 +Torque: 0.305668 0.031459 0.329785 + +Polar angle tht: 1.7453; Azimuth angle phi: 1.0908 +Force: -1.547272 -3.016145 1.004771 +Torque: 0.310795 0.030307 0.309596 + +Polar angle tht: 1.7453; Azimuth angle phi: 1.1345 +Force: -1.411575 -3.100068 1.018271 +Torque: 0.315445 0.028832 0.287601 + +Polar angle tht: 1.7453; Azimuth angle phi: 1.1781 +Force: -1.272223 -3.174941 1.030202 +Torque: 0.319614 0.027048 0.263922 + +Polar angle tht: 1.7453; Azimuth angle phi: 1.2217 +Force: -1.130086 -3.240300 1.040522 +Torque: 0.323301 0.024967 0.238691 + +Polar angle tht: 1.7453; Azimuth angle phi: 1.2654 +Force: -0.986053 -3.295742 1.049193 +Torque: 0.326502 0.022605 0.212052 + +Polar angle tht: 1.7453; Azimuth angle phi: 1.3090 +Force: -0.841021 -3.340931 1.056180 +Torque: 0.329217 0.019982 0.184158 + +Polar angle tht: 1.7453; Azimuth angle phi: 1.3526 +Force: -0.695894 -3.375597 1.061456 +Torque: 0.331446 0.017117 0.155171 + +Polar angle tht: 1.7453; Azimuth angle phi: 1.3963 +Force: -0.551575 -3.399537 1.064999 +Torque: 0.333188 0.014032 0.125262 + +Polar angle tht: 1.7453; Azimuth angle phi: 1.4399 +Force: -0.408958 -3.412622 1.066790 +Torque: 0.334445 0.010753 0.094606 + +Polar angle tht: 1.7453; Azimuth angle phi: 1.4835 +Force: -0.268922 -3.414792 1.066818 +Torque: 0.335217 0.007303 0.063386 + +Polar angle tht: 1.7453; Azimuth angle phi: 1.5272 +Force: -0.132325 -3.406060 1.065078 +Torque: 0.335508 0.003709 0.031788 + +Polar angle tht: 1.7453; Azimuth angle phi: 1.5708 +Force: 0.000000 -3.386508 1.061568 +Torque: 0.335319 0.000000 0.000000 + +Polar angle tht: 1.7453; Azimuth angle phi: 1.6144 +Force: 0.132325 -3.406060 1.065078 +Torque: 0.335508 -0.003709 -0.031788 + +Polar angle tht: 1.7453; Azimuth angle phi: 1.6581 +Force: 0.268922 -3.414792 1.066818 +Torque: 0.335217 -0.007303 -0.063386 + +Polar angle tht: 1.7453; Azimuth angle phi: 1.7017 +Force: 0.408958 -3.412622 1.066790 +Torque: 0.334445 -0.010753 -0.094606 + +Polar angle tht: 1.7453; Azimuth angle phi: 1.7453 +Force: 0.551575 -3.399537 1.064999 +Torque: 0.333188 -0.014032 -0.125262 + +Polar angle tht: 1.7453; Azimuth angle phi: 1.7890 +Force: 0.695894 -3.375597 1.061456 +Torque: 0.331446 -0.017117 -0.155171 + +Polar angle tht: 1.7453; Azimuth angle phi: 1.8326 +Force: 0.841021 -3.340931 1.056180 +Torque: 0.329217 -0.019982 -0.184158 + +Polar angle tht: 1.7453; Azimuth angle phi: 1.8762 +Force: 0.986053 -3.295742 1.049193 +Torque: 0.326502 -0.022605 -0.212052 + +Polar angle tht: 1.7453; Azimuth angle phi: 1.9199 +Force: 1.130086 -3.240300 1.040522 +Torque: 0.323301 -0.024967 -0.238691 + +Polar angle tht: 1.7453; Azimuth angle phi: 1.9635 +Force: 1.272223 -3.174941 1.030202 +Torque: 0.319614 -0.027048 -0.263922 + +Polar angle tht: 1.7453; Azimuth angle phi: 2.0071 +Force: 1.411575 -3.100068 1.018271 +Torque: 0.315445 -0.028832 -0.287601 + +Polar angle tht: 1.7453; Azimuth angle phi: 2.0508 +Force: 1.547272 -3.016145 1.004771 +Torque: 0.310795 -0.030307 -0.309596 + +Polar angle tht: 1.7453; Azimuth angle phi: 2.0944 +Force: 1.678469 -2.923692 0.989751 +Torque: 0.305668 -0.031459 -0.329785 + +Polar angle tht: 1.7453; Azimuth angle phi: 2.1380 +Force: 1.804349 -2.823288 0.973262 +Torque: 0.300068 -0.032279 -0.348061 + +Polar angle tht: 1.7453; Azimuth angle phi: 2.1817 +Force: 1.924133 -2.715559 0.955360 +Torque: 0.294000 -0.032763 -0.364330 + +Polar angle tht: 1.7453; Azimuth angle phi: 2.2253 +Force: 2.037083 -2.601180 0.936105 +Torque: 0.287470 -0.032904 -0.378510 + +Polar angle tht: 1.7453; Azimuth angle phi: 2.2689 +Force: 2.142507 -2.480864 0.915560 +Torque: 0.280486 -0.032702 -0.390537 + +Polar angle tht: 1.7453; Azimuth angle phi: 2.3126 +Force: 2.239765 -2.355362 0.893790 +Torque: 0.273055 -0.032158 -0.400358 + +Polar angle tht: 1.7453; Azimuth angle phi: 2.3562 +Force: 2.328273 -2.225455 0.870865 +Torque: 0.265186 -0.031276 -0.407938 + +Polar angle tht: 1.7453; Azimuth angle phi: 2.3998 +Force: 2.407508 -2.091951 0.846856 +Torque: 0.256888 -0.030062 -0.413258 + +Polar angle tht: 1.7453; Azimuth angle phi: 2.4435 +Force: 2.477012 -1.955674 0.821837 +Torque: 0.248174 -0.028525 -0.416313 + +Polar angle tht: 1.7453; Azimuth angle phi: 2.4871 +Force: 2.536393 -1.817463 0.795881 +Torque: 0.239054 -0.026677 -0.417113 + +Polar angle tht: 1.7453; Azimuth angle phi: 2.5307 +Force: 2.585329 -1.678166 0.769066 +Torque: 0.229542 -0.024531 -0.415686 + +Polar angle tht: 1.7453; Azimuth angle phi: 2.5744 +Force: 2.623572 -1.538628 0.741469 +Torque: 0.219652 -0.022104 -0.412073 + +Polar angle tht: 1.7453; Azimuth angle phi: 2.6180 +Force: 2.650945 -1.399693 0.713169 +Torque: 0.209399 -0.019413 -0.406330 + +Polar angle tht: 1.7453; Azimuth angle phi: 2.6616 +Force: 2.667348 -1.262194 0.684242 +Torque: 0.198800 -0.016479 -0.398528 + +Polar angle tht: 1.7453; Azimuth angle phi: 2.7053 +Force: 2.672758 -1.126944 0.654769 +Torque: 0.187871 -0.013325 -0.388752 + +Polar angle tht: 1.7453; Azimuth angle phi: 2.7489 +Force: 2.667224 -0.994738 0.624826 +Torque: 0.176631 -0.009974 -0.377100 + +Polar angle tht: 1.7453; Azimuth angle phi: 2.7925 +Force: 2.650874 -0.866340 0.594491 +Torque: 0.165099 -0.006451 -0.363679 + +Polar angle tht: 1.7453; Azimuth angle phi: 2.8362 +Force: 2.623906 -0.742481 0.563841 +Torque: 0.153296 -0.002782 -0.348613 + +Polar angle tht: 1.7453; Azimuth angle phi: 2.8798 +Force: 2.586593 -0.623855 0.532951 +Torque: 0.141243 0.001003 -0.332031 + +Polar angle tht: 1.7453; Azimuth angle phi: 2.9234 +Force: 2.539278 -0.511111 0.501894 +Torque: 0.128963 0.004877 -0.314076 + +Polar angle tht: 1.7453; Azimuth angle phi: 2.9671 +Force: 2.482370 -0.404851 0.470743 +Torque: 0.116478 0.008810 -0.294895 + +Polar angle tht: 1.7453; Azimuth angle phi: 3.0107 +Force: 2.453693 -0.304335 0.451424 +Torque: 0.096046 0.011241 -0.250012 + +Polar angle tht: 1.7453; Azimuth angle phi: 3.0543 +Force: 2.471753 -0.203449 0.449807 +Torque: 0.064136 0.011403 -0.167739 + +Polar angle tht: 1.7453; Azimuth angle phi: 3.0980 +Force: 2.482632 -0.101892 0.448830 +Torque: 0.032100 0.011501 -0.084189 + +Polar angle tht: 1.7453; Azimuth angle phi: 3.1416 +Force: 2.486265 0.000000 0.448504 +Torque: -0.000000 0.011534 0.000002 + +Polar angle tht: 1.7453; Azimuth angle phi: 3.1852 +Force: 2.482632 0.101892 0.448830 +Torque: -0.032100 0.011501 0.084192 + +Polar angle tht: 1.7453; Azimuth angle phi: 3.2289 +Force: 2.471753 0.203449 0.449807 +Torque: -0.064136 0.011403 0.167742 + +Polar angle tht: 1.7453; Azimuth angle phi: 3.2725 +Force: 2.453693 0.304335 0.451424 +Torque: -0.096046 0.011241 0.250016 + +Polar angle tht: 1.7453; Azimuth angle phi: 3.3161 +Force: 2.482370 0.404851 0.470743 +Torque: -0.116478 0.008810 0.294899 + +Polar angle tht: 1.7453; Azimuth angle phi: 3.3598 +Force: 2.539278 0.511111 0.501894 +Torque: -0.128964 0.004877 0.314082 + +Polar angle tht: 1.7453; Azimuth angle phi: 3.4034 +Force: 2.586593 0.623855 0.532951 +Torque: -0.141245 0.001003 0.332039 + +Polar angle tht: 1.7453; Azimuth angle phi: 3.4470 +Force: 2.623906 0.742481 0.563841 +Torque: -0.153299 -0.002782 0.348622 + +Polar angle tht: 1.7453; Azimuth angle phi: 3.4907 +Force: 2.650874 0.866340 0.594491 +Torque: -0.165102 -0.006451 0.363690 + +Polar angle tht: 1.7453; Azimuth angle phi: 3.5343 +Force: 2.667224 0.994738 0.624826 +Torque: -0.176635 -0.009974 0.377112 + +Polar angle tht: 1.7453; Azimuth angle phi: 3.5779 +Force: 2.672758 1.126944 0.654769 +Torque: -0.187875 -0.013325 0.388766 + +Polar angle tht: 1.7453; Azimuth angle phi: 3.6216 +Force: 2.667348 1.262194 0.684242 +Torque: -0.198805 -0.016479 0.398543 + +Polar angle tht: 1.7453; Azimuth angle phi: 3.6652 +Force: 2.650945 1.399693 0.713169 +Torque: -0.209405 -0.019413 0.406346 + +Polar angle tht: 1.7453; Azimuth angle phi: 3.7088 +Force: 2.623572 1.538628 0.741469 +Torque: -0.219659 -0.022104 0.412090 + +Polar angle tht: 1.7453; Azimuth angle phi: 3.7525 +Force: 2.585329 1.678166 0.769066 +Torque: -0.229549 -0.024531 0.415704 + +Polar angle tht: 1.7453; Azimuth angle phi: 3.7961 +Force: 2.536393 1.817463 0.795881 +Torque: -0.239062 -0.026677 0.417131 + +Polar angle tht: 1.7453; Azimuth angle phi: 3.8397 +Force: 2.477012 1.955674 0.821837 +Torque: -0.248182 -0.028525 0.416331 + +Polar angle tht: 1.7453; Azimuth angle phi: 3.8834 +Force: 2.407508 2.091951 0.846856 +Torque: -0.256897 -0.030062 0.413277 + +Polar angle tht: 1.7453; Azimuth angle phi: 3.9270 +Force: 2.328273 2.225455 0.870865 +Torque: -0.265195 -0.031276 0.407958 + +Polar angle tht: 1.7453; Azimuth angle phi: 3.9706 +Force: 2.239765 2.355362 0.893790 +Torque: -0.273065 -0.032158 0.400377 + +Polar angle tht: 1.7453; Azimuth angle phi: 4.0143 +Force: 2.142507 2.480864 0.915560 +Torque: -0.280496 -0.032702 0.390556 + +Polar angle tht: 1.7453; Azimuth angle phi: 4.0579 +Force: 2.037083 2.601180 0.936105 +Torque: -0.287481 -0.032904 0.378529 + +Polar angle tht: 1.7453; Azimuth angle phi: 4.1015 +Force: 1.924133 2.715559 0.955360 +Torque: -0.294011 -0.032763 0.364348 + +Polar angle tht: 1.7453; Azimuth angle phi: 4.1452 +Force: 1.804349 2.823288 0.973262 +Torque: -0.300079 -0.032279 0.348079 + +Polar angle tht: 1.7453; Azimuth angle phi: 4.1888 +Force: 1.678469 2.923692 0.989751 +Torque: -0.305680 -0.031459 0.329802 + +Polar angle tht: 1.7453; Azimuth angle phi: 4.2324 +Force: 1.547272 3.016145 1.004771 +Torque: -0.310807 -0.030307 0.309612 + +Polar angle tht: 1.7453; Azimuth angle phi: 4.2761 +Force: 1.411575 3.100068 1.018271 +Torque: -0.315458 -0.028832 0.287616 + +Polar angle tht: 1.7453; Azimuth angle phi: 4.3197 +Force: 1.272223 3.174941 1.030202 +Torque: -0.319628 -0.027048 0.263936 + +Polar angle tht: 1.7453; Azimuth angle phi: 4.3633 +Force: 1.130086 3.240300 1.040522 +Torque: -0.323314 -0.024967 0.238704 + +Polar angle tht: 1.7453; Azimuth angle phi: 4.4070 +Force: 0.986053 3.295742 1.049193 +Torque: -0.326516 -0.022605 0.212063 + +Polar angle tht: 1.7453; Azimuth angle phi: 4.4506 +Force: 0.841021 3.340931 1.056180 +Torque: -0.329231 -0.019982 0.184168 + +Polar angle tht: 1.7453; Azimuth angle phi: 4.4942 +Force: 0.695894 3.375597 1.061456 +Torque: -0.331460 -0.017117 0.155179 + +Polar angle tht: 1.7453; Azimuth angle phi: 4.5379 +Force: 0.551575 3.399537 1.064999 +Torque: -0.333202 -0.014032 0.125268 + +Polar angle tht: 1.7453; Azimuth angle phi: 4.5815 +Force: 0.408958 3.412622 1.066790 +Torque: -0.334459 -0.010753 0.094611 + +Polar angle tht: 1.7453; Azimuth angle phi: 4.6251 +Force: 0.268922 3.414792 1.066818 +Torque: -0.335232 -0.007303 0.063390 + +Polar angle tht: 1.7453; Azimuth angle phi: 4.6688 +Force: 0.132325 3.406060 1.065078 +Torque: -0.335522 -0.003709 0.031790 + +Polar angle tht: 1.7453; Azimuth angle phi: 4.7124 +Force: 0.000000 3.386508 1.061568 +Torque: -0.335333 0.000000 -0.000000 + +Polar angle tht: 1.7453; Azimuth angle phi: 4.7560 +Force: -0.132325 3.406060 1.065078 +Torque: -0.335522 0.003709 -0.031790 + +Polar angle tht: 1.7453; Azimuth angle phi: 4.7997 +Force: -0.268922 3.414792 1.066818 +Torque: -0.335232 0.007303 -0.063390 + +Polar angle tht: 1.7453; Azimuth angle phi: 4.8433 +Force: -0.408958 3.412622 1.066790 +Torque: -0.334459 0.010753 -0.094611 + +Polar angle tht: 1.7453; Azimuth angle phi: 4.8869 +Force: -0.551575 3.399537 1.064999 +Torque: -0.333202 0.014032 -0.125268 + +Polar angle tht: 1.7453; Azimuth angle phi: 4.9306 +Force: -0.695894 3.375597 1.061456 +Torque: -0.331460 0.017117 -0.155179 + +Polar angle tht: 1.7453; Azimuth angle phi: 4.9742 +Force: -0.841021 3.340931 1.056180 +Torque: -0.329231 0.019982 -0.184168 + +Polar angle tht: 1.7453; Azimuth angle phi: 5.0178 +Force: -0.986053 3.295742 1.049193 +Torque: -0.326516 0.022605 -0.212063 + +Polar angle tht: 1.7453; Azimuth angle phi: 5.0615 +Force: -1.130086 3.240300 1.040522 +Torque: -0.323314 0.024967 -0.238704 + +Polar angle tht: 1.7453; Azimuth angle phi: 5.1051 +Force: -1.272223 3.174941 1.030202 +Torque: -0.319628 0.027048 -0.263936 + +Polar angle tht: 1.7453; Azimuth angle phi: 5.1487 +Force: -1.411575 3.100068 1.018271 +Torque: -0.315458 0.028832 -0.287616 + +Polar angle tht: 1.7453; Azimuth angle phi: 5.1924 +Force: -1.547272 3.016145 1.004771 +Torque: -0.310807 0.030307 -0.309612 + +Polar angle tht: 1.7453; Azimuth angle phi: 5.2360 +Force: -1.678469 2.923692 0.989751 +Torque: -0.305680 0.031459 -0.329802 + +Polar angle tht: 1.7453; Azimuth angle phi: 5.2796 +Force: -1.804349 2.823288 0.973262 +Torque: -0.300079 0.032279 -0.348079 + +Polar angle tht: 1.7453; Azimuth angle phi: 5.3233 +Force: -1.924133 2.715559 0.955360 +Torque: -0.294011 0.032763 -0.364348 + +Polar angle tht: 1.7453; Azimuth angle phi: 5.3669 +Force: -2.037083 2.601180 0.936105 +Torque: -0.287481 0.032904 -0.378529 + +Polar angle tht: 1.7453; Azimuth angle phi: 5.4105 +Force: -2.142507 2.480864 0.915560 +Torque: -0.280496 0.032702 -0.390556 + +Polar angle tht: 1.7453; Azimuth angle phi: 5.4542 +Force: -2.239765 2.355362 0.893790 +Torque: -0.273065 0.032158 -0.400377 + +Polar angle tht: 1.7453; Azimuth angle phi: 5.4978 +Force: -2.328273 2.225455 0.870865 +Torque: -0.265195 0.031276 -0.407958 + +Polar angle tht: 1.7453; Azimuth angle phi: 5.5414 +Force: -2.407508 2.091951 0.846856 +Torque: -0.256897 0.030062 -0.413277 + +Polar angle tht: 1.7453; Azimuth angle phi: 5.5851 +Force: -2.477012 1.955674 0.821837 +Torque: -0.248182 0.028525 -0.416331 + +Polar angle tht: 1.7453; Azimuth angle phi: 5.6287 +Force: -2.536393 1.817463 0.795881 +Torque: -0.239062 0.026677 -0.417131 + +Polar angle tht: 1.7453; Azimuth angle phi: 5.6723 +Force: -2.585329 1.678166 0.769066 +Torque: -0.229549 0.024531 -0.415704 + +Polar angle tht: 1.7453; Azimuth angle phi: 5.7160 +Force: -2.623572 1.538628 0.741469 +Torque: -0.219659 0.022104 -0.412090 + +Polar angle tht: 1.7453; Azimuth angle phi: 5.7596 +Force: -2.650945 1.399693 0.713169 +Torque: -0.209405 0.019413 -0.406346 + +Polar angle tht: 1.7453; Azimuth angle phi: 5.8032 +Force: -2.667348 1.262194 0.684242 +Torque: -0.198805 0.016479 -0.398543 + +Polar angle tht: 1.7453; Azimuth angle phi: 5.8469 +Force: -2.672758 1.126944 0.654769 +Torque: -0.187875 0.013325 -0.388766 + +Polar angle tht: 1.7453; Azimuth angle phi: 5.8905 +Force: -2.667224 0.994738 0.624826 +Torque: -0.176635 0.009974 -0.377112 + +Polar angle tht: 1.7453; Azimuth angle phi: 5.9341 +Force: -2.650874 0.866340 0.594491 +Torque: -0.165102 0.006451 -0.363690 + +Polar angle tht: 1.7453; Azimuth angle phi: 5.9778 +Force: -2.623906 0.742481 0.563841 +Torque: -0.153299 0.002782 -0.348622 + +Polar angle tht: 1.7453; Azimuth angle phi: 6.0214 +Force: -2.586593 0.623855 0.532951 +Torque: -0.141245 -0.001003 -0.332039 + +Polar angle tht: 1.7453; Azimuth angle phi: 6.0650 +Force: -2.539278 0.511111 0.501894 +Torque: -0.128964 -0.004877 -0.314082 + +Polar angle tht: 1.7453; Azimuth angle phi: 6.1087 +Force: -2.482370 0.404851 0.470743 +Torque: -0.116478 -0.008810 -0.294899 + +Polar angle tht: 1.7453; Azimuth angle phi: 6.1523 +Force: -2.453693 0.304335 0.451424 +Torque: -0.096046 -0.011241 -0.250016 + +Polar angle tht: 1.7453; Azimuth angle phi: 6.1959 +Force: -2.471753 0.203449 0.449807 +Torque: -0.064136 -0.011403 -0.167742 + +Polar angle tht: 1.7453; Azimuth angle phi: 6.2396 +Force: -2.482632 0.101892 0.448830 +Torque: -0.032100 -0.011501 -0.084192 + +Polar angle tht: 1.7453; Azimuth angle phi: 6.2832 +Force: -2.486265 0.000000 0.448504 +Torque: -0.000000 -0.011534 -0.000002 + +Polar angle tht: 1.7890; Azimuth angle phi: 0.0000 +Force: -2.694324 0.000000 0.614866 +Torque: -0.000000 -0.007764 -0.000002 + +Polar angle tht: 1.7890; Azimuth angle phi: 0.0436 +Force: -2.690515 -0.112143 0.615163 +Torque: 0.035725 -0.007735 0.082740 + +Polar angle tht: 1.7890; Azimuth angle phi: 0.0873 +Force: -2.679108 -0.223934 0.616050 +Torque: 0.071380 -0.007649 0.164852 + +Polar angle tht: 1.7890; Azimuth angle phi: 0.1309 +Force: -2.660167 -0.335020 0.617518 +Torque: 0.106894 -0.007507 0.245709 + +Polar angle tht: 1.7890; Azimuth angle phi: 0.1745 +Force: -2.633800 -0.445054 0.619554 +Torque: 0.142198 -0.007310 0.324696 + +Polar angle tht: 1.7890; Azimuth angle phi: 0.2182 +Force: -2.662196 -0.557073 0.644939 +Torque: 0.162044 -0.004516 0.360297 + +Polar angle tht: 1.7890; Azimuth angle phi: 0.2618 +Force: -2.706927 -0.675595 0.679702 +Torque: 0.175363 -0.000711 0.377395 + +Polar angle tht: 1.7890; Azimuth angle phi: 0.3054 +Force: -2.741514 -0.799808 0.714201 +Torque: 0.188445 0.003005 0.393045 + +Polar angle tht: 1.7890; Azimuth angle phi: 0.3491 +Force: -2.765624 -0.929060 0.748358 +Torque: 0.201263 0.006606 0.407111 + +Polar angle tht: 1.7890; Azimuth angle phi: 0.3927 +Force: -2.778994 -1.062654 0.782090 +Torque: 0.213796 0.010064 0.419464 + +Polar angle tht: 1.7890; Azimuth angle phi: 0.4363 +Force: -2.781433 -1.199859 0.815314 +Torque: 0.226021 0.013353 0.429987 + +Polar angle tht: 1.7890; Azimuth angle phi: 0.4800 +Force: -2.772824 -1.339907 0.847948 +Torque: 0.237916 0.016448 0.438574 + +Polar angle tht: 1.7890; Azimuth angle phi: 0.5236 +Force: -2.753121 -1.482007 0.879908 +Torque: 0.249461 0.019325 0.445132 + +Polar angle tht: 1.7890; Azimuth angle phi: 0.5672 +Force: -2.722356 -1.625344 0.911110 +Torque: 0.260638 0.021963 0.449579 + +Polar angle tht: 1.7890; Azimuth angle phi: 0.6109 +Force: -2.680635 -1.769087 0.941470 +Torque: 0.271428 0.024341 0.451848 + +Polar angle tht: 1.7890; Azimuth angle phi: 0.6545 +Force: -2.628138 -1.912396 0.970907 +Torque: 0.281814 0.026443 0.451887 + +Polar angle tht: 1.7890; Azimuth angle phi: 0.6981 +Force: -2.565119 -2.054424 0.999337 +Torque: 0.291781 0.028251 0.449656 + +Polar angle tht: 1.7890; Azimuth angle phi: 0.7418 +Force: -2.491901 -2.194330 1.026680 +Torque: 0.301313 0.029753 0.445133 + +Polar angle tht: 1.7890; Azimuth angle phi: 0.7854 +Force: -2.408880 -2.331277 1.052857 +Torque: 0.310397 0.030938 0.438309 + +Polar angle tht: 1.7890; Azimuth angle phi: 0.8290 +Force: -2.316517 -2.464443 1.077792 +Torque: 0.319021 0.031796 0.429192 + +Polar angle tht: 1.7890; Azimuth angle phi: 0.8727 +Force: -2.215335 -2.593024 1.101409 +Torque: 0.327173 0.032321 0.417806 + +Polar angle tht: 1.7890; Azimuth angle phi: 0.9163 +Force: -2.105918 -2.716243 1.123637 +Torque: 0.334842 0.032510 0.404187 + +Polar angle tht: 1.7890; Azimuth angle phi: 0.9599 +Force: -1.988907 -2.833353 1.144407 +Torque: 0.342021 0.032361 0.388390 + +Polar angle tht: 1.7890; Azimuth angle phi: 1.0036 +Force: -1.864993 -2.943642 1.163653 +Torque: 0.348699 0.031876 0.370483 + +Polar angle tht: 1.7890; Azimuth angle phi: 1.0472 +Force: -1.734914 -3.046440 1.181315 +Torque: 0.354870 0.031059 0.350549 + +Polar angle tht: 1.7890; Azimuth angle phi: 1.0908 +Force: -1.599447 -3.141124 1.197333 +Torque: 0.360528 0.029916 0.328684 + +Polar angle tht: 1.7890; Azimuth angle phi: 1.1345 +Force: -1.459407 -3.227118 1.211655 +Torque: 0.365668 0.028456 0.304999 + +Polar angle tht: 1.7890; Azimuth angle phi: 1.1781 +Force: -1.315638 -3.303902 1.224232 +Torque: 0.370284 0.026691 0.279616 + +Polar angle tht: 1.7890; Azimuth angle phi: 1.2217 +Force: -1.169008 -3.371016 1.235020 +Torque: 0.374373 0.024634 0.252669 + +Polar angle tht: 1.7890; Azimuth angle phi: 1.2654 +Force: -1.020402 -3.428059 1.243980 +Torque: 0.377933 0.022301 0.224304 + +Polar angle tht: 1.7890; Azimuth angle phi: 1.3090 +Force: -0.870717 -3.474693 1.251078 +Torque: 0.380962 0.019711 0.194675 + +Polar angle tht: 1.7890; Azimuth angle phi: 1.3526 +Force: -0.720856 -3.510651 1.256287 +Torque: 0.383458 0.016884 0.163946 + +Polar angle tht: 1.7890; Azimuth angle phi: 1.3963 +Force: -0.571718 -3.535730 1.259583 +Torque: 0.385421 0.013840 0.132288 + +Polar angle tht: 1.7890; Azimuth angle phi: 1.4399 +Force: -0.424196 -3.549798 1.260951 +Torque: 0.386852 0.010605 0.099880 + +Polar angle tht: 1.7890; Azimuth angle phi: 1.4835 +Force: -0.279168 -3.552796 1.260380 +Torque: 0.387751 0.007202 0.066904 + +Polar angle tht: 1.7890; Azimuth angle phi: 1.5272 +Force: -0.137492 -3.544733 1.257864 +Torque: 0.388121 0.003658 0.033548 + +Polar angle tht: 1.7890; Azimuth angle phi: 1.5708 +Force: 0.000000 -3.525692 1.253405 +Torque: 0.387964 0.000000 0.000000 + +Polar angle tht: 1.7890; Azimuth angle phi: 1.6144 +Force: 0.137492 -3.544733 1.257864 +Torque: 0.388121 -0.003658 -0.033548 + +Polar angle tht: 1.7890; Azimuth angle phi: 1.6581 +Force: 0.279168 -3.552796 1.260380 +Torque: 0.387751 -0.007202 -0.066904 + +Polar angle tht: 1.7890; Azimuth angle phi: 1.7017 +Force: 0.424196 -3.549798 1.260951 +Torque: 0.386852 -0.010605 -0.099880 + +Polar angle tht: 1.7890; Azimuth angle phi: 1.7453 +Force: 0.571718 -3.535730 1.259583 +Torque: 0.385421 -0.013840 -0.132288 + +Polar angle tht: 1.7890; Azimuth angle phi: 1.7890 +Force: 0.720856 -3.510651 1.256287 +Torque: 0.383458 -0.016884 -0.163946 + +Polar angle tht: 1.7890; Azimuth angle phi: 1.8326 +Force: 0.870717 -3.474693 1.251078 +Torque: 0.380962 -0.019711 -0.194675 + +Polar angle tht: 1.7890; Azimuth angle phi: 1.8762 +Force: 1.020402 -3.428059 1.243980 +Torque: 0.377933 -0.022301 -0.224304 + +Polar angle tht: 1.7890; Azimuth angle phi: 1.9199 +Force: 1.169008 -3.371016 1.235020 +Torque: 0.374373 -0.024634 -0.252669 + +Polar angle tht: 1.7890; Azimuth angle phi: 1.9635 +Force: 1.315638 -3.303902 1.224232 +Torque: 0.370284 -0.026691 -0.279616 + +Polar angle tht: 1.7890; Azimuth angle phi: 2.0071 +Force: 1.459407 -3.227118 1.211655 +Torque: 0.365668 -0.028456 -0.304999 + +Polar angle tht: 1.7890; Azimuth angle phi: 2.0508 +Force: 1.599447 -3.141124 1.197333 +Torque: 0.360528 -0.029916 -0.328684 + +Polar angle tht: 1.7890; Azimuth angle phi: 2.0944 +Force: 1.734914 -3.046440 1.181315 +Torque: 0.354870 -0.031059 -0.350549 + +Polar angle tht: 1.7890; Azimuth angle phi: 2.1380 +Force: 1.864993 -2.943642 1.163653 +Torque: 0.348699 -0.031876 -0.370483 + +Polar angle tht: 1.7890; Azimuth angle phi: 2.1817 +Force: 1.988907 -2.833353 1.144407 +Torque: 0.342021 -0.032361 -0.388390 + +Polar angle tht: 1.7890; Azimuth angle phi: 2.2253 +Force: 2.105918 -2.716243 1.123637 +Torque: 0.334842 -0.032510 -0.404187 + +Polar angle tht: 1.7890; Azimuth angle phi: 2.2689 +Force: 2.215335 -2.593024 1.101409 +Torque: 0.327173 -0.032321 -0.417806 + +Polar angle tht: 1.7890; Azimuth angle phi: 2.3126 +Force: 2.316517 -2.464443 1.077792 +Torque: 0.319021 -0.031796 -0.429192 + +Polar angle tht: 1.7890; Azimuth angle phi: 2.3562 +Force: 2.408880 -2.331277 1.052857 +Torque: 0.310397 -0.030938 -0.438309 + +Polar angle tht: 1.7890; Azimuth angle phi: 2.3998 +Force: 2.491901 -2.194330 1.026680 +Torque: 0.301313 -0.029753 -0.445133 + +Polar angle tht: 1.7890; Azimuth angle phi: 2.4435 +Force: 2.565119 -2.054424 0.999337 +Torque: 0.291781 -0.028251 -0.449656 + +Polar angle tht: 1.7890; Azimuth angle phi: 2.4871 +Force: 2.628138 -1.912396 0.970907 +Torque: 0.281814 -0.026443 -0.451887 + +Polar angle tht: 1.7890; Azimuth angle phi: 2.5307 +Force: 2.680635 -1.769087 0.941470 +Torque: 0.271428 -0.024341 -0.451848 + +Polar angle tht: 1.7890; Azimuth angle phi: 2.5744 +Force: 2.722356 -1.625344 0.911110 +Torque: 0.260638 -0.021963 -0.449579 + +Polar angle tht: 1.7890; Azimuth angle phi: 2.6180 +Force: 2.753121 -1.482007 0.879908 +Torque: 0.249461 -0.019325 -0.445132 + +Polar angle tht: 1.7890; Azimuth angle phi: 2.6616 +Force: 2.772824 -1.339907 0.847948 +Torque: 0.237916 -0.016448 -0.438574 + +Polar angle tht: 1.7890; Azimuth angle phi: 2.7053 +Force: 2.781433 -1.199859 0.815314 +Torque: 0.226021 -0.013353 -0.429987 + +Polar angle tht: 1.7890; Azimuth angle phi: 2.7489 +Force: 2.778994 -1.062654 0.782090 +Torque: 0.213796 -0.010064 -0.419464 + +Polar angle tht: 1.7890; Azimuth angle phi: 2.7925 +Force: 2.765624 -0.929060 0.748358 +Torque: 0.201263 -0.006606 -0.407111 + +Polar angle tht: 1.7890; Azimuth angle phi: 2.8362 +Force: 2.741514 -0.799808 0.714201 +Torque: 0.188445 -0.003005 -0.393045 + +Polar angle tht: 1.7890; Azimuth angle phi: 2.8798 +Force: 2.706927 -0.675595 0.679702 +Torque: 0.175363 0.000711 -0.377395 + +Polar angle tht: 1.7890; Azimuth angle phi: 2.9234 +Force: 2.662196 -0.557073 0.644939 +Torque: 0.162044 0.004516 -0.360297 + +Polar angle tht: 1.7890; Azimuth angle phi: 2.9671 +Force: 2.633800 -0.445054 0.619554 +Torque: 0.142198 0.007310 -0.324696 + +Polar angle tht: 1.7890; Azimuth angle phi: 3.0107 +Force: 2.660167 -0.335020 0.617518 +Torque: 0.106894 0.007507 -0.245709 + +Polar angle tht: 1.7890; Azimuth angle phi: 3.0543 +Force: 2.679108 -0.223934 0.616050 +Torque: 0.071380 0.007649 -0.164852 + +Polar angle tht: 1.7890; Azimuth angle phi: 3.0980 +Force: 2.690515 -0.112143 0.615163 +Torque: 0.035725 0.007735 -0.082740 + +Polar angle tht: 1.7890; Azimuth angle phi: 3.1416 +Force: 2.694324 0.000000 0.614866 +Torque: -0.000000 0.007764 0.000002 + +Polar angle tht: 1.7890; Azimuth angle phi: 3.1852 +Force: 2.690515 0.112143 0.615163 +Torque: -0.035725 0.007735 0.082744 + +Polar angle tht: 1.7890; Azimuth angle phi: 3.2289 +Force: 2.679108 0.223934 0.616050 +Torque: -0.071380 0.007649 0.164856 + +Polar angle tht: 1.7890; Azimuth angle phi: 3.2725 +Force: 2.660167 0.335020 0.617518 +Torque: -0.106895 0.007507 0.245713 + +Polar angle tht: 1.7890; Azimuth angle phi: 3.3161 +Force: 2.633800 0.445054 0.619554 +Torque: -0.142198 0.007310 0.324700 + +Polar angle tht: 1.7890; Azimuth angle phi: 3.3598 +Force: 2.662196 0.557073 0.644939 +Torque: -0.162045 0.004516 0.360302 + +Polar angle tht: 1.7890; Azimuth angle phi: 3.4034 +Force: 2.706927 0.675595 0.679702 +Torque: -0.175365 0.000711 0.377402 + +Polar angle tht: 1.7890; Azimuth angle phi: 3.4470 +Force: 2.741514 0.799808 0.714201 +Torque: -0.188447 -0.003005 0.393054 + +Polar angle tht: 1.7890; Azimuth angle phi: 3.4907 +Force: 2.765624 0.929060 0.748358 +Torque: -0.201267 -0.006606 0.407121 + +Polar angle tht: 1.7890; Azimuth angle phi: 3.5343 +Force: 2.778994 1.062654 0.782090 +Torque: -0.213800 -0.010064 0.419475 + +Polar angle tht: 1.7890; Azimuth angle phi: 3.5779 +Force: 2.781433 1.199859 0.815314 +Torque: -0.226025 -0.013353 0.430000 + +Polar angle tht: 1.7890; Azimuth angle phi: 3.6216 +Force: 2.772824 1.339907 0.847948 +Torque: -0.237921 -0.016448 0.438588 + +Polar angle tht: 1.7890; Azimuth angle phi: 3.6652 +Force: 2.753121 1.482007 0.879908 +Torque: -0.249467 -0.019325 0.445147 + +Polar angle tht: 1.7890; Azimuth angle phi: 3.7088 +Force: 2.722356 1.625344 0.911110 +Torque: -0.260645 -0.021963 0.449595 + +Polar angle tht: 1.7890; Azimuth angle phi: 3.7525 +Force: 2.680635 1.769087 0.941470 +Torque: -0.271435 -0.024341 0.451865 + +Polar angle tht: 1.7890; Azimuth angle phi: 3.7961 +Force: 2.628138 1.912396 0.970907 +Torque: -0.281822 -0.026443 0.451904 + +Polar angle tht: 1.7890; Azimuth angle phi: 3.8397 +Force: 2.565119 2.054424 0.999337 +Torque: -0.291789 -0.028251 0.449674 + +Polar angle tht: 1.7890; Azimuth angle phi: 3.8834 +Force: 2.491901 2.194330 1.026680 +Torque: -0.301322 -0.029753 0.445151 + +Polar angle tht: 1.7890; Azimuth angle phi: 3.9270 +Force: 2.408880 2.331277 1.052857 +Torque: -0.310407 -0.030938 0.438327 + +Polar angle tht: 1.7890; Azimuth angle phi: 3.9706 +Force: 2.316517 2.464443 1.077792 +Torque: -0.319031 -0.031796 0.429211 + +Polar angle tht: 1.7890; Azimuth angle phi: 4.0143 +Force: 2.215335 2.593024 1.101409 +Torque: -0.327184 -0.032321 0.417824 + +Polar angle tht: 1.7890; Azimuth angle phi: 4.0579 +Force: 2.105918 2.716243 1.123637 +Torque: -0.334854 -0.032510 0.404205 + +Polar angle tht: 1.7890; Azimuth angle phi: 4.1015 +Force: 1.988907 2.833353 1.144407 +Torque: -0.342033 -0.032361 0.388408 + +Polar angle tht: 1.7890; Azimuth angle phi: 4.1452 +Force: 1.864993 2.943642 1.163653 +Torque: -0.348712 -0.031876 0.370500 + +Polar angle tht: 1.7890; Azimuth angle phi: 4.1888 +Force: 1.734914 3.046440 1.181315 +Torque: -0.354883 -0.031059 0.350565 + +Polar angle tht: 1.7890; Azimuth angle phi: 4.2324 +Force: 1.599447 3.141124 1.197333 +Torque: -0.360542 -0.029916 0.328700 + +Polar angle tht: 1.7890; Azimuth angle phi: 4.2761 +Force: 1.459407 3.227118 1.211655 +Torque: -0.365682 -0.028456 0.305014 + +Polar angle tht: 1.7890; Azimuth angle phi: 4.3197 +Force: 1.315638 3.303902 1.224232 +Torque: -0.370298 -0.026691 0.279630 + +Polar angle tht: 1.7890; Azimuth angle phi: 4.3633 +Force: 1.169008 3.371016 1.235020 +Torque: -0.374388 -0.024634 0.252681 + +Polar angle tht: 1.7890; Azimuth angle phi: 4.4070 +Force: 1.020402 3.428059 1.243980 +Torque: -0.377948 -0.022301 0.224315 + +Polar angle tht: 1.7890; Azimuth angle phi: 4.4506 +Force: 0.870717 3.474693 1.251078 +Torque: -0.380977 -0.019711 0.194684 + +Polar angle tht: 1.7890; Azimuth angle phi: 4.4942 +Force: 0.720856 3.510651 1.256287 +Torque: -0.383473 -0.016884 0.163954 + +Polar angle tht: 1.7890; Azimuth angle phi: 4.5379 +Force: 0.571718 3.535730 1.259583 +Torque: -0.385437 -0.013840 0.132295 + +Polar angle tht: 1.7890; Azimuth angle phi: 4.5815 +Force: 0.424196 3.549798 1.260951 +Torque: -0.386868 -0.010605 0.099885 + +Polar angle tht: 1.7890; Azimuth angle phi: 4.6251 +Force: 0.279168 3.552796 1.260380 +Torque: -0.387767 -0.007202 0.066907 + +Polar angle tht: 1.7890; Azimuth angle phi: 4.6688 +Force: 0.137492 3.544733 1.257864 +Torque: -0.388137 -0.003658 0.033549 + +Polar angle tht: 1.7890; Azimuth angle phi: 4.7124 +Force: 0.000000 3.525692 1.253405 +Torque: -0.387979 0.000000 -0.000000 + +Polar angle tht: 1.7890; Azimuth angle phi: 4.7560 +Force: -0.137492 3.544733 1.257864 +Torque: -0.388137 0.003658 -0.033549 + +Polar angle tht: 1.7890; Azimuth angle phi: 4.7997 +Force: -0.279168 3.552796 1.260380 +Torque: -0.387767 0.007202 -0.066907 + +Polar angle tht: 1.7890; Azimuth angle phi: 4.8433 +Force: -0.424196 3.549798 1.260951 +Torque: -0.386868 0.010605 -0.099885 + +Polar angle tht: 1.7890; Azimuth angle phi: 4.8869 +Force: -0.571718 3.535730 1.259583 +Torque: -0.385437 0.013840 -0.132295 + +Polar angle tht: 1.7890; Azimuth angle phi: 4.9306 +Force: -0.720856 3.510651 1.256287 +Torque: -0.383473 0.016884 -0.163954 + +Polar angle tht: 1.7890; Azimuth angle phi: 4.9742 +Force: -0.870717 3.474693 1.251078 +Torque: -0.380977 0.019711 -0.194684 + +Polar angle tht: 1.7890; Azimuth angle phi: 5.0178 +Force: -1.020402 3.428059 1.243980 +Torque: -0.377948 0.022301 -0.224315 + +Polar angle tht: 1.7890; Azimuth angle phi: 5.0615 +Force: -1.169008 3.371016 1.235020 +Torque: -0.374388 0.024634 -0.252681 + +Polar angle tht: 1.7890; Azimuth angle phi: 5.1051 +Force: -1.315638 3.303902 1.224232 +Torque: -0.370298 0.026691 -0.279630 + +Polar angle tht: 1.7890; Azimuth angle phi: 5.1487 +Force: -1.459407 3.227118 1.211655 +Torque: -0.365682 0.028456 -0.305014 + +Polar angle tht: 1.7890; Azimuth angle phi: 5.1924 +Force: -1.599447 3.141124 1.197333 +Torque: -0.360542 0.029916 -0.328700 + +Polar angle tht: 1.7890; Azimuth angle phi: 5.2360 +Force: -1.734914 3.046440 1.181315 +Torque: -0.354883 0.031059 -0.350565 + +Polar angle tht: 1.7890; Azimuth angle phi: 5.2796 +Force: -1.864993 2.943642 1.163653 +Torque: -0.348712 0.031876 -0.370500 + +Polar angle tht: 1.7890; Azimuth angle phi: 5.3233 +Force: -1.988907 2.833353 1.144407 +Torque: -0.342033 0.032361 -0.388408 + +Polar angle tht: 1.7890; Azimuth angle phi: 5.3669 +Force: -2.105918 2.716243 1.123637 +Torque: -0.334854 0.032510 -0.404205 + +Polar angle tht: 1.7890; Azimuth angle phi: 5.4105 +Force: -2.215335 2.593024 1.101409 +Torque: -0.327184 0.032321 -0.417824 + +Polar angle tht: 1.7890; Azimuth angle phi: 5.4542 +Force: -2.316517 2.464443 1.077792 +Torque: -0.319031 0.031796 -0.429211 + +Polar angle tht: 1.7890; Azimuth angle phi: 5.4978 +Force: -2.408880 2.331277 1.052857 +Torque: -0.310407 0.030938 -0.438327 + +Polar angle tht: 1.7890; Azimuth angle phi: 5.5414 +Force: -2.491901 2.194330 1.026680 +Torque: -0.301322 0.029753 -0.445151 + +Polar angle tht: 1.7890; Azimuth angle phi: 5.5851 +Force: -2.565119 2.054424 0.999337 +Torque: -0.291789 0.028251 -0.449674 + +Polar angle tht: 1.7890; Azimuth angle phi: 5.6287 +Force: -2.628138 1.912396 0.970907 +Torque: -0.281822 0.026443 -0.451904 + +Polar angle tht: 1.7890; Azimuth angle phi: 5.6723 +Force: -2.680635 1.769087 0.941470 +Torque: -0.271435 0.024341 -0.451865 + +Polar angle tht: 1.7890; Azimuth angle phi: 5.7160 +Force: -2.722356 1.625344 0.911110 +Torque: -0.260645 0.021963 -0.449595 + +Polar angle tht: 1.7890; Azimuth angle phi: 5.7596 +Force: -2.753121 1.482007 0.879908 +Torque: -0.249467 0.019325 -0.445147 + +Polar angle tht: 1.7890; Azimuth angle phi: 5.8032 +Force: -2.772824 1.339907 0.847948 +Torque: -0.237921 0.016448 -0.438588 + +Polar angle tht: 1.7890; Azimuth angle phi: 5.8469 +Force: -2.781433 1.199859 0.815314 +Torque: -0.226025 0.013353 -0.430000 + +Polar angle tht: 1.7890; Azimuth angle phi: 5.8905 +Force: -2.778994 1.062654 0.782090 +Torque: -0.213800 0.010064 -0.419475 + +Polar angle tht: 1.7890; Azimuth angle phi: 5.9341 +Force: -2.765624 0.929060 0.748358 +Torque: -0.201267 0.006606 -0.407121 + +Polar angle tht: 1.7890; Azimuth angle phi: 5.9778 +Force: -2.741514 0.799808 0.714201 +Torque: -0.188447 0.003005 -0.393054 + +Polar angle tht: 1.7890; Azimuth angle phi: 6.0214 +Force: -2.706927 0.675595 0.679702 +Torque: -0.175365 -0.000711 -0.377402 + +Polar angle tht: 1.7890; Azimuth angle phi: 6.0650 +Force: -2.662196 0.557073 0.644939 +Torque: -0.162045 -0.004516 -0.360302 + +Polar angle tht: 1.7890; Azimuth angle phi: 6.1087 +Force: -2.633800 0.445054 0.619554 +Torque: -0.142198 -0.007310 -0.324700 + +Polar angle tht: 1.7890; Azimuth angle phi: 6.1523 +Force: -2.660167 0.335020 0.617518 +Torque: -0.106895 -0.007507 -0.245713 + +Polar angle tht: 1.7890; Azimuth angle phi: 6.1959 +Force: -2.679108 0.223934 0.616050 +Torque: -0.071380 -0.007649 -0.164856 + +Polar angle tht: 1.7890; Azimuth angle phi: 6.2396 +Force: -2.690515 0.112143 0.615163 +Torque: -0.035725 -0.007735 -0.082744 + +Polar angle tht: 1.7890; Azimuth angle phi: 6.2832 +Force: -2.694324 0.000000 0.614866 +Torque: -0.000000 -0.007764 -0.000002 + +Polar angle tht: 1.8326; Azimuth angle phi: 0.0000 +Force: -2.888054 0.000000 0.801093 +Torque: -0.000000 -0.004041 -0.000002 + +Polar angle tht: 1.8326; Azimuth angle phi: 0.0436 +Force: -2.884086 -0.121811 0.801359 +Torque: 0.039169 -0.004016 0.080991 + +Polar angle tht: 1.8326; Azimuth angle phi: 0.0873 +Force: -2.872205 -0.243254 0.802155 +Torque: 0.078261 -0.003942 0.161368 + +Polar angle tht: 1.8326; Azimuth angle phi: 0.1309 +Force: -2.852474 -0.363962 0.803471 +Torque: 0.117199 -0.003820 0.240516 + +Polar angle tht: 1.8326; Azimuth angle phi: 0.1745 +Force: -2.825000 -0.483571 0.805295 +Torque: 0.155908 -0.003650 0.317835 + +Polar angle tht: 1.8326; Azimuth angle phi: 0.2182 +Force: -2.789932 -0.601724 0.807607 +Torque: 0.194310 -0.003436 0.392734 + +Polar angle tht: 1.8326; Azimuth angle phi: 0.2618 +Force: -2.814552 -0.724599 0.838609 +Torque: 0.213447 -0.000428 0.420396 + +Polar angle tht: 1.8326; Azimuth angle phi: 0.3054 +Force: -2.846324 -0.853829 0.876536 +Torque: 0.227499 0.003207 0.435072 + +Polar angle tht: 1.8326; Azimuth angle phi: 0.3491 +Force: -2.867532 -0.987886 0.914020 +Torque: 0.241277 0.006728 0.448100 + +Polar angle tht: 1.8326; Azimuth angle phi: 0.3927 +Force: -2.877921 -1.126075 0.950972 +Torque: 0.254756 0.010108 0.459358 + +Polar angle tht: 1.8326; Azimuth angle phi: 0.4363 +Force: -2.877311 -1.267665 0.987306 +Torque: 0.267911 0.013323 0.468731 + +Polar angle tht: 1.8326; Azimuth angle phi: 0.4800 +Force: -2.865590 -1.411892 1.022933 +Torque: 0.280720 0.016347 0.476119 + +Polar angle tht: 1.8326; Azimuth angle phi: 0.5236 +Force: -2.842723 -1.557968 1.057763 +Torque: 0.293161 0.019157 0.481430 + +Polar angle tht: 1.8326; Azimuth angle phi: 0.5672 +Force: -2.808746 -1.705080 1.091707 +Torque: 0.305212 0.021733 0.484589 + +Polar angle tht: 1.8326; Azimuth angle phi: 0.6109 +Force: -2.763770 -1.852403 1.124678 +Torque: 0.316854 0.024054 0.485531 + +Polar angle tht: 1.8326; Azimuth angle phi: 0.6545 +Force: -2.707980 -1.999102 1.156588 +Torque: 0.328068 0.026104 0.484207 + +Polar angle tht: 1.8326; Azimuth angle phi: 0.6981 +Force: -2.641633 -2.144337 1.187352 +Torque: 0.338838 0.027867 0.480582 + +Polar angle tht: 1.8326; Azimuth angle phi: 0.7418 +Force: -2.565054 -2.287270 1.216884 +Torque: 0.349145 0.029330 0.474636 + +Polar angle tht: 1.8326; Azimuth angle phi: 0.7854 +Force: -2.478639 -2.427073 1.245102 +Torque: 0.358976 0.030481 0.466364 + +Polar angle tht: 1.8326; Azimuth angle phi: 0.8290 +Force: -2.382849 -2.562928 1.271925 +Torque: 0.368316 0.031312 0.455777 + +Polar angle tht: 1.8326; Azimuth angle phi: 0.8727 +Force: -2.278207 -2.694040 1.297277 +Torque: 0.377152 0.031817 0.442900 + +Polar angle tht: 1.8326; Azimuth angle phi: 0.9163 +Force: -2.165297 -2.819637 1.321083 +Torque: 0.385473 0.031992 0.427773 + +Polar angle tht: 1.8326; Azimuth angle phi: 0.9599 +Force: -2.044755 -2.938978 1.343271 +Torque: 0.393267 0.031837 0.410453 + +Polar angle tht: 1.8326; Azimuth angle phi: 1.0036 +Force: -1.917269 -3.051359 1.363773 +Torque: 0.400527 0.031352 0.391010 + +Polar angle tht: 1.8326; Azimuth angle phi: 1.0472 +Force: -1.783573 -3.156114 1.382527 +Torque: 0.407241 0.030542 0.369529 + +Polar angle tht: 1.8326; Azimuth angle phi: 1.0908 +Force: -1.644441 -3.252625 1.399472 +Torque: 0.413405 0.029412 0.346108 + +Polar angle tht: 1.8326; Azimuth angle phi: 1.1345 +Force: -1.500683 -3.340322 1.414555 +Torque: 0.419010 0.027972 0.320858 + +Polar angle tht: 1.8326; Azimuth angle phi: 1.1781 +Force: -1.353138 -3.418689 1.427725 +Torque: 0.424052 0.026233 0.293903 + +Polar angle tht: 1.8326; Azimuth angle phi: 1.2217 +Force: -1.202667 -3.487270 1.438938 +Torque: 0.428526 0.024209 0.265380 + +Polar angle tht: 1.8326; Azimuth angle phi: 1.2654 +Force: -1.050152 -3.545665 1.448154 +Torque: 0.432428 0.021914 0.235434 + +Polar angle tht: 1.8326; Azimuth angle phi: 1.3090 +Force: -0.896483 -3.593542 1.455340 +Torque: 0.435756 0.019367 0.204220 + +Polar angle tht: 1.8326; Azimuth angle phi: 1.3526 +Force: -0.742557 -3.630631 1.460467 +Torque: 0.438508 0.016587 0.171904 + +Polar angle tht: 1.8326; Azimuth angle phi: 1.3963 +Force: -0.589268 -3.656733 1.463514 +Torque: 0.440683 0.013596 0.138657 + +Polar angle tht: 1.8326; Azimuth angle phi: 1.4399 +Force: -0.437505 -3.671715 1.464465 +Torque: 0.442282 0.010417 0.104658 + +Polar angle tht: 1.8326; Azimuth angle phi: 1.4835 +Force: -0.288141 -3.675516 1.463310 +Torque: 0.443304 0.007074 0.070090 + +Polar angle tht: 1.8326; Azimuth angle phi: 1.5272 +Force: -0.142030 -3.668144 1.460045 +Torque: 0.443751 0.003593 0.035141 + +Polar angle tht: 1.8326; Azimuth angle phi: 1.5708 +Force: 0.000000 -3.649678 1.454674 +Torque: 0.443625 0.000000 0.000000 + +Polar angle tht: 1.8326; Azimuth angle phi: 1.6144 +Force: 0.142030 -3.668144 1.460045 +Torque: 0.443751 -0.003593 -0.035141 + +Polar angle tht: 1.8326; Azimuth angle phi: 1.6581 +Force: 0.288141 -3.675516 1.463310 +Torque: 0.443304 -0.007074 -0.070090 + +Polar angle tht: 1.8326; Azimuth angle phi: 1.7017 +Force: 0.437505 -3.671715 1.464465 +Torque: 0.442282 -0.010417 -0.104658 + +Polar angle tht: 1.8326; Azimuth angle phi: 1.7453 +Force: 0.589268 -3.656733 1.463514 +Torque: 0.440683 -0.013596 -0.138657 + +Polar angle tht: 1.8326; Azimuth angle phi: 1.7890 +Force: 0.742557 -3.630631 1.460467 +Torque: 0.438508 -0.016587 -0.171904 + +Polar angle tht: 1.8326; Azimuth angle phi: 1.8326 +Force: 0.896483 -3.593542 1.455340 +Torque: 0.435756 -0.019367 -0.204220 + +Polar angle tht: 1.8326; Azimuth angle phi: 1.8762 +Force: 1.050152 -3.545665 1.448154 +Torque: 0.432428 -0.021914 -0.235434 + +Polar angle tht: 1.8326; Azimuth angle phi: 1.9199 +Force: 1.202667 -3.487270 1.438938 +Torque: 0.428526 -0.024209 -0.265380 + +Polar angle tht: 1.8326; Azimuth angle phi: 1.9635 +Force: 1.353138 -3.418689 1.427725 +Torque: 0.424052 -0.026233 -0.293903 + +Polar angle tht: 1.8326; Azimuth angle phi: 2.0071 +Force: 1.500683 -3.340322 1.414555 +Torque: 0.419010 -0.027972 -0.320858 + +Polar angle tht: 1.8326; Azimuth angle phi: 2.0508 +Force: 1.644441 -3.252625 1.399472 +Torque: 0.413405 -0.029412 -0.346108 + +Polar angle tht: 1.8326; Azimuth angle phi: 2.0944 +Force: 1.783573 -3.156114 1.382527 +Torque: 0.407241 -0.030542 -0.369529 + +Polar angle tht: 1.8326; Azimuth angle phi: 2.1380 +Force: 1.917269 -3.051359 1.363773 +Torque: 0.400527 -0.031352 -0.391010 + +Polar angle tht: 1.8326; Azimuth angle phi: 2.1817 +Force: 2.044755 -2.938978 1.343271 +Torque: 0.393267 -0.031837 -0.410453 + +Polar angle tht: 1.8326; Azimuth angle phi: 2.2253 +Force: 2.165297 -2.819637 1.321083 +Torque: 0.385473 -0.031992 -0.427773 + +Polar angle tht: 1.8326; Azimuth angle phi: 2.2689 +Force: 2.278207 -2.694040 1.297277 +Torque: 0.377152 -0.031817 -0.442900 + +Polar angle tht: 1.8326; Azimuth angle phi: 2.3126 +Force: 2.382849 -2.562928 1.271925 +Torque: 0.368316 -0.031312 -0.455777 + +Polar angle tht: 1.8326; Azimuth angle phi: 2.3562 +Force: 2.478639 -2.427073 1.245102 +Torque: 0.358976 -0.030481 -0.466364 + +Polar angle tht: 1.8326; Azimuth angle phi: 2.3998 +Force: 2.565054 -2.287270 1.216884 +Torque: 0.349145 -0.029330 -0.474636 + +Polar angle tht: 1.8326; Azimuth angle phi: 2.4435 +Force: 2.641633 -2.144337 1.187352 +Torque: 0.338838 -0.027867 -0.480582 + +Polar angle tht: 1.8326; Azimuth angle phi: 2.4871 +Force: 2.707980 -1.999102 1.156588 +Torque: 0.328068 -0.026104 -0.484207 + +Polar angle tht: 1.8326; Azimuth angle phi: 2.5307 +Force: 2.763770 -1.852403 1.124678 +Torque: 0.316854 -0.024054 -0.485531 + +Polar angle tht: 1.8326; Azimuth angle phi: 2.5744 +Force: 2.808746 -1.705080 1.091707 +Torque: 0.305212 -0.021733 -0.484589 + +Polar angle tht: 1.8326; Azimuth angle phi: 2.6180 +Force: 2.842723 -1.557968 1.057763 +Torque: 0.293161 -0.019157 -0.481430 + +Polar angle tht: 1.8326; Azimuth angle phi: 2.6616 +Force: 2.865590 -1.411892 1.022933 +Torque: 0.280720 -0.016347 -0.476119 + +Polar angle tht: 1.8326; Azimuth angle phi: 2.7053 +Force: 2.877311 -1.267665 0.987306 +Torque: 0.267911 -0.013323 -0.468731 + +Polar angle tht: 1.8326; Azimuth angle phi: 2.7489 +Force: 2.877921 -1.126075 0.950972 +Torque: 0.254756 -0.010108 -0.459358 + +Polar angle tht: 1.8326; Azimuth angle phi: 2.7925 +Force: 2.867532 -0.987886 0.914020 +Torque: 0.241277 -0.006728 -0.448100 + +Polar angle tht: 1.8326; Azimuth angle phi: 2.8362 +Force: 2.846324 -0.853829 0.876536 +Torque: 0.227499 -0.003207 -0.435072 + +Polar angle tht: 1.8326; Azimuth angle phi: 2.8798 +Force: 2.814552 -0.724599 0.838609 +Torque: 0.213447 0.000428 -0.420396 + +Polar angle tht: 1.8326; Azimuth angle phi: 2.9234 +Force: 2.789932 -0.601724 0.807607 +Torque: 0.194310 0.003436 -0.392734 + +Polar angle tht: 1.8326; Azimuth angle phi: 2.9671 +Force: 2.825000 -0.483571 0.805295 +Torque: 0.155908 0.003650 -0.317835 + +Polar angle tht: 1.8326; Azimuth angle phi: 3.0107 +Force: 2.852474 -0.363962 0.803471 +Torque: 0.117199 0.003820 -0.240516 + +Polar angle tht: 1.8326; Azimuth angle phi: 3.0543 +Force: 2.872205 -0.243254 0.802155 +Torque: 0.078261 0.003942 -0.161368 + +Polar angle tht: 1.8326; Azimuth angle phi: 3.0980 +Force: 2.884086 -0.121811 0.801359 +Torque: 0.039169 0.004016 -0.080991 + +Polar angle tht: 1.8326; Azimuth angle phi: 3.1416 +Force: 2.888054 0.000000 0.801093 +Torque: -0.000000 0.004041 0.000002 + +Polar angle tht: 1.8326; Azimuth angle phi: 3.1852 +Force: 2.884086 0.121811 0.801359 +Torque: -0.039169 0.004016 0.080996 + +Polar angle tht: 1.8326; Azimuth angle phi: 3.2289 +Force: 2.872205 0.243254 0.802155 +Torque: -0.078262 0.003942 0.161373 + +Polar angle tht: 1.8326; Azimuth angle phi: 3.2725 +Force: 2.852474 0.363962 0.803471 +Torque: -0.117200 0.003820 0.240521 + +Polar angle tht: 1.8326; Azimuth angle phi: 3.3161 +Force: 2.825000 0.483571 0.805295 +Torque: -0.155909 0.003650 0.317839 + +Polar angle tht: 1.8326; Azimuth angle phi: 3.3598 +Force: 2.789932 0.601724 0.807607 +Torque: -0.194311 0.003436 0.392739 + +Polar angle tht: 1.8326; Azimuth angle phi: 3.4034 +Force: 2.814552 0.724599 0.838609 +Torque: -0.213449 0.000428 0.420402 + +Polar angle tht: 1.8326; Azimuth angle phi: 3.4470 +Force: 2.846324 0.853829 0.876536 +Torque: -0.227502 -0.003207 0.435079 + +Polar angle tht: 1.8326; Azimuth angle phi: 3.4907 +Force: 2.867532 0.987886 0.914020 +Torque: -0.241280 -0.006728 0.448109 + +Polar angle tht: 1.8326; Azimuth angle phi: 3.5343 +Force: 2.877921 1.126075 0.950972 +Torque: -0.254760 -0.010108 0.459368 + +Polar angle tht: 1.8326; Azimuth angle phi: 3.5779 +Force: 2.877311 1.267665 0.987306 +Torque: -0.267916 -0.013323 0.468743 + +Polar angle tht: 1.8326; Azimuth angle phi: 3.6216 +Force: 2.865590 1.411892 1.022933 +Torque: -0.280726 -0.016347 0.476132 + +Polar angle tht: 1.8326; Azimuth angle phi: 3.6652 +Force: 2.842723 1.557968 1.057763 +Torque: -0.293167 -0.019157 0.481444 + +Polar angle tht: 1.8326; Azimuth angle phi: 3.7088 +Force: 2.808746 1.705080 1.091707 +Torque: -0.305219 -0.021733 0.484604 + +Polar angle tht: 1.8326; Azimuth angle phi: 3.7525 +Force: 2.763770 1.852403 1.124678 +Torque: -0.316862 -0.024054 0.485546 + +Polar angle tht: 1.8326; Azimuth angle phi: 3.7961 +Force: 2.707980 1.999102 1.156588 +Torque: -0.328077 -0.026104 0.484223 + +Polar angle tht: 1.8326; Azimuth angle phi: 3.8397 +Force: 2.641633 2.144337 1.187352 +Torque: -0.338847 -0.027867 0.480599 + +Polar angle tht: 1.8326; Azimuth angle phi: 3.8834 +Force: 2.565054 2.287270 1.216884 +Torque: -0.349155 -0.029330 0.474653 + +Polar angle tht: 1.8326; Azimuth angle phi: 3.9270 +Force: 2.478639 2.427073 1.245102 +Torque: -0.358986 -0.030481 0.466382 + +Polar angle tht: 1.8326; Azimuth angle phi: 3.9706 +Force: 2.382849 2.562928 1.271925 +Torque: -0.368327 -0.031312 0.455795 + +Polar angle tht: 1.8326; Azimuth angle phi: 4.0143 +Force: 2.278207 2.694040 1.297277 +Torque: -0.377164 -0.031817 0.442917 + +Polar angle tht: 1.8326; Azimuth angle phi: 4.0579 +Force: 2.165297 2.819637 1.321083 +Torque: -0.385485 -0.031992 0.427791 + +Polar angle tht: 1.8326; Azimuth angle phi: 4.1015 +Force: 2.044755 2.938978 1.343271 +Torque: -0.393280 -0.031837 0.410470 + +Polar angle tht: 1.8326; Azimuth angle phi: 4.1452 +Force: 1.917269 3.051359 1.363773 +Torque: -0.400540 -0.031352 0.391027 + +Polar angle tht: 1.8326; Azimuth angle phi: 4.1888 +Force: 1.783573 3.156114 1.382527 +Torque: -0.407255 -0.030542 0.369545 + +Polar angle tht: 1.8326; Azimuth angle phi: 4.2324 +Force: 1.644441 3.252625 1.399472 +Torque: -0.413419 -0.029412 0.346122 + +Polar angle tht: 1.8326; Azimuth angle phi: 4.2761 +Force: 1.500683 3.340322 1.414555 +Torque: -0.419025 -0.027972 0.320872 + +Polar angle tht: 1.8326; Azimuth angle phi: 4.3197 +Force: 1.353138 3.418689 1.427725 +Torque: -0.424067 -0.026233 0.293916 + +Polar angle tht: 1.8326; Azimuth angle phi: 4.3633 +Force: 1.202667 3.487270 1.438938 +Torque: -0.428541 -0.024209 0.265392 + +Polar angle tht: 1.8326; Azimuth angle phi: 4.4070 +Force: 1.050152 3.545665 1.448154 +Torque: -0.432444 -0.021914 0.235444 + +Polar angle tht: 1.8326; Azimuth angle phi: 4.4506 +Force: 0.896483 3.593542 1.455340 +Torque: -0.435772 -0.019367 0.204229 + +Polar angle tht: 1.8326; Azimuth angle phi: 4.4942 +Force: 0.742557 3.630631 1.460467 +Torque: -0.438524 -0.016587 0.171912 + +Polar angle tht: 1.8326; Azimuth angle phi: 4.5379 +Force: 0.589268 3.656733 1.463514 +Torque: -0.440700 -0.013596 0.138663 + +Polar angle tht: 1.8326; Azimuth angle phi: 4.5815 +Force: 0.437505 3.671715 1.464465 +Torque: -0.442298 -0.010417 0.104663 + +Polar angle tht: 1.8326; Azimuth angle phi: 4.6251 +Force: 0.288141 3.675516 1.463310 +Torque: -0.443320 -0.007074 0.070093 + +Polar angle tht: 1.8326; Azimuth angle phi: 4.6688 +Force: 0.142030 3.668144 1.460045 +Torque: -0.443767 -0.003593 0.035142 + +Polar angle tht: 1.8326; Azimuth angle phi: 4.7124 +Force: 0.000000 3.649678 1.454674 +Torque: -0.443641 0.000000 -0.000000 + +Polar angle tht: 1.8326; Azimuth angle phi: 4.7560 +Force: -0.142030 3.668144 1.460045 +Torque: -0.443767 0.003593 -0.035142 + +Polar angle tht: 1.8326; Azimuth angle phi: 4.7997 +Force: -0.288141 3.675516 1.463310 +Torque: -0.443320 0.007074 -0.070093 + +Polar angle tht: 1.8326; Azimuth angle phi: 4.8433 +Force: -0.437505 3.671715 1.464465 +Torque: -0.442298 0.010417 -0.104663 + +Polar angle tht: 1.8326; Azimuth angle phi: 4.8869 +Force: -0.589268 3.656733 1.463514 +Torque: -0.440700 0.013596 -0.138663 + +Polar angle tht: 1.8326; Azimuth angle phi: 4.9306 +Force: -0.742557 3.630631 1.460467 +Torque: -0.438524 0.016587 -0.171912 + +Polar angle tht: 1.8326; Azimuth angle phi: 4.9742 +Force: -0.896483 3.593542 1.455340 +Torque: -0.435772 0.019367 -0.204229 + +Polar angle tht: 1.8326; Azimuth angle phi: 5.0178 +Force: -1.050152 3.545665 1.448154 +Torque: -0.432444 0.021914 -0.235444 + +Polar angle tht: 1.8326; Azimuth angle phi: 5.0615 +Force: -1.202667 3.487270 1.438938 +Torque: -0.428541 0.024209 -0.265392 + +Polar angle tht: 1.8326; Azimuth angle phi: 5.1051 +Force: -1.353138 3.418689 1.427725 +Torque: -0.424067 0.026233 -0.293916 + +Polar angle tht: 1.8326; Azimuth angle phi: 5.1487 +Force: -1.500683 3.340322 1.414555 +Torque: -0.419025 0.027972 -0.320872 + +Polar angle tht: 1.8326; Azimuth angle phi: 5.1924 +Force: -1.644441 3.252625 1.399472 +Torque: -0.413419 0.029412 -0.346122 + +Polar angle tht: 1.8326; Azimuth angle phi: 5.2360 +Force: -1.783573 3.156114 1.382527 +Torque: -0.407255 0.030542 -0.369545 + +Polar angle tht: 1.8326; Azimuth angle phi: 5.2796 +Force: -1.917269 3.051359 1.363773 +Torque: -0.400540 0.031352 -0.391027 + +Polar angle tht: 1.8326; Azimuth angle phi: 5.3233 +Force: -2.044755 2.938978 1.343271 +Torque: -0.393280 0.031837 -0.410470 + +Polar angle tht: 1.8326; Azimuth angle phi: 5.3669 +Force: -2.165297 2.819637 1.321083 +Torque: -0.385485 0.031992 -0.427791 + +Polar angle tht: 1.8326; Azimuth angle phi: 5.4105 +Force: -2.278207 2.694040 1.297277 +Torque: -0.377164 0.031817 -0.442917 + +Polar angle tht: 1.8326; Azimuth angle phi: 5.4542 +Force: -2.382849 2.562928 1.271925 +Torque: -0.368327 0.031312 -0.455795 + +Polar angle tht: 1.8326; Azimuth angle phi: 5.4978 +Force: -2.478639 2.427073 1.245102 +Torque: -0.358986 0.030481 -0.466382 + +Polar angle tht: 1.8326; Azimuth angle phi: 5.5414 +Force: -2.565054 2.287270 1.216884 +Torque: -0.349155 0.029330 -0.474653 + +Polar angle tht: 1.8326; Azimuth angle phi: 5.5851 +Force: -2.641633 2.144337 1.187352 +Torque: -0.338847 0.027867 -0.480599 + +Polar angle tht: 1.8326; Azimuth angle phi: 5.6287 +Force: -2.707980 1.999102 1.156588 +Torque: -0.328077 0.026104 -0.484223 + +Polar angle tht: 1.8326; Azimuth angle phi: 5.6723 +Force: -2.763770 1.852403 1.124678 +Torque: -0.316862 0.024054 -0.485546 + +Polar angle tht: 1.8326; Azimuth angle phi: 5.7160 +Force: -2.808746 1.705080 1.091707 +Torque: -0.305219 0.021733 -0.484604 + +Polar angle tht: 1.8326; Azimuth angle phi: 5.7596 +Force: -2.842723 1.557968 1.057763 +Torque: -0.293167 0.019157 -0.481444 + +Polar angle tht: 1.8326; Azimuth angle phi: 5.8032 +Force: -2.865590 1.411892 1.022933 +Torque: -0.280726 0.016347 -0.476132 + +Polar angle tht: 1.8326; Azimuth angle phi: 5.8469 +Force: -2.877311 1.267665 0.987306 +Torque: -0.267916 0.013323 -0.468743 + +Polar angle tht: 1.8326; Azimuth angle phi: 5.8905 +Force: -2.877921 1.126075 0.950972 +Torque: -0.254760 0.010108 -0.459368 + +Polar angle tht: 1.8326; Azimuth angle phi: 5.9341 +Force: -2.867532 0.987886 0.914020 +Torque: -0.241280 0.006728 -0.448109 + +Polar angle tht: 1.8326; Azimuth angle phi: 5.9778 +Force: -2.846324 0.853829 0.876536 +Torque: -0.227502 0.003207 -0.435079 + +Polar angle tht: 1.8326; Azimuth angle phi: 6.0214 +Force: -2.814552 0.724599 0.838609 +Torque: -0.213449 -0.000428 -0.420402 + +Polar angle tht: 1.8326; Azimuth angle phi: 6.0650 +Force: -2.789932 0.601724 0.807607 +Torque: -0.194311 -0.003436 -0.392739 + +Polar angle tht: 1.8326; Azimuth angle phi: 6.1087 +Force: -2.825000 0.483571 0.805295 +Torque: -0.155909 -0.003650 -0.317839 + +Polar angle tht: 1.8326; Azimuth angle phi: 6.1523 +Force: -2.852474 0.363962 0.803471 +Torque: -0.117200 -0.003820 -0.240521 + +Polar angle tht: 1.8326; Azimuth angle phi: 6.1959 +Force: -2.872205 0.243254 0.802155 +Torque: -0.078262 -0.003942 -0.161373 + +Polar angle tht: 1.8326; Azimuth angle phi: 6.2396 +Force: -2.884086 0.121811 0.801359 +Torque: -0.039169 -0.004016 -0.080996 + +Polar angle tht: 1.8326; Azimuth angle phi: 6.2832 +Force: -2.888054 0.000000 0.801093 +Torque: -0.000000 -0.004041 -0.000002 + +Polar angle tht: 1.8762; Azimuth angle phi: 0.0000 +Force: -3.065969 0.000000 1.005993 +Torque: -0.000001 -0.000393 -0.000003 + +Polar angle tht: 1.8762; Azimuth angle phi: 0.0436 +Force: -3.061863 -0.130821 1.006228 +Torque: 0.042404 -0.000372 0.078956 + +Polar angle tht: 1.8762; Azimuth angle phi: 0.0873 +Force: -3.049565 -0.261260 1.006931 +Torque: 0.084725 -0.000310 0.157314 + +Polar angle tht: 1.8762; Azimuth angle phi: 0.1309 +Force: -3.029140 -0.390937 1.008095 +Torque: 0.126880 -0.000208 0.234474 + +Polar angle tht: 1.8762; Azimuth angle phi: 0.1745 +Force: -3.000694 -0.519473 1.009704 +Torque: 0.168787 -0.000066 0.309850 + +Polar angle tht: 1.8762; Azimuth angle phi: 0.2182 +Force: -2.964375 -0.646499 1.011742 +Torque: 0.210364 0.000113 0.382868 + +Polar angle tht: 1.8762; Azimuth angle phi: 0.2618 +Force: -2.920371 -0.771647 1.014184 +Torque: 0.251529 0.000327 0.452972 + +Polar angle tht: 1.8762; Azimuth angle phi: 0.3054 +Force: -2.937531 -0.904197 1.049771 +Torque: 0.270197 0.003386 0.474373 + +Polar angle tht: 1.8762; Azimuth angle phi: 0.3491 +Force: -2.955814 -1.042435 1.090375 +Torque: 0.284870 0.006815 0.486335 + +Polar angle tht: 1.8762; Azimuth angle phi: 0.3927 +Force: -2.963244 -1.184582 1.130348 +Torque: 0.299232 0.010106 0.496477 + +Polar angle tht: 1.8762; Azimuth angle phi: 0.4363 +Force: -2.959651 -1.329911 1.169595 +Torque: 0.313257 0.013235 0.504689 + +Polar angle tht: 1.8762; Azimuth angle phi: 0.4800 +Force: -2.944933 -1.477665 1.208022 +Torque: 0.326920 0.016177 0.510875 + +Polar angle tht: 1.8762; Azimuth angle phi: 0.5236 +Force: -2.919060 -1.627059 1.245536 +Torque: 0.340197 0.018912 0.514948 + +Polar angle tht: 1.8762; Azimuth angle phi: 0.5672 +Force: -2.882075 -1.777290 1.282043 +Torque: 0.353066 0.021416 0.516835 + +Polar angle tht: 1.8762; Azimuth angle phi: 0.6109 +Force: -2.834094 -1.927540 1.317451 +Torque: 0.365506 0.023673 0.516477 + +Polar angle tht: 1.8762; Azimuth angle phi: 0.6545 +Force: -2.775304 -2.076983 1.351668 +Torque: 0.377496 0.025665 0.513827 + +Polar angle tht: 1.8762; Azimuth angle phi: 0.6981 +Force: -2.705964 -2.224786 1.384605 +Torque: 0.389017 0.027376 0.508855 + +Polar angle tht: 1.8762; Azimuth angle phi: 0.7418 +Force: -2.626401 -2.370122 1.416174 +Torque: 0.400051 0.028793 0.501544 + +Polar angle tht: 1.8762; Azimuth angle phi: 0.7854 +Force: -2.537010 -2.512170 1.446289 +Torque: 0.410582 0.029907 0.491891 + +Polar angle tht: 1.8762; Azimuth angle phi: 0.8290 +Force: -2.438249 -2.650125 1.474866 +Torque: 0.420593 0.030709 0.479910 + +Polar angle tht: 1.8762; Azimuth angle phi: 0.8727 +Force: -2.330640 -2.783199 1.501826 +Torque: 0.430072 0.031193 0.465628 + +Polar angle tht: 1.8762; Azimuth angle phi: 0.9163 +Force: -2.214761 -2.910630 1.527092 +Torque: 0.439004 0.031354 0.449090 + +Polar angle tht: 1.8762; Azimuth angle phi: 0.9599 +Force: -2.091244 -3.031687 1.550589 +Torque: 0.447379 0.031193 0.430352 + +Polar angle tht: 1.8762; Azimuth angle phi: 1.0036 +Force: -1.960772 -3.145673 1.572249 +Torque: 0.455184 0.030711 0.409486 + +Polar angle tht: 1.8762; Azimuth angle phi: 1.0472 +Force: -1.824071 -3.251932 1.592006 +Torque: 0.462410 0.029911 0.386580 + +Polar angle tht: 1.8762; Azimuth angle phi: 1.0908 +Force: -1.681909 -3.349853 1.609801 +Torque: 0.469049 0.028799 0.361733 + +Polar angle tht: 1.8762; Azimuth angle phi: 1.1345 +Force: -1.535086 -3.438872 1.625576 +Torque: 0.475093 0.027385 0.335056 + +Polar angle tht: 1.8762; Azimuth angle phi: 1.1781 +Force: -1.384434 -3.518482 1.639282 +Torque: 0.480536 0.025678 0.306676 + +Polar angle tht: 1.8762; Azimuth angle phi: 1.2217 +Force: -1.230806 -3.588228 1.650873 +Torque: 0.485373 0.023693 0.276727 + +Polar angle tht: 1.8762; Azimuth angle phi: 1.2654 +Force: -1.075074 -3.647719 1.660310 +Torque: 0.489598 0.021445 0.245357 + +Polar angle tht: 1.8762; Azimuth angle phi: 1.3090 +Force: -0.918119 -3.696623 1.667559 +Torque: 0.493210 0.018951 0.212721 + +Polar angle tht: 1.8762; Azimuth angle phi: 1.3526 +Force: -0.760829 -3.734676 1.672592 +Torque: 0.496205 0.016229 0.178985 + +Polar angle tht: 1.8762; Azimuth angle phi: 1.3963 +Force: -0.604091 -3.761677 1.675388 +Torque: 0.498581 0.013302 0.144320 + +Polar angle tht: 1.8762; Azimuth angle phi: 1.4399 +Force: -0.448783 -3.777495 1.675931 +Torque: 0.500338 0.010191 0.108903 + +Polar angle tht: 1.8762; Azimuth angle phi: 1.4835 +Force: -0.295772 -3.782068 1.674213 +Torque: 0.501477 0.006920 0.072920 + +Polar angle tht: 1.8762; Azimuth angle phi: 1.5272 +Force: -0.145904 -3.775403 1.670232 +Torque: 0.501999 0.003514 0.036555 + +Polar angle tht: 1.8762; Azimuth angle phi: 1.5708 +Force: 0.000000 -3.757575 1.663991 +Torque: 0.501905 0.000000 0.000000 + +Polar angle tht: 1.8762; Azimuth angle phi: 1.6144 +Force: 0.145904 -3.775403 1.670232 +Torque: 0.501999 -0.003514 -0.036555 + +Polar angle tht: 1.8762; Azimuth angle phi: 1.6581 +Force: 0.295772 -3.782068 1.674213 +Torque: 0.501477 -0.006920 -0.072920 + +Polar angle tht: 1.8762; Azimuth angle phi: 1.7017 +Force: 0.448783 -3.777495 1.675931 +Torque: 0.500338 -0.010191 -0.108903 + +Polar angle tht: 1.8762; Azimuth angle phi: 1.7453 +Force: 0.604091 -3.761677 1.675388 +Torque: 0.498581 -0.013302 -0.144320 + +Polar angle tht: 1.8762; Azimuth angle phi: 1.7890 +Force: 0.760829 -3.734676 1.672592 +Torque: 0.496205 -0.016229 -0.178985 + +Polar angle tht: 1.8762; Azimuth angle phi: 1.8326 +Force: 0.918119 -3.696623 1.667559 +Torque: 0.493210 -0.018951 -0.212721 + +Polar angle tht: 1.8762; Azimuth angle phi: 1.8762 +Force: 1.075074 -3.647719 1.660310 +Torque: 0.489598 -0.021445 -0.245357 + +Polar angle tht: 1.8762; Azimuth angle phi: 1.9199 +Force: 1.230806 -3.588228 1.650873 +Torque: 0.485373 -0.023693 -0.276727 + +Polar angle tht: 1.8762; Azimuth angle phi: 1.9635 +Force: 1.384434 -3.518482 1.639282 +Torque: 0.480536 -0.025678 -0.306676 + +Polar angle tht: 1.8762; Azimuth angle phi: 2.0071 +Force: 1.535086 -3.438872 1.625576 +Torque: 0.475093 -0.027385 -0.335056 + +Polar angle tht: 1.8762; Azimuth angle phi: 2.0508 +Force: 1.681909 -3.349853 1.609801 +Torque: 0.469049 -0.028799 -0.361733 + +Polar angle tht: 1.8762; Azimuth angle phi: 2.0944 +Force: 1.824071 -3.251932 1.592006 +Torque: 0.462410 -0.029911 -0.386580 + +Polar angle tht: 1.8762; Azimuth angle phi: 2.1380 +Force: 1.960772 -3.145673 1.572249 +Torque: 0.455184 -0.030711 -0.409486 + +Polar angle tht: 1.8762; Azimuth angle phi: 2.1817 +Force: 2.091244 -3.031687 1.550589 +Torque: 0.447379 -0.031193 -0.430352 + +Polar angle tht: 1.8762; Azimuth angle phi: 2.2253 +Force: 2.214761 -2.910630 1.527092 +Torque: 0.439004 -0.031354 -0.449090 + +Polar angle tht: 1.8762; Azimuth angle phi: 2.2689 +Force: 2.330640 -2.783199 1.501826 +Torque: 0.430072 -0.031193 -0.465628 + +Polar angle tht: 1.8762; Azimuth angle phi: 2.3126 +Force: 2.438249 -2.650125 1.474866 +Torque: 0.420593 -0.030709 -0.479910 + +Polar angle tht: 1.8762; Azimuth angle phi: 2.3562 +Force: 2.537010 -2.512170 1.446289 +Torque: 0.410582 -0.029907 -0.491891 + +Polar angle tht: 1.8762; Azimuth angle phi: 2.3998 +Force: 2.626401 -2.370122 1.416174 +Torque: 0.400051 -0.028793 -0.501544 + +Polar angle tht: 1.8762; Azimuth angle phi: 2.4435 +Force: 2.705964 -2.224786 1.384605 +Torque: 0.389017 -0.027376 -0.508855 + +Polar angle tht: 1.8762; Azimuth angle phi: 2.4871 +Force: 2.775304 -2.076983 1.351668 +Torque: 0.377496 -0.025665 -0.513827 + +Polar angle tht: 1.8762; Azimuth angle phi: 2.5307 +Force: 2.834094 -1.927540 1.317451 +Torque: 0.365506 -0.023673 -0.516477 + +Polar angle tht: 1.8762; Azimuth angle phi: 2.5744 +Force: 2.882075 -1.777290 1.282043 +Torque: 0.353066 -0.021416 -0.516835 + +Polar angle tht: 1.8762; Azimuth angle phi: 2.6180 +Force: 2.919060 -1.627059 1.245536 +Torque: 0.340197 -0.018912 -0.514948 + +Polar angle tht: 1.8762; Azimuth angle phi: 2.6616 +Force: 2.944933 -1.477665 1.208022 +Torque: 0.326920 -0.016177 -0.510875 + +Polar angle tht: 1.8762; Azimuth angle phi: 2.7053 +Force: 2.959651 -1.329911 1.169595 +Torque: 0.313257 -0.013235 -0.504689 + +Polar angle tht: 1.8762; Azimuth angle phi: 2.7489 +Force: 2.963244 -1.184582 1.130348 +Torque: 0.299232 -0.010106 -0.496477 + +Polar angle tht: 1.8762; Azimuth angle phi: 2.7925 +Force: 2.955814 -1.042435 1.090375 +Torque: 0.284870 -0.006815 -0.486335 + +Polar angle tht: 1.8762; Azimuth angle phi: 2.8362 +Force: 2.937531 -0.904197 1.049771 +Torque: 0.270197 -0.003386 -0.474373 + +Polar angle tht: 1.8762; Azimuth angle phi: 2.8798 +Force: 2.920371 -0.771647 1.014184 +Torque: 0.251529 -0.000327 -0.452972 + +Polar angle tht: 1.8762; Azimuth angle phi: 2.9234 +Force: 2.964375 -0.646499 1.011742 +Torque: 0.210364 -0.000113 -0.382868 + +Polar angle tht: 1.8762; Azimuth angle phi: 2.9671 +Force: 3.000694 -0.519473 1.009704 +Torque: 0.168787 0.000066 -0.309850 + +Polar angle tht: 1.8762; Azimuth angle phi: 3.0107 +Force: 3.029140 -0.390937 1.008095 +Torque: 0.126880 0.000208 -0.234474 + +Polar angle tht: 1.8762; Azimuth angle phi: 3.0543 +Force: 3.049565 -0.261260 1.006931 +Torque: 0.084725 0.000310 -0.157314 + +Polar angle tht: 1.8762; Azimuth angle phi: 3.0980 +Force: 3.061863 -0.130821 1.006228 +Torque: 0.042404 0.000372 -0.078956 + +Polar angle tht: 1.8762; Azimuth angle phi: 3.1416 +Force: 3.065969 0.000000 1.005993 +Torque: -0.000001 0.000393 0.000003 + +Polar angle tht: 1.8762; Azimuth angle phi: 3.1852 +Force: 3.061863 0.130821 1.006228 +Torque: -0.042405 0.000372 0.078962 + +Polar angle tht: 1.8762; Azimuth angle phi: 3.2289 +Force: 3.049565 0.261260 1.006931 +Torque: -0.084726 0.000310 0.157319 + +Polar angle tht: 1.8762; Azimuth angle phi: 3.2725 +Force: 3.029140 0.390937 1.008095 +Torque: -0.126881 0.000208 0.234480 + +Polar angle tht: 1.8762; Azimuth angle phi: 3.3161 +Force: 3.000694 0.519473 1.009704 +Torque: -0.168789 0.000066 0.309856 + +Polar angle tht: 1.8762; Azimuth angle phi: 3.3598 +Force: 2.964375 0.646499 1.011742 +Torque: -0.210365 -0.000113 0.382874 + +Polar angle tht: 1.8762; Azimuth angle phi: 3.4034 +Force: 2.920371 0.771647 1.014184 +Torque: -0.251531 -0.000327 0.452978 + +Polar angle tht: 1.8762; Azimuth angle phi: 3.4470 +Force: 2.937531 0.904197 1.049771 +Torque: -0.270199 -0.003386 0.474379 + +Polar angle tht: 1.8762; Azimuth angle phi: 3.4907 +Force: 2.955814 1.042435 1.090375 +Torque: -0.284873 -0.006815 0.486343 + +Polar angle tht: 1.8762; Azimuth angle phi: 3.5343 +Force: 2.963244 1.184582 1.130348 +Torque: -0.299236 -0.010106 0.496486 + +Polar angle tht: 1.8762; Azimuth angle phi: 3.5779 +Force: 2.959651 1.329911 1.169595 +Torque: -0.313261 -0.013235 0.504700 + +Polar angle tht: 1.8762; Azimuth angle phi: 3.6216 +Force: 2.944933 1.477665 1.208022 +Torque: -0.326925 -0.016177 0.510887 + +Polar angle tht: 1.8762; Azimuth angle phi: 3.6652 +Force: 2.919060 1.627059 1.245536 +Torque: -0.340203 -0.018912 0.514961 + +Polar angle tht: 1.8762; Azimuth angle phi: 3.7088 +Force: 2.882075 1.777290 1.282043 +Torque: -0.353073 -0.021416 0.516849 + +Polar angle tht: 1.8762; Azimuth angle phi: 3.7525 +Force: 2.834094 1.927540 1.317451 +Torque: -0.365514 -0.023673 0.516491 + +Polar angle tht: 1.8762; Azimuth angle phi: 3.7961 +Force: 2.775304 2.076983 1.351668 +Torque: -0.377504 -0.025665 0.513843 + +Polar angle tht: 1.8762; Azimuth angle phi: 3.8397 +Force: 2.705964 2.224786 1.384605 +Torque: -0.389026 -0.027376 0.508871 + +Polar angle tht: 1.8762; Azimuth angle phi: 3.8834 +Force: 2.626401 2.370122 1.416174 +Torque: -0.400061 -0.028793 0.501560 + +Polar angle tht: 1.8762; Azimuth angle phi: 3.9270 +Force: 2.537010 2.512170 1.446289 +Torque: -0.410592 -0.029907 0.491907 + +Polar angle tht: 1.8762; Azimuth angle phi: 3.9706 +Force: 2.438249 2.650125 1.474866 +Torque: -0.420605 -0.030709 0.479926 + +Polar angle tht: 1.8762; Azimuth angle phi: 4.0143 +Force: 2.330640 2.783199 1.501826 +Torque: -0.430084 -0.031193 0.465645 + +Polar angle tht: 1.8762; Azimuth angle phi: 4.0579 +Force: 2.214761 2.910630 1.527092 +Torque: -0.439017 -0.031354 0.449106 + +Polar angle tht: 1.8762; Azimuth angle phi: 4.1015 +Force: 2.091244 3.031687 1.550589 +Torque: -0.447392 -0.031193 0.430368 + +Polar angle tht: 1.8762; Azimuth angle phi: 4.1452 +Force: 1.960772 3.145673 1.572249 +Torque: -0.455198 -0.030711 0.409502 + +Polar angle tht: 1.8762; Azimuth angle phi: 4.1888 +Force: 1.824071 3.251932 1.592006 +Torque: -0.462424 -0.029911 0.386595 + +Polar angle tht: 1.8762; Azimuth angle phi: 4.2324 +Force: 1.681909 3.349853 1.609801 +Torque: -0.469064 -0.028799 0.361747 + +Polar angle tht: 1.8762; Azimuth angle phi: 4.2761 +Force: 1.535086 3.438872 1.625576 +Torque: -0.475109 -0.027385 0.335069 + +Polar angle tht: 1.8762; Azimuth angle phi: 4.3197 +Force: 1.384434 3.518482 1.639282 +Torque: -0.480552 -0.025678 0.306688 + +Polar angle tht: 1.8762; Azimuth angle phi: 4.3633 +Force: 1.230806 3.588228 1.650873 +Torque: -0.485389 -0.023693 0.276738 + +Polar angle tht: 1.8762; Azimuth angle phi: 4.4070 +Force: 1.075074 3.647719 1.660310 +Torque: -0.489615 -0.021445 0.245367 + +Polar angle tht: 1.8762; Azimuth angle phi: 4.4506 +Force: 0.918119 3.696623 1.667559 +Torque: -0.493227 -0.018951 0.212730 + +Polar angle tht: 1.8762; Azimuth angle phi: 4.4942 +Force: 0.760829 3.734676 1.672592 +Torque: -0.496222 -0.016229 0.178992 + +Polar angle tht: 1.8762; Azimuth angle phi: 4.5379 +Force: 0.604091 3.761677 1.675388 +Torque: -0.498598 -0.013302 0.144326 + +Polar angle tht: 1.8762; Azimuth angle phi: 4.5815 +Force: 0.448783 3.777495 1.675931 +Torque: -0.500356 -0.010191 0.108908 + +Polar angle tht: 1.8762; Azimuth angle phi: 4.6251 +Force: 0.295772 3.782068 1.674213 +Torque: -0.501495 -0.006920 0.072923 + +Polar angle tht: 1.8762; Azimuth angle phi: 4.6688 +Force: 0.145904 3.775403 1.670232 +Torque: -0.502016 -0.003514 0.036557 + +Polar angle tht: 1.8762; Azimuth angle phi: 4.7124 +Force: 0.000000 3.757575 1.663991 +Torque: -0.501922 0.000000 -0.000000 + +Polar angle tht: 1.8762; Azimuth angle phi: 4.7560 +Force: -0.145904 3.775403 1.670232 +Torque: -0.502016 0.003514 -0.036557 + +Polar angle tht: 1.8762; Azimuth angle phi: 4.7997 +Force: -0.295772 3.782068 1.674213 +Torque: -0.501495 0.006920 -0.072923 + +Polar angle tht: 1.8762; Azimuth angle phi: 4.8433 +Force: -0.448783 3.777495 1.675931 +Torque: -0.500356 0.010191 -0.108908 + +Polar angle tht: 1.8762; Azimuth angle phi: 4.8869 +Force: -0.604091 3.761677 1.675388 +Torque: -0.498598 0.013302 -0.144326 + +Polar angle tht: 1.8762; Azimuth angle phi: 4.9306 +Force: -0.760829 3.734676 1.672592 +Torque: -0.496222 0.016229 -0.178992 + +Polar angle tht: 1.8762; Azimuth angle phi: 4.9742 +Force: -0.918119 3.696623 1.667559 +Torque: -0.493227 0.018951 -0.212730 + +Polar angle tht: 1.8762; Azimuth angle phi: 5.0178 +Force: -1.075074 3.647719 1.660310 +Torque: -0.489615 0.021445 -0.245367 + +Polar angle tht: 1.8762; Azimuth angle phi: 5.0615 +Force: -1.230806 3.588228 1.650873 +Torque: -0.485389 0.023693 -0.276738 + +Polar angle tht: 1.8762; Azimuth angle phi: 5.1051 +Force: -1.384434 3.518482 1.639282 +Torque: -0.480552 0.025678 -0.306688 + +Polar angle tht: 1.8762; Azimuth angle phi: 5.1487 +Force: -1.535086 3.438872 1.625576 +Torque: -0.475109 0.027385 -0.335069 + +Polar angle tht: 1.8762; Azimuth angle phi: 5.1924 +Force: -1.681909 3.349853 1.609801 +Torque: -0.469064 0.028799 -0.361747 + +Polar angle tht: 1.8762; Azimuth angle phi: 5.2360 +Force: -1.824071 3.251932 1.592006 +Torque: -0.462424 0.029911 -0.386595 + +Polar angle tht: 1.8762; Azimuth angle phi: 5.2796 +Force: -1.960772 3.145673 1.572249 +Torque: -0.455198 0.030711 -0.409502 + +Polar angle tht: 1.8762; Azimuth angle phi: 5.3233 +Force: -2.091244 3.031687 1.550589 +Torque: -0.447392 0.031193 -0.430368 + +Polar angle tht: 1.8762; Azimuth angle phi: 5.3669 +Force: -2.214761 2.910630 1.527092 +Torque: -0.439017 0.031354 -0.449106 + +Polar angle tht: 1.8762; Azimuth angle phi: 5.4105 +Force: -2.330640 2.783199 1.501826 +Torque: -0.430084 0.031193 -0.465645 + +Polar angle tht: 1.8762; Azimuth angle phi: 5.4542 +Force: -2.438249 2.650125 1.474866 +Torque: -0.420605 0.030709 -0.479926 + +Polar angle tht: 1.8762; Azimuth angle phi: 5.4978 +Force: -2.537010 2.512170 1.446289 +Torque: -0.410592 0.029907 -0.491907 + +Polar angle tht: 1.8762; Azimuth angle phi: 5.5414 +Force: -2.626401 2.370122 1.416174 +Torque: -0.400061 0.028793 -0.501560 + +Polar angle tht: 1.8762; Azimuth angle phi: 5.5851 +Force: -2.705964 2.224786 1.384605 +Torque: -0.389026 0.027376 -0.508871 + +Polar angle tht: 1.8762; Azimuth angle phi: 5.6287 +Force: -2.775304 2.076983 1.351668 +Torque: -0.377504 0.025665 -0.513843 + +Polar angle tht: 1.8762; Azimuth angle phi: 5.6723 +Force: -2.834094 1.927540 1.317451 +Torque: -0.365514 0.023673 -0.516491 + +Polar angle tht: 1.8762; Azimuth angle phi: 5.7160 +Force: -2.882075 1.777290 1.282043 +Torque: -0.353073 0.021416 -0.516849 + +Polar angle tht: 1.8762; Azimuth angle phi: 5.7596 +Force: -2.919060 1.627059 1.245536 +Torque: -0.340203 0.018912 -0.514961 + +Polar angle tht: 1.8762; Azimuth angle phi: 5.8032 +Force: -2.944933 1.477665 1.208022 +Torque: -0.326925 0.016177 -0.510887 + +Polar angle tht: 1.8762; Azimuth angle phi: 5.8469 +Force: -2.959651 1.329911 1.169595 +Torque: -0.313261 0.013235 -0.504700 + +Polar angle tht: 1.8762; Azimuth angle phi: 5.8905 +Force: -2.963244 1.184582 1.130348 +Torque: -0.299236 0.010106 -0.496486 + +Polar angle tht: 1.8762; Azimuth angle phi: 5.9341 +Force: -2.955814 1.042435 1.090375 +Torque: -0.284873 0.006815 -0.486343 + +Polar angle tht: 1.8762; Azimuth angle phi: 5.9778 +Force: -2.937531 0.904197 1.049771 +Torque: -0.270199 0.003386 -0.474379 + +Polar angle tht: 1.8762; Azimuth angle phi: 6.0214 +Force: -2.920371 0.771647 1.014184 +Torque: -0.251531 0.000327 -0.452978 + +Polar angle tht: 1.8762; Azimuth angle phi: 6.0650 +Force: -2.964375 0.646499 1.011742 +Torque: -0.210365 0.000113 -0.382874 + +Polar angle tht: 1.8762; Azimuth angle phi: 6.1087 +Force: -3.000694 0.519473 1.009704 +Torque: -0.168789 -0.000066 -0.309856 + +Polar angle tht: 1.8762; Azimuth angle phi: 6.1523 +Force: -3.029140 0.390937 1.008095 +Torque: -0.126881 -0.000208 -0.234480 + +Polar angle tht: 1.8762; Azimuth angle phi: 6.1959 +Force: -3.049565 0.261260 1.006931 +Torque: -0.084726 -0.000310 -0.157319 + +Polar angle tht: 1.8762; Azimuth angle phi: 6.2396 +Force: -3.061863 0.130821 1.006228 +Torque: -0.042405 -0.000372 -0.078962 + +Polar angle tht: 1.8762; Azimuth angle phi: 6.2832 +Force: -3.065969 0.000000 1.005993 +Torque: -0.000001 -0.000393 -0.000003 + +Polar angle tht: 1.9199; Azimuth angle phi: 0.0000 +Force: -3.226704 0.000000 1.228230 +Torque: -0.000001 0.003152 -0.000003 + +Polar angle tht: 1.9199; Azimuth angle phi: 0.0436 +Force: -3.222479 -0.139102 1.228434 +Torque: 0.045404 0.003169 0.076651 + +Polar angle tht: 1.9199; Azimuth angle phi: 0.0873 +Force: -3.209826 -0.277810 1.229045 +Torque: 0.090721 0.003219 0.152721 + +Polar angle tht: 1.9199; Azimuth angle phi: 0.1309 +Force: -3.188809 -0.415731 1.230054 +Torque: 0.135860 0.003302 0.227629 + +Polar angle tht: 1.9199; Azimuth angle phi: 0.1745 +Force: -3.159533 -0.552478 1.231449 +Torque: 0.180734 0.003416 0.300804 + +Polar angle tht: 1.9199; Azimuth angle phi: 0.2182 +Force: -3.122144 -0.687665 1.233212 +Torque: 0.225255 0.003559 0.371691 + +Polar angle tht: 1.9199; Azimuth angle phi: 0.2618 +Force: -3.076829 -0.820916 1.235320 +Torque: 0.269337 0.003730 0.439748 + +Polar angle tht: 1.9199; Azimuth angle phi: 0.3054 +Force: -3.023814 -0.951862 1.237746 +Torque: 0.312893 0.003926 0.504459 + +Polar angle tht: 1.9199; Azimuth angle phi: 0.3491 +Force: -3.029785 -1.092355 1.276240 +Torque: 0.331742 0.006866 0.521524 + +Polar angle tht: 1.9199; Azimuth angle phi: 0.3927 +Force: -3.034302 -1.237791 1.319007 +Torque: 0.346917 0.010057 0.530539 + +Polar angle tht: 1.9199; Azimuth angle phi: 0.4363 +Force: -3.027818 -1.386184 1.360946 +Torque: 0.361743 0.013090 0.537588 + +Polar angle tht: 1.9199; Azimuth angle phi: 0.4800 +Force: -3.010238 -1.536783 1.401961 +Torque: 0.376193 0.015941 0.542579 + +Polar angle tht: 1.9199; Azimuth angle phi: 0.5236 +Force: -2.981541 -1.688814 1.441951 +Torque: 0.390242 0.018590 0.545430 + +Polar angle tht: 1.9199; Azimuth angle phi: 0.5672 +Force: -2.941776 -1.841483 1.480820 +Torque: 0.403866 0.021016 0.546073 + +Polar angle tht: 1.9199; Azimuth angle phi: 0.6109 +Force: -2.891061 -1.993984 1.518472 +Torque: 0.417042 0.023200 0.544451 + +Polar angle tht: 1.9199; Azimuth angle phi: 0.6545 +Force: -2.829588 -2.145501 1.554812 +Torque: 0.429748 0.025127 0.540523 + +Polar angle tht: 1.9199; Azimuth angle phi: 0.6981 +Force: -2.757615 -2.295214 1.589746 +Torque: 0.441964 0.026780 0.534261 + +Polar angle tht: 1.9199; Azimuth angle phi: 0.7418 +Force: -2.675468 -2.442308 1.623184 +Torque: 0.453671 0.028149 0.525651 + +Polar angle tht: 1.9199; Azimuth angle phi: 0.7854 +Force: -2.583541 -2.585976 1.655037 +Torque: 0.464849 0.029223 0.514694 + +Polar angle tht: 1.9199; Azimuth angle phi: 0.8290 +Force: -2.482289 -2.725423 1.685218 +Torque: 0.475483 0.029993 0.501406 + +Polar angle tht: 1.9199; Azimuth angle phi: 0.8727 +Force: -2.372227 -2.859875 1.713647 +Torque: 0.485557 0.030453 0.485818 + +Polar angle tht: 1.9199; Azimuth angle phi: 0.9163 +Force: -2.253927 -2.988583 1.740243 +Torque: 0.495057 0.030601 0.467974 + +Polar angle tht: 1.9199; Azimuth angle phi: 0.9599 +Force: -2.128016 -3.110825 1.764931 +Torque: 0.503968 0.030435 0.447933 + +Polar angle tht: 1.9199; Azimuth angle phi: 1.0036 +Force: -1.995165 -3.225918 1.787641 +Torque: 0.512280 0.029957 0.425771 + +Polar angle tht: 1.9199; Azimuth angle phi: 1.0472 +Force: -1.856094 -3.333216 1.808305 +Torque: 0.519982 0.029171 0.401573 + +Polar angle tht: 1.9199; Azimuth angle phi: 1.0908 +Force: -1.711558 -3.432117 1.826863 +Torque: 0.527063 0.028081 0.375440 + +Polar angle tht: 1.9199; Azimuth angle phi: 1.1345 +Force: -1.562348 -3.522068 1.843257 +Torque: 0.533516 0.026698 0.347486 + +Polar angle tht: 1.9199; Azimuth angle phi: 1.1781 +Force: -1.409283 -3.602568 1.857437 +Torque: 0.539332 0.025031 0.317835 + +Polar angle tht: 1.9199; Azimuth angle phi: 1.2217 +Force: -1.253205 -3.673172 1.869357 +Torque: 0.544507 0.023093 0.286624 + +Polar angle tht: 1.9199; Azimuth angle phi: 1.2654 +Force: -1.094973 -3.733491 1.878977 +Torque: 0.549034 0.020899 0.253998 + +Polar angle tht: 1.9199; Azimuth angle phi: 1.3090 +Force: -0.935457 -3.783202 1.886264 +Torque: 0.552910 0.018466 0.220114 + +Polar angle tht: 1.9199; Azimuth angle phi: 1.3526 +Force: -0.775531 -3.822041 1.891190 +Torque: 0.556132 0.015813 0.185135 + +Polar angle tht: 1.9199; Azimuth angle phi: 1.3963 +Force: -0.616070 -3.849810 1.893735 +Torque: 0.558697 0.012960 0.149233 + +Polar angle tht: 1.9199; Azimuth angle phi: 1.4399 +Force: -0.457942 -3.866381 1.893883 +Torque: 0.560604 0.009928 0.112584 + +Polar angle tht: 1.9199; Azimuth angle phi: 1.4835 +Force: -0.302001 -3.871690 1.891627 +Torque: 0.561854 0.006741 0.075371 + +Polar angle tht: 1.9199; Azimuth angle phi: 1.5272 +Force: -0.149083 -3.865741 1.886966 +Torque: 0.562447 0.003423 0.037781 + +Polar angle tht: 1.9199; Azimuth angle phi: 1.5708 +Force: 0.000000 -3.848608 1.879906 +Torque: 0.562384 0.000000 0.000000 + +Polar angle tht: 1.9199; Azimuth angle phi: 1.6144 +Force: 0.149083 -3.865741 1.886966 +Torque: 0.562447 -0.003423 -0.037781 + +Polar angle tht: 1.9199; Azimuth angle phi: 1.6581 +Force: 0.302001 -3.871690 1.891627 +Torque: 0.561854 -0.006741 -0.075371 + +Polar angle tht: 1.9199; Azimuth angle phi: 1.7017 +Force: 0.457942 -3.866381 1.893883 +Torque: 0.560604 -0.009928 -0.112584 + +Polar angle tht: 1.9199; Azimuth angle phi: 1.7453 +Force: 0.616070 -3.849810 1.893735 +Torque: 0.558697 -0.012960 -0.149233 + +Polar angle tht: 1.9199; Azimuth angle phi: 1.7890 +Force: 0.775531 -3.822041 1.891190 +Torque: 0.556132 -0.015813 -0.185135 + +Polar angle tht: 1.9199; Azimuth angle phi: 1.8326 +Force: 0.935457 -3.783202 1.886264 +Torque: 0.552910 -0.018466 -0.220114 + +Polar angle tht: 1.9199; Azimuth angle phi: 1.8762 +Force: 1.094973 -3.733491 1.878977 +Torque: 0.549034 -0.020899 -0.253998 + +Polar angle tht: 1.9199; Azimuth angle phi: 1.9199 +Force: 1.253205 -3.673172 1.869357 +Torque: 0.544507 -0.023093 -0.286624 + +Polar angle tht: 1.9199; Azimuth angle phi: 1.9635 +Force: 1.409283 -3.602568 1.857437 +Torque: 0.539332 -0.025031 -0.317835 + +Polar angle tht: 1.9199; Azimuth angle phi: 2.0071 +Force: 1.562348 -3.522068 1.843257 +Torque: 0.533516 -0.026698 -0.347486 + +Polar angle tht: 1.9199; Azimuth angle phi: 2.0508 +Force: 1.711558 -3.432117 1.826863 +Torque: 0.527063 -0.028081 -0.375440 + +Polar angle tht: 1.9199; Azimuth angle phi: 2.0944 +Force: 1.856094 -3.333216 1.808305 +Torque: 0.519982 -0.029171 -0.401573 + +Polar angle tht: 1.9199; Azimuth angle phi: 2.1380 +Force: 1.995165 -3.225918 1.787641 +Torque: 0.512280 -0.029957 -0.425771 + +Polar angle tht: 1.9199; Azimuth angle phi: 2.1817 +Force: 2.128016 -3.110825 1.764931 +Torque: 0.503968 -0.030435 -0.447933 + +Polar angle tht: 1.9199; Azimuth angle phi: 2.2253 +Force: 2.253927 -2.988583 1.740243 +Torque: 0.495057 -0.030601 -0.467974 + +Polar angle tht: 1.9199; Azimuth angle phi: 2.2689 +Force: 2.372227 -2.859875 1.713647 +Torque: 0.485557 -0.030453 -0.485818 + +Polar angle tht: 1.9199; Azimuth angle phi: 2.3126 +Force: 2.482289 -2.725423 1.685218 +Torque: 0.475483 -0.029993 -0.501406 + +Polar angle tht: 1.9199; Azimuth angle phi: 2.3562 +Force: 2.583541 -2.585976 1.655037 +Torque: 0.464849 -0.029223 -0.514694 + +Polar angle tht: 1.9199; Azimuth angle phi: 2.3998 +Force: 2.675468 -2.442308 1.623184 +Torque: 0.453671 -0.028149 -0.525651 + +Polar angle tht: 1.9199; Azimuth angle phi: 2.4435 +Force: 2.757615 -2.295214 1.589746 +Torque: 0.441964 -0.026780 -0.534261 + +Polar angle tht: 1.9199; Azimuth angle phi: 2.4871 +Force: 2.829588 -2.145501 1.554812 +Torque: 0.429748 -0.025127 -0.540523 + +Polar angle tht: 1.9199; Azimuth angle phi: 2.5307 +Force: 2.891061 -1.993984 1.518472 +Torque: 0.417042 -0.023200 -0.544451 + +Polar angle tht: 1.9199; Azimuth angle phi: 2.5744 +Force: 2.941776 -1.841483 1.480820 +Torque: 0.403866 -0.021016 -0.546073 + +Polar angle tht: 1.9199; Azimuth angle phi: 2.6180 +Force: 2.981541 -1.688814 1.441951 +Torque: 0.390242 -0.018590 -0.545430 + +Polar angle tht: 1.9199; Azimuth angle phi: 2.6616 +Force: 3.010238 -1.536783 1.401961 +Torque: 0.376193 -0.015941 -0.542579 + +Polar angle tht: 1.9199; Azimuth angle phi: 2.7053 +Force: 3.027818 -1.386184 1.360946 +Torque: 0.361743 -0.013090 -0.537588 + +Polar angle tht: 1.9199; Azimuth angle phi: 2.7489 +Force: 3.034302 -1.237791 1.319007 +Torque: 0.346917 -0.010057 -0.530539 + +Polar angle tht: 1.9199; Azimuth angle phi: 2.7925 +Force: 3.029785 -1.092355 1.276240 +Torque: 0.331742 -0.006866 -0.521524 + +Polar angle tht: 1.9199; Azimuth angle phi: 2.8362 +Force: 3.023814 -0.951862 1.237746 +Torque: 0.312893 -0.003926 -0.504459 + +Polar angle tht: 1.9199; Azimuth angle phi: 2.8798 +Force: 3.076829 -0.820916 1.235320 +Torque: 0.269337 -0.003730 -0.439748 + +Polar angle tht: 1.9199; Azimuth angle phi: 2.9234 +Force: 3.122144 -0.687665 1.233212 +Torque: 0.225255 -0.003559 -0.371691 + +Polar angle tht: 1.9199; Azimuth angle phi: 2.9671 +Force: 3.159533 -0.552478 1.231449 +Torque: 0.180734 -0.003416 -0.300804 + +Polar angle tht: 1.9199; Azimuth angle phi: 3.0107 +Force: 3.188809 -0.415731 1.230054 +Torque: 0.135860 -0.003302 -0.227629 + +Polar angle tht: 1.9199; Azimuth angle phi: 3.0543 +Force: 3.209826 -0.277810 1.229045 +Torque: 0.090721 -0.003219 -0.152721 + +Polar angle tht: 1.9199; Azimuth angle phi: 3.0980 +Force: 3.222479 -0.139102 1.228434 +Torque: 0.045404 -0.003169 -0.076651 + +Polar angle tht: 1.9199; Azimuth angle phi: 3.1416 +Force: 3.226704 0.000000 1.228230 +Torque: -0.000001 -0.003152 0.000003 + +Polar angle tht: 1.9199; Azimuth angle phi: 3.1852 +Force: 3.222479 0.139102 1.228434 +Torque: -0.045406 -0.003169 0.076657 + +Polar angle tht: 1.9199; Azimuth angle phi: 3.2289 +Force: 3.209826 0.277810 1.229045 +Torque: -0.090722 -0.003219 0.152727 + +Polar angle tht: 1.9199; Azimuth angle phi: 3.2725 +Force: 3.188809 0.415731 1.230054 +Torque: -0.135862 -0.003302 0.227635 + +Polar angle tht: 1.9199; Azimuth angle phi: 3.3161 +Force: 3.159533 0.552478 1.231449 +Torque: -0.180736 -0.003416 0.300811 + +Polar angle tht: 1.9199; Azimuth angle phi: 3.3598 +Force: 3.122144 0.687665 1.233212 +Torque: -0.225257 -0.003559 0.371697 + +Polar angle tht: 1.9199; Azimuth angle phi: 3.4034 +Force: 3.076829 0.820916 1.235320 +Torque: -0.269339 -0.003730 0.439754 + +Polar angle tht: 1.9199; Azimuth angle phi: 3.4470 +Force: 3.023814 0.951862 1.237746 +Torque: -0.312895 -0.003926 0.504465 + +Polar angle tht: 1.9199; Azimuth angle phi: 3.4907 +Force: 3.029785 1.092355 1.276240 +Torque: -0.331744 -0.006866 0.521532 + +Polar angle tht: 1.9199; Azimuth angle phi: 3.5343 +Force: 3.034302 1.237791 1.319007 +Torque: -0.346920 -0.010057 0.530548 + +Polar angle tht: 1.9199; Azimuth angle phi: 3.5779 +Force: 3.027818 1.386184 1.360946 +Torque: -0.361747 -0.013090 0.537598 + +Polar angle tht: 1.9199; Azimuth angle phi: 3.6216 +Force: 3.010238 1.536783 1.401961 +Torque: -0.376198 -0.015941 0.542590 + +Polar angle tht: 1.9199; Azimuth angle phi: 3.6652 +Force: 2.981541 1.688814 1.441951 +Torque: -0.390248 -0.018590 0.545442 + +Polar angle tht: 1.9199; Azimuth angle phi: 3.7088 +Force: 2.941776 1.841483 1.480820 +Torque: -0.403873 -0.021016 0.546085 + +Polar angle tht: 1.9199; Azimuth angle phi: 3.7525 +Force: 2.891061 1.993984 1.518472 +Torque: -0.417050 -0.023200 0.544465 + +Polar angle tht: 1.9199; Azimuth angle phi: 3.7961 +Force: 2.829588 2.145501 1.554812 +Torque: -0.429757 -0.025127 0.540537 + +Polar angle tht: 1.9199; Azimuth angle phi: 3.8397 +Force: 2.757615 2.295214 1.589746 +Torque: -0.441974 -0.026780 0.534276 + +Polar angle tht: 1.9199; Azimuth angle phi: 3.8834 +Force: 2.675468 2.442308 1.623184 +Torque: -0.453681 -0.028149 0.525666 + +Polar angle tht: 1.9199; Azimuth angle phi: 3.9270 +Force: 2.583541 2.585976 1.655037 +Torque: -0.464861 -0.029223 0.514709 + +Polar angle tht: 1.9199; Azimuth angle phi: 3.9706 +Force: 2.482289 2.725423 1.685218 +Torque: -0.475495 -0.029993 0.501422 + +Polar angle tht: 1.9199; Azimuth angle phi: 4.0143 +Force: 2.372227 2.859875 1.713647 +Torque: -0.485570 -0.030453 0.485833 + +Polar angle tht: 1.9199; Azimuth angle phi: 4.0579 +Force: 2.253927 2.988583 1.740243 +Torque: -0.495070 -0.030601 0.467989 + +Polar angle tht: 1.9199; Azimuth angle phi: 4.1015 +Force: 2.128016 3.110825 1.764931 +Torque: -0.503982 -0.030435 0.447948 + +Polar angle tht: 1.9199; Azimuth angle phi: 4.1452 +Force: 1.995165 3.225918 1.787641 +Torque: -0.512295 -0.029957 0.425785 + +Polar angle tht: 1.9199; Azimuth angle phi: 4.1888 +Force: 1.856094 3.333216 1.808305 +Torque: -0.519997 -0.029171 0.401587 + +Polar angle tht: 1.9199; Azimuth angle phi: 4.2324 +Force: 1.711558 3.432117 1.826863 +Torque: -0.527078 -0.028081 0.375454 + +Polar angle tht: 1.9199; Azimuth angle phi: 4.2761 +Force: 1.562348 3.522068 1.843257 +Torque: -0.533532 -0.026698 0.347499 + +Polar angle tht: 1.9199; Azimuth angle phi: 4.3197 +Force: 1.409283 3.602568 1.857437 +Torque: -0.539349 -0.025031 0.317847 + +Polar angle tht: 1.9199; Azimuth angle phi: 4.3633 +Force: 1.253205 3.673172 1.869357 +Torque: -0.544524 -0.023093 0.286634 + +Polar angle tht: 1.9199; Azimuth angle phi: 4.4070 +Force: 1.094973 3.733491 1.878977 +Torque: -0.549052 -0.020899 0.254008 + +Polar angle tht: 1.9199; Azimuth angle phi: 4.4506 +Force: 0.935457 3.783202 1.886264 +Torque: -0.552928 -0.018466 0.220122 + +Polar angle tht: 1.9199; Azimuth angle phi: 4.4942 +Force: 0.775531 3.822041 1.891190 +Torque: -0.556150 -0.015813 0.185142 + +Polar angle tht: 1.9199; Azimuth angle phi: 4.5379 +Force: 0.616070 3.849810 1.893735 +Torque: -0.558715 -0.012960 0.149238 + +Polar angle tht: 1.9199; Azimuth angle phi: 4.5815 +Force: 0.457942 3.866381 1.893883 +Torque: -0.560623 -0.009928 0.112588 + +Polar angle tht: 1.9199; Azimuth angle phi: 4.6251 +Force: 0.302001 3.871690 1.891627 +Torque: -0.561872 -0.006741 0.075374 + +Polar angle tht: 1.9199; Azimuth angle phi: 4.6688 +Force: 0.149083 3.865741 1.886966 +Torque: -0.562465 -0.003423 0.037782 + +Polar angle tht: 1.9199; Azimuth angle phi: 4.7124 +Force: 0.000000 3.848608 1.879906 +Torque: -0.562402 0.000000 -0.000000 + +Polar angle tht: 1.9199; Azimuth angle phi: 4.7560 +Force: -0.149083 3.865741 1.886966 +Torque: -0.562465 0.003423 -0.037782 + +Polar angle tht: 1.9199; Azimuth angle phi: 4.7997 +Force: -0.302001 3.871690 1.891627 +Torque: -0.561872 0.006741 -0.075374 + +Polar angle tht: 1.9199; Azimuth angle phi: 4.8433 +Force: -0.457942 3.866381 1.893883 +Torque: -0.560623 0.009928 -0.112588 + +Polar angle tht: 1.9199; Azimuth angle phi: 4.8869 +Force: -0.616070 3.849810 1.893735 +Torque: -0.558715 0.012960 -0.149238 + +Polar angle tht: 1.9199; Azimuth angle phi: 4.9306 +Force: -0.775531 3.822041 1.891190 +Torque: -0.556150 0.015813 -0.185142 + +Polar angle tht: 1.9199; Azimuth angle phi: 4.9742 +Force: -0.935457 3.783202 1.886264 +Torque: -0.552928 0.018466 -0.220122 + +Polar angle tht: 1.9199; Azimuth angle phi: 5.0178 +Force: -1.094973 3.733491 1.878977 +Torque: -0.549052 0.020899 -0.254008 + +Polar angle tht: 1.9199; Azimuth angle phi: 5.0615 +Force: -1.253205 3.673172 1.869357 +Torque: -0.544524 0.023093 -0.286634 + +Polar angle tht: 1.9199; Azimuth angle phi: 5.1051 +Force: -1.409283 3.602568 1.857437 +Torque: -0.539349 0.025031 -0.317847 + +Polar angle tht: 1.9199; Azimuth angle phi: 5.1487 +Force: -1.562348 3.522068 1.843257 +Torque: -0.533532 0.026698 -0.347499 + +Polar angle tht: 1.9199; Azimuth angle phi: 5.1924 +Force: -1.711558 3.432117 1.826863 +Torque: -0.527078 0.028081 -0.375454 + +Polar angle tht: 1.9199; Azimuth angle phi: 5.2360 +Force: -1.856094 3.333216 1.808305 +Torque: -0.519997 0.029171 -0.401587 + +Polar angle tht: 1.9199; Azimuth angle phi: 5.2796 +Force: -1.995165 3.225918 1.787641 +Torque: -0.512295 0.029957 -0.425785 + +Polar angle tht: 1.9199; Azimuth angle phi: 5.3233 +Force: -2.128016 3.110825 1.764931 +Torque: -0.503982 0.030435 -0.447948 + +Polar angle tht: 1.9199; Azimuth angle phi: 5.3669 +Force: -2.253927 2.988583 1.740243 +Torque: -0.495070 0.030601 -0.467989 + +Polar angle tht: 1.9199; Azimuth angle phi: 5.4105 +Force: -2.372227 2.859875 1.713647 +Torque: -0.485570 0.030453 -0.485833 + +Polar angle tht: 1.9199; Azimuth angle phi: 5.4542 +Force: -2.482289 2.725423 1.685218 +Torque: -0.475495 0.029993 -0.501422 + +Polar angle tht: 1.9199; Azimuth angle phi: 5.4978 +Force: -2.583541 2.585976 1.655037 +Torque: -0.464861 0.029223 -0.514709 + +Polar angle tht: 1.9199; Azimuth angle phi: 5.5414 +Force: -2.675468 2.442308 1.623184 +Torque: -0.453681 0.028149 -0.525666 + +Polar angle tht: 1.9199; Azimuth angle phi: 5.5851 +Force: -2.757615 2.295214 1.589746 +Torque: -0.441974 0.026780 -0.534276 + +Polar angle tht: 1.9199; Azimuth angle phi: 5.6287 +Force: -2.829588 2.145501 1.554812 +Torque: -0.429757 0.025127 -0.540537 + +Polar angle tht: 1.9199; Azimuth angle phi: 5.6723 +Force: -2.891061 1.993984 1.518472 +Torque: -0.417050 0.023200 -0.544465 + +Polar angle tht: 1.9199; Azimuth angle phi: 5.7160 +Force: -2.941776 1.841483 1.480820 +Torque: -0.403873 0.021016 -0.546085 + +Polar angle tht: 1.9199; Azimuth angle phi: 5.7596 +Force: -2.981541 1.688814 1.441951 +Torque: -0.390248 0.018590 -0.545442 + +Polar angle tht: 1.9199; Azimuth angle phi: 5.8032 +Force: -3.010238 1.536783 1.401961 +Torque: -0.376198 0.015941 -0.542590 + +Polar angle tht: 1.9199; Azimuth angle phi: 5.8469 +Force: -3.027818 1.386184 1.360946 +Torque: -0.361747 0.013090 -0.537598 + +Polar angle tht: 1.9199; Azimuth angle phi: 5.8905 +Force: -3.034302 1.237791 1.319007 +Torque: -0.346920 0.010057 -0.530548 + +Polar angle tht: 1.9199; Azimuth angle phi: 5.9341 +Force: -3.029785 1.092355 1.276240 +Torque: -0.331744 0.006866 -0.521532 + +Polar angle tht: 1.9199; Azimuth angle phi: 5.9778 +Force: -3.023814 0.951862 1.237746 +Torque: -0.312895 0.003926 -0.504465 + +Polar angle tht: 1.9199; Azimuth angle phi: 6.0214 +Force: -3.076829 0.820916 1.235320 +Torque: -0.269339 0.003730 -0.439754 + +Polar angle tht: 1.9199; Azimuth angle phi: 6.0650 +Force: -3.122144 0.687665 1.233212 +Torque: -0.225257 0.003559 -0.371697 + +Polar angle tht: 1.9199; Azimuth angle phi: 6.1087 +Force: -3.159533 0.552478 1.231449 +Torque: -0.180736 0.003416 -0.300811 + +Polar angle tht: 1.9199; Azimuth angle phi: 6.1523 +Force: -3.188809 0.415731 1.230054 +Torque: -0.135862 0.003302 -0.227635 + +Polar angle tht: 1.9199; Azimuth angle phi: 6.1959 +Force: -3.209826 0.277810 1.229045 +Torque: -0.090722 0.003219 -0.152727 + +Polar angle tht: 1.9199; Azimuth angle phi: 6.2396 +Force: -3.222479 0.139102 1.228434 +Torque: -0.045406 0.003169 -0.076657 + +Polar angle tht: 1.9199; Azimuth angle phi: 6.2832 +Force: -3.226704 0.000000 1.228230 +Torque: -0.000001 0.003152 -0.000003 + +Polar angle tht: 1.9635; Azimuth angle phi: 0.0000 +Force: -3.369021 0.000000 1.466334 +Torque: -0.000001 0.006568 -0.000003 + +Polar angle tht: 1.9635; Azimuth angle phi: 0.0436 +Force: -3.364700 -0.146588 1.466508 +Torque: 0.048146 0.006581 0.074092 + +Polar angle tht: 1.9635; Azimuth angle phi: 0.0873 +Force: -3.351756 -0.292772 1.467026 +Torque: 0.096200 0.006619 0.147624 + +Polar angle tht: 1.9635; Azimuth angle phi: 0.1309 +Force: -3.330253 -0.438150 1.467882 +Torque: 0.144066 0.006683 0.220032 + +Polar angle tht: 1.9635; Azimuth angle phi: 0.1745 +Force: -3.300294 -0.582323 1.469062 +Torque: 0.191652 0.006769 0.290765 + +Polar angle tht: 1.9635; Azimuth angle phi: 0.2182 +Force: -3.262025 -0.724897 1.470551 +Torque: 0.238864 0.006878 0.359286 + +Polar angle tht: 1.9635; Azimuth angle phi: 0.2618 +Force: -3.215630 -0.865484 1.472327 +Torque: 0.285611 0.007007 0.425072 + +Polar angle tht: 1.9635; Azimuth angle phi: 0.3054 +Force: -3.161332 -1.003708 1.474364 +Torque: 0.331802 0.007153 0.487623 + +Polar angle tht: 1.9635; Azimuth angle phi: 0.3491 +Force: -3.099391 -1.139198 1.476632 +Torque: 0.377348 0.007313 0.546463 + +Polar angle tht: 1.9635; Azimuth angle phi: 0.3927 +Force: -3.090542 -1.285358 1.515665 +Torque: 0.397479 0.009962 0.561285 + +Polar angle tht: 1.9635; Azimuth angle phi: 0.4363 +Force: -3.081278 -1.436114 1.560057 +Torque: 0.413030 0.012889 0.567178 + +Polar angle tht: 1.9635; Azimuth angle phi: 0.4800 +Force: -3.060995 -1.588855 1.603423 +Torque: 0.428194 0.015640 0.570990 + +Polar angle tht: 1.9635; Azimuth angle phi: 0.5236 +Force: -3.029679 -1.742819 1.645663 +Torque: 0.442944 0.018195 0.572645 + +Polar angle tht: 1.9635; Azimuth angle phi: 0.5672 +Force: -2.987382 -1.897226 1.686676 +Torque: 0.457254 0.020534 0.572079 + +Polar angle tht: 1.9635; Azimuth angle phi: 0.6109 +Force: -2.934228 -2.051283 1.726361 +Torque: 0.471099 0.022639 0.569240 + +Polar angle tht: 1.9635; Azimuth angle phi: 0.6545 +Force: -2.870408 -2.204188 1.764621 +Torque: 0.484456 0.024495 0.564090 + +Polar angle tht: 1.9635; Azimuth angle phi: 0.6981 +Force: -2.796181 -2.355138 1.801359 +Torque: 0.497305 0.026086 0.556605 + +Polar angle tht: 1.9635; Azimuth angle phi: 0.7418 +Force: -2.711872 -2.503332 1.836483 +Torque: 0.509623 0.027402 0.546774 + +Polar angle tht: 1.9635; Azimuth angle phi: 0.7854 +Force: -2.617869 -2.647979 1.869900 +Torque: 0.521392 0.028432 0.534600 + +Polar angle tht: 1.9635; Azimuth angle phi: 0.8290 +Force: -2.514622 -2.788299 1.901524 +Torque: 0.532593 0.029168 0.520103 + +Polar angle tht: 1.9635; Azimuth angle phi: 0.8727 +Force: -2.402641 -2.923533 1.931270 +Torque: 0.543210 0.029604 0.503315 + +Polar angle tht: 1.9635; Azimuth angle phi: 0.9163 +Force: -2.282489 -3.052948 1.959056 +Torque: 0.553227 0.029739 0.484282 + +Polar angle tht: 1.9635; Azimuth angle phi: 0.9599 +Force: -2.154781 -3.175837 1.984807 +Torque: 0.562630 0.029569 0.463065 + +Polar angle tht: 1.9635; Azimuth angle phi: 1.0036 +Force: -2.020180 -3.291529 2.008449 +Torque: 0.571406 0.029098 0.439740 + +Polar angle tht: 1.9635; Azimuth angle phi: 1.0472 +Force: -1.879391 -3.399392 2.029917 +Torque: 0.579542 0.028327 0.414393 + +Polar angle tht: 1.9635; Azimuth angle phi: 1.0908 +Force: -1.733157 -3.498837 2.049147 +Torque: 0.587028 0.027264 0.387127 + +Polar angle tht: 1.9635; Azimuth angle phi: 1.1345 +Force: -1.582256 -3.589321 2.066081 +Torque: 0.593855 0.025917 0.358053 + +Polar angle tht: 1.9635; Azimuth angle phi: 1.1781 +Force: -1.427491 -3.670353 2.080669 +Torque: 0.600015 0.024295 0.327297 + +Polar angle tht: 1.9635; Azimuth angle phi: 1.2217 +Force: -1.269690 -3.741497 2.092866 +Torque: 0.605501 0.022411 0.294995 + +Polar angle tht: 1.9635; Azimuth angle phi: 1.2654 +Force: -1.109695 -3.802373 2.102630 +Torque: 0.610306 0.020280 0.261292 + +Polar angle tht: 1.9635; Azimuth angle phi: 1.3090 +Force: -0.948361 -3.852661 2.109929 +Torque: 0.614425 0.017918 0.226342 + +Polar angle tht: 1.9635; Azimuth angle phi: 1.3526 +Force: -0.786548 -3.892103 2.114736 +Torque: 0.617856 0.015342 0.190308 + +Polar angle tht: 1.9635; Azimuth angle phi: 1.3963 +Force: -0.625114 -3.920506 2.117031 +Torque: 0.620596 0.012572 0.153359 + +Polar angle tht: 1.9635; Azimuth angle phi: 1.4399 +Force: -0.464912 -3.937739 2.116799 +Torque: 0.622643 0.009631 0.115672 + +Polar angle tht: 1.9635; Azimuth angle phi: 1.4835 +Force: -0.306781 -3.943741 2.114034 +Torque: 0.623996 0.006539 0.077427 + +Polar angle tht: 1.9635; Azimuth angle phi: 1.5272 +Force: -0.151544 -3.938513 2.108737 +Torque: 0.624656 0.003320 0.038807 + +Polar angle tht: 1.9635; Azimuth angle phi: 1.5708 +Force: 0.000000 -3.922126 2.100913 +Torque: 0.624624 0.000000 0.000000 + +Polar angle tht: 1.9635; Azimuth angle phi: 1.6144 +Force: 0.151544 -3.938513 2.108737 +Torque: 0.624656 -0.003320 -0.038807 + +Polar angle tht: 1.9635; Azimuth angle phi: 1.6581 +Force: 0.306781 -3.943741 2.114034 +Torque: 0.623996 -0.006539 -0.077427 + +Polar angle tht: 1.9635; Azimuth angle phi: 1.7017 +Force: 0.464912 -3.937739 2.116799 +Torque: 0.622643 -0.009631 -0.115672 + +Polar angle tht: 1.9635; Azimuth angle phi: 1.7453 +Force: 0.625114 -3.920506 2.117031 +Torque: 0.620596 -0.012572 -0.153359 + +Polar angle tht: 1.9635; Azimuth angle phi: 1.7890 +Force: 0.786548 -3.892103 2.114736 +Torque: 0.617856 -0.015342 -0.190308 + +Polar angle tht: 1.9635; Azimuth angle phi: 1.8326 +Force: 0.948361 -3.852661 2.109929 +Torque: 0.614425 -0.017918 -0.226342 + +Polar angle tht: 1.9635; Azimuth angle phi: 1.8762 +Force: 1.109695 -3.802373 2.102630 +Torque: 0.610306 -0.020280 -0.261292 + +Polar angle tht: 1.9635; Azimuth angle phi: 1.9199 +Force: 1.269690 -3.741497 2.092866 +Torque: 0.605501 -0.022411 -0.294995 + +Polar angle tht: 1.9635; Azimuth angle phi: 1.9635 +Force: 1.427491 -3.670353 2.080669 +Torque: 0.600015 -0.024295 -0.327297 + +Polar angle tht: 1.9635; Azimuth angle phi: 2.0071 +Force: 1.582256 -3.589321 2.066081 +Torque: 0.593855 -0.025917 -0.358053 + +Polar angle tht: 1.9635; Azimuth angle phi: 2.0508 +Force: 1.733157 -3.498837 2.049147 +Torque: 0.587028 -0.027264 -0.387127 + +Polar angle tht: 1.9635; Azimuth angle phi: 2.0944 +Force: 1.879391 -3.399392 2.029917 +Torque: 0.579542 -0.028327 -0.414393 + +Polar angle tht: 1.9635; Azimuth angle phi: 2.1380 +Force: 2.020180 -3.291529 2.008449 +Torque: 0.571406 -0.029098 -0.439740 + +Polar angle tht: 1.9635; Azimuth angle phi: 2.1817 +Force: 2.154781 -3.175837 1.984807 +Torque: 0.562630 -0.029569 -0.463065 + +Polar angle tht: 1.9635; Azimuth angle phi: 2.2253 +Force: 2.282489 -3.052948 1.959056 +Torque: 0.553227 -0.029739 -0.484282 + +Polar angle tht: 1.9635; Azimuth angle phi: 2.2689 +Force: 2.402641 -2.923533 1.931270 +Torque: 0.543210 -0.029604 -0.503315 + +Polar angle tht: 1.9635; Azimuth angle phi: 2.3126 +Force: 2.514622 -2.788299 1.901524 +Torque: 0.532593 -0.029168 -0.520103 + +Polar angle tht: 1.9635; Azimuth angle phi: 2.3562 +Force: 2.617869 -2.647979 1.869900 +Torque: 0.521392 -0.028432 -0.534600 + +Polar angle tht: 1.9635; Azimuth angle phi: 2.3998 +Force: 2.711872 -2.503332 1.836483 +Torque: 0.509623 -0.027402 -0.546774 + +Polar angle tht: 1.9635; Azimuth angle phi: 2.4435 +Force: 2.796181 -2.355138 1.801359 +Torque: 0.497305 -0.026086 -0.556605 + +Polar angle tht: 1.9635; Azimuth angle phi: 2.4871 +Force: 2.870408 -2.204188 1.764621 +Torque: 0.484456 -0.024495 -0.564090 + +Polar angle tht: 1.9635; Azimuth angle phi: 2.5307 +Force: 2.934228 -2.051283 1.726361 +Torque: 0.471099 -0.022639 -0.569240 + +Polar angle tht: 1.9635; Azimuth angle phi: 2.5744 +Force: 2.987382 -1.897226 1.686676 +Torque: 0.457254 -0.020534 -0.572079 + +Polar angle tht: 1.9635; Azimuth angle phi: 2.6180 +Force: 3.029679 -1.742819 1.645663 +Torque: 0.442944 -0.018195 -0.572645 + +Polar angle tht: 1.9635; Azimuth angle phi: 2.6616 +Force: 3.060995 -1.588855 1.603423 +Torque: 0.428194 -0.015640 -0.570990 + +Polar angle tht: 1.9635; Azimuth angle phi: 2.7053 +Force: 3.081278 -1.436114 1.560057 +Torque: 0.413030 -0.012889 -0.567178 + +Polar angle tht: 1.9635; Azimuth angle phi: 2.7489 +Force: 3.090542 -1.285358 1.515665 +Torque: 0.397479 -0.009962 -0.561285 + +Polar angle tht: 1.9635; Azimuth angle phi: 2.7925 +Force: 3.099391 -1.139198 1.476632 +Torque: 0.377348 -0.007313 -0.546463 + +Polar angle tht: 1.9635; Azimuth angle phi: 2.8362 +Force: 3.161332 -1.003708 1.474364 +Torque: 0.331802 -0.007153 -0.487623 + +Polar angle tht: 1.9635; Azimuth angle phi: 2.8798 +Force: 3.215630 -0.865484 1.472327 +Torque: 0.285611 -0.007007 -0.425072 + +Polar angle tht: 1.9635; Azimuth angle phi: 2.9234 +Force: 3.262025 -0.724897 1.470551 +Torque: 0.238864 -0.006878 -0.359286 + +Polar angle tht: 1.9635; Azimuth angle phi: 2.9671 +Force: 3.300294 -0.582323 1.469062 +Torque: 0.191652 -0.006769 -0.290765 + +Polar angle tht: 1.9635; Azimuth angle phi: 3.0107 +Force: 3.330253 -0.438150 1.467882 +Torque: 0.144066 -0.006683 -0.220032 + +Polar angle tht: 1.9635; Azimuth angle phi: 3.0543 +Force: 3.351756 -0.292772 1.467026 +Torque: 0.096200 -0.006619 -0.147624 + +Polar angle tht: 1.9635; Azimuth angle phi: 3.0980 +Force: 3.364700 -0.146588 1.466508 +Torque: 0.048146 -0.006581 -0.074092 + +Polar angle tht: 1.9635; Azimuth angle phi: 3.1416 +Force: 3.369021 0.000000 1.466334 +Torque: -0.000001 -0.006568 0.000003 + +Polar angle tht: 1.9635; Azimuth angle phi: 3.1852 +Force: 3.364700 0.146588 1.466508 +Torque: -0.048148 -0.006581 0.074099 + +Polar angle tht: 1.9635; Azimuth angle phi: 3.2289 +Force: 3.351756 0.292772 1.467026 +Torque: -0.096202 -0.006619 0.147631 + +Polar angle tht: 1.9635; Azimuth angle phi: 3.2725 +Force: 3.330253 0.438150 1.467882 +Torque: -0.144068 -0.006683 0.220039 + +Polar angle tht: 1.9635; Azimuth angle phi: 3.3161 +Force: 3.300294 0.582323 1.469062 +Torque: -0.191654 -0.006769 0.290772 + +Polar angle tht: 1.9635; Azimuth angle phi: 3.3598 +Force: 3.262025 0.724897 1.470551 +Torque: -0.238866 -0.006878 0.359293 + +Polar angle tht: 1.9635; Azimuth angle phi: 3.4034 +Force: 3.215630 0.865484 1.472327 +Torque: -0.285613 -0.007007 0.425079 + +Polar angle tht: 1.9635; Azimuth angle phi: 3.4470 +Force: 3.161332 1.003708 1.474364 +Torque: -0.331805 -0.007153 0.487630 + +Polar angle tht: 1.9635; Azimuth angle phi: 3.4907 +Force: 3.099391 1.139198 1.476632 +Torque: -0.377350 -0.007313 0.546470 + +Polar angle tht: 1.9635; Azimuth angle phi: 3.5343 +Force: 3.090542 1.285358 1.515665 +Torque: -0.397482 -0.009962 0.561293 + +Polar angle tht: 1.9635; Azimuth angle phi: 3.5779 +Force: 3.081278 1.436114 1.560057 +Torque: -0.413035 -0.012889 0.567186 + +Polar angle tht: 1.9635; Azimuth angle phi: 3.6216 +Force: 3.060995 1.588855 1.603423 +Torque: -0.428200 -0.015640 0.571000 + +Polar angle tht: 1.9635; Azimuth angle phi: 3.6652 +Force: 3.029679 1.742819 1.645663 +Torque: -0.442950 -0.018195 0.572656 + +Polar angle tht: 1.9635; Azimuth angle phi: 3.7088 +Force: 2.987382 1.897226 1.686676 +Torque: -0.457261 -0.020534 0.572091 + +Polar angle tht: 1.9635; Azimuth angle phi: 3.7525 +Force: 2.934228 2.051283 1.726361 +Torque: -0.471107 -0.022639 0.569253 + +Polar angle tht: 1.9635; Azimuth angle phi: 3.7961 +Force: 2.870408 2.204188 1.764621 +Torque: -0.484465 -0.024495 0.564104 + +Polar angle tht: 1.9635; Azimuth angle phi: 3.8397 +Force: 2.796181 2.355138 1.801359 +Torque: -0.497314 -0.026086 0.556619 + +Polar angle tht: 1.9635; Azimuth angle phi: 3.8834 +Force: 2.711872 2.503332 1.836483 +Torque: -0.509634 -0.027402 0.546788 + +Polar angle tht: 1.9635; Azimuth angle phi: 3.9270 +Force: 2.617869 2.647979 1.869900 +Torque: -0.521403 -0.028432 0.534615 + +Polar angle tht: 1.9635; Azimuth angle phi: 3.9706 +Force: 2.514622 2.788299 1.901524 +Torque: -0.532605 -0.029168 0.520118 + +Polar angle tht: 1.9635; Azimuth angle phi: 4.0143 +Force: 2.402641 2.923533 1.931270 +Torque: -0.543223 -0.029604 0.503329 + +Polar angle tht: 1.9635; Azimuth angle phi: 4.0579 +Force: 2.282489 3.052948 1.959056 +Torque: -0.553241 -0.029739 0.484296 + +Polar angle tht: 1.9635; Azimuth angle phi: 4.1015 +Force: 2.154781 3.175837 1.984807 +Torque: -0.562644 -0.029569 0.463079 + +Polar angle tht: 1.9635; Azimuth angle phi: 4.1452 +Force: 2.020180 3.291529 2.008449 +Torque: -0.571420 -0.029098 0.439753 + +Polar angle tht: 1.9635; Azimuth angle phi: 4.1888 +Force: 1.879391 3.399392 2.029917 +Torque: -0.579557 -0.028327 0.414406 + +Polar angle tht: 1.9635; Azimuth angle phi: 4.2324 +Force: 1.733157 3.498837 2.049147 +Torque: -0.587044 -0.027264 0.387139 + +Polar angle tht: 1.9635; Azimuth angle phi: 4.2761 +Force: 1.582256 3.589321 2.066081 +Torque: -0.593872 -0.025917 0.358065 + +Polar angle tht: 1.9635; Azimuth angle phi: 4.3197 +Force: 1.427491 3.670353 2.080669 +Torque: -0.600032 -0.024295 0.327308 + +Polar angle tht: 1.9635; Azimuth angle phi: 4.3633 +Force: 1.269690 3.741497 2.092866 +Torque: -0.605518 -0.022411 0.295005 + +Polar angle tht: 1.9635; Azimuth angle phi: 4.4070 +Force: 1.109695 3.802373 2.102630 +Torque: -0.610323 -0.020280 0.261301 + +Polar angle tht: 1.9635; Azimuth angle phi: 4.4506 +Force: 0.948361 3.852661 2.109929 +Torque: -0.614443 -0.017918 0.226349 + +Polar angle tht: 1.9635; Azimuth angle phi: 4.4942 +Force: 0.786548 3.892103 2.114736 +Torque: -0.617875 -0.015342 0.190314 + +Polar angle tht: 1.9635; Azimuth angle phi: 4.5379 +Force: 0.625114 3.920506 2.117031 +Torque: -0.620614 -0.012572 0.153365 + +Polar angle tht: 1.9635; Azimuth angle phi: 4.5815 +Force: 0.464912 3.937739 2.116799 +Torque: -0.622661 -0.009631 0.115676 + +Polar angle tht: 1.9635; Azimuth angle phi: 4.6251 +Force: 0.306781 3.943741 2.114034 +Torque: -0.624014 -0.006539 0.077430 + +Polar angle tht: 1.9635; Azimuth angle phi: 4.6688 +Force: 0.151544 3.938513 2.108737 +Torque: -0.624675 -0.003320 0.038809 + +Polar angle tht: 1.9635; Azimuth angle phi: 4.7124 +Force: 0.000000 3.922126 2.100913 +Torque: -0.624643 0.000000 -0.000000 + +Polar angle tht: 1.9635; Azimuth angle phi: 4.7560 +Force: -0.151544 3.938513 2.108737 +Torque: -0.624675 0.003320 -0.038809 + +Polar angle tht: 1.9635; Azimuth angle phi: 4.7997 +Force: -0.306781 3.943741 2.114034 +Torque: -0.624014 0.006539 -0.077430 + +Polar angle tht: 1.9635; Azimuth angle phi: 4.8433 +Force: -0.464912 3.937739 2.116799 +Torque: -0.622661 0.009631 -0.115676 + +Polar angle tht: 1.9635; Azimuth angle phi: 4.8869 +Force: -0.625114 3.920506 2.117031 +Torque: -0.620614 0.012572 -0.153365 + +Polar angle tht: 1.9635; Azimuth angle phi: 4.9306 +Force: -0.786548 3.892103 2.114736 +Torque: -0.617875 0.015342 -0.190314 + +Polar angle tht: 1.9635; Azimuth angle phi: 4.9742 +Force: -0.948361 3.852661 2.109929 +Torque: -0.614443 0.017918 -0.226349 + +Polar angle tht: 1.9635; Azimuth angle phi: 5.0178 +Force: -1.109695 3.802373 2.102630 +Torque: -0.610323 0.020280 -0.261301 + +Polar angle tht: 1.9635; Azimuth angle phi: 5.0615 +Force: -1.269690 3.741497 2.092866 +Torque: -0.605518 0.022411 -0.295005 + +Polar angle tht: 1.9635; Azimuth angle phi: 5.1051 +Force: -1.427491 3.670353 2.080669 +Torque: -0.600032 0.024295 -0.327308 + +Polar angle tht: 1.9635; Azimuth angle phi: 5.1487 +Force: -1.582256 3.589321 2.066081 +Torque: -0.593872 0.025917 -0.358065 + +Polar angle tht: 1.9635; Azimuth angle phi: 5.1924 +Force: -1.733157 3.498837 2.049147 +Torque: -0.587044 0.027264 -0.387139 + +Polar angle tht: 1.9635; Azimuth angle phi: 5.2360 +Force: -1.879391 3.399392 2.029917 +Torque: -0.579557 0.028327 -0.414406 + +Polar angle tht: 1.9635; Azimuth angle phi: 5.2796 +Force: -2.020180 3.291529 2.008449 +Torque: -0.571420 0.029098 -0.439753 + +Polar angle tht: 1.9635; Azimuth angle phi: 5.3233 +Force: -2.154781 3.175837 1.984807 +Torque: -0.562644 0.029569 -0.463079 + +Polar angle tht: 1.9635; Azimuth angle phi: 5.3669 +Force: -2.282489 3.052948 1.959056 +Torque: -0.553241 0.029739 -0.484296 + +Polar angle tht: 1.9635; Azimuth angle phi: 5.4105 +Force: -2.402641 2.923533 1.931270 +Torque: -0.543223 0.029604 -0.503329 + +Polar angle tht: 1.9635; Azimuth angle phi: 5.4542 +Force: -2.514622 2.788299 1.901524 +Torque: -0.532605 0.029168 -0.520118 + +Polar angle tht: 1.9635; Azimuth angle phi: 5.4978 +Force: -2.617869 2.647979 1.869900 +Torque: -0.521403 0.028432 -0.534615 + +Polar angle tht: 1.9635; Azimuth angle phi: 5.5414 +Force: -2.711872 2.503332 1.836483 +Torque: -0.509634 0.027402 -0.546788 + +Polar angle tht: 1.9635; Azimuth angle phi: 5.5851 +Force: -2.796181 2.355138 1.801359 +Torque: -0.497314 0.026086 -0.556619 + +Polar angle tht: 1.9635; Azimuth angle phi: 5.6287 +Force: -2.870408 2.204188 1.764621 +Torque: -0.484465 0.024495 -0.564104 + +Polar angle tht: 1.9635; Azimuth angle phi: 5.6723 +Force: -2.934228 2.051283 1.726361 +Torque: -0.471107 0.022639 -0.569253 + +Polar angle tht: 1.9635; Azimuth angle phi: 5.7160 +Force: -2.987382 1.897226 1.686676 +Torque: -0.457261 0.020534 -0.572091 + +Polar angle tht: 1.9635; Azimuth angle phi: 5.7596 +Force: -3.029679 1.742819 1.645663 +Torque: -0.442950 0.018195 -0.572656 + +Polar angle tht: 1.9635; Azimuth angle phi: 5.8032 +Force: -3.060995 1.588855 1.603423 +Torque: -0.428200 0.015640 -0.571000 + +Polar angle tht: 1.9635; Azimuth angle phi: 5.8469 +Force: -3.081278 1.436114 1.560057 +Torque: -0.413035 0.012889 -0.567186 + +Polar angle tht: 1.9635; Azimuth angle phi: 5.8905 +Force: -3.090542 1.285358 1.515665 +Torque: -0.397482 0.009962 -0.561293 + +Polar angle tht: 1.9635; Azimuth angle phi: 5.9341 +Force: -3.099391 1.139198 1.476632 +Torque: -0.377350 0.007313 -0.546470 + +Polar angle tht: 1.9635; Azimuth angle phi: 5.9778 +Force: -3.161332 1.003708 1.474364 +Torque: -0.331805 0.007153 -0.487630 + +Polar angle tht: 1.9635; Azimuth angle phi: 6.0214 +Force: -3.215630 0.865484 1.472327 +Torque: -0.285613 0.007007 -0.425079 + +Polar angle tht: 1.9635; Azimuth angle phi: 6.0650 +Force: -3.262025 0.724897 1.470551 +Torque: -0.238866 0.006878 -0.359293 + +Polar angle tht: 1.9635; Azimuth angle phi: 6.1087 +Force: -3.300294 0.582323 1.469062 +Torque: -0.191654 0.006769 -0.290772 + +Polar angle tht: 1.9635; Azimuth angle phi: 6.1523 +Force: -3.330253 0.438150 1.467882 +Torque: -0.144068 0.006683 -0.220039 + +Polar angle tht: 1.9635; Azimuth angle phi: 6.1959 +Force: -3.351756 0.292772 1.467026 +Torque: -0.096202 0.006619 -0.147631 + +Polar angle tht: 1.9635; Azimuth angle phi: 6.2396 +Force: -3.364700 0.146588 1.466508 +Torque: -0.048148 0.006581 -0.074099 + +Polar angle tht: 1.9635; Azimuth angle phi: 6.2832 +Force: -3.369021 0.000000 1.466334 +Torque: -0.000001 0.006568 -0.000003 + +Polar angle tht: 2.0071; Azimuth angle phi: 0.0000 +Force: -3.491823 0.000000 1.718710 +Torque: -0.000001 0.009829 -0.000004 + +Polar angle tht: 2.0071; Azimuth angle phi: 0.0436 +Force: -3.487427 -0.153220 1.718854 +Torque: 0.050608 0.009838 0.071300 + +Polar angle tht: 2.0071; Azimuth angle phi: 0.0873 +Force: -3.474258 -0.306028 1.719280 +Torque: 0.101118 0.009865 0.142061 + +Polar angle tht: 2.0071; Azimuth angle phi: 0.1309 +Force: -3.452379 -0.458014 1.719984 +Torque: 0.151432 0.009909 0.211741 + +Polar angle tht: 2.0071; Azimuth angle phi: 0.1745 +Force: -3.421891 -0.608771 1.720953 +Torque: 0.201452 0.009969 0.279810 + +Polar angle tht: 2.0071; Azimuth angle phi: 0.2182 +Force: -3.382938 -0.757897 1.722171 +Torque: 0.251080 0.010044 0.345749 + +Polar angle tht: 2.0071; Azimuth angle phi: 0.2618 +Force: -3.335702 -0.904997 1.723619 +Torque: 0.300220 0.010131 0.409056 + +Polar angle tht: 2.0071; Azimuth angle phi: 0.3054 +Force: -3.280400 -1.049685 1.725272 +Torque: 0.348776 0.010229 0.469250 + +Polar angle tht: 2.0071; Azimuth angle phi: 0.3491 +Force: -3.217291 -1.191583 1.727101 +Torque: 0.396655 0.010334 0.525873 + +Polar angle tht: 2.0071; Azimuth angle phi: 0.3927 +Force: -3.146665 -1.330325 1.729075 +Torque: 0.443764 0.010443 0.578494 + +Polar angle tht: 2.0071; Azimuth angle phi: 0.4363 +Force: -3.119613 -1.479376 1.765557 +Torque: 0.466758 0.012634 0.593232 + +Polar angle tht: 2.0071; Azimuth angle phi: 0.4800 +Force: -3.096806 -1.633538 1.811024 +Torque: 0.482557 0.015277 0.595891 + +Polar angle tht: 2.0071; Azimuth angle phi: 0.5236 +Force: -3.063093 -1.788716 1.855268 +Torque: 0.497929 0.017731 0.596386 + +Polar angle tht: 2.0071; Azimuth angle phi: 0.5672 +Force: -3.018534 -1.944146 1.898187 +Torque: 0.512849 0.019976 0.594657 + +Polar angle tht: 2.0071; Azimuth angle phi: 0.6109 +Force: -2.963252 -2.099051 1.939678 +Torque: 0.527290 0.021995 0.590656 + +Polar angle tht: 2.0071; Azimuth angle phi: 0.6545 +Force: -2.897441 -2.252648 1.979640 +Torque: 0.541229 0.023774 0.584351 + +Polar angle tht: 2.0071; Azimuth angle phi: 0.6981 +Force: -2.821357 -2.404151 2.017976 +Torque: 0.554641 0.025299 0.575718 + +Polar angle tht: 2.0071; Azimuth angle phi: 0.7418 +Force: -2.735323 -2.552777 2.054588 +Torque: 0.567506 0.026557 0.564752 + +Polar angle tht: 2.0071; Azimuth angle phi: 0.7854 +Force: -2.639721 -2.697753 2.089385 +Torque: 0.579803 0.027541 0.551459 + +Polar angle tht: 2.0071; Azimuth angle phi: 0.8290 +Force: -2.534994 -2.838319 2.122277 +Torque: 0.591512 0.028241 0.535859 + +Polar angle tht: 2.0071; Azimuth angle phi: 0.8727 +Force: -2.421643 -2.973734 2.153177 +Torque: 0.602615 0.028653 0.517986 + +Polar angle tht: 2.0071; Azimuth angle phi: 0.9163 +Force: -2.300220 -3.103281 2.182004 +Torque: 0.613097 0.028773 0.497890 + +Polar angle tht: 2.0071; Azimuth angle phi: 0.9599 +Force: -2.171328 -3.226271 2.208680 +Torque: 0.622940 0.028601 0.475631 + +Polar angle tht: 2.0071; Azimuth angle phi: 1.0036 +Force: -2.035617 -3.342049 2.233132 +Torque: 0.632132 0.028138 0.451286 + +Polar angle tht: 2.0071; Azimuth angle phi: 1.0472 +Force: -1.893777 -3.449999 2.255291 +Torque: 0.640659 0.027388 0.424943 + +Polar angle tht: 2.0071; Azimuth angle phi: 1.0908 +Force: -1.746536 -3.549546 2.275095 +Torque: 0.648510 0.026355 0.396702 + +Polar angle tht: 2.0071; Azimuth angle phi: 1.1345 +Force: -1.594652 -3.640159 2.292487 +Torque: 0.655674 0.025048 0.366677 + +Polar angle tht: 2.0071; Azimuth angle phi: 1.1781 +Force: -1.438914 -3.721361 2.307414 +Torque: 0.662143 0.023477 0.334990 + +Polar angle tht: 2.0071; Azimuth angle phi: 1.2217 +Force: -1.280129 -3.792724 2.319832 +Torque: 0.667909 0.021654 0.301777 + +Polar angle tht: 2.0071; Azimuth angle phi: 1.2654 +Force: -1.119123 -3.853878 2.329699 +Torque: 0.672965 0.019593 0.267182 + +Polar angle tht: 2.0071; Azimuth angle phi: 1.3090 +Force: -0.956731 -3.904510 2.336985 +Torque: 0.677306 0.017308 0.231357 + +Polar angle tht: 2.0071; Azimuth angle phi: 1.3526 +Force: -0.793793 -3.944368 2.341661 +Torque: 0.680927 0.014819 0.194463 + +Polar angle tht: 2.0071; Azimuth angle phi: 1.3963 +Force: -0.631150 -3.973261 2.343709 +Torque: 0.683826 0.012143 0.156667 + +Polar angle tht: 2.0071; Azimuth angle phi: 1.4399 +Force: -0.469636 -3.991063 2.343115 +Torque: 0.686000 0.009301 0.118144 + +Polar angle tht: 2.0071; Azimuth angle phi: 1.4835 +Force: -0.310073 -3.997710 2.339874 +Torque: 0.687449 0.006315 0.079070 + +Polar angle tht: 2.0071; Azimuth angle phi: 1.5272 +Force: -0.153267 -3.993202 2.333987 +Torque: 0.688172 0.003206 0.039628 + +Polar angle tht: 2.0071; Azimuth angle phi: 1.5708 +Force: 0.000000 -3.977607 2.325462 +Torque: 0.688171 0.000000 0.000000 + +Polar angle tht: 2.0071; Azimuth angle phi: 1.6144 +Force: 0.153267 -3.993202 2.333987 +Torque: 0.688172 -0.003206 -0.039628 + +Polar angle tht: 2.0071; Azimuth angle phi: 1.6581 +Force: 0.310073 -3.997710 2.339874 +Torque: 0.687449 -0.006315 -0.079070 + +Polar angle tht: 2.0071; Azimuth angle phi: 1.7017 +Force: 0.469636 -3.991063 2.343115 +Torque: 0.686000 -0.009301 -0.118144 + +Polar angle tht: 2.0071; Azimuth angle phi: 1.7453 +Force: 0.631150 -3.973261 2.343709 +Torque: 0.683826 -0.012143 -0.156667 + +Polar angle tht: 2.0071; Azimuth angle phi: 1.7890 +Force: 0.793793 -3.944368 2.341661 +Torque: 0.680927 -0.014819 -0.194463 + +Polar angle tht: 2.0071; Azimuth angle phi: 1.8326 +Force: 0.956731 -3.904510 2.336985 +Torque: 0.677306 -0.017308 -0.231357 + +Polar angle tht: 2.0071; Azimuth angle phi: 1.8762 +Force: 1.119123 -3.853878 2.329699 +Torque: 0.672965 -0.019593 -0.267182 + +Polar angle tht: 2.0071; Azimuth angle phi: 1.9199 +Force: 1.280129 -3.792724 2.319832 +Torque: 0.667909 -0.021654 -0.301777 + +Polar angle tht: 2.0071; Azimuth angle phi: 1.9635 +Force: 1.438914 -3.721361 2.307414 +Torque: 0.662143 -0.023477 -0.334990 + +Polar angle tht: 2.0071; Azimuth angle phi: 2.0071 +Force: 1.594652 -3.640159 2.292487 +Torque: 0.655674 -0.025048 -0.366677 + +Polar angle tht: 2.0071; Azimuth angle phi: 2.0508 +Force: 1.746536 -3.549546 2.275095 +Torque: 0.648510 -0.026355 -0.396702 + +Polar angle tht: 2.0071; Azimuth angle phi: 2.0944 +Force: 1.893777 -3.449999 2.255291 +Torque: 0.640659 -0.027388 -0.424943 + +Polar angle tht: 2.0071; Azimuth angle phi: 2.1380 +Force: 2.035617 -3.342049 2.233132 +Torque: 0.632132 -0.028138 -0.451286 + +Polar angle tht: 2.0071; Azimuth angle phi: 2.1817 +Force: 2.171328 -3.226271 2.208680 +Torque: 0.622940 -0.028601 -0.475631 + +Polar angle tht: 2.0071; Azimuth angle phi: 2.2253 +Force: 2.300220 -3.103281 2.182004 +Torque: 0.613097 -0.028773 -0.497890 + +Polar angle tht: 2.0071; Azimuth angle phi: 2.2689 +Force: 2.421643 -2.973734 2.153177 +Torque: 0.602615 -0.028653 -0.517986 + +Polar angle tht: 2.0071; Azimuth angle phi: 2.3126 +Force: 2.534994 -2.838319 2.122277 +Torque: 0.591512 -0.028241 -0.535859 + +Polar angle tht: 2.0071; Azimuth angle phi: 2.3562 +Force: 2.639721 -2.697753 2.089385 +Torque: 0.579803 -0.027541 -0.551459 + +Polar angle tht: 2.0071; Azimuth angle phi: 2.3998 +Force: 2.735323 -2.552777 2.054588 +Torque: 0.567506 -0.026557 -0.564752 + +Polar angle tht: 2.0071; Azimuth angle phi: 2.4435 +Force: 2.821357 -2.404151 2.017976 +Torque: 0.554641 -0.025299 -0.575718 + +Polar angle tht: 2.0071; Azimuth angle phi: 2.4871 +Force: 2.897441 -2.252648 1.979640 +Torque: 0.541229 -0.023774 -0.584351 + +Polar angle tht: 2.0071; Azimuth angle phi: 2.5307 +Force: 2.963252 -2.099051 1.939678 +Torque: 0.527290 -0.021995 -0.590656 + +Polar angle tht: 2.0071; Azimuth angle phi: 2.5744 +Force: 3.018534 -1.944146 1.898187 +Torque: 0.512849 -0.019976 -0.594657 + +Polar angle tht: 2.0071; Azimuth angle phi: 2.6180 +Force: 3.063093 -1.788716 1.855268 +Torque: 0.497929 -0.017731 -0.596386 + +Polar angle tht: 2.0071; Azimuth angle phi: 2.6616 +Force: 3.096806 -1.633538 1.811024 +Torque: 0.482557 -0.015277 -0.595891 + +Polar angle tht: 2.0071; Azimuth angle phi: 2.7053 +Force: 3.119613 -1.479376 1.765557 +Torque: 0.466758 -0.012634 -0.593232 + +Polar angle tht: 2.0071; Azimuth angle phi: 2.7489 +Force: 3.146665 -1.330325 1.729075 +Torque: 0.443764 -0.010443 -0.578494 + +Polar angle tht: 2.0071; Azimuth angle phi: 2.7925 +Force: 3.217291 -1.191583 1.727101 +Torque: 0.396655 -0.010334 -0.525873 + +Polar angle tht: 2.0071; Azimuth angle phi: 2.8362 +Force: 3.280400 -1.049685 1.725272 +Torque: 0.348776 -0.010229 -0.469250 + +Polar angle tht: 2.0071; Azimuth angle phi: 2.8798 +Force: 3.335702 -0.904997 1.723619 +Torque: 0.300220 -0.010131 -0.409056 + +Polar angle tht: 2.0071; Azimuth angle phi: 2.9234 +Force: 3.382938 -0.757897 1.722171 +Torque: 0.251080 -0.010044 -0.345749 + +Polar angle tht: 2.0071; Azimuth angle phi: 2.9671 +Force: 3.421891 -0.608771 1.720953 +Torque: 0.201452 -0.009969 -0.279810 + +Polar angle tht: 2.0071; Azimuth angle phi: 3.0107 +Force: 3.452379 -0.458014 1.719984 +Torque: 0.151432 -0.009909 -0.211741 + +Polar angle tht: 2.0071; Azimuth angle phi: 3.0543 +Force: 3.474258 -0.306028 1.719280 +Torque: 0.101118 -0.009865 -0.142061 + +Polar angle tht: 2.0071; Azimuth angle phi: 3.0980 +Force: 3.487427 -0.153220 1.718854 +Torque: 0.050608 -0.009838 -0.071300 + +Polar angle tht: 2.0071; Azimuth angle phi: 3.1416 +Force: 3.491823 0.000000 1.718710 +Torque: -0.000001 -0.009829 0.000004 + +Polar angle tht: 2.0071; Azimuth angle phi: 3.1852 +Force: 3.487427 0.153220 1.718854 +Torque: -0.050610 -0.009838 0.071308 + +Polar angle tht: 2.0071; Azimuth angle phi: 3.2289 +Force: 3.474258 0.306028 1.719280 +Torque: -0.101121 -0.009865 0.142069 + +Polar angle tht: 2.0071; Azimuth angle phi: 3.2725 +Force: 3.452379 0.458014 1.719984 +Torque: -0.151435 -0.009909 0.211749 + +Polar angle tht: 2.0071; Azimuth angle phi: 3.3161 +Force: 3.421891 0.608771 1.720953 +Torque: -0.201454 -0.009969 0.279817 + +Polar angle tht: 2.0071; Azimuth angle phi: 3.3598 +Force: 3.382938 0.757897 1.722171 +Torque: -0.251082 -0.010044 0.345756 + +Polar angle tht: 2.0071; Azimuth angle phi: 3.4034 +Force: 3.335702 0.904997 1.723619 +Torque: -0.300222 -0.010131 0.409063 + +Polar angle tht: 2.0071; Azimuth angle phi: 3.4470 +Force: 3.280400 1.049685 1.725272 +Torque: -0.348779 -0.010229 0.469258 + +Polar angle tht: 2.0071; Azimuth angle phi: 3.4907 +Force: 3.217291 1.191583 1.727101 +Torque: -0.396658 -0.010334 0.525880 + +Polar angle tht: 2.0071; Azimuth angle phi: 3.5343 +Force: 3.146665 1.330325 1.729075 +Torque: -0.443767 -0.010443 0.578501 + +Polar angle tht: 2.0071; Azimuth angle phi: 3.5779 +Force: 3.119613 1.479376 1.765557 +Torque: -0.466762 -0.012634 0.593240 + +Polar angle tht: 2.0071; Azimuth angle phi: 3.6216 +Force: 3.096806 1.633538 1.811024 +Torque: -0.482561 -0.015277 0.595900 + +Polar angle tht: 2.0071; Azimuth angle phi: 3.6652 +Force: 3.063093 1.788716 1.855268 +Torque: -0.497935 -0.017731 0.596395 + +Polar angle tht: 2.0071; Azimuth angle phi: 3.7088 +Force: 3.018534 1.944146 1.898187 +Torque: -0.512856 -0.019976 0.594667 + +Polar angle tht: 2.0071; Azimuth angle phi: 3.7525 +Force: 2.963252 2.099051 1.939678 +Torque: -0.527298 -0.021995 0.590668 + +Polar angle tht: 2.0071; Azimuth angle phi: 3.7961 +Force: 2.897441 2.252648 1.979640 +Torque: -0.541237 -0.023774 0.584363 + +Polar angle tht: 2.0071; Azimuth angle phi: 3.8397 +Force: 2.821357 2.404151 2.017976 +Torque: -0.554651 -0.025299 0.575731 + +Polar angle tht: 2.0071; Azimuth angle phi: 3.8834 +Force: 2.735323 2.552777 2.054588 +Torque: -0.567517 -0.026557 0.564765 + +Polar angle tht: 2.0071; Azimuth angle phi: 3.9270 +Force: 2.639721 2.697753 2.089385 +Torque: -0.579814 -0.027541 0.551472 + +Polar angle tht: 2.0071; Azimuth angle phi: 3.9706 +Force: 2.534994 2.838319 2.122277 +Torque: -0.591524 -0.028241 0.535872 + +Polar angle tht: 2.0071; Azimuth angle phi: 4.0143 +Force: 2.421643 2.973734 2.153177 +Torque: -0.602628 -0.028653 0.518000 + +Polar angle tht: 2.0071; Azimuth angle phi: 4.0579 +Force: 2.300220 3.103281 2.182004 +Torque: -0.613110 -0.028773 0.497903 + +Polar angle tht: 2.0071; Azimuth angle phi: 4.1015 +Force: 2.171328 3.226271 2.208680 +Torque: -0.622954 -0.028601 0.475645 + +Polar angle tht: 2.0071; Azimuth angle phi: 4.1452 +Force: 2.035617 3.342049 2.233132 +Torque: -0.632146 -0.028138 0.451299 + +Polar angle tht: 2.0071; Azimuth angle phi: 4.1888 +Force: 1.893777 3.449999 2.255291 +Torque: -0.640674 -0.027388 0.424956 + +Polar angle tht: 2.0071; Azimuth angle phi: 4.2324 +Force: 1.746536 3.549546 2.275095 +Torque: -0.648526 -0.026355 0.396714 + +Polar angle tht: 2.0071; Azimuth angle phi: 4.2761 +Force: 1.594652 3.640159 2.292487 +Torque: -0.655691 -0.025048 0.366688 + +Polar angle tht: 2.0071; Azimuth angle phi: 4.3197 +Force: 1.438914 3.721361 2.307414 +Torque: -0.662160 -0.023477 0.335001 + +Polar angle tht: 2.0071; Azimuth angle phi: 4.3633 +Force: 1.280129 3.792724 2.319832 +Torque: -0.667927 -0.021654 0.301787 + +Polar angle tht: 2.0071; Azimuth angle phi: 4.4070 +Force: 1.119123 3.853878 2.329699 +Torque: -0.672983 -0.019593 0.267190 + +Polar angle tht: 2.0071; Azimuth angle phi: 4.4506 +Force: 0.956731 3.904510 2.336985 +Torque: -0.677324 -0.017308 0.231364 + +Polar angle tht: 2.0071; Azimuth angle phi: 4.4942 +Force: 0.793793 3.944368 2.341661 +Torque: -0.680946 -0.014819 0.194469 + +Polar angle tht: 2.0071; Azimuth angle phi: 4.5379 +Force: 0.631150 3.973261 2.343709 +Torque: -0.683845 -0.012143 0.156672 + +Polar angle tht: 2.0071; Azimuth angle phi: 4.5815 +Force: 0.469636 3.991063 2.343115 +Torque: -0.686019 -0.009301 0.118148 + +Polar angle tht: 2.0071; Azimuth angle phi: 4.6251 +Force: 0.310073 3.997710 2.339874 +Torque: -0.687468 -0.006315 0.079073 + +Polar angle tht: 2.0071; Azimuth angle phi: 4.6688 +Force: 0.153267 3.993202 2.333987 +Torque: -0.688191 -0.003206 0.039629 + +Polar angle tht: 2.0071; Azimuth angle phi: 4.7124 +Force: 0.000000 3.977607 2.325462 +Torque: -0.688190 0.000000 -0.000000 + +Polar angle tht: 2.0071; Azimuth angle phi: 4.7560 +Force: -0.153267 3.993202 2.333987 +Torque: -0.688191 0.003206 -0.039629 + +Polar angle tht: 2.0071; Azimuth angle phi: 4.7997 +Force: -0.310073 3.997710 2.339874 +Torque: -0.687468 0.006315 -0.079073 + +Polar angle tht: 2.0071; Azimuth angle phi: 4.8433 +Force: -0.469636 3.991063 2.343115 +Torque: -0.686019 0.009301 -0.118148 + +Polar angle tht: 2.0071; Azimuth angle phi: 4.8869 +Force: -0.631150 3.973261 2.343709 +Torque: -0.683845 0.012143 -0.156672 + +Polar angle tht: 2.0071; Azimuth angle phi: 4.9306 +Force: -0.793793 3.944368 2.341661 +Torque: -0.680946 0.014819 -0.194469 + +Polar angle tht: 2.0071; Azimuth angle phi: 4.9742 +Force: -0.956731 3.904510 2.336985 +Torque: -0.677324 0.017308 -0.231364 + +Polar angle tht: 2.0071; Azimuth angle phi: 5.0178 +Force: -1.119123 3.853878 2.329699 +Torque: -0.672983 0.019593 -0.267190 + +Polar angle tht: 2.0071; Azimuth angle phi: 5.0615 +Force: -1.280129 3.792724 2.319832 +Torque: -0.667927 0.021654 -0.301787 + +Polar angle tht: 2.0071; Azimuth angle phi: 5.1051 +Force: -1.438914 3.721361 2.307414 +Torque: -0.662160 0.023477 -0.335001 + +Polar angle tht: 2.0071; Azimuth angle phi: 5.1487 +Force: -1.594652 3.640159 2.292487 +Torque: -0.655691 0.025048 -0.366688 + +Polar angle tht: 2.0071; Azimuth angle phi: 5.1924 +Force: -1.746536 3.549546 2.275095 +Torque: -0.648526 0.026355 -0.396714 + +Polar angle tht: 2.0071; Azimuth angle phi: 5.2360 +Force: -1.893777 3.449999 2.255291 +Torque: -0.640674 0.027388 -0.424956 + +Polar angle tht: 2.0071; Azimuth angle phi: 5.2796 +Force: -2.035617 3.342049 2.233132 +Torque: -0.632146 0.028138 -0.451299 + +Polar angle tht: 2.0071; Azimuth angle phi: 5.3233 +Force: -2.171328 3.226271 2.208680 +Torque: -0.622954 0.028601 -0.475645 + +Polar angle tht: 2.0071; Azimuth angle phi: 5.3669 +Force: -2.300220 3.103281 2.182004 +Torque: -0.613110 0.028773 -0.497903 + +Polar angle tht: 2.0071; Azimuth angle phi: 5.4105 +Force: -2.421643 2.973734 2.153177 +Torque: -0.602628 0.028653 -0.518000 + +Polar angle tht: 2.0071; Azimuth angle phi: 5.4542 +Force: -2.534994 2.838319 2.122277 +Torque: -0.591524 0.028241 -0.535872 + +Polar angle tht: 2.0071; Azimuth angle phi: 5.4978 +Force: -2.639721 2.697753 2.089385 +Torque: -0.579814 0.027541 -0.551472 + +Polar angle tht: 2.0071; Azimuth angle phi: 5.5414 +Force: -2.735323 2.552777 2.054588 +Torque: -0.567517 0.026557 -0.564765 + +Polar angle tht: 2.0071; Azimuth angle phi: 5.5851 +Force: -2.821357 2.404151 2.017976 +Torque: -0.554651 0.025299 -0.575731 + +Polar angle tht: 2.0071; Azimuth angle phi: 5.6287 +Force: -2.897441 2.252648 1.979640 +Torque: -0.541237 0.023774 -0.584363 + +Polar angle tht: 2.0071; Azimuth angle phi: 5.6723 +Force: -2.963252 2.099051 1.939678 +Torque: -0.527298 0.021995 -0.590668 + +Polar angle tht: 2.0071; Azimuth angle phi: 5.7160 +Force: -3.018534 1.944146 1.898187 +Torque: -0.512856 0.019976 -0.594667 + +Polar angle tht: 2.0071; Azimuth angle phi: 5.7596 +Force: -3.063093 1.788716 1.855268 +Torque: -0.497935 0.017731 -0.596395 + +Polar angle tht: 2.0071; Azimuth angle phi: 5.8032 +Force: -3.096806 1.633538 1.811024 +Torque: -0.482561 0.015277 -0.595900 + +Polar angle tht: 2.0071; Azimuth angle phi: 5.8469 +Force: -3.119613 1.479376 1.765557 +Torque: -0.466762 0.012634 -0.593240 + +Polar angle tht: 2.0071; Azimuth angle phi: 5.8905 +Force: -3.146665 1.330325 1.729075 +Torque: -0.443767 0.010443 -0.578501 + +Polar angle tht: 2.0071; Azimuth angle phi: 5.9341 +Force: -3.217291 1.191583 1.727101 +Torque: -0.396658 0.010334 -0.525880 + +Polar angle tht: 2.0071; Azimuth angle phi: 5.9778 +Force: -3.280400 1.049685 1.725272 +Torque: -0.348779 0.010229 -0.469258 + +Polar angle tht: 2.0071; Azimuth angle phi: 6.0214 +Force: -3.335702 0.904997 1.723619 +Torque: -0.300222 0.010131 -0.409063 + +Polar angle tht: 2.0071; Azimuth angle phi: 6.0650 +Force: -3.382938 0.757897 1.722171 +Torque: -0.251082 0.010044 -0.345756 + +Polar angle tht: 2.0071; Azimuth angle phi: 6.1087 +Force: -3.421891 0.608771 1.720953 +Torque: -0.201454 0.009969 -0.279817 + +Polar angle tht: 2.0071; Azimuth angle phi: 6.1523 +Force: -3.452379 0.458014 1.719984 +Torque: -0.151435 0.009909 -0.211749 + +Polar angle tht: 2.0071; Azimuth angle phi: 6.1959 +Force: -3.474258 0.306028 1.719280 +Torque: -0.101121 0.009865 -0.142069 + +Polar angle tht: 2.0071; Azimuth angle phi: 6.2396 +Force: -3.487427 0.153220 1.718854 +Torque: -0.050610 0.009838 -0.071308 + +Polar angle tht: 2.0071; Azimuth angle phi: 6.2832 +Force: -3.491823 0.000000 1.718710 +Torque: -0.000001 0.009829 -0.000004 + +Polar angle tht: 2.0508; Azimuth angle phi: 0.0000 +Force: -3.594158 0.000000 1.983651 +Torque: -0.000001 0.012909 -0.000004 + +Polar angle tht: 2.0508; Azimuth angle phi: 0.0436 +Force: -3.589709 -0.158944 1.983764 +Torque: 0.052768 0.012915 0.068296 + +Polar angle tht: 2.0508; Azimuth angle phi: 0.0873 +Force: -3.576384 -0.317470 1.984101 +Torque: 0.105435 0.012931 0.136076 + +Polar angle tht: 2.0508; Azimuth angle phi: 0.1309 +Force: -3.554241 -0.475163 1.984656 +Torque: 0.157897 0.012956 0.202820 + +Polar angle tht: 2.0508; Azimuth angle phi: 0.1745 +Force: -3.523383 -0.631609 1.985417 +Torque: 0.210053 0.012991 0.268021 + +Polar angle tht: 2.0508; Azimuth angle phi: 0.2182 +Force: -3.483948 -0.786400 1.986370 +Torque: 0.261801 0.013033 0.331182 + +Polar angle tht: 2.0508; Azimuth angle phi: 0.2618 +Force: -3.436114 -0.939136 1.987496 +Torque: 0.313041 0.013080 0.391822 + +Polar angle tht: 2.0508; Azimuth angle phi: 0.3054 +Force: -3.380097 -1.089423 1.988772 +Torque: 0.363674 0.013131 0.449480 + +Polar angle tht: 2.0508; Azimuth angle phi: 0.3491 +Force: -3.316148 -1.236878 1.990172 +Torque: 0.413602 0.013183 0.503718 + +Polar angle tht: 2.0508; Azimuth angle phi: 0.3927 +Force: -3.244553 -1.381129 1.991665 +Torque: 0.462728 0.013232 0.554122 + +Polar angle tht: 2.0508; Azimuth angle phi: 0.4363 +Force: -3.165629 -1.521816 1.993219 +Torque: 0.510956 0.013276 0.600308 + +Polar angle tht: 2.0508; Azimuth angle phi: 0.4800 +Force: -3.117382 -1.670545 2.023323 +Torque: 0.538892 0.014855 0.617093 + +Polar angle tht: 2.0508; Azimuth angle phi: 0.5236 +Force: -3.081516 -1.826207 2.069311 +Torque: 0.554805 0.017200 0.616471 + +Polar angle tht: 2.0508; Azimuth angle phi: 0.5672 +Force: -3.034979 -1.981936 2.113884 +Torque: 0.570254 0.019344 0.613633 + +Polar angle tht: 2.0508; Azimuth angle phi: 0.6109 +Force: -2.977899 -2.136974 2.156939 +Torque: 0.585213 0.021273 0.608536 + +Polar angle tht: 2.0508; Azimuth angle phi: 0.6545 +Force: -2.910467 -2.290558 2.198372 +Torque: 0.599657 0.022970 0.601149 + +Polar angle tht: 2.0508; Azimuth angle phi: 0.6981 +Force: -2.832939 -2.441924 2.238084 +Torque: 0.613561 0.024424 0.591455 + +Polar angle tht: 2.0508; Azimuth angle phi: 0.7418 +Force: -2.745630 -2.590310 2.275976 +Torque: 0.626903 0.025623 0.579449 + +Polar angle tht: 2.0508; Azimuth angle phi: 0.7854 +Force: -2.648918 -2.734963 2.311955 +Torque: 0.639660 0.026557 0.565140 + +Polar angle tht: 2.0508; Azimuth angle phi: 0.8290 +Force: -2.543237 -2.875145 2.345930 +Torque: 0.651812 0.027220 0.548552 + +Polar angle tht: 2.0508; Azimuth angle phi: 0.8727 +Force: -2.429076 -3.010136 2.377813 +Torque: 0.663341 0.027606 0.529720 + +Polar angle tht: 2.0508; Azimuth angle phi: 0.9163 +Force: -2.306974 -3.139238 2.407522 +Torque: 0.674229 0.027713 0.508694 + +Polar angle tht: 2.0508; Azimuth angle phi: 0.9599 +Force: -2.177521 -3.261782 2.434978 +Torque: 0.684458 0.027539 0.485537 + +Polar angle tht: 2.0508; Azimuth angle phi: 1.0036 +Force: -2.041350 -3.377132 2.460108 +Torque: 0.694016 0.027087 0.460324 + +Polar angle tht: 2.0508; Azimuth angle phi: 1.0472 +Force: -1.899135 -3.484689 2.482843 +Torque: 0.702886 0.026358 0.433143 + +Polar angle tht: 2.0508; Azimuth angle phi: 1.0908 +Force: -1.751583 -3.583893 2.503119 +Torque: 0.711058 0.025360 0.404095 + +Polar angle tht: 2.0508; Azimuth angle phi: 1.1345 +Force: -1.599435 -3.674232 2.520880 +Torque: 0.718520 0.024098 0.373292 + +Polar angle tht: 2.0508; Azimuth angle phi: 1.1781 +Force: -1.443458 -3.755238 2.536074 +Torque: 0.725262 0.022584 0.340855 + +Polar angle tht: 2.0508; Azimuth angle phi: 1.2217 +Force: -1.284438 -3.826497 2.548655 +Torque: 0.731276 0.020827 0.306919 + +Polar angle tht: 2.0508; Azimuth angle phi: 1.2654 +Force: -1.123180 -3.887649 2.558585 +Torque: 0.736555 0.018842 0.271624 + +Polar angle tht: 2.0508; Azimuth angle phi: 1.3090 +Force: -0.960496 -3.938389 2.565830 +Torque: 0.741092 0.016644 0.235121 + +Polar angle tht: 2.0508; Azimuth angle phi: 1.3526 +Force: -0.797207 -3.978472 2.570365 +Torque: 0.744882 0.014249 0.197569 + +Polar angle tht: 2.0508; Azimuth angle phi: 1.3963 +Force: -0.634129 -4.007710 2.572171 +Torque: 0.747923 0.011675 0.159132 + +Polar angle tht: 2.0508; Azimuth angle phi: 1.4399 +Force: -0.472077 -4.025980 2.571236 +Torque: 0.750212 0.008942 0.119981 + +Polar angle tht: 2.0508; Azimuth angle phi: 1.4835 +Force: -0.311851 -4.033218 2.567555 +Torque: 0.751747 0.006070 0.080289 + +Polar angle tht: 2.0508; Azimuth angle phi: 1.5272 +Force: -0.154238 -4.029425 2.561130 +Torque: 0.752528 0.003082 0.040235 + +Polar angle tht: 2.0508; Azimuth angle phi: 1.5708 +Force: 0.000000 -4.014661 2.551970 +Torque: 0.752557 0.000000 0.000000 + +Polar angle tht: 2.0508; Azimuth angle phi: 1.6144 +Force: 0.154238 -4.029425 2.561130 +Torque: 0.752528 -0.003082 -0.040235 + +Polar angle tht: 2.0508; Azimuth angle phi: 1.6581 +Force: 0.311851 -4.033218 2.567555 +Torque: 0.751747 -0.006070 -0.080289 + +Polar angle tht: 2.0508; Azimuth angle phi: 1.7017 +Force: 0.472077 -4.025980 2.571236 +Torque: 0.750212 -0.008942 -0.119981 + +Polar angle tht: 2.0508; Azimuth angle phi: 1.7453 +Force: 0.634129 -4.007710 2.572171 +Torque: 0.747923 -0.011675 -0.159132 + +Polar angle tht: 2.0508; Azimuth angle phi: 1.7890 +Force: 0.797207 -3.978472 2.570365 +Torque: 0.744882 -0.014249 -0.197569 + +Polar angle tht: 2.0508; Azimuth angle phi: 1.8326 +Force: 0.960496 -3.938389 2.565830 +Torque: 0.741092 -0.016644 -0.235121 + +Polar angle tht: 2.0508; Azimuth angle phi: 1.8762 +Force: 1.123180 -3.887649 2.558585 +Torque: 0.736555 -0.018842 -0.271624 + +Polar angle tht: 2.0508; Azimuth angle phi: 1.9199 +Force: 1.284438 -3.826497 2.548655 +Torque: 0.731276 -0.020827 -0.306919 + +Polar angle tht: 2.0508; Azimuth angle phi: 1.9635 +Force: 1.443458 -3.755238 2.536074 +Torque: 0.725262 -0.022584 -0.340855 + +Polar angle tht: 2.0508; Azimuth angle phi: 2.0071 +Force: 1.599435 -3.674232 2.520880 +Torque: 0.718520 -0.024098 -0.373292 + +Polar angle tht: 2.0508; Azimuth angle phi: 2.0508 +Force: 1.751583 -3.583893 2.503119 +Torque: 0.711058 -0.025360 -0.404095 + +Polar angle tht: 2.0508; Azimuth angle phi: 2.0944 +Force: 1.899135 -3.484689 2.482843 +Torque: 0.702886 -0.026358 -0.433143 + +Polar angle tht: 2.0508; Azimuth angle phi: 2.1380 +Force: 2.041350 -3.377132 2.460108 +Torque: 0.694016 -0.027087 -0.460324 + +Polar angle tht: 2.0508; Azimuth angle phi: 2.1817 +Force: 2.177521 -3.261782 2.434978 +Torque: 0.684458 -0.027539 -0.485537 + +Polar angle tht: 2.0508; Azimuth angle phi: 2.2253 +Force: 2.306974 -3.139238 2.407522 +Torque: 0.674229 -0.027713 -0.508694 + +Polar angle tht: 2.0508; Azimuth angle phi: 2.2689 +Force: 2.429076 -3.010136 2.377813 +Torque: 0.663341 -0.027606 -0.529720 + +Polar angle tht: 2.0508; Azimuth angle phi: 2.3126 +Force: 2.543237 -2.875145 2.345930 +Torque: 0.651812 -0.027220 -0.548552 + +Polar angle tht: 2.0508; Azimuth angle phi: 2.3562 +Force: 2.648918 -2.734963 2.311955 +Torque: 0.639660 -0.026557 -0.565140 + +Polar angle tht: 2.0508; Azimuth angle phi: 2.3998 +Force: 2.745630 -2.590310 2.275976 +Torque: 0.626903 -0.025623 -0.579449 + +Polar angle tht: 2.0508; Azimuth angle phi: 2.4435 +Force: 2.832939 -2.441924 2.238084 +Torque: 0.613561 -0.024424 -0.591455 + +Polar angle tht: 2.0508; Azimuth angle phi: 2.4871 +Force: 2.910467 -2.290558 2.198372 +Torque: 0.599657 -0.022970 -0.601149 + +Polar angle tht: 2.0508; Azimuth angle phi: 2.5307 +Force: 2.977899 -2.136974 2.156939 +Torque: 0.585213 -0.021273 -0.608536 + +Polar angle tht: 2.0508; Azimuth angle phi: 2.5744 +Force: 3.034979 -1.981936 2.113884 +Torque: 0.570254 -0.019344 -0.613633 + +Polar angle tht: 2.0508; Azimuth angle phi: 2.6180 +Force: 3.081516 -1.826207 2.069311 +Torque: 0.554805 -0.017200 -0.616471 + +Polar angle tht: 2.0508; Azimuth angle phi: 2.6616 +Force: 3.117382 -1.670545 2.023323 +Torque: 0.538892 -0.014855 -0.617093 + +Polar angle tht: 2.0508; Azimuth angle phi: 2.7053 +Force: 3.165629 -1.521816 1.993219 +Torque: 0.510956 -0.013276 -0.600308 + +Polar angle tht: 2.0508; Azimuth angle phi: 2.7489 +Force: 3.244553 -1.381129 1.991665 +Torque: 0.462728 -0.013232 -0.554122 + +Polar angle tht: 2.0508; Azimuth angle phi: 2.7925 +Force: 3.316148 -1.236878 1.990172 +Torque: 0.413602 -0.013183 -0.503718 + +Polar angle tht: 2.0508; Azimuth angle phi: 2.8362 +Force: 3.380097 -1.089423 1.988772 +Torque: 0.363674 -0.013131 -0.449480 + +Polar angle tht: 2.0508; Azimuth angle phi: 2.8798 +Force: 3.436114 -0.939136 1.987496 +Torque: 0.313041 -0.013080 -0.391822 + +Polar angle tht: 2.0508; Azimuth angle phi: 2.9234 +Force: 3.483948 -0.786400 1.986370 +Torque: 0.261801 -0.013033 -0.331182 + +Polar angle tht: 2.0508; Azimuth angle phi: 2.9671 +Force: 3.523383 -0.631609 1.985417 +Torque: 0.210053 -0.012991 -0.268021 + +Polar angle tht: 2.0508; Azimuth angle phi: 3.0107 +Force: 3.554241 -0.475163 1.984656 +Torque: 0.157897 -0.012956 -0.202820 + +Polar angle tht: 2.0508; Azimuth angle phi: 3.0543 +Force: 3.576384 -0.317470 1.984101 +Torque: 0.105435 -0.012931 -0.136076 + +Polar angle tht: 2.0508; Azimuth angle phi: 3.0980 +Force: 3.589709 -0.158944 1.983764 +Torque: 0.052768 -0.012915 -0.068296 + +Polar angle tht: 2.0508; Azimuth angle phi: 3.1416 +Force: 3.594158 0.000000 1.983651 +Torque: -0.000001 -0.012909 0.000004 + +Polar angle tht: 2.0508; Azimuth angle phi: 3.1852 +Force: 3.589709 0.158944 1.983764 +Torque: -0.052771 -0.012915 0.068304 + +Polar angle tht: 2.0508; Azimuth angle phi: 3.2289 +Force: 3.576384 0.317470 1.984101 +Torque: -0.105438 -0.012931 0.136084 + +Polar angle tht: 2.0508; Azimuth angle phi: 3.2725 +Force: 3.554241 0.475163 1.984656 +Torque: -0.157900 -0.012956 0.202828 + +Polar angle tht: 2.0508; Azimuth angle phi: 3.3161 +Force: 3.523383 0.631609 1.985417 +Torque: -0.210056 -0.012991 0.268029 + +Polar angle tht: 2.0508; Azimuth angle phi: 3.3598 +Force: 3.483948 0.786400 1.986370 +Torque: -0.261804 -0.013033 0.331189 + +Polar angle tht: 2.0508; Azimuth angle phi: 3.4034 +Force: 3.436114 0.939136 1.987496 +Torque: -0.313044 -0.013080 0.391830 + +Polar angle tht: 2.0508; Azimuth angle phi: 3.4470 +Force: 3.380097 1.089423 1.988772 +Torque: -0.363677 -0.013131 0.449488 + +Polar angle tht: 2.0508; Azimuth angle phi: 3.4907 +Force: 3.316148 1.236878 1.990172 +Torque: -0.413605 -0.013183 0.503725 + +Polar angle tht: 2.0508; Azimuth angle phi: 3.5343 +Force: 3.244553 1.381129 1.991665 +Torque: -0.462731 -0.013232 0.554129 + +Polar angle tht: 2.0508; Azimuth angle phi: 3.5779 +Force: 3.165629 1.521816 1.993219 +Torque: -0.510960 -0.013276 0.600316 + +Polar angle tht: 2.0508; Azimuth angle phi: 3.6216 +Force: 3.117382 1.670545 2.023323 +Torque: -0.538896 -0.014855 0.617100 + +Polar angle tht: 2.0508; Azimuth angle phi: 3.6652 +Force: 3.081516 1.826207 2.069311 +Torque: -0.554810 -0.017200 0.616480 + +Polar angle tht: 2.0508; Azimuth angle phi: 3.7088 +Force: 3.034979 1.981936 2.113884 +Torque: -0.570260 -0.019344 0.613643 + +Polar angle tht: 2.0508; Azimuth angle phi: 3.7525 +Force: 2.977899 2.136974 2.156939 +Torque: -0.585221 -0.021273 0.608546 + +Polar angle tht: 2.0508; Azimuth angle phi: 3.7961 +Force: 2.910467 2.290558 2.198372 +Torque: -0.599665 -0.022970 0.601160 + +Polar angle tht: 2.0508; Azimuth angle phi: 3.8397 +Force: 2.832939 2.441924 2.238084 +Torque: -0.613570 -0.024424 0.591466 + +Polar angle tht: 2.0508; Azimuth angle phi: 3.8834 +Force: 2.745630 2.590310 2.275976 +Torque: -0.626913 -0.025623 0.579461 + +Polar angle tht: 2.0508; Azimuth angle phi: 3.9270 +Force: 2.648918 2.734963 2.311955 +Torque: -0.639671 -0.026557 0.565153 + +Polar angle tht: 2.0508; Azimuth angle phi: 3.9706 +Force: 2.543237 2.875145 2.345930 +Torque: -0.651824 -0.027220 0.548565 + +Polar angle tht: 2.0508; Azimuth angle phi: 4.0143 +Force: 2.429076 3.010136 2.377813 +Torque: -0.663354 -0.027606 0.529733 + +Polar angle tht: 2.0508; Azimuth angle phi: 4.0579 +Force: 2.306974 3.139238 2.407522 +Torque: -0.674242 -0.027713 0.508706 + +Polar angle tht: 2.0508; Azimuth angle phi: 4.1015 +Force: 2.177521 3.261782 2.434978 +Torque: -0.684472 -0.027539 0.485549 + +Polar angle tht: 2.0508; Azimuth angle phi: 4.1452 +Force: 2.041350 3.377132 2.460108 +Torque: -0.694030 -0.027087 0.460335 + +Polar angle tht: 2.0508; Azimuth angle phi: 4.1888 +Force: 1.899135 3.484689 2.482843 +Torque: -0.702901 -0.026358 0.433154 + +Polar angle tht: 2.0508; Azimuth angle phi: 4.2324 +Force: 1.751583 3.583893 2.503119 +Torque: -0.711074 -0.025360 0.404106 + +Polar angle tht: 2.0508; Azimuth angle phi: 4.2761 +Force: 1.599435 3.674232 2.520880 +Torque: -0.718536 -0.024098 0.373302 + +Polar angle tht: 2.0508; Azimuth angle phi: 4.3197 +Force: 1.443458 3.755238 2.536074 +Torque: -0.725279 -0.022584 0.340865 + +Polar angle tht: 2.0508; Azimuth angle phi: 4.3633 +Force: 1.284438 3.826497 2.548655 +Torque: -0.731293 -0.020827 0.306927 + +Polar angle tht: 2.0508; Azimuth angle phi: 4.4070 +Force: 1.123180 3.887649 2.558585 +Torque: -0.736572 -0.018842 0.271632 + +Polar angle tht: 2.0508; Azimuth angle phi: 4.4506 +Force: 0.960496 3.938389 2.565830 +Torque: -0.741110 -0.016644 0.235128 + +Polar angle tht: 2.0508; Azimuth angle phi: 4.4942 +Force: 0.797207 3.978472 2.570365 +Torque: -0.744901 -0.014249 0.197575 + +Polar angle tht: 2.0508; Azimuth angle phi: 4.5379 +Force: 0.634129 4.007710 2.572171 +Torque: -0.747942 -0.011675 0.159137 + +Polar angle tht: 2.0508; Azimuth angle phi: 4.5815 +Force: 0.472077 4.025980 2.571236 +Torque: -0.750230 -0.008942 0.119984 + +Polar angle tht: 2.0508; Azimuth angle phi: 4.6251 +Force: 0.311851 4.033218 2.567555 +Torque: -0.751766 -0.006070 0.080291 + +Polar angle tht: 2.0508; Azimuth angle phi: 4.6688 +Force: 0.154238 4.029425 2.561130 +Torque: -0.752547 -0.003082 0.040236 + +Polar angle tht: 2.0508; Azimuth angle phi: 4.7124 +Force: 0.000000 4.014661 2.551970 +Torque: -0.752576 0.000000 -0.000000 + +Polar angle tht: 2.0508; Azimuth angle phi: 4.7560 +Force: -0.154238 4.029425 2.561130 +Torque: -0.752547 0.003082 -0.040236 + +Polar angle tht: 2.0508; Azimuth angle phi: 4.7997 +Force: -0.311851 4.033218 2.567555 +Torque: -0.751766 0.006070 -0.080291 + +Polar angle tht: 2.0508; Azimuth angle phi: 4.8433 +Force: -0.472077 4.025980 2.571236 +Torque: -0.750230 0.008942 -0.119984 + +Polar angle tht: 2.0508; Azimuth angle phi: 4.8869 +Force: -0.634129 4.007710 2.572171 +Torque: -0.747942 0.011675 -0.159137 + +Polar angle tht: 2.0508; Azimuth angle phi: 4.9306 +Force: -0.797207 3.978472 2.570365 +Torque: -0.744901 0.014249 -0.197575 + +Polar angle tht: 2.0508; Azimuth angle phi: 4.9742 +Force: -0.960496 3.938389 2.565830 +Torque: -0.741110 0.016644 -0.235128 + +Polar angle tht: 2.0508; Azimuth angle phi: 5.0178 +Force: -1.123180 3.887649 2.558585 +Torque: -0.736572 0.018842 -0.271632 + +Polar angle tht: 2.0508; Azimuth angle phi: 5.0615 +Force: -1.284438 3.826497 2.548655 +Torque: -0.731293 0.020827 -0.306927 + +Polar angle tht: 2.0508; Azimuth angle phi: 5.1051 +Force: -1.443458 3.755238 2.536074 +Torque: -0.725279 0.022584 -0.340865 + +Polar angle tht: 2.0508; Azimuth angle phi: 5.1487 +Force: -1.599435 3.674232 2.520880 +Torque: -0.718536 0.024098 -0.373302 + +Polar angle tht: 2.0508; Azimuth angle phi: 5.1924 +Force: -1.751583 3.583893 2.503119 +Torque: -0.711074 0.025360 -0.404106 + +Polar angle tht: 2.0508; Azimuth angle phi: 5.2360 +Force: -1.899135 3.484689 2.482843 +Torque: -0.702901 0.026358 -0.433154 + +Polar angle tht: 2.0508; Azimuth angle phi: 5.2796 +Force: -2.041350 3.377132 2.460108 +Torque: -0.694030 0.027087 -0.460335 + +Polar angle tht: 2.0508; Azimuth angle phi: 5.3233 +Force: -2.177521 3.261782 2.434978 +Torque: -0.684472 0.027539 -0.485549 + +Polar angle tht: 2.0508; Azimuth angle phi: 5.3669 +Force: -2.306974 3.139238 2.407522 +Torque: -0.674242 0.027713 -0.508706 + +Polar angle tht: 2.0508; Azimuth angle phi: 5.4105 +Force: -2.429076 3.010136 2.377813 +Torque: -0.663354 0.027606 -0.529733 + +Polar angle tht: 2.0508; Azimuth angle phi: 5.4542 +Force: -2.543237 2.875145 2.345930 +Torque: -0.651824 0.027220 -0.548565 + +Polar angle tht: 2.0508; Azimuth angle phi: 5.4978 +Force: -2.648918 2.734963 2.311955 +Torque: -0.639671 0.026557 -0.565153 + +Polar angle tht: 2.0508; Azimuth angle phi: 5.5414 +Force: -2.745630 2.590310 2.275976 +Torque: -0.626913 0.025623 -0.579461 + +Polar angle tht: 2.0508; Azimuth angle phi: 5.5851 +Force: -2.832939 2.441924 2.238084 +Torque: -0.613570 0.024424 -0.591466 + +Polar angle tht: 2.0508; Azimuth angle phi: 5.6287 +Force: -2.910467 2.290558 2.198372 +Torque: -0.599665 0.022970 -0.601160 + +Polar angle tht: 2.0508; Azimuth angle phi: 5.6723 +Force: -2.977899 2.136974 2.156939 +Torque: -0.585221 0.021273 -0.608546 + +Polar angle tht: 2.0508; Azimuth angle phi: 5.7160 +Force: -3.034979 1.981936 2.113884 +Torque: -0.570260 0.019344 -0.613643 + +Polar angle tht: 2.0508; Azimuth angle phi: 5.7596 +Force: -3.081516 1.826207 2.069311 +Torque: -0.554810 0.017200 -0.616480 + +Polar angle tht: 2.0508; Azimuth angle phi: 5.8032 +Force: -3.117382 1.670545 2.023323 +Torque: -0.538896 0.014855 -0.617100 + +Polar angle tht: 2.0508; Azimuth angle phi: 5.8469 +Force: -3.165629 1.521816 1.993219 +Torque: -0.510960 0.013276 -0.600316 + +Polar angle tht: 2.0508; Azimuth angle phi: 5.8905 +Force: -3.244553 1.381129 1.991665 +Torque: -0.462731 0.013232 -0.554129 + +Polar angle tht: 2.0508; Azimuth angle phi: 5.9341 +Force: -3.316148 1.236878 1.990172 +Torque: -0.413605 0.013183 -0.503725 + +Polar angle tht: 2.0508; Azimuth angle phi: 5.9778 +Force: -3.380097 1.089423 1.988772 +Torque: -0.363677 0.013131 -0.449488 + +Polar angle tht: 2.0508; Azimuth angle phi: 6.0214 +Force: -3.436114 0.939136 1.987496 +Torque: -0.313044 0.013080 -0.391830 + +Polar angle tht: 2.0508; Azimuth angle phi: 6.0650 +Force: -3.483948 0.786400 1.986370 +Torque: -0.261804 0.013033 -0.331189 + +Polar angle tht: 2.0508; Azimuth angle phi: 6.1087 +Force: -3.523383 0.631609 1.985417 +Torque: -0.210056 0.012991 -0.268029 + +Polar angle tht: 2.0508; Azimuth angle phi: 6.1523 +Force: -3.554241 0.475163 1.984656 +Torque: -0.157900 0.012956 -0.202828 + +Polar angle tht: 2.0508; Azimuth angle phi: 6.1959 +Force: -3.576384 0.317470 1.984101 +Torque: -0.105438 0.012931 -0.136084 + +Polar angle tht: 2.0508; Azimuth angle phi: 6.2396 +Force: -3.589709 0.158944 1.983764 +Torque: -0.052771 0.012915 -0.068304 + +Polar angle tht: 2.0508; Azimuth angle phi: 6.2832 +Force: -3.594158 0.000000 1.983651 +Torque: -0.000001 0.012909 -0.000004 + +Polar angle tht: 2.0944; Azimuth angle phi: 0.0000 +Force: -3.675228 0.000000 2.259349 +Torque: -0.000002 0.015788 -0.000004 + +Polar angle tht: 2.0944; Azimuth angle phi: 0.0436 +Force: -3.670750 -0.163713 2.259433 +Torque: 0.054609 0.015789 0.065102 + +Polar angle tht: 2.0944; Azimuth angle phi: 0.0873 +Force: -3.657336 -0.327005 2.259682 +Torque: 0.109113 0.015795 0.129713 + +Polar angle tht: 2.0944; Azimuth angle phi: 0.1309 +Force: -3.635046 -0.489455 2.260092 +Torque: 0.163406 0.015803 0.193336 + +Polar angle tht: 2.0944; Azimuth angle phi: 0.1745 +Force: -3.603977 -0.650648 2.260651 +Torque: 0.217383 0.015812 0.255488 + +Polar angle tht: 2.0944; Azimuth angle phi: 0.2182 +Force: -3.564265 -0.810171 2.261346 +Torque: 0.270938 0.015823 0.315696 + +Polar angle tht: 2.0944; Azimuth angle phi: 0.2618 +Force: -3.516085 -0.967619 2.262160 +Torque: 0.323968 0.015832 0.373501 + +Polar angle tht: 2.0944; Azimuth angle phi: 0.3054 +Force: -3.459646 -1.122595 2.263070 +Torque: 0.376371 0.015838 0.428463 + +Polar angle tht: 2.0944; Azimuth angle phi: 0.3491 +Force: -3.395193 -1.274712 2.264052 +Torque: 0.428045 0.015838 0.480165 + +Polar angle tht: 2.0944; Azimuth angle phi: 0.3927 +Force: -3.323006 -1.423592 2.265079 +Torque: 0.478890 0.015830 0.528212 + +Polar angle tht: 2.0944; Azimuth angle phi: 0.4363 +Force: -3.243395 -1.568872 2.266120 +Torque: 0.528809 0.015811 0.572239 + +Polar angle tht: 2.0944; Azimuth angle phi: 0.4800 +Force: -3.156701 -1.710199 2.267140 +Torque: 0.577704 0.015777 0.611911 + +Polar angle tht: 2.0944; Azimuth angle phi: 0.5236 +Force: -3.084790 -1.855053 2.286299 +Torque: 0.613162 0.016607 0.632748 + +Polar angle tht: 2.0944; Azimuth angle phi: 0.5672 +Force: -3.036578 -2.010353 2.332261 +Torque: 0.629056 0.018646 0.628864 + +Polar angle tht: 2.0944; Azimuth angle phi: 0.6109 +Force: -2.978042 -2.164806 2.376624 +Torque: 0.644450 0.020478 0.622743 + +Polar angle tht: 2.0944; Azimuth angle phi: 0.6545 +Force: -2.909374 -2.317672 2.419284 +Torque: 0.659319 0.022090 0.614358 + +Polar angle tht: 2.0944; Azimuth angle phi: 0.6981 +Force: -2.830823 -2.468211 2.460140 +Torque: 0.673637 0.023469 0.603695 + +Polar angle tht: 2.0944; Azimuth angle phi: 0.7418 +Force: -2.742702 -2.615685 2.499092 +Torque: 0.687381 0.024604 0.590752 + +Polar angle tht: 2.0944; Azimuth angle phi: 0.7854 +Force: -2.645379 -2.759365 2.536046 +Torque: 0.700527 0.025488 0.575541 + +Polar angle tht: 2.0944; Azimuth angle phi: 0.8290 +Force: -2.539277 -2.898535 2.570910 +Torque: 0.713055 0.026112 0.558087 + +Polar angle tht: 2.0944; Azimuth angle phi: 0.8727 +Force: -2.424871 -3.032499 2.603596 +Torque: 0.724945 0.026472 0.538428 + +Polar angle tht: 2.0944; Azimuth angle phi: 0.9163 +Force: -2.302689 -3.160581 2.634020 +Torque: 0.736177 0.026566 0.516613 + +Polar angle tht: 2.0944; Azimuth angle phi: 0.9599 +Force: -2.173303 -3.282135 2.662105 +Torque: 0.746735 0.026392 0.492706 + +Polar angle tht: 2.0944; Azimuth angle phi: 1.0036 +Force: -2.037326 -3.396544 2.687775 +Torque: 0.756604 0.025951 0.466782 + +Polar angle tht: 2.0944; Azimuth angle phi: 1.0472 +Force: -1.895413 -3.503230 2.710964 +Torque: 0.765767 0.025248 0.438930 + +Polar angle tht: 2.0944; Azimuth angle phi: 1.0908 +Force: -1.748252 -3.601651 2.731606 +Torque: 0.774213 0.024287 0.409248 + +Polar angle tht: 2.0944; Azimuth angle phi: 1.1345 +Force: -1.596560 -3.691310 2.749646 +Torque: 0.781930 0.023075 0.377847 + +Polar angle tht: 2.0944; Azimuth angle phi: 1.1781 +Force: -1.441080 -3.771757 2.765031 +Torque: 0.788906 0.021621 0.344848 + +Polar angle tht: 2.0944; Azimuth angle phi: 1.2217 +Force: -1.282577 -3.842589 2.777717 +Torque: 0.795134 0.019937 0.310380 + +Polar angle tht: 2.0944; Azimuth angle phi: 1.2654 +Force: -1.121829 -3.903458 2.787666 +Torque: 0.800604 0.018035 0.274584 + +Polar angle tht: 2.0944; Azimuth angle phi: 1.3090 +Force: -0.959625 -3.954069 2.794844 +Torque: 0.805311 0.015929 0.237607 + +Polar angle tht: 2.0944; Azimuth angle phi: 1.3526 +Force: -0.796759 -3.994182 2.799228 +Torque: 0.809249 0.013635 0.199604 + +Polar angle tht: 2.0944; Azimuth angle phi: 1.3963 +Force: -0.634026 -4.023617 2.800798 +Torque: 0.812414 0.011171 0.160735 + +Polar angle tht: 2.0944; Azimuth angle phi: 1.4399 +Force: -0.472213 -4.042252 2.799545 +Torque: 0.814803 0.008555 0.121168 + +Polar angle tht: 2.0944; Azimuth angle phi: 1.4835 +Force: -0.312100 -4.050024 2.795462 +Torque: 0.816414 0.005808 0.081074 + +Polar angle tht: 2.0944; Azimuth angle phi: 1.5272 +Force: -0.154448 -4.046932 2.788555 +Torque: 0.817248 0.002949 0.040626 + +Polar angle tht: 2.0944; Azimuth angle phi: 1.5708 +Force: 0.000000 -4.033034 2.778833 +Torque: 0.817305 0.000000 0.000000 + +Polar angle tht: 2.0944; Azimuth angle phi: 1.6144 +Force: 0.154448 -4.046932 2.788555 +Torque: 0.817248 -0.002949 -0.040626 + +Polar angle tht: 2.0944; Azimuth angle phi: 1.6581 +Force: 0.312100 -4.050024 2.795462 +Torque: 0.816414 -0.005808 -0.081074 + +Polar angle tht: 2.0944; Azimuth angle phi: 1.7017 +Force: 0.472213 -4.042252 2.799545 +Torque: 0.814803 -0.008555 -0.121168 + +Polar angle tht: 2.0944; Azimuth angle phi: 1.7453 +Force: 0.634026 -4.023617 2.800798 +Torque: 0.812414 -0.011171 -0.160735 + +Polar angle tht: 2.0944; Azimuth angle phi: 1.7890 +Force: 0.796759 -3.994182 2.799228 +Torque: 0.809249 -0.013635 -0.199604 + +Polar angle tht: 2.0944; Azimuth angle phi: 1.8326 +Force: 0.959625 -3.954069 2.794844 +Torque: 0.805311 -0.015929 -0.237607 + +Polar angle tht: 2.0944; Azimuth angle phi: 1.8762 +Force: 1.121829 -3.903458 2.787666 +Torque: 0.800604 -0.018035 -0.274584 + +Polar angle tht: 2.0944; Azimuth angle phi: 1.9199 +Force: 1.282577 -3.842589 2.777717 +Torque: 0.795134 -0.019937 -0.310380 + +Polar angle tht: 2.0944; Azimuth angle phi: 1.9635 +Force: 1.441080 -3.771757 2.765031 +Torque: 0.788906 -0.021621 -0.344848 + +Polar angle tht: 2.0944; Azimuth angle phi: 2.0071 +Force: 1.596560 -3.691310 2.749646 +Torque: 0.781930 -0.023075 -0.377847 + +Polar angle tht: 2.0944; Azimuth angle phi: 2.0508 +Force: 1.748252 -3.601651 2.731606 +Torque: 0.774213 -0.024287 -0.409248 + +Polar angle tht: 2.0944; Azimuth angle phi: 2.0944 +Force: 1.895413 -3.503230 2.710964 +Torque: 0.765767 -0.025248 -0.438930 + +Polar angle tht: 2.0944; Azimuth angle phi: 2.1380 +Force: 2.037326 -3.396544 2.687775 +Torque: 0.756604 -0.025951 -0.466782 + +Polar angle tht: 2.0944; Azimuth angle phi: 2.1817 +Force: 2.173303 -3.282135 2.662105 +Torque: 0.746735 -0.026392 -0.492706 + +Polar angle tht: 2.0944; Azimuth angle phi: 2.2253 +Force: 2.302689 -3.160581 2.634020 +Torque: 0.736177 -0.026566 -0.516613 + +Polar angle tht: 2.0944; Azimuth angle phi: 2.2689 +Force: 2.424871 -3.032499 2.603596 +Torque: 0.724945 -0.026472 -0.538428 + +Polar angle tht: 2.0944; Azimuth angle phi: 2.3126 +Force: 2.539277 -2.898535 2.570910 +Torque: 0.713055 -0.026112 -0.558087 + +Polar angle tht: 2.0944; Azimuth angle phi: 2.3562 +Force: 2.645379 -2.759365 2.536046 +Torque: 0.700527 -0.025488 -0.575541 + +Polar angle tht: 2.0944; Azimuth angle phi: 2.3998 +Force: 2.742702 -2.615685 2.499092 +Torque: 0.687381 -0.024604 -0.590752 + +Polar angle tht: 2.0944; Azimuth angle phi: 2.4435 +Force: 2.830823 -2.468211 2.460140 +Torque: 0.673637 -0.023469 -0.603695 + +Polar angle tht: 2.0944; Azimuth angle phi: 2.4871 +Force: 2.909374 -2.317672 2.419284 +Torque: 0.659319 -0.022090 -0.614358 + +Polar angle tht: 2.0944; Azimuth angle phi: 2.5307 +Force: 2.978042 -2.164806 2.376624 +Torque: 0.644450 -0.020478 -0.622743 + +Polar angle tht: 2.0944; Azimuth angle phi: 2.5744 +Force: 3.036578 -2.010353 2.332261 +Torque: 0.629056 -0.018646 -0.628864 + +Polar angle tht: 2.0944; Azimuth angle phi: 2.6180 +Force: 3.084790 -1.855053 2.286299 +Torque: 0.613162 -0.016607 -0.632748 + +Polar angle tht: 2.0944; Azimuth angle phi: 2.6616 +Force: 3.156701 -1.710199 2.267140 +Torque: 0.577704 -0.015777 -0.611911 + +Polar angle tht: 2.0944; Azimuth angle phi: 2.7053 +Force: 3.243395 -1.568872 2.266120 +Torque: 0.528809 -0.015811 -0.572239 + +Polar angle tht: 2.0944; Azimuth angle phi: 2.7489 +Force: 3.323006 -1.423592 2.265079 +Torque: 0.478890 -0.015830 -0.528212 + +Polar angle tht: 2.0944; Azimuth angle phi: 2.7925 +Force: 3.395193 -1.274712 2.264052 +Torque: 0.428045 -0.015838 -0.480165 + +Polar angle tht: 2.0944; Azimuth angle phi: 2.8362 +Force: 3.459646 -1.122595 2.263070 +Torque: 0.376371 -0.015838 -0.428463 + +Polar angle tht: 2.0944; Azimuth angle phi: 2.8798 +Force: 3.516085 -0.967619 2.262160 +Torque: 0.323968 -0.015832 -0.373501 + +Polar angle tht: 2.0944; Azimuth angle phi: 2.9234 +Force: 3.564265 -0.810171 2.261346 +Torque: 0.270938 -0.015823 -0.315696 + +Polar angle tht: 2.0944; Azimuth angle phi: 2.9671 +Force: 3.603977 -0.650648 2.260651 +Torque: 0.217383 -0.015812 -0.255488 + +Polar angle tht: 2.0944; Azimuth angle phi: 3.0107 +Force: 3.635046 -0.489455 2.260092 +Torque: 0.163406 -0.015803 -0.193336 + +Polar angle tht: 2.0944; Azimuth angle phi: 3.0543 +Force: 3.657336 -0.327005 2.259682 +Torque: 0.109113 -0.015795 -0.129713 + +Polar angle tht: 2.0944; Azimuth angle phi: 3.0980 +Force: 3.670750 -0.163713 2.259433 +Torque: 0.054609 -0.015789 -0.065102 + +Polar angle tht: 2.0944; Azimuth angle phi: 3.1416 +Force: 3.675228 0.000000 2.259349 +Torque: -0.000002 -0.015788 0.000004 + +Polar angle tht: 2.0944; Azimuth angle phi: 3.1852 +Force: 3.670750 0.163713 2.259433 +Torque: -0.054612 -0.015789 0.065110 + +Polar angle tht: 2.0944; Azimuth angle phi: 3.2289 +Force: 3.657336 0.327005 2.259682 +Torque: -0.109117 -0.015795 0.129721 + +Polar angle tht: 2.0944; Azimuth angle phi: 3.2725 +Force: 3.635046 0.489455 2.260092 +Torque: -0.163410 -0.015803 0.193345 + +Polar angle tht: 2.0944; Azimuth angle phi: 3.3161 +Force: 3.603977 0.650648 2.260651 +Torque: -0.217386 -0.015812 0.255497 + +Polar angle tht: 2.0944; Azimuth angle phi: 3.3598 +Force: 3.564265 0.810171 2.261346 +Torque: -0.270942 -0.015823 0.315704 + +Polar angle tht: 2.0944; Azimuth angle phi: 3.4034 +Force: 3.516085 0.967619 2.262160 +Torque: -0.323972 -0.015832 0.373509 + +Polar angle tht: 2.0944; Azimuth angle phi: 3.4470 +Force: 3.459646 1.122595 2.263070 +Torque: -0.376375 -0.015838 0.428471 + +Polar angle tht: 2.0944; Azimuth angle phi: 3.4907 +Force: 3.395193 1.274712 2.264052 +Torque: -0.428049 -0.015838 0.480173 + +Polar angle tht: 2.0944; Azimuth angle phi: 3.5343 +Force: 3.323006 1.423592 2.265079 +Torque: -0.478894 -0.015830 0.528220 + +Polar angle tht: 2.0944; Azimuth angle phi: 3.5779 +Force: 3.243395 1.568872 2.266120 +Torque: -0.528813 -0.015811 0.572247 + +Polar angle tht: 2.0944; Azimuth angle phi: 3.6216 +Force: 3.156701 1.710199 2.267140 +Torque: -0.577708 -0.015777 0.611919 + +Polar angle tht: 2.0944; Azimuth angle phi: 3.6652 +Force: 3.084790 1.855053 2.286299 +Torque: -0.613167 -0.016607 0.632756 + +Polar angle tht: 2.0944; Azimuth angle phi: 3.7088 +Force: 3.036578 2.010353 2.332261 +Torque: -0.629061 -0.018646 0.628873 + +Polar angle tht: 2.0944; Azimuth angle phi: 3.7525 +Force: 2.978042 2.164806 2.376624 +Torque: -0.644457 -0.020478 0.622753 + +Polar angle tht: 2.0944; Azimuth angle phi: 3.7961 +Force: 2.909374 2.317672 2.419284 +Torque: -0.659327 -0.022090 0.614368 + +Polar angle tht: 2.0944; Azimuth angle phi: 3.8397 +Force: 2.830823 2.468211 2.460140 +Torque: -0.673646 -0.023469 0.603705 + +Polar angle tht: 2.0944; Azimuth angle phi: 3.8834 +Force: 2.742702 2.615685 2.499092 +Torque: -0.687390 -0.024604 0.590763 + +Polar angle tht: 2.0944; Azimuth angle phi: 3.9270 +Force: 2.645379 2.759365 2.536046 +Torque: -0.700538 -0.025488 0.575553 + +Polar angle tht: 2.0944; Azimuth angle phi: 3.9706 +Force: 2.539277 2.898535 2.570910 +Torque: -0.713066 -0.026112 0.558099 + +Polar angle tht: 2.0944; Azimuth angle phi: 4.0143 +Force: 2.424871 3.032499 2.603596 +Torque: -0.724957 -0.026472 0.538439 + +Polar angle tht: 2.0944; Azimuth angle phi: 4.0579 +Force: 2.302689 3.160581 2.634020 +Torque: -0.736190 -0.026566 0.516624 + +Polar angle tht: 2.0944; Azimuth angle phi: 4.1015 +Force: 2.173303 3.282135 2.662105 +Torque: -0.746749 -0.026392 0.492717 + +Polar angle tht: 2.0944; Azimuth angle phi: 4.1452 +Force: 2.037326 3.396544 2.687775 +Torque: -0.756618 -0.025951 0.466793 + +Polar angle tht: 2.0944; Azimuth angle phi: 4.1888 +Force: 1.895413 3.503230 2.710964 +Torque: -0.765782 -0.025248 0.438940 + +Polar angle tht: 2.0944; Azimuth angle phi: 4.2324 +Force: 1.748252 3.601651 2.731606 +Torque: -0.774229 -0.024287 0.409258 + +Polar angle tht: 2.0944; Azimuth angle phi: 4.2761 +Force: 1.596560 3.691310 2.749646 +Torque: -0.781946 -0.023075 0.377857 + +Polar angle tht: 2.0944; Azimuth angle phi: 4.3197 +Force: 1.441080 3.771757 2.765031 +Torque: -0.788923 -0.021621 0.344856 + +Polar angle tht: 2.0944; Azimuth angle phi: 4.3633 +Force: 1.282577 3.842589 2.777717 +Torque: -0.795151 -0.019937 0.310388 + +Polar angle tht: 2.0944; Azimuth angle phi: 4.4070 +Force: 1.121829 3.903458 2.787666 +Torque: -0.800622 -0.018035 0.274591 + +Polar angle tht: 2.0944; Azimuth angle phi: 4.4506 +Force: 0.959625 3.954069 2.794844 +Torque: -0.805329 -0.015929 0.237613 + +Polar angle tht: 2.0944; Azimuth angle phi: 4.4942 +Force: 0.796759 3.994182 2.799228 +Torque: -0.809267 -0.013635 0.199609 + +Polar angle tht: 2.0944; Azimuth angle phi: 4.5379 +Force: 0.634026 4.023617 2.800798 +Torque: -0.812432 -0.011171 0.160740 + +Polar angle tht: 2.0944; Azimuth angle phi: 4.5815 +Force: 0.472213 4.042252 2.799545 +Torque: -0.814821 -0.008555 0.121172 + +Polar angle tht: 2.0944; Azimuth angle phi: 4.6251 +Force: 0.312100 4.050024 2.795462 +Torque: -0.816433 -0.005808 0.081076 + +Polar angle tht: 2.0944; Azimuth angle phi: 4.6688 +Force: 0.154448 4.046932 2.788555 +Torque: -0.817267 -0.002949 0.040627 + +Polar angle tht: 2.0944; Azimuth angle phi: 4.7124 +Force: 0.000000 4.033034 2.778833 +Torque: -0.817324 0.000000 -0.000000 + +Polar angle tht: 2.0944; Azimuth angle phi: 4.7560 +Force: -0.154448 4.046932 2.788555 +Torque: -0.817267 0.002949 -0.040627 + +Polar angle tht: 2.0944; Azimuth angle phi: 4.7997 +Force: -0.312100 4.050024 2.795462 +Torque: -0.816433 0.005808 -0.081076 + +Polar angle tht: 2.0944; Azimuth angle phi: 4.8433 +Force: -0.472213 4.042252 2.799545 +Torque: -0.814821 0.008555 -0.121172 + +Polar angle tht: 2.0944; Azimuth angle phi: 4.8869 +Force: -0.634026 4.023617 2.800798 +Torque: -0.812432 0.011171 -0.160740 + +Polar angle tht: 2.0944; Azimuth angle phi: 4.9306 +Force: -0.796759 3.994182 2.799228 +Torque: -0.809267 0.013635 -0.199609 + +Polar angle tht: 2.0944; Azimuth angle phi: 4.9742 +Force: -0.959625 3.954069 2.794844 +Torque: -0.805329 0.015929 -0.237613 + +Polar angle tht: 2.0944; Azimuth angle phi: 5.0178 +Force: -1.121829 3.903458 2.787666 +Torque: -0.800622 0.018035 -0.274591 + +Polar angle tht: 2.0944; Azimuth angle phi: 5.0615 +Force: -1.282577 3.842589 2.777717 +Torque: -0.795151 0.019937 -0.310388 + +Polar angle tht: 2.0944; Azimuth angle phi: 5.1051 +Force: -1.441080 3.771757 2.765031 +Torque: -0.788923 0.021621 -0.344856 + +Polar angle tht: 2.0944; Azimuth angle phi: 5.1487 +Force: -1.596560 3.691310 2.749646 +Torque: -0.781946 0.023075 -0.377857 + +Polar angle tht: 2.0944; Azimuth angle phi: 5.1924 +Force: -1.748252 3.601651 2.731606 +Torque: -0.774229 0.024287 -0.409258 + +Polar angle tht: 2.0944; Azimuth angle phi: 5.2360 +Force: -1.895413 3.503230 2.710964 +Torque: -0.765782 0.025248 -0.438940 + +Polar angle tht: 2.0944; Azimuth angle phi: 5.2796 +Force: -2.037326 3.396544 2.687775 +Torque: -0.756618 0.025951 -0.466793 + +Polar angle tht: 2.0944; Azimuth angle phi: 5.3233 +Force: -2.173303 3.282135 2.662105 +Torque: -0.746749 0.026392 -0.492717 + +Polar angle tht: 2.0944; Azimuth angle phi: 5.3669 +Force: -2.302689 3.160581 2.634020 +Torque: -0.736190 0.026566 -0.516624 + +Polar angle tht: 2.0944; Azimuth angle phi: 5.4105 +Force: -2.424871 3.032499 2.603596 +Torque: -0.724957 0.026472 -0.538439 + +Polar angle tht: 2.0944; Azimuth angle phi: 5.4542 +Force: -2.539277 2.898535 2.570910 +Torque: -0.713066 0.026112 -0.558099 + +Polar angle tht: 2.0944; Azimuth angle phi: 5.4978 +Force: -2.645379 2.759365 2.536046 +Torque: -0.700538 0.025488 -0.575553 + +Polar angle tht: 2.0944; Azimuth angle phi: 5.5414 +Force: -2.742702 2.615685 2.499092 +Torque: -0.687390 0.024604 -0.590763 + +Polar angle tht: 2.0944; Azimuth angle phi: 5.5851 +Force: -2.830823 2.468211 2.460140 +Torque: -0.673646 0.023469 -0.603705 + +Polar angle tht: 2.0944; Azimuth angle phi: 5.6287 +Force: -2.909374 2.317672 2.419284 +Torque: -0.659327 0.022090 -0.614368 + +Polar angle tht: 2.0944; Azimuth angle phi: 5.6723 +Force: -2.978042 2.164806 2.376624 +Torque: -0.644457 0.020478 -0.622753 + +Polar angle tht: 2.0944; Azimuth angle phi: 5.7160 +Force: -3.036578 2.010353 2.332261 +Torque: -0.629061 0.018646 -0.628873 + +Polar angle tht: 2.0944; Azimuth angle phi: 5.7596 +Force: -3.084790 1.855053 2.286299 +Torque: -0.613167 0.016607 -0.632756 + +Polar angle tht: 2.0944; Azimuth angle phi: 5.8032 +Force: -3.156701 1.710199 2.267140 +Torque: -0.577708 0.015777 -0.611919 + +Polar angle tht: 2.0944; Azimuth angle phi: 5.8469 +Force: -3.243395 1.568872 2.266120 +Torque: -0.528813 0.015811 -0.572247 + +Polar angle tht: 2.0944; Azimuth angle phi: 5.8905 +Force: -3.323006 1.423592 2.265079 +Torque: -0.478894 0.015830 -0.528220 + +Polar angle tht: 2.0944; Azimuth angle phi: 5.9341 +Force: -3.395193 1.274712 2.264052 +Torque: -0.428049 0.015838 -0.480173 + +Polar angle tht: 2.0944; Azimuth angle phi: 5.9778 +Force: -3.459646 1.122595 2.263070 +Torque: -0.376375 0.015838 -0.428471 + +Polar angle tht: 2.0944; Azimuth angle phi: 6.0214 +Force: -3.516085 0.967619 2.262160 +Torque: -0.323972 0.015832 -0.373509 + +Polar angle tht: 2.0944; Azimuth angle phi: 6.0650 +Force: -3.564265 0.810171 2.261346 +Torque: -0.270942 0.015823 -0.315704 + +Polar angle tht: 2.0944; Azimuth angle phi: 6.1087 +Force: -3.603977 0.650648 2.260651 +Torque: -0.217386 0.015812 -0.255497 + +Polar angle tht: 2.0944; Azimuth angle phi: 6.1523 +Force: -3.635046 0.489455 2.260092 +Torque: -0.163410 0.015803 -0.193345 + +Polar angle tht: 2.0944; Azimuth angle phi: 6.1959 +Force: -3.657336 0.327005 2.259682 +Torque: -0.109117 0.015795 -0.129721 + +Polar angle tht: 2.0944; Azimuth angle phi: 6.2396 +Force: -3.670750 0.163713 2.259433 +Torque: -0.054612 0.015789 -0.065110 + +Polar angle tht: 2.0944; Azimuth angle phi: 6.2832 +Force: -3.675228 0.000000 2.259349 +Torque: -0.000002 0.015788 -0.000004 + +Polar angle tht: 2.1380; Azimuth angle phi: 0.0000 +Force: -3.734395 0.000000 2.543909 +Torque: -0.000002 0.018441 -0.000004 + +Polar angle tht: 2.1380; Azimuth angle phi: 0.0436 +Force: -3.729912 -0.167487 2.543965 +Torque: 0.056114 0.018440 0.061743 + +Polar angle tht: 2.1380; Azimuth angle phi: 0.0873 +Force: -3.716480 -0.334552 2.544130 +Torque: 0.112122 0.018435 0.123021 + +Polar angle tht: 2.1380; Azimuth angle phi: 0.1309 +Force: -3.694158 -0.500772 2.544400 +Torque: 0.167913 0.018426 0.183362 + +Polar angle tht: 2.1380; Azimuth angle phi: 0.1745 +Force: -3.663041 -0.665729 2.544765 +Torque: 0.223378 0.018412 0.242308 + +Polar angle tht: 2.1380; Azimuth angle phi: 0.2182 +Force: -3.623260 -0.829010 2.545211 +Torque: 0.278412 0.018393 0.299410 + +Polar angle tht: 2.1380; Azimuth angle phi: 0.2618 +Force: -3.574986 -0.990209 2.545723 +Torque: 0.332907 0.018365 0.354232 + +Polar angle tht: 2.1380; Azimuth angle phi: 0.3054 +Force: -3.518421 -1.148925 2.546281 +Torque: 0.386757 0.018329 0.406360 + +Polar angle tht: 2.1380; Azimuth angle phi: 0.3491 +Force: -3.453805 -1.304768 2.546862 +Torque: 0.439860 0.018280 0.455394 + +Polar angle tht: 2.1380; Azimuth angle phi: 0.3927 +Force: -3.381408 -1.457359 2.547440 +Torque: 0.492113 0.018218 0.500962 + +Polar angle tht: 2.1380; Azimuth angle phi: 0.4363 +Force: -3.301533 -1.606332 2.547987 +Torque: 0.543414 0.018138 0.542718 + +Polar angle tht: 2.1380; Azimuth angle phi: 0.4800 +Force: -3.214510 -1.751331 2.548473 +Torque: 0.593665 0.018039 0.580344 + +Polar angle tht: 2.1380; Azimuth angle phi: 0.5236 +Force: -3.120700 -1.892017 2.548862 +Torque: 0.642769 0.017918 0.613552 + +Polar angle tht: 2.1380; Azimuth angle phi: 0.5672 +Force: -3.023300 -2.029223 2.551785 +Torque: 0.688828 0.017885 0.640234 + +Polar angle tht: 2.1380; Azimuth angle phi: 0.6109 +Force: -2.963664 -2.182376 2.597190 +Torque: 0.704571 0.019617 0.633170 + +Polar angle tht: 2.1380; Azimuth angle phi: 0.6545 +Force: -2.894152 -2.333824 2.640822 +Torque: 0.719780 0.021140 0.623877 + +Polar angle tht: 2.1380; Azimuth angle phi: 0.6981 +Force: -2.815012 -2.482852 2.682580 +Torque: 0.734431 0.022441 0.612345 + +Polar angle tht: 2.1380; Azimuth angle phi: 0.7418 +Force: -2.726546 -2.628747 2.722363 +Torque: 0.748499 0.023511 0.598576 + +Polar angle tht: 2.1380; Azimuth angle phi: 0.7854 +Force: -2.629115 -2.770808 2.760077 +Torque: 0.761960 0.024342 0.582583 + +Polar angle tht: 2.1380; Azimuth angle phi: 0.8290 +Force: -2.523128 -2.908344 2.795628 +Torque: 0.774791 0.024926 0.564392 + +Polar angle tht: 2.1380; Azimuth angle phi: 0.8727 +Force: -2.409049 -3.040685 2.828929 +Torque: 0.786973 0.025260 0.544042 + +Polar angle tht: 2.1380; Azimuth angle phi: 0.9163 +Force: -2.287385 -3.167179 2.859897 +Torque: 0.798486 0.025341 0.521585 + +Polar angle tht: 2.1380; Azimuth angle phi: 0.9599 +Force: -2.158692 -3.287204 2.888452 +Torque: 0.809312 0.025167 0.497084 + +Polar angle tht: 2.1380; Azimuth angle phi: 1.0036 +Force: -2.023563 -3.400167 2.914521 +Torque: 0.819435 0.024741 0.470613 + +Polar angle tht: 2.1380; Azimuth angle phi: 1.0472 +Force: -1.882631 -3.505509 2.938037 +Torque: 0.828838 0.024065 0.442260 + +Polar angle tht: 2.1380; Azimuth angle phi: 1.0908 +Force: -1.736558 -3.602710 2.958935 +Torque: 0.837510 0.023144 0.412122 + +Polar angle tht: 2.1380; Azimuth angle phi: 1.1345 +Force: -1.586040 -3.691291 2.977160 +Torque: 0.845436 0.021985 0.380309 + +Polar angle tht: 2.1380; Azimuth angle phi: 1.1781 +Force: -1.431793 -3.770818 2.992659 +Torque: 0.852606 0.020597 0.346937 + +Polar angle tht: 2.1380; Azimuth angle phi: 1.2217 +Force: -1.274554 -3.840903 3.005390 +Torque: 0.859010 0.018990 0.312135 + +Polar angle tht: 2.1380; Azimuth angle phi: 1.2654 +Force: -1.115075 -3.901210 3.015314 +Torque: 0.864639 0.017176 0.276040 + +Polar angle tht: 2.1380; Azimuth angle phi: 1.3090 +Force: -0.954118 -3.951453 3.022399 +Torque: 0.869488 0.015169 0.238794 + +Polar angle tht: 2.1380; Azimuth angle phi: 1.3526 +Force: -0.792450 -3.991403 3.026622 +Torque: 0.873549 0.012983 0.200550 + +Polar angle tht: 2.1380; Azimuth angle phi: 1.3963 +Force: -0.630837 -4.020884 3.027965 +Torque: 0.876819 0.010636 0.161464 + +Polar angle tht: 2.1380; Azimuth angle phi: 1.4399 +Force: -0.470042 -4.039778 3.026418 +Torque: 0.879293 0.008145 0.121698 + +Polar angle tht: 2.1380; Azimuth angle phi: 1.4835 +Force: -0.310815 -4.048023 3.021977 +Torque: 0.880972 0.005529 0.081419 + +Polar angle tht: 2.1380; Azimuth angle phi: 1.5272 +Force: -0.153895 -4.045615 3.014647 +Torque: 0.881852 0.002807 0.040796 + +Polar angle tht: 2.1380; Azimuth angle phi: 1.5708 +Force: 0.000000 -4.032608 3.004439 +Torque: 0.881937 0.000000 0.000000 + +Polar angle tht: 2.1380; Azimuth angle phi: 1.6144 +Force: 0.153895 -4.045615 3.014647 +Torque: 0.881852 -0.002807 -0.040796 + +Polar angle tht: 2.1380; Azimuth angle phi: 1.6581 +Force: 0.310815 -4.048023 3.021977 +Torque: 0.880972 -0.005529 -0.081419 + +Polar angle tht: 2.1380; Azimuth angle phi: 1.7017 +Force: 0.470042 -4.039778 3.026418 +Torque: 0.879293 -0.008145 -0.121698 + +Polar angle tht: 2.1380; Azimuth angle phi: 1.7453 +Force: 0.630837 -4.020884 3.027965 +Torque: 0.876819 -0.010636 -0.161464 + +Polar angle tht: 2.1380; Azimuth angle phi: 1.7890 +Force: 0.792450 -3.991403 3.026622 +Torque: 0.873549 -0.012983 -0.200550 + +Polar angle tht: 2.1380; Azimuth angle phi: 1.8326 +Force: 0.954118 -3.951453 3.022399 +Torque: 0.869488 -0.015169 -0.238794 + +Polar angle tht: 2.1380; Azimuth angle phi: 1.8762 +Force: 1.115075 -3.901210 3.015314 +Torque: 0.864639 -0.017176 -0.276040 + +Polar angle tht: 2.1380; Azimuth angle phi: 1.9199 +Force: 1.274554 -3.840903 3.005390 +Torque: 0.859010 -0.018990 -0.312135 + +Polar angle tht: 2.1380; Azimuth angle phi: 1.9635 +Force: 1.431793 -3.770818 2.992659 +Torque: 0.852606 -0.020597 -0.346937 + +Polar angle tht: 2.1380; Azimuth angle phi: 2.0071 +Force: 1.586040 -3.691291 2.977160 +Torque: 0.845436 -0.021985 -0.380309 + +Polar angle tht: 2.1380; Azimuth angle phi: 2.0508 +Force: 1.736558 -3.602710 2.958935 +Torque: 0.837510 -0.023144 -0.412122 + +Polar angle tht: 2.1380; Azimuth angle phi: 2.0944 +Force: 1.882631 -3.505509 2.938037 +Torque: 0.828838 -0.024065 -0.442260 + +Polar angle tht: 2.1380; Azimuth angle phi: 2.1380 +Force: 2.023563 -3.400167 2.914521 +Torque: 0.819435 -0.024741 -0.470613 + +Polar angle tht: 2.1380; Azimuth angle phi: 2.1817 +Force: 2.158692 -3.287204 2.888452 +Torque: 0.809312 -0.025167 -0.497084 + +Polar angle tht: 2.1380; Azimuth angle phi: 2.2253 +Force: 2.287385 -3.167179 2.859897 +Torque: 0.798486 -0.025341 -0.521585 + +Polar angle tht: 2.1380; Azimuth angle phi: 2.2689 +Force: 2.409049 -3.040685 2.828929 +Torque: 0.786973 -0.025260 -0.544042 + +Polar angle tht: 2.1380; Azimuth angle phi: 2.3126 +Force: 2.523128 -2.908344 2.795628 +Torque: 0.774791 -0.024926 -0.564392 + +Polar angle tht: 2.1380; Azimuth angle phi: 2.3562 +Force: 2.629115 -2.770808 2.760077 +Torque: 0.761960 -0.024342 -0.582583 + +Polar angle tht: 2.1380; Azimuth angle phi: 2.3998 +Force: 2.726546 -2.628747 2.722363 +Torque: 0.748499 -0.023511 -0.598576 + +Polar angle tht: 2.1380; Azimuth angle phi: 2.4435 +Force: 2.815012 -2.482852 2.682580 +Torque: 0.734431 -0.022441 -0.612345 + +Polar angle tht: 2.1380; Azimuth angle phi: 2.4871 +Force: 2.894152 -2.333824 2.640822 +Torque: 0.719780 -0.021140 -0.623877 + +Polar angle tht: 2.1380; Azimuth angle phi: 2.5307 +Force: 2.963664 -2.182376 2.597190 +Torque: 0.704571 -0.019617 -0.633170 + +Polar angle tht: 2.1380; Azimuth angle phi: 2.5744 +Force: 3.023300 -2.029223 2.551785 +Torque: 0.688828 -0.017885 -0.640234 + +Polar angle tht: 2.1380; Azimuth angle phi: 2.6180 +Force: 3.120700 -1.892017 2.548862 +Torque: 0.642769 -0.017918 -0.613552 + +Polar angle tht: 2.1380; Azimuth angle phi: 2.6616 +Force: 3.214510 -1.751331 2.548473 +Torque: 0.593665 -0.018039 -0.580344 + +Polar angle tht: 2.1380; Azimuth angle phi: 2.7053 +Force: 3.301533 -1.606332 2.547987 +Torque: 0.543414 -0.018138 -0.542718 + +Polar angle tht: 2.1380; Azimuth angle phi: 2.7489 +Force: 3.381408 -1.457359 2.547440 +Torque: 0.492113 -0.018218 -0.500962 + +Polar angle tht: 2.1380; Azimuth angle phi: 2.7925 +Force: 3.453805 -1.304768 2.546862 +Torque: 0.439860 -0.018280 -0.455394 + +Polar angle tht: 2.1380; Azimuth angle phi: 2.8362 +Force: 3.518421 -1.148925 2.546281 +Torque: 0.386757 -0.018329 -0.406360 + +Polar angle tht: 2.1380; Azimuth angle phi: 2.8798 +Force: 3.574986 -0.990209 2.545723 +Torque: 0.332907 -0.018365 -0.354232 + +Polar angle tht: 2.1380; Azimuth angle phi: 2.9234 +Force: 3.623260 -0.829010 2.545211 +Torque: 0.278412 -0.018393 -0.299410 + +Polar angle tht: 2.1380; Azimuth angle phi: 2.9671 +Force: 3.663041 -0.665729 2.544765 +Torque: 0.223378 -0.018412 -0.242308 + +Polar angle tht: 2.1380; Azimuth angle phi: 3.0107 +Force: 3.694158 -0.500772 2.544400 +Torque: 0.167913 -0.018426 -0.183362 + +Polar angle tht: 2.1380; Azimuth angle phi: 3.0543 +Force: 3.716480 -0.334552 2.544130 +Torque: 0.112122 -0.018435 -0.123021 + +Polar angle tht: 2.1380; Azimuth angle phi: 3.0980 +Force: 3.729912 -0.167487 2.543965 +Torque: 0.056114 -0.018440 -0.061743 + +Polar angle tht: 2.1380; Azimuth angle phi: 3.1416 +Force: 3.734395 0.000000 2.543909 +Torque: -0.000002 -0.018441 0.000004 + +Polar angle tht: 2.1380; Azimuth angle phi: 3.1852 +Force: 3.729912 0.167487 2.543965 +Torque: -0.056118 -0.018440 0.061752 + +Polar angle tht: 2.1380; Azimuth angle phi: 3.2289 +Force: 3.716480 0.334552 2.544130 +Torque: -0.112126 -0.018435 0.123030 + +Polar angle tht: 2.1380; Azimuth angle phi: 3.2725 +Force: 3.694158 0.500772 2.544400 +Torque: -0.167917 -0.018426 0.183371 + +Polar angle tht: 2.1380; Azimuth angle phi: 3.3161 +Force: 3.663041 0.665729 2.544765 +Torque: -0.223382 -0.018412 0.242317 + +Polar angle tht: 2.1380; Azimuth angle phi: 3.3598 +Force: 3.623260 0.829010 2.545211 +Torque: -0.278416 -0.018393 0.299418 + +Polar angle tht: 2.1380; Azimuth angle phi: 3.4034 +Force: 3.574986 0.990209 2.545723 +Torque: -0.332911 -0.018365 0.354241 + +Polar angle tht: 2.1380; Azimuth angle phi: 3.4470 +Force: 3.518421 1.148925 2.546281 +Torque: -0.386762 -0.018329 0.406368 + +Polar angle tht: 2.1380; Azimuth angle phi: 3.4907 +Force: 3.453805 1.304768 2.546862 +Torque: -0.439865 -0.018280 0.455402 + +Polar angle tht: 2.1380; Azimuth angle phi: 3.5343 +Force: 3.381408 1.457359 2.547440 +Torque: -0.492117 -0.018218 0.500971 + +Polar angle tht: 2.1380; Azimuth angle phi: 3.5779 +Force: 3.301533 1.606332 2.547987 +Torque: -0.543418 -0.018138 0.542726 + +Polar angle tht: 2.1380; Azimuth angle phi: 3.6216 +Force: 3.214510 1.751331 2.548473 +Torque: -0.593669 -0.018039 0.580351 + +Polar angle tht: 2.1380; Azimuth angle phi: 3.6652 +Force: 3.120700 1.892017 2.548862 +Torque: -0.642774 -0.017918 0.613560 + +Polar angle tht: 2.1380; Azimuth angle phi: 3.7088 +Force: 3.023300 2.029223 2.551785 +Torque: -0.688833 -0.017885 0.640242 + +Polar angle tht: 2.1380; Azimuth angle phi: 3.7525 +Force: 2.963664 2.182376 2.597190 +Torque: -0.704577 -0.019617 0.633178 + +Polar angle tht: 2.1380; Azimuth angle phi: 3.7961 +Force: 2.894152 2.333824 2.640822 +Torque: -0.719788 -0.021140 0.623886 + +Polar angle tht: 2.1380; Azimuth angle phi: 3.8397 +Force: 2.815012 2.482852 2.682580 +Torque: -0.734440 -0.022441 0.612355 + +Polar angle tht: 2.1380; Azimuth angle phi: 3.8834 +Force: 2.726546 2.628747 2.722363 +Torque: -0.748508 -0.023511 0.598586 + +Polar angle tht: 2.1380; Azimuth angle phi: 3.9270 +Force: 2.629115 2.770808 2.760077 +Torque: -0.761970 -0.024342 0.582593 + +Polar angle tht: 2.1380; Azimuth angle phi: 3.9706 +Force: 2.523128 2.908344 2.795628 +Torque: -0.774802 -0.024926 0.564402 + +Polar angle tht: 2.1380; Azimuth angle phi: 4.0143 +Force: 2.409049 3.040685 2.828929 +Torque: -0.786985 -0.025260 0.544053 + +Polar angle tht: 2.1380; Azimuth angle phi: 4.0579 +Force: 2.287385 3.167179 2.859897 +Torque: -0.798499 -0.025341 0.521595 + +Polar angle tht: 2.1380; Azimuth angle phi: 4.1015 +Force: 2.158692 3.287204 2.888452 +Torque: -0.809325 -0.025167 0.497094 + +Polar angle tht: 2.1380; Azimuth angle phi: 4.1452 +Force: 2.023563 3.400167 2.914521 +Torque: -0.819449 -0.024741 0.470623 + +Polar angle tht: 2.1380; Azimuth angle phi: 4.1888 +Force: 1.882631 3.505509 2.938037 +Torque: -0.828853 -0.024065 0.442270 + +Polar angle tht: 2.1380; Azimuth angle phi: 4.2324 +Force: 1.736558 3.602710 2.958935 +Torque: -0.837525 -0.023144 0.412132 + +Polar angle tht: 2.1380; Azimuth angle phi: 4.2761 +Force: 1.586040 3.691291 2.977160 +Torque: -0.845452 -0.021985 0.380317 + +Polar angle tht: 2.1380; Azimuth angle phi: 4.3197 +Force: 1.431793 3.770818 2.992659 +Torque: -0.852622 -0.020597 0.346945 + +Polar angle tht: 2.1380; Azimuth angle phi: 4.3633 +Force: 1.274554 3.840903 3.005390 +Torque: -0.859026 -0.018990 0.312143 + +Polar angle tht: 2.1380; Azimuth angle phi: 4.4070 +Force: 1.115075 3.901210 3.015314 +Torque: -0.864657 -0.017176 0.276046 + +Polar angle tht: 2.1380; Azimuth angle phi: 4.4506 +Force: 0.954118 3.951453 3.022399 +Torque: -0.869505 -0.015169 0.238800 + +Polar angle tht: 2.1380; Azimuth angle phi: 4.4942 +Force: 0.792450 3.991403 3.026622 +Torque: -0.873567 -0.012983 0.200555 + +Polar angle tht: 2.1380; Azimuth angle phi: 4.5379 +Force: 0.630837 4.020884 3.027965 +Torque: -0.876837 -0.010636 0.161468 + +Polar angle tht: 2.1380; Azimuth angle phi: 4.5815 +Force: 0.470042 4.039778 3.026418 +Torque: -0.879312 -0.008145 0.121701 + +Polar angle tht: 2.1380; Azimuth angle phi: 4.6251 +Force: 0.310815 4.048023 3.021977 +Torque: -0.880990 -0.005529 0.081421 + +Polar angle tht: 2.1380; Azimuth angle phi: 4.6688 +Force: 0.153895 4.045615 3.014647 +Torque: -0.881871 -0.002807 0.040797 + +Polar angle tht: 2.1380; Azimuth angle phi: 4.7124 +Force: 0.000000 4.032608 3.004439 +Torque: -0.881955 0.000000 -0.000000 + +Polar angle tht: 2.1380; Azimuth angle phi: 4.7560 +Force: -0.153895 4.045615 3.014647 +Torque: -0.881871 0.002807 -0.040797 + +Polar angle tht: 2.1380; Azimuth angle phi: 4.7997 +Force: -0.310815 4.048023 3.021977 +Torque: -0.880990 0.005529 -0.081421 + +Polar angle tht: 2.1380; Azimuth angle phi: 4.8433 +Force: -0.470042 4.039778 3.026418 +Torque: -0.879312 0.008145 -0.121701 + +Polar angle tht: 2.1380; Azimuth angle phi: 4.8869 +Force: -0.630837 4.020884 3.027965 +Torque: -0.876837 0.010636 -0.161468 + +Polar angle tht: 2.1380; Azimuth angle phi: 4.9306 +Force: -0.792450 3.991403 3.026622 +Torque: -0.873567 0.012983 -0.200555 + +Polar angle tht: 2.1380; Azimuth angle phi: 4.9742 +Force: -0.954118 3.951453 3.022399 +Torque: -0.869505 0.015169 -0.238800 + +Polar angle tht: 2.1380; Azimuth angle phi: 5.0178 +Force: -1.115075 3.901210 3.015314 +Torque: -0.864657 0.017176 -0.276046 + +Polar angle tht: 2.1380; Azimuth angle phi: 5.0615 +Force: -1.274554 3.840903 3.005390 +Torque: -0.859026 0.018990 -0.312143 + +Polar angle tht: 2.1380; Azimuth angle phi: 5.1051 +Force: -1.431793 3.770818 2.992659 +Torque: -0.852622 0.020597 -0.346945 + +Polar angle tht: 2.1380; Azimuth angle phi: 5.1487 +Force: -1.586040 3.691291 2.977160 +Torque: -0.845452 0.021985 -0.380317 + +Polar angle tht: 2.1380; Azimuth angle phi: 5.1924 +Force: -1.736558 3.602710 2.958935 +Torque: -0.837525 0.023144 -0.412132 + +Polar angle tht: 2.1380; Azimuth angle phi: 5.2360 +Force: -1.882631 3.505509 2.938037 +Torque: -0.828853 0.024065 -0.442270 + +Polar angle tht: 2.1380; Azimuth angle phi: 5.2796 +Force: -2.023563 3.400167 2.914521 +Torque: -0.819449 0.024741 -0.470623 + +Polar angle tht: 2.1380; Azimuth angle phi: 5.3233 +Force: -2.158692 3.287204 2.888452 +Torque: -0.809325 0.025167 -0.497094 + +Polar angle tht: 2.1380; Azimuth angle phi: 5.3669 +Force: -2.287385 3.167179 2.859897 +Torque: -0.798499 0.025341 -0.521595 + +Polar angle tht: 2.1380; Azimuth angle phi: 5.4105 +Force: -2.409049 3.040685 2.828929 +Torque: -0.786985 0.025260 -0.544053 + +Polar angle tht: 2.1380; Azimuth angle phi: 5.4542 +Force: -2.523128 2.908344 2.795628 +Torque: -0.774802 0.024926 -0.564402 + +Polar angle tht: 2.1380; Azimuth angle phi: 5.4978 +Force: -2.629115 2.770808 2.760077 +Torque: -0.761970 0.024342 -0.582593 + +Polar angle tht: 2.1380; Azimuth angle phi: 5.5414 +Force: -2.726546 2.628747 2.722363 +Torque: -0.748508 0.023511 -0.598586 + +Polar angle tht: 2.1380; Azimuth angle phi: 5.5851 +Force: -2.815012 2.482852 2.682580 +Torque: -0.734440 0.022441 -0.612355 + +Polar angle tht: 2.1380; Azimuth angle phi: 5.6287 +Force: -2.894152 2.333824 2.640822 +Torque: -0.719788 0.021140 -0.623886 + +Polar angle tht: 2.1380; Azimuth angle phi: 5.6723 +Force: -2.963664 2.182376 2.597190 +Torque: -0.704577 0.019617 -0.633178 + +Polar angle tht: 2.1380; Azimuth angle phi: 5.7160 +Force: -3.023300 2.029223 2.551785 +Torque: -0.688833 0.017885 -0.640242 + +Polar angle tht: 2.1380; Azimuth angle phi: 5.7596 +Force: -3.120700 1.892017 2.548862 +Torque: -0.642774 0.017918 -0.613560 + +Polar angle tht: 2.1380; Azimuth angle phi: 5.8032 +Force: -3.214510 1.751331 2.548473 +Torque: -0.593669 0.018039 -0.580351 + +Polar angle tht: 2.1380; Azimuth angle phi: 5.8469 +Force: -3.301533 1.606332 2.547987 +Torque: -0.543418 0.018138 -0.542726 + +Polar angle tht: 2.1380; Azimuth angle phi: 5.8905 +Force: -3.381408 1.457359 2.547440 +Torque: -0.492117 0.018218 -0.500971 + +Polar angle tht: 2.1380; Azimuth angle phi: 5.9341 +Force: -3.453805 1.304768 2.546862 +Torque: -0.439865 0.018280 -0.455402 + +Polar angle tht: 2.1380; Azimuth angle phi: 5.9778 +Force: -3.518421 1.148925 2.546281 +Torque: -0.386762 0.018329 -0.406368 + +Polar angle tht: 2.1380; Azimuth angle phi: 6.0214 +Force: -3.574986 0.990209 2.545723 +Torque: -0.332911 0.018365 -0.354241 + +Polar angle tht: 2.1380; Azimuth angle phi: 6.0650 +Force: -3.623260 0.829010 2.545211 +Torque: -0.278416 0.018393 -0.299418 + +Polar angle tht: 2.1380; Azimuth angle phi: 6.1087 +Force: -3.663041 0.665729 2.544765 +Torque: -0.223382 0.018412 -0.242317 + +Polar angle tht: 2.1380; Azimuth angle phi: 6.1523 +Force: -3.694158 0.500772 2.544400 +Torque: -0.167917 0.018426 -0.183371 + +Polar angle tht: 2.1380; Azimuth angle phi: 6.1959 +Force: -3.716480 0.334552 2.544130 +Torque: -0.112126 0.018435 -0.123030 + +Polar angle tht: 2.1380; Azimuth angle phi: 6.2396 +Force: -3.729912 0.167487 2.543965 +Torque: -0.056118 0.018440 -0.061752 + +Polar angle tht: 2.1380; Azimuth angle phi: 6.2832 +Force: -3.734395 0.000000 2.543909 +Torque: -0.000002 0.018441 -0.000004 + +Polar angle tht: 2.1817; Azimuth angle phi: 0.0000 +Force: -3.771188 0.000000 2.835366 +Torque: -0.000002 0.020851 -0.000005 + +Polar angle tht: 2.1817; Azimuth angle phi: 0.0436 +Force: -3.766722 -0.170234 2.835395 +Torque: 0.057271 0.020846 0.058245 + +Polar angle tht: 2.1817; Azimuth angle phi: 0.0873 +Force: -3.753343 -0.340045 2.835480 +Torque: 0.114434 0.020832 0.116051 + +Polar angle tht: 2.1817; Azimuth angle phi: 0.1309 +Force: -3.731106 -0.509014 2.835616 +Torque: 0.171375 0.020807 0.172973 + +Polar angle tht: 2.1817; Azimuth angle phi: 0.1745 +Force: -3.700103 -0.676722 2.835794 +Torque: 0.227985 0.020771 0.228580 + +Polar angle tht: 2.1817; Azimuth angle phi: 0.2182 +Force: -3.660462 -0.842756 2.836003 +Torque: 0.284155 0.020723 0.282446 + +Polar angle tht: 2.1817; Azimuth angle phi: 0.2618 +Force: -3.612347 -1.006709 2.836227 +Torque: 0.339776 0.020661 0.334163 + +Polar angle tht: 2.1817; Azimuth angle phi: 0.3054 +Force: -3.555955 -1.168182 2.836449 +Torque: 0.394740 0.020585 0.383337 + +Polar angle tht: 2.1817; Azimuth angle phi: 0.3491 +Force: -3.491516 -1.326785 2.836648 +Torque: 0.448941 0.020491 0.429593 + +Polar angle tht: 2.1817; Azimuth angle phi: 0.3927 +Force: -3.419294 -1.482138 2.836799 +Torque: 0.502276 0.020377 0.472580 + +Polar angle tht: 2.1817; Azimuth angle phi: 0.4363 +Force: -3.339580 -1.633872 2.836876 +Torque: 0.554640 0.020242 0.511970 + +Polar angle tht: 2.1817; Azimuth angle phi: 0.4800 +Force: -3.252695 -1.781633 2.836853 +Torque: 0.605934 0.020082 0.547464 + +Polar angle tht: 2.1817; Azimuth angle phi: 0.5236 +Force: -3.158987 -1.925078 2.836697 +Torque: 0.656059 0.019894 0.578791 + +Polar angle tht: 2.1817; Azimuth angle phi: 0.5672 +Force: -3.058828 -2.063883 2.836377 +Torque: 0.704918 0.019676 0.605713 + +Polar angle tht: 2.1817; Azimuth angle phi: 0.6109 +Force: -2.952612 -2.197737 2.835861 +Torque: 0.752418 0.019425 0.628026 + +Polar angle tht: 2.1817; Azimuth angle phi: 0.6545 +Force: -2.864901 -2.338926 2.861424 +Torque: 0.780599 0.020127 0.629634 + +Polar angle tht: 2.1817; Azimuth angle phi: 0.6981 +Force: -2.785607 -2.485767 2.903833 +Torque: 0.795499 0.021349 0.617340 + +Polar angle tht: 2.1817; Azimuth angle phi: 0.7418 +Force: -2.697269 -2.629428 2.944210 +Torque: 0.809809 0.022351 0.602861 + +Polar angle tht: 2.1817; Azimuth angle phi: 0.7854 +Force: -2.600234 -2.769236 2.982460 +Torque: 0.823505 0.023128 0.586210 + +Polar angle tht: 2.1817; Azimuth angle phi: 0.8290 +Force: -2.494900 -2.904528 3.018490 +Torque: 0.836566 0.023672 0.567417 + +Polar angle tht: 2.1817; Azimuth angle phi: 0.8727 +Force: -2.381714 -3.034660 3.052214 +Torque: 0.848970 0.023979 0.546521 + +Polar angle tht: 2.1817; Azimuth angle phi: 0.9163 +Force: -2.261166 -3.159009 3.083547 +Torque: 0.860696 0.024047 0.523574 + +Polar angle tht: 2.1817; Azimuth angle phi: 0.9599 +Force: -2.133789 -3.276978 3.112411 +Torque: 0.871726 0.023875 0.498637 + +Polar angle tht: 2.1817; Azimuth angle phi: 1.0036 +Force: -2.000156 -3.387998 3.138733 +Torque: 0.882043 0.023465 0.471787 + +Polar angle tht: 2.1817; Azimuth angle phi: 1.0472 +Force: -1.860874 -3.491534 3.162446 +Torque: 0.891631 0.022818 0.443108 + +Polar angle tht: 2.1817; Azimuth angle phi: 1.0908 +Force: -1.716582 -3.587087 3.183487 +Torque: 0.900476 0.021941 0.412696 + +Polar angle tht: 2.1817; Azimuth angle phi: 1.1345 +Force: -1.567946 -3.674198 3.201801 +Torque: 0.908565 0.020838 0.380657 + +Polar angle tht: 2.1817; Azimuth angle phi: 1.1781 +Force: -1.415657 -3.752450 3.217336 +Torque: 0.915886 0.019519 0.347107 + +Polar angle tht: 2.1817; Azimuth angle phi: 1.2217 +Force: -1.260422 -3.821472 3.230050 +Torque: 0.922428 0.017994 0.312171 + +Polar angle tht: 2.1817; Azimuth angle phi: 1.2654 +Force: -1.102963 -3.880940 3.239906 +Torque: 0.928183 0.016273 0.275980 + +Polar angle tht: 2.1817; Azimuth angle phi: 1.3090 +Force: -0.944012 -3.930582 3.246872 +Torque: 0.933144 0.014370 0.238674 + +Polar angle tht: 2.1817; Azimuth angle phi: 1.3526 +Force: -0.784307 -3.970176 3.250926 +Torque: 0.937303 0.012298 0.200401 + +Polar angle tht: 2.1817; Azimuth angle phi: 1.3963 +Force: -0.624584 -3.999552 3.252051 +Torque: 0.940658 0.010074 0.161312 + +Polar angle tht: 2.1817; Azimuth angle phi: 1.4399 +Force: -0.465576 -4.018595 3.250237 +Torque: 0.943202 0.007714 0.121566 + +Polar angle tht: 2.1817; Azimuth angle phi: 1.4835 +Force: -0.308006 -4.027246 3.245482 +Torque: 0.944936 0.005236 0.081321 + +Polar angle tht: 2.1817; Azimuth angle phi: 1.5272 +Force: -0.152583 -4.025499 3.237791 +Torque: 0.945857 0.002658 0.040744 + +Polar angle tht: 2.1817; Azimuth angle phi: 1.5708 +Force: 0.000000 -4.013405 3.227177 +Torque: 0.945967 0.000000 0.000000 + +Polar angle tht: 2.1817; Azimuth angle phi: 1.6144 +Force: 0.152583 -4.025499 3.237791 +Torque: 0.945857 -0.002658 -0.040744 + +Polar angle tht: 2.1817; Azimuth angle phi: 1.6581 +Force: 0.308006 -4.027246 3.245482 +Torque: 0.944936 -0.005236 -0.081321 + +Polar angle tht: 2.1817; Azimuth angle phi: 1.7017 +Force: 0.465576 -4.018595 3.250237 +Torque: 0.943202 -0.007714 -0.121566 + +Polar angle tht: 2.1817; Azimuth angle phi: 1.7453 +Force: 0.624584 -3.999552 3.252051 +Torque: 0.940658 -0.010074 -0.161312 + +Polar angle tht: 2.1817; Azimuth angle phi: 1.7890 +Force: 0.784307 -3.970176 3.250926 +Torque: 0.937303 -0.012298 -0.200401 + +Polar angle tht: 2.1817; Azimuth angle phi: 1.8326 +Force: 0.944012 -3.930582 3.246872 +Torque: 0.933144 -0.014370 -0.238674 + +Polar angle tht: 2.1817; Azimuth angle phi: 1.8762 +Force: 1.102963 -3.880940 3.239906 +Torque: 0.928183 -0.016273 -0.275980 + +Polar angle tht: 2.1817; Azimuth angle phi: 1.9199 +Force: 1.260422 -3.821472 3.230050 +Torque: 0.922428 -0.017994 -0.312171 + +Polar angle tht: 2.1817; Azimuth angle phi: 1.9635 +Force: 1.415657 -3.752450 3.217336 +Torque: 0.915886 -0.019519 -0.347107 + +Polar angle tht: 2.1817; Azimuth angle phi: 2.0071 +Force: 1.567946 -3.674198 3.201801 +Torque: 0.908565 -0.020838 -0.380657 + +Polar angle tht: 2.1817; Azimuth angle phi: 2.0508 +Force: 1.716582 -3.587087 3.183487 +Torque: 0.900476 -0.021941 -0.412696 + +Polar angle tht: 2.1817; Azimuth angle phi: 2.0944 +Force: 1.860874 -3.491534 3.162446 +Torque: 0.891631 -0.022818 -0.443108 + +Polar angle tht: 2.1817; Azimuth angle phi: 2.1380 +Force: 2.000156 -3.387998 3.138733 +Torque: 0.882043 -0.023465 -0.471787 + +Polar angle tht: 2.1817; Azimuth angle phi: 2.1817 +Force: 2.133789 -3.276978 3.112411 +Torque: 0.871726 -0.023875 -0.498637 + +Polar angle tht: 2.1817; Azimuth angle phi: 2.2253 +Force: 2.261166 -3.159009 3.083547 +Torque: 0.860696 -0.024047 -0.523574 + +Polar angle tht: 2.1817; Azimuth angle phi: 2.2689 +Force: 2.381714 -3.034660 3.052214 +Torque: 0.848970 -0.023979 -0.546521 + +Polar angle tht: 2.1817; Azimuth angle phi: 2.3126 +Force: 2.494900 -2.904528 3.018490 +Torque: 0.836566 -0.023672 -0.567417 + +Polar angle tht: 2.1817; Azimuth angle phi: 2.3562 +Force: 2.600234 -2.769236 2.982460 +Torque: 0.823505 -0.023128 -0.586210 + +Polar angle tht: 2.1817; Azimuth angle phi: 2.3998 +Force: 2.697269 -2.629428 2.944210 +Torque: 0.809809 -0.022351 -0.602861 + +Polar angle tht: 2.1817; Azimuth angle phi: 2.4435 +Force: 2.785607 -2.485767 2.903833 +Torque: 0.795499 -0.021349 -0.617340 + +Polar angle tht: 2.1817; Azimuth angle phi: 2.4871 +Force: 2.864901 -2.338926 2.861424 +Torque: 0.780599 -0.020127 -0.629634 + +Polar angle tht: 2.1817; Azimuth angle phi: 2.5307 +Force: 2.952612 -2.197737 2.835861 +Torque: 0.752418 -0.019425 -0.628026 + +Polar angle tht: 2.1817; Azimuth angle phi: 2.5744 +Force: 3.058828 -2.063883 2.836377 +Torque: 0.704918 -0.019676 -0.605713 + +Polar angle tht: 2.1817; Azimuth angle phi: 2.6180 +Force: 3.158987 -1.925078 2.836697 +Torque: 0.656059 -0.019894 -0.578791 + +Polar angle tht: 2.1817; Azimuth angle phi: 2.6616 +Force: 3.252695 -1.781633 2.836853 +Torque: 0.605934 -0.020082 -0.547464 + +Polar angle tht: 2.1817; Azimuth angle phi: 2.7053 +Force: 3.339580 -1.633872 2.836876 +Torque: 0.554640 -0.020242 -0.511970 + +Polar angle tht: 2.1817; Azimuth angle phi: 2.7489 +Force: 3.419294 -1.482138 2.836799 +Torque: 0.502276 -0.020377 -0.472580 + +Polar angle tht: 2.1817; Azimuth angle phi: 2.7925 +Force: 3.491516 -1.326785 2.836648 +Torque: 0.448941 -0.020491 -0.429593 + +Polar angle tht: 2.1817; Azimuth angle phi: 2.8362 +Force: 3.555955 -1.168182 2.836449 +Torque: 0.394740 -0.020585 -0.383337 + +Polar angle tht: 2.1817; Azimuth angle phi: 2.8798 +Force: 3.612347 -1.006709 2.836227 +Torque: 0.339776 -0.020661 -0.334163 + +Polar angle tht: 2.1817; Azimuth angle phi: 2.9234 +Force: 3.660462 -0.842756 2.836003 +Torque: 0.284155 -0.020723 -0.282446 + +Polar angle tht: 2.1817; Azimuth angle phi: 2.9671 +Force: 3.700103 -0.676722 2.835794 +Torque: 0.227985 -0.020771 -0.228580 + +Polar angle tht: 2.1817; Azimuth angle phi: 3.0107 +Force: 3.731106 -0.509014 2.835616 +Torque: 0.171375 -0.020807 -0.172973 + +Polar angle tht: 2.1817; Azimuth angle phi: 3.0543 +Force: 3.753343 -0.340045 2.835480 +Torque: 0.114434 -0.020832 -0.116051 + +Polar angle tht: 2.1817; Azimuth angle phi: 3.0980 +Force: 3.766722 -0.170234 2.835395 +Torque: 0.057271 -0.020846 -0.058245 + +Polar angle tht: 2.1817; Azimuth angle phi: 3.1416 +Force: 3.771188 0.000000 2.835366 +Torque: -0.000002 -0.020851 0.000005 + +Polar angle tht: 2.1817; Azimuth angle phi: 3.1852 +Force: 3.766722 0.170234 2.835395 +Torque: -0.057276 -0.020846 0.058254 + +Polar angle tht: 2.1817; Azimuth angle phi: 3.2289 +Force: 3.753343 0.340045 2.835480 +Torque: -0.114438 -0.020832 0.116060 + +Polar angle tht: 2.1817; Azimuth angle phi: 3.2725 +Force: 3.731106 0.509014 2.835616 +Torque: -0.171380 -0.020807 0.172982 + +Polar angle tht: 2.1817; Azimuth angle phi: 3.3161 +Force: 3.700103 0.676722 2.835794 +Torque: -0.227990 -0.020771 0.228589 + +Polar angle tht: 2.1817; Azimuth angle phi: 3.3598 +Force: 3.660462 0.842756 2.836003 +Torque: -0.284160 -0.020723 0.282455 + +Polar angle tht: 2.1817; Azimuth angle phi: 3.4034 +Force: 3.612347 1.006709 2.836227 +Torque: -0.339780 -0.020661 0.334172 + +Polar angle tht: 2.1817; Azimuth angle phi: 3.4470 +Force: 3.555955 1.168182 2.836449 +Torque: -0.394745 -0.020585 0.383346 + +Polar angle tht: 2.1817; Azimuth angle phi: 3.4907 +Force: 3.491516 1.326785 2.836648 +Torque: -0.448946 -0.020491 0.429602 + +Polar angle tht: 2.1817; Azimuth angle phi: 3.5343 +Force: 3.419294 1.482138 2.836799 +Torque: -0.502281 -0.020377 0.472589 + +Polar angle tht: 2.1817; Azimuth angle phi: 3.5779 +Force: 3.339580 1.633872 2.836876 +Torque: -0.554646 -0.020242 0.511979 + +Polar angle tht: 2.1817; Azimuth angle phi: 3.6216 +Force: 3.252695 1.781633 2.836853 +Torque: -0.605940 -0.020082 0.547472 + +Polar angle tht: 2.1817; Azimuth angle phi: 3.6652 +Force: 3.158987 1.925078 2.836697 +Torque: -0.656065 -0.019894 0.578799 + +Polar angle tht: 2.1817; Azimuth angle phi: 3.7088 +Force: 3.058828 2.063883 2.836377 +Torque: -0.704924 -0.019676 0.605721 + +Polar angle tht: 2.1817; Azimuth angle phi: 3.7525 +Force: 2.952612 2.197737 2.835861 +Torque: -0.752424 -0.019425 0.628033 + +Polar angle tht: 2.1817; Azimuth angle phi: 3.7961 +Force: 2.864901 2.338926 2.861424 +Torque: -0.780606 -0.020127 0.629641 + +Polar angle tht: 2.1817; Azimuth angle phi: 3.8397 +Force: 2.785607 2.485767 2.903833 +Torque: -0.795506 -0.021349 0.617349 + +Polar angle tht: 2.1817; Azimuth angle phi: 3.8834 +Force: 2.697269 2.629428 2.944210 +Torque: -0.809817 -0.022351 0.602869 + +Polar angle tht: 2.1817; Azimuth angle phi: 3.9270 +Force: 2.600234 2.769236 2.982460 +Torque: -0.823515 -0.023128 0.586219 + +Polar angle tht: 2.1817; Azimuth angle phi: 3.9706 +Force: 2.494900 2.904528 3.018490 +Torque: -0.836576 -0.023672 0.567427 + +Polar angle tht: 2.1817; Azimuth angle phi: 4.0143 +Force: 2.381714 3.034660 3.052214 +Torque: -0.848981 -0.023979 0.546531 + +Polar angle tht: 2.1817; Azimuth angle phi: 4.0579 +Force: 2.261166 3.159009 3.083547 +Torque: -0.860708 -0.024047 0.523583 + +Polar angle tht: 2.1817; Azimuth angle phi: 4.1015 +Force: 2.133789 3.276978 3.112411 +Torque: -0.871739 -0.023875 0.498647 + +Polar angle tht: 2.1817; Azimuth angle phi: 4.1452 +Force: 2.000156 3.387998 3.138733 +Torque: -0.882057 -0.023465 0.471796 + +Polar angle tht: 2.1817; Azimuth angle phi: 4.1888 +Force: 1.860874 3.491534 3.162446 +Torque: -0.891646 -0.022818 0.443117 + +Polar angle tht: 2.1817; Azimuth angle phi: 4.2324 +Force: 1.716582 3.587087 3.183487 +Torque: -0.900491 -0.021941 0.412704 + +Polar angle tht: 2.1817; Azimuth angle phi: 4.2761 +Force: 1.567946 3.674198 3.201801 +Torque: -0.908580 -0.020838 0.380665 + +Polar angle tht: 2.1817; Azimuth angle phi: 4.3197 +Force: 1.415657 3.752450 3.217336 +Torque: -0.915901 -0.019519 0.347115 + +Polar angle tht: 2.1817; Azimuth angle phi: 4.3633 +Force: 1.260422 3.821472 3.230050 +Torque: -0.922444 -0.017994 0.312177 + +Polar angle tht: 2.1817; Azimuth angle phi: 4.4070 +Force: 1.102963 3.880940 3.239906 +Torque: -0.928200 -0.016273 0.275986 + +Polar angle tht: 2.1817; Azimuth angle phi: 4.4506 +Force: 0.944012 3.930582 3.246872 +Torque: -0.933161 -0.014370 0.238679 + +Polar angle tht: 2.1817; Azimuth angle phi: 4.4942 +Force: 0.784307 3.970176 3.250926 +Torque: -0.937321 -0.012298 0.200406 + +Polar angle tht: 2.1817; Azimuth angle phi: 4.5379 +Force: 0.624584 3.999552 3.252051 +Torque: -0.940675 -0.010074 0.161316 + +Polar angle tht: 2.1817; Azimuth angle phi: 4.5815 +Force: 0.465576 4.018595 3.250237 +Torque: -0.943220 -0.007714 0.121568 + +Polar angle tht: 2.1817; Azimuth angle phi: 4.6251 +Force: 0.308006 4.027246 3.245482 +Torque: -0.944954 -0.005236 0.081323 + +Polar angle tht: 2.1817; Azimuth angle phi: 4.6688 +Force: 0.152583 4.025499 3.237791 +Torque: -0.945876 -0.002658 0.040745 + +Polar angle tht: 2.1817; Azimuth angle phi: 4.7124 +Force: 0.000000 4.013405 3.227177 +Torque: -0.945985 0.000000 -0.000000 + +Polar angle tht: 2.1817; Azimuth angle phi: 4.7560 +Force: -0.152583 4.025499 3.237791 +Torque: -0.945876 0.002658 -0.040745 + +Polar angle tht: 2.1817; Azimuth angle phi: 4.7997 +Force: -0.308006 4.027246 3.245482 +Torque: -0.944954 0.005236 -0.081323 + +Polar angle tht: 2.1817; Azimuth angle phi: 4.8433 +Force: -0.465576 4.018595 3.250237 +Torque: -0.943220 0.007714 -0.121568 + +Polar angle tht: 2.1817; Azimuth angle phi: 4.8869 +Force: -0.624584 3.999552 3.252051 +Torque: -0.940675 0.010074 -0.161316 + +Polar angle tht: 2.1817; Azimuth angle phi: 4.9306 +Force: -0.784307 3.970176 3.250926 +Torque: -0.937321 0.012298 -0.200406 + +Polar angle tht: 2.1817; Azimuth angle phi: 4.9742 +Force: -0.944012 3.930582 3.246872 +Torque: -0.933161 0.014370 -0.238679 + +Polar angle tht: 2.1817; Azimuth angle phi: 5.0178 +Force: -1.102963 3.880940 3.239906 +Torque: -0.928200 0.016273 -0.275986 + +Polar angle tht: 2.1817; Azimuth angle phi: 5.0615 +Force: -1.260422 3.821472 3.230050 +Torque: -0.922444 0.017994 -0.312177 + +Polar angle tht: 2.1817; Azimuth angle phi: 5.1051 +Force: -1.415657 3.752450 3.217336 +Torque: -0.915901 0.019519 -0.347115 + +Polar angle tht: 2.1817; Azimuth angle phi: 5.1487 +Force: -1.567946 3.674198 3.201801 +Torque: -0.908580 0.020838 -0.380665 + +Polar angle tht: 2.1817; Azimuth angle phi: 5.1924 +Force: -1.716582 3.587087 3.183487 +Torque: -0.900491 0.021941 -0.412704 + +Polar angle tht: 2.1817; Azimuth angle phi: 5.2360 +Force: -1.860874 3.491534 3.162446 +Torque: -0.891646 0.022818 -0.443117 + +Polar angle tht: 2.1817; Azimuth angle phi: 5.2796 +Force: -2.000156 3.387998 3.138733 +Torque: -0.882057 0.023465 -0.471796 + +Polar angle tht: 2.1817; Azimuth angle phi: 5.3233 +Force: -2.133789 3.276978 3.112411 +Torque: -0.871739 0.023875 -0.498647 + +Polar angle tht: 2.1817; Azimuth angle phi: 5.3669 +Force: -2.261166 3.159009 3.083547 +Torque: -0.860708 0.024047 -0.523583 + +Polar angle tht: 2.1817; Azimuth angle phi: 5.4105 +Force: -2.381714 3.034660 3.052214 +Torque: -0.848981 0.023979 -0.546531 + +Polar angle tht: 2.1817; Azimuth angle phi: 5.4542 +Force: -2.494900 2.904528 3.018490 +Torque: -0.836576 0.023672 -0.567427 + +Polar angle tht: 2.1817; Azimuth angle phi: 5.4978 +Force: -2.600234 2.769236 2.982460 +Torque: -0.823515 0.023128 -0.586219 + +Polar angle tht: 2.1817; Azimuth angle phi: 5.5414 +Force: -2.697269 2.629428 2.944210 +Torque: -0.809817 0.022351 -0.602869 + +Polar angle tht: 2.1817; Azimuth angle phi: 5.5851 +Force: -2.785607 2.485767 2.903833 +Torque: -0.795506 0.021349 -0.617349 + +Polar angle tht: 2.1817; Azimuth angle phi: 5.6287 +Force: -2.864901 2.338926 2.861424 +Torque: -0.780606 0.020127 -0.629641 + +Polar angle tht: 2.1817; Azimuth angle phi: 5.6723 +Force: -2.952612 2.197737 2.835861 +Torque: -0.752424 0.019425 -0.628033 + +Polar angle tht: 2.1817; Azimuth angle phi: 5.7160 +Force: -3.058828 2.063883 2.836377 +Torque: -0.704924 0.019676 -0.605721 + +Polar angle tht: 2.1817; Azimuth angle phi: 5.7596 +Force: -3.158987 1.925078 2.836697 +Torque: -0.656065 0.019894 -0.578799 + +Polar angle tht: 2.1817; Azimuth angle phi: 5.8032 +Force: -3.252695 1.781633 2.836853 +Torque: -0.605940 0.020082 -0.547472 + +Polar angle tht: 2.1817; Azimuth angle phi: 5.8469 +Force: -3.339580 1.633872 2.836876 +Torque: -0.554646 0.020242 -0.511979 + +Polar angle tht: 2.1817; Azimuth angle phi: 5.8905 +Force: -3.419294 1.482138 2.836799 +Torque: -0.502281 0.020377 -0.472589 + +Polar angle tht: 2.1817; Azimuth angle phi: 5.9341 +Force: -3.491516 1.326785 2.836648 +Torque: -0.448946 0.020491 -0.429602 + +Polar angle tht: 2.1817; Azimuth angle phi: 5.9778 +Force: -3.555955 1.168182 2.836449 +Torque: -0.394745 0.020585 -0.383346 + +Polar angle tht: 2.1817; Azimuth angle phi: 6.0214 +Force: -3.612347 1.006709 2.836227 +Torque: -0.339780 0.020661 -0.334172 + +Polar angle tht: 2.1817; Azimuth angle phi: 6.0650 +Force: -3.660462 0.842756 2.836003 +Torque: -0.284160 0.020723 -0.282455 + +Polar angle tht: 2.1817; Azimuth angle phi: 6.1087 +Force: -3.700103 0.676722 2.835794 +Torque: -0.227990 0.020771 -0.228589 + +Polar angle tht: 2.1817; Azimuth angle phi: 6.1523 +Force: -3.731106 0.509014 2.835616 +Torque: -0.171380 0.020807 -0.172982 + +Polar angle tht: 2.1817; Azimuth angle phi: 6.1959 +Force: -3.753343 0.340045 2.835480 +Torque: -0.114438 0.020832 -0.116060 + +Polar angle tht: 2.1817; Azimuth angle phi: 6.2396 +Force: -3.766722 0.170234 2.835395 +Torque: -0.057276 0.020846 -0.058254 + +Polar angle tht: 2.1817; Azimuth angle phi: 6.2832 +Force: -3.771188 0.000000 2.835366 +Torque: -0.000002 0.020851 -0.000005 + +Polar angle tht: 2.2253; Azimuth angle phi: 0.0000 +Force: -3.785303 0.000000 3.131696 +Torque: -0.000003 0.022998 -0.000005 + +Polar angle tht: 2.2253; Azimuth angle phi: 0.0436 +Force: -3.780878 -0.171928 3.131699 +Torque: 0.058068 0.022991 0.054633 + +Polar angle tht: 2.2253; Azimuth angle phi: 0.0873 +Force: -3.767621 -0.343436 3.131708 +Torque: 0.116027 0.022967 0.108855 + +Polar angle tht: 2.2253; Azimuth angle phi: 0.1309 +Force: -3.745585 -0.514106 3.131717 +Torque: 0.173761 0.022928 0.162249 + +Polar angle tht: 2.2253; Azimuth angle phi: 0.1745 +Force: -3.714859 -0.683525 3.131719 +Torque: 0.231160 0.022871 0.214408 + +Polar angle tht: 2.2253; Azimuth angle phi: 0.2182 +Force: -3.675565 -0.851280 3.131703 +Torque: 0.288113 0.022797 0.264935 + +Polar angle tht: 2.2253; Azimuth angle phi: 0.2618 +Force: -3.627862 -1.016969 3.131656 +Torque: 0.344510 0.022704 0.313446 + +Polar angle tht: 2.2253; Azimuth angle phi: 0.3054 +Force: -3.571939 -1.180192 3.131560 +Torque: 0.400242 0.022589 0.359571 + +Polar angle tht: 2.2253; Azimuth angle phi: 0.3491 +Force: -3.508019 -1.340563 3.131397 +Torque: 0.455201 0.022453 0.402959 + +Polar angle tht: 2.2253; Azimuth angle phi: 0.3927 +Force: -3.436353 -1.497702 3.131146 +Torque: 0.509283 0.022292 0.443281 + +Polar angle tht: 2.2253; Azimuth angle phi: 0.4363 +Force: -3.357225 -1.651242 3.130782 +Torque: 0.562382 0.022104 0.480229 + +Polar angle tht: 2.2253; Azimuth angle phi: 0.4800 +Force: -3.270943 -1.800829 3.130279 +Torque: 0.614396 0.021888 0.513523 + +Polar angle tht: 2.2253; Azimuth angle phi: 0.5236 +Force: -3.177842 -1.946122 3.129611 +Torque: 0.665226 0.021640 0.542908 + +Polar angle tht: 2.2253; Azimuth angle phi: 0.5672 +Force: -3.078281 -2.086794 3.128749 +Torque: 0.714775 0.021358 0.568161 + +Polar angle tht: 2.2253; Azimuth angle phi: 0.6109 +Force: -2.972641 -2.222536 3.127661 +Torque: 0.762946 0.021039 0.589090 + +Polar angle tht: 2.2253; Azimuth angle phi: 0.6545 +Force: -2.861321 -2.353053 3.126318 +Torque: 0.809647 0.020680 0.605536 + +Polar angle tht: 2.2253; Azimuth angle phi: 0.6981 +Force: -2.744739 -2.478070 3.124687 +Torque: 0.854790 0.020279 0.617373 + +Polar angle tht: 2.2253; Azimuth angle phi: 0.7418 +Force: -2.655075 -2.617753 3.163059 +Torque: 0.870858 0.021134 0.603574 + +Polar angle tht: 2.2253; Azimuth angle phi: 0.7854 +Force: -2.558940 -2.754688 3.201617 +Torque: 0.884710 0.021855 0.586397 + +Polar angle tht: 2.2253; Azimuth angle phi: 0.8290 +Force: -2.454792 -2.887140 3.237913 +Torque: 0.897923 0.022358 0.567141 + +Polar angle tht: 2.2253; Azimuth angle phi: 0.8727 +Force: -2.343060 -3.014495 3.271861 +Torque: 0.910475 0.022639 0.545846 + +Polar angle tht: 2.2253; Azimuth angle phi: 0.9163 +Force: -2.224215 -3.136156 3.303377 +Torque: 0.922344 0.022695 0.522563 + +Polar angle tht: 2.2253; Azimuth angle phi: 0.9599 +Force: -2.098768 -3.251556 3.332385 +Torque: 0.933513 0.022526 0.497355 + +Polar angle tht: 2.2253; Azimuth angle phi: 1.0036 +Force: -1.967268 -3.360150 3.358811 +Torque: 0.943963 0.022133 0.470295 + +Polar angle tht: 2.2253; Azimuth angle phi: 1.0472 +Force: -1.830296 -3.461430 3.382590 +Torque: 0.953679 0.021518 0.441467 + +Polar angle tht: 2.2253; Azimuth angle phi: 1.0908 +Force: -1.688463 -3.554918 3.403659 +Torque: 0.962644 0.020686 0.410965 + +Polar angle tht: 2.2253; Azimuth angle phi: 1.1345 +Force: -1.542407 -3.640176 3.421964 +Torque: 0.970846 0.019643 0.378891 + +Polar angle tht: 2.2253; Azimuth angle phi: 1.1781 +Force: -1.392787 -3.716808 3.437456 +Torque: 0.978273 0.018397 0.345358 + +Polar angle tht: 2.2253; Azimuth angle phi: 1.2217 +Force: -1.240280 -3.784459 3.450091 +Torque: 0.984914 0.016956 0.310486 + +Polar angle tht: 2.2253; Azimuth angle phi: 1.2654 +Force: -1.085576 -3.842820 3.459834 +Torque: 0.990759 0.015333 0.274405 + +Polar angle tht: 2.2253; Azimuth angle phi: 1.3090 +Force: -0.929377 -3.891629 3.466656 +Torque: 0.995801 0.013538 0.237248 + +Polar angle tht: 2.2253; Azimuth angle phi: 1.3526 +Force: -0.772386 -3.930675 3.470533 +Torque: 1.000034 0.011585 0.199158 + +Polar angle tht: 2.2253; Azimuth angle phi: 1.3963 +Force: -0.615309 -3.959795 3.471450 +Torque: 1.003451 0.009489 0.160282 + +Polar angle tht: 2.2253; Azimuth angle phi: 1.4399 +Force: -0.458846 -3.978878 3.469398 +Torque: 1.006050 0.007266 0.120772 + +Polar angle tht: 2.2253; Azimuth angle phi: 1.4835 +Force: -0.303690 -3.987866 3.464376 +Torque: 1.007828 0.004931 0.080782 + +Polar angle tht: 2.2253; Azimuth angle phi: 1.5272 +Force: -0.150521 -3.986752 3.456390 +Torque: 1.008783 0.002503 0.040472 + +Polar angle tht: 2.2253; Azimuth angle phi: 1.5708 +Force: 0.000000 -3.975583 3.445452 +Torque: 1.008916 0.000000 0.000000 + +Polar angle tht: 2.2253; Azimuth angle phi: 1.6144 +Force: 0.150521 -3.986752 3.456390 +Torque: 1.008783 -0.002503 -0.040472 + +Polar angle tht: 2.2253; Azimuth angle phi: 1.6581 +Force: 0.303690 -3.987866 3.464376 +Torque: 1.007828 -0.004931 -0.080782 + +Polar angle tht: 2.2253; Azimuth angle phi: 1.7017 +Force: 0.458846 -3.978878 3.469398 +Torque: 1.006050 -0.007266 -0.120772 + +Polar angle tht: 2.2253; Azimuth angle phi: 1.7453 +Force: 0.615309 -3.959795 3.471450 +Torque: 1.003451 -0.009489 -0.160282 + +Polar angle tht: 2.2253; Azimuth angle phi: 1.7890 +Force: 0.772386 -3.930675 3.470533 +Torque: 1.000034 -0.011585 -0.199158 + +Polar angle tht: 2.2253; Azimuth angle phi: 1.8326 +Force: 0.929377 -3.891629 3.466656 +Torque: 0.995801 -0.013538 -0.237248 + +Polar angle tht: 2.2253; Azimuth angle phi: 1.8762 +Force: 1.085576 -3.842820 3.459834 +Torque: 0.990759 -0.015333 -0.274405 + +Polar angle tht: 2.2253; Azimuth angle phi: 1.9199 +Force: 1.240280 -3.784459 3.450091 +Torque: 0.984914 -0.016956 -0.310486 + +Polar angle tht: 2.2253; Azimuth angle phi: 1.9635 +Force: 1.392787 -3.716808 3.437456 +Torque: 0.978273 -0.018397 -0.345358 + +Polar angle tht: 2.2253; Azimuth angle phi: 2.0071 +Force: 1.542407 -3.640176 3.421964 +Torque: 0.970846 -0.019643 -0.378891 + +Polar angle tht: 2.2253; Azimuth angle phi: 2.0508 +Force: 1.688463 -3.554918 3.403659 +Torque: 0.962644 -0.020686 -0.410965 + +Polar angle tht: 2.2253; Azimuth angle phi: 2.0944 +Force: 1.830296 -3.461430 3.382590 +Torque: 0.953679 -0.021518 -0.441467 + +Polar angle tht: 2.2253; Azimuth angle phi: 2.1380 +Force: 1.967268 -3.360150 3.358811 +Torque: 0.943963 -0.022133 -0.470295 + +Polar angle tht: 2.2253; Azimuth angle phi: 2.1817 +Force: 2.098768 -3.251556 3.332385 +Torque: 0.933513 -0.022526 -0.497355 + +Polar angle tht: 2.2253; Azimuth angle phi: 2.2253 +Force: 2.224215 -3.136156 3.303377 +Torque: 0.922344 -0.022695 -0.522563 + +Polar angle tht: 2.2253; Azimuth angle phi: 2.2689 +Force: 2.343060 -3.014495 3.271861 +Torque: 0.910475 -0.022639 -0.545846 + +Polar angle tht: 2.2253; Azimuth angle phi: 2.3126 +Force: 2.454792 -2.887140 3.237913 +Torque: 0.897923 -0.022358 -0.567141 + +Polar angle tht: 2.2253; Azimuth angle phi: 2.3562 +Force: 2.558940 -2.754688 3.201617 +Torque: 0.884710 -0.021855 -0.586397 + +Polar angle tht: 2.2253; Azimuth angle phi: 2.3998 +Force: 2.655075 -2.617753 3.163059 +Torque: 0.870858 -0.021134 -0.603574 + +Polar angle tht: 2.2253; Azimuth angle phi: 2.4435 +Force: 2.744739 -2.478070 3.124687 +Torque: 0.854790 -0.020279 -0.617373 + +Polar angle tht: 2.2253; Azimuth angle phi: 2.4871 +Force: 2.861321 -2.353053 3.126318 +Torque: 0.809647 -0.020680 -0.605536 + +Polar angle tht: 2.2253; Azimuth angle phi: 2.5307 +Force: 2.972641 -2.222536 3.127661 +Torque: 0.762946 -0.021039 -0.589090 + +Polar angle tht: 2.2253; Azimuth angle phi: 2.5744 +Force: 3.078281 -2.086794 3.128749 +Torque: 0.714775 -0.021358 -0.568161 + +Polar angle tht: 2.2253; Azimuth angle phi: 2.6180 +Force: 3.177842 -1.946122 3.129611 +Torque: 0.665226 -0.021640 -0.542908 + +Polar angle tht: 2.2253; Azimuth angle phi: 2.6616 +Force: 3.270943 -1.800829 3.130279 +Torque: 0.614396 -0.021888 -0.513523 + +Polar angle tht: 2.2253; Azimuth angle phi: 2.7053 +Force: 3.357225 -1.651242 3.130782 +Torque: 0.562382 -0.022104 -0.480229 + +Polar angle tht: 2.2253; Azimuth angle phi: 2.7489 +Force: 3.436353 -1.497702 3.131146 +Torque: 0.509283 -0.022292 -0.443281 + +Polar angle tht: 2.2253; Azimuth angle phi: 2.7925 +Force: 3.508019 -1.340563 3.131397 +Torque: 0.455201 -0.022453 -0.402959 + +Polar angle tht: 2.2253; Azimuth angle phi: 2.8362 +Force: 3.571939 -1.180192 3.131560 +Torque: 0.400242 -0.022589 -0.359571 + +Polar angle tht: 2.2253; Azimuth angle phi: 2.8798 +Force: 3.627862 -1.016969 3.131656 +Torque: 0.344510 -0.022704 -0.313446 + +Polar angle tht: 2.2253; Azimuth angle phi: 2.9234 +Force: 3.675565 -0.851280 3.131703 +Torque: 0.288113 -0.022797 -0.264935 + +Polar angle tht: 2.2253; Azimuth angle phi: 2.9671 +Force: 3.714859 -0.683525 3.131719 +Torque: 0.231160 -0.022871 -0.214408 + +Polar angle tht: 2.2253; Azimuth angle phi: 3.0107 +Force: 3.745585 -0.514106 3.131717 +Torque: 0.173761 -0.022928 -0.162249 + +Polar angle tht: 2.2253; Azimuth angle phi: 3.0543 +Force: 3.767621 -0.343436 3.131708 +Torque: 0.116027 -0.022967 -0.108855 + +Polar angle tht: 2.2253; Azimuth angle phi: 3.0980 +Force: 3.780878 -0.171928 3.131699 +Torque: 0.058068 -0.022991 -0.054633 + +Polar angle tht: 2.2253; Azimuth angle phi: 3.1416 +Force: 3.785303 0.000000 3.131696 +Torque: -0.000003 -0.022998 0.000005 + +Polar angle tht: 2.2253; Azimuth angle phi: 3.1852 +Force: 3.780878 0.171928 3.131699 +Torque: -0.058073 -0.022991 0.054643 + +Polar angle tht: 2.2253; Azimuth angle phi: 3.2289 +Force: 3.767621 0.343436 3.131708 +Torque: -0.116032 -0.022967 0.108865 + +Polar angle tht: 2.2253; Azimuth angle phi: 3.2725 +Force: 3.745585 0.514106 3.131717 +Torque: -0.173767 -0.022928 0.162258 + +Polar angle tht: 2.2253; Azimuth angle phi: 3.3161 +Force: 3.714859 0.683525 3.131719 +Torque: -0.231166 -0.022871 0.214417 + +Polar angle tht: 2.2253; Azimuth angle phi: 3.3598 +Force: 3.675565 0.851280 3.131703 +Torque: -0.288119 -0.022797 0.264944 + +Polar angle tht: 2.2253; Azimuth angle phi: 3.4034 +Force: 3.627862 1.016969 3.131656 +Torque: -0.344515 -0.022704 0.313455 + +Polar angle tht: 2.2253; Azimuth angle phi: 3.4470 +Force: 3.571939 1.180192 3.131560 +Torque: -0.400247 -0.022589 0.359580 + +Polar angle tht: 2.2253; Azimuth angle phi: 3.4907 +Force: 3.508019 1.340563 3.131397 +Torque: -0.455207 -0.022453 0.402968 + +Polar angle tht: 2.2253; Azimuth angle phi: 3.5343 +Force: 3.436353 1.497702 3.131146 +Torque: -0.509288 -0.022292 0.443290 + +Polar angle tht: 2.2253; Azimuth angle phi: 3.5779 +Force: 3.357225 1.651242 3.130782 +Torque: -0.562387 -0.022104 0.480238 + +Polar angle tht: 2.2253; Azimuth angle phi: 3.6216 +Force: 3.270943 1.800829 3.130279 +Torque: -0.614402 -0.021888 0.513531 + +Polar angle tht: 2.2253; Azimuth angle phi: 3.6652 +Force: 3.177842 1.946122 3.129611 +Torque: -0.665232 -0.021640 0.542916 + +Polar angle tht: 2.2253; Azimuth angle phi: 3.7088 +Force: 3.078281 2.086794 3.128749 +Torque: -0.714781 -0.021358 0.568169 + +Polar angle tht: 2.2253; Azimuth angle phi: 3.7525 +Force: 2.972641 2.222536 3.127661 +Torque: -0.762952 -0.021039 0.589098 + +Polar angle tht: 2.2253; Azimuth angle phi: 3.7961 +Force: 2.861321 2.353053 3.126318 +Torque: -0.809654 -0.020680 0.605543 + +Polar angle tht: 2.2253; Azimuth angle phi: 3.8397 +Force: 2.744739 2.478070 3.124687 +Torque: -0.854797 -0.020279 0.617380 + +Polar angle tht: 2.2253; Azimuth angle phi: 3.8834 +Force: 2.655075 2.617753 3.163059 +Torque: -0.870866 -0.021134 0.603581 + +Polar angle tht: 2.2253; Azimuth angle phi: 3.9270 +Force: 2.558940 2.754688 3.201617 +Torque: -0.884719 -0.021855 0.586405 + +Polar angle tht: 2.2253; Azimuth angle phi: 3.9706 +Force: 2.454792 2.887140 3.237913 +Torque: -0.897933 -0.022358 0.567149 + +Polar angle tht: 2.2253; Azimuth angle phi: 4.0143 +Force: 2.343060 3.014495 3.271861 +Torque: -0.910485 -0.022639 0.545854 + +Polar angle tht: 2.2253; Azimuth angle phi: 4.0579 +Force: 2.224215 3.136156 3.303377 +Torque: -0.922355 -0.022695 0.522571 + +Polar angle tht: 2.2253; Azimuth angle phi: 4.1015 +Force: 2.098768 3.251556 3.332385 +Torque: -0.933525 -0.022526 0.497363 + +Polar angle tht: 2.2253; Azimuth angle phi: 4.1452 +Force: 1.967268 3.360150 3.358811 +Torque: -0.943976 -0.022133 0.470303 + +Polar angle tht: 2.2253; Azimuth angle phi: 4.1888 +Force: 1.830296 3.461430 3.382590 +Torque: -0.953692 -0.021518 0.441475 + +Polar angle tht: 2.2253; Azimuth angle phi: 4.2324 +Force: 1.688463 3.554918 3.403659 +Torque: -0.962658 -0.020686 0.410972 + +Polar angle tht: 2.2253; Azimuth angle phi: 4.2761 +Force: 1.542407 3.640176 3.421964 +Torque: -0.970861 -0.019643 0.378898 + +Polar angle tht: 2.2253; Azimuth angle phi: 4.3197 +Force: 1.392787 3.716808 3.437456 +Torque: -0.978288 -0.018397 0.345364 + +Polar angle tht: 2.2253; Azimuth angle phi: 4.3633 +Force: 1.240280 3.784459 3.450091 +Torque: -0.984929 -0.016956 0.310492 + +Polar angle tht: 2.2253; Azimuth angle phi: 4.4070 +Force: 1.085576 3.842820 3.459834 +Torque: -0.990775 -0.015333 0.274410 + +Polar angle tht: 2.2253; Azimuth angle phi: 4.4506 +Force: 0.929377 3.891629 3.466656 +Torque: -0.995818 -0.013538 0.237253 + +Polar angle tht: 2.2253; Azimuth angle phi: 4.4942 +Force: 0.772386 3.930675 3.470533 +Torque: -1.000050 -0.011585 0.199162 + +Polar angle tht: 2.2253; Azimuth angle phi: 4.5379 +Force: 0.615309 3.959795 3.471450 +Torque: -1.003468 -0.009489 0.160286 + +Polar angle tht: 2.2253; Azimuth angle phi: 4.5815 +Force: 0.458846 3.978878 3.469398 +Torque: -1.006067 -0.007266 0.120774 + +Polar angle tht: 2.2253; Azimuth angle phi: 4.6251 +Force: 0.303690 3.987866 3.464376 +Torque: -1.007845 -0.004931 0.080784 + +Polar angle tht: 2.2253; Azimuth angle phi: 4.6688 +Force: 0.150521 3.986752 3.456390 +Torque: -1.008800 -0.002503 0.040473 + +Polar angle tht: 2.2253; Azimuth angle phi: 4.7124 +Force: 0.000000 3.975583 3.445452 +Torque: -1.008933 0.000000 -0.000000 + +Polar angle tht: 2.2253; Azimuth angle phi: 4.7560 +Force: -0.150521 3.986752 3.456390 +Torque: -1.008800 0.002503 -0.040473 + +Polar angle tht: 2.2253; Azimuth angle phi: 4.7997 +Force: -0.303690 3.987866 3.464376 +Torque: -1.007845 0.004931 -0.080784 + +Polar angle tht: 2.2253; Azimuth angle phi: 4.8433 +Force: -0.458846 3.978878 3.469398 +Torque: -1.006067 0.007266 -0.120774 + +Polar angle tht: 2.2253; Azimuth angle phi: 4.8869 +Force: -0.615309 3.959795 3.471450 +Torque: -1.003468 0.009489 -0.160286 + +Polar angle tht: 2.2253; Azimuth angle phi: 4.9306 +Force: -0.772386 3.930675 3.470533 +Torque: -1.000050 0.011585 -0.199162 + +Polar angle tht: 2.2253; Azimuth angle phi: 4.9742 +Force: -0.929377 3.891629 3.466656 +Torque: -0.995818 0.013538 -0.237253 + +Polar angle tht: 2.2253; Azimuth angle phi: 5.0178 +Force: -1.085576 3.842820 3.459834 +Torque: -0.990775 0.015333 -0.274410 + +Polar angle tht: 2.2253; Azimuth angle phi: 5.0615 +Force: -1.240280 3.784459 3.450091 +Torque: -0.984929 0.016956 -0.310492 + +Polar angle tht: 2.2253; Azimuth angle phi: 5.1051 +Force: -1.392787 3.716808 3.437456 +Torque: -0.978288 0.018397 -0.345364 + +Polar angle tht: 2.2253; Azimuth angle phi: 5.1487 +Force: -1.542407 3.640176 3.421964 +Torque: -0.970861 0.019643 -0.378898 + +Polar angle tht: 2.2253; Azimuth angle phi: 5.1924 +Force: -1.688463 3.554918 3.403659 +Torque: -0.962658 0.020686 -0.410972 + +Polar angle tht: 2.2253; Azimuth angle phi: 5.2360 +Force: -1.830296 3.461430 3.382590 +Torque: -0.953692 0.021518 -0.441475 + +Polar angle tht: 2.2253; Azimuth angle phi: 5.2796 +Force: -1.967268 3.360150 3.358811 +Torque: -0.943976 0.022133 -0.470303 + +Polar angle tht: 2.2253; Azimuth angle phi: 5.3233 +Force: -2.098768 3.251556 3.332385 +Torque: -0.933525 0.022526 -0.497363 + +Polar angle tht: 2.2253; Azimuth angle phi: 5.3669 +Force: -2.224215 3.136156 3.303377 +Torque: -0.922355 0.022695 -0.522571 + +Polar angle tht: 2.2253; Azimuth angle phi: 5.4105 +Force: -2.343060 3.014495 3.271861 +Torque: -0.910485 0.022639 -0.545854 + +Polar angle tht: 2.2253; Azimuth angle phi: 5.4542 +Force: -2.454792 2.887140 3.237913 +Torque: -0.897933 0.022358 -0.567149 + +Polar angle tht: 2.2253; Azimuth angle phi: 5.4978 +Force: -2.558940 2.754688 3.201617 +Torque: -0.884719 0.021855 -0.586405 + +Polar angle tht: 2.2253; Azimuth angle phi: 5.5414 +Force: -2.655075 2.617753 3.163059 +Torque: -0.870866 0.021134 -0.603581 + +Polar angle tht: 2.2253; Azimuth angle phi: 5.5851 +Force: -2.744739 2.478070 3.124687 +Torque: -0.854797 0.020279 -0.617380 + +Polar angle tht: 2.2253; Azimuth angle phi: 5.6287 +Force: -2.861321 2.353053 3.126318 +Torque: -0.809654 0.020680 -0.605543 + +Polar angle tht: 2.2253; Azimuth angle phi: 5.6723 +Force: -2.972641 2.222536 3.127661 +Torque: -0.762952 0.021039 -0.589098 + +Polar angle tht: 2.2253; Azimuth angle phi: 5.7160 +Force: -3.078281 2.086794 3.128749 +Torque: -0.714781 0.021358 -0.568169 + +Polar angle tht: 2.2253; Azimuth angle phi: 5.7596 +Force: -3.177842 1.946122 3.129611 +Torque: -0.665232 0.021640 -0.542916 + +Polar angle tht: 2.2253; Azimuth angle phi: 5.8032 +Force: -3.270943 1.800829 3.130279 +Torque: -0.614402 0.021888 -0.513531 + +Polar angle tht: 2.2253; Azimuth angle phi: 5.8469 +Force: -3.357225 1.651242 3.130782 +Torque: -0.562387 0.022104 -0.480238 + +Polar angle tht: 2.2253; Azimuth angle phi: 5.8905 +Force: -3.436353 1.497702 3.131146 +Torque: -0.509288 0.022292 -0.443290 + +Polar angle tht: 2.2253; Azimuth angle phi: 5.9341 +Force: -3.508019 1.340563 3.131397 +Torque: -0.455207 0.022453 -0.402968 + +Polar angle tht: 2.2253; Azimuth angle phi: 5.9778 +Force: -3.571939 1.180192 3.131560 +Torque: -0.400247 0.022589 -0.359580 + +Polar angle tht: 2.2253; Azimuth angle phi: 6.0214 +Force: -3.627862 1.016969 3.131656 +Torque: -0.344515 0.022704 -0.313455 + +Polar angle tht: 2.2253; Azimuth angle phi: 6.0650 +Force: -3.675565 0.851280 3.131703 +Torque: -0.288119 0.022797 -0.264944 + +Polar angle tht: 2.2253; Azimuth angle phi: 6.1087 +Force: -3.714859 0.683525 3.131719 +Torque: -0.231166 0.022871 -0.214417 + +Polar angle tht: 2.2253; Azimuth angle phi: 6.1523 +Force: -3.745585 0.514106 3.131717 +Torque: -0.173767 0.022928 -0.162258 + +Polar angle tht: 2.2253; Azimuth angle phi: 6.1959 +Force: -3.767621 0.343436 3.131708 +Torque: -0.116032 0.022967 -0.108865 + +Polar angle tht: 2.2253; Azimuth angle phi: 6.2396 +Force: -3.780878 0.171928 3.131699 +Torque: -0.058073 0.022991 -0.054643 + +Polar angle tht: 2.2253; Azimuth angle phi: 6.2832 +Force: -3.785303 0.000000 3.131696 +Torque: -0.000003 0.022998 -0.000005 + +Polar angle tht: 2.2689; Azimuth angle phi: 0.0000 +Force: -3.776608 0.000000 3.430830 +Torque: -0.000003 0.024868 -0.000005 + +Polar angle tht: 2.2689; Azimuth angle phi: 0.0436 +Force: -3.772247 -0.172551 3.430809 +Torque: 0.058497 0.024857 0.050936 + +Polar angle tht: 2.2689; Azimuth angle phi: 0.0873 +Force: -3.759180 -0.344688 3.430746 +Torque: 0.116884 0.024826 0.101490 + +Polar angle tht: 2.2689; Azimuth angle phi: 0.1309 +Force: -3.737460 -0.515997 3.430637 +Torque: 0.175045 0.024773 0.151271 + +Polar angle tht: 2.2689; Azimuth angle phi: 0.1745 +Force: -3.707171 -0.686069 3.430475 +Torque: 0.232869 0.024697 0.199901 + +Polar angle tht: 2.2689; Azimuth angle phi: 0.2182 +Force: -3.668430 -0.854497 3.430249 +Torque: 0.290244 0.024599 0.247009 + +Polar angle tht: 2.2689; Azimuth angle phi: 0.2618 +Force: -3.621389 -1.020883 3.429947 +Torque: 0.347060 0.024476 0.292238 + +Polar angle tht: 2.2689; Azimuth angle phi: 0.3054 +Force: -3.566229 -1.184832 3.429556 +Torque: 0.403206 0.024328 0.335242 + +Polar angle tht: 2.2689; Azimuth angle phi: 0.3491 +Force: -3.503163 -1.345960 3.429056 +Torque: 0.458575 0.024153 0.375695 + +Polar angle tht: 2.2689; Azimuth angle phi: 0.3927 +Force: -3.432434 -1.503892 3.428429 +Torque: 0.513060 0.023949 0.413289 + +Polar angle tht: 2.2689; Azimuth angle phi: 0.4363 +Force: -3.354312 -1.658265 3.427654 +Torque: 0.566556 0.023714 0.447737 + +Polar angle tht: 2.2689; Azimuth angle phi: 0.4800 +Force: -3.269093 -1.808726 3.426707 +Torque: 0.618961 0.023446 0.478778 + +Polar angle tht: 2.2689; Azimuth angle phi: 0.5236 +Force: -3.177100 -1.954936 3.425564 +Torque: 0.670174 0.023142 0.506174 + +Polar angle tht: 2.2689; Azimuth angle phi: 0.5672 +Force: -3.078675 -2.096570 3.424198 +Torque: 0.720097 0.022802 0.529719 + +Polar angle tht: 2.2689; Azimuth angle phi: 0.6109 +Force: -2.974185 -2.233321 3.422583 +Torque: 0.768633 0.022421 0.549232 + +Polar angle tht: 2.2689; Azimuth angle phi: 0.6545 +Force: -2.864014 -2.364893 3.420691 +Torque: 0.815690 0.021999 0.564565 + +Polar angle tht: 2.2689; Azimuth angle phi: 0.6981 +Force: -2.748563 -2.491012 3.418493 +Torque: 0.861179 0.021531 0.575601 + +Polar angle tht: 2.2689; Azimuth angle phi: 0.7418 +Force: -2.628248 -2.611418 3.415961 +Torque: 0.905011 0.021016 0.582257 + +Polar angle tht: 2.2689; Azimuth angle phi: 0.7854 +Force: -2.505529 -2.727298 3.415985 +Torque: 0.945121 0.020535 0.583142 + +Polar angle tht: 2.2689; Azimuth angle phi: 0.8290 +Force: -2.403091 -2.856336 3.452331 +Torque: 0.958406 0.020997 0.563565 + +Polar angle tht: 2.2689; Azimuth angle phi: 0.8727 +Force: -2.293365 -2.980362 3.486303 +Torque: 0.971030 0.021251 0.542021 + +Polar angle tht: 2.2689; Azimuth angle phi: 0.9163 +Force: -2.176800 -3.098813 3.517818 +Torque: 0.982972 0.021296 0.518561 + +Polar angle tht: 2.2689; Azimuth angle phi: 0.9599 +Force: -2.053883 -3.211148 3.546801 +Torque: 0.994212 0.021130 0.493246 + +Polar angle tht: 2.2689; Azimuth angle phi: 1.0036 +Force: -1.925138 -3.316852 3.573181 +Torque: 1.004732 0.020755 0.466149 + +Polar angle tht: 2.2689; Azimuth angle phi: 1.0472 +Force: -1.791118 -3.415440 3.596891 +Torque: 1.014515 0.020174 0.437350 + +Polar angle tht: 2.2689; Azimuth angle phi: 1.0908 +Force: -1.652405 -3.506460 3.617873 +Torque: 1.023546 0.019389 0.406941 + +Polar angle tht: 2.2689; Azimuth angle phi: 1.1345 +Force: -1.509605 -3.589498 3.636072 +Torque: 1.031812 0.018408 0.375022 + +Polar angle tht: 2.2689; Azimuth angle phi: 1.1781 +Force: -1.363346 -3.664176 3.651439 +Torque: 1.039299 0.017238 0.341701 + +Polar angle tht: 2.2689; Azimuth angle phi: 1.2217 +Force: -1.214273 -3.730157 3.663934 +Torque: 1.045997 0.015886 0.307095 + +Polar angle tht: 2.2689; Azimuth angle phi: 1.2654 +Force: -1.063042 -3.787147 3.673521 +Torque: 1.051897 0.014363 0.271326 + +Polar angle tht: 2.2689; Azimuth angle phi: 1.3090 +Force: -0.910319 -3.834899 3.680173 +Torque: 1.056989 0.012680 0.234527 + +Polar angle tht: 2.2689; Azimuth angle phi: 1.3526 +Force: -0.756774 -3.873210 3.683866 +Torque: 1.061267 0.010850 0.196831 + +Polar angle tht: 2.2689; Azimuth angle phi: 1.3963 +Force: -0.603079 -3.901924 3.684588 +Torque: 1.064727 0.008886 0.158382 + +Polar angle tht: 2.2689; Azimuth angle phi: 1.4399 +Force: -0.449901 -3.920937 3.682328 +Torque: 1.067362 0.006803 0.119323 + +Polar angle tht: 2.2689; Azimuth angle phi: 1.4835 +Force: -0.297900 -3.930190 3.677088 +Torque: 1.069172 0.004617 0.079806 + +Polar angle tht: 2.2689; Azimuth angle phi: 1.5272 +Force: -0.147722 -3.929676 3.668874 +Torque: 1.070154 0.002344 0.039980 + +Polar angle tht: 2.2689; Azimuth angle phi: 1.5708 +Force: 0.000000 -3.919437 3.657698 +Torque: 1.070308 0.000000 0.000000 + +Polar angle tht: 2.2689; Azimuth angle phi: 1.6144 +Force: 0.147722 -3.929676 3.668874 +Torque: 1.070154 -0.002344 -0.039980 + +Polar angle tht: 2.2689; Azimuth angle phi: 1.6581 +Force: 0.297900 -3.930190 3.677088 +Torque: 1.069172 -0.004617 -0.079806 + +Polar angle tht: 2.2689; Azimuth angle phi: 1.7017 +Force: 0.449901 -3.920937 3.682328 +Torque: 1.067362 -0.006803 -0.119323 + +Polar angle tht: 2.2689; Azimuth angle phi: 1.7453 +Force: 0.603079 -3.901924 3.684588 +Torque: 1.064727 -0.008886 -0.158382 + +Polar angle tht: 2.2689; Azimuth angle phi: 1.7890 +Force: 0.756774 -3.873210 3.683866 +Torque: 1.061267 -0.010850 -0.196831 + +Polar angle tht: 2.2689; Azimuth angle phi: 1.8326 +Force: 0.910319 -3.834899 3.680173 +Torque: 1.056989 -0.012680 -0.234527 + +Polar angle tht: 2.2689; Azimuth angle phi: 1.8762 +Force: 1.063042 -3.787147 3.673521 +Torque: 1.051897 -0.014363 -0.271326 + +Polar angle tht: 2.2689; Azimuth angle phi: 1.9199 +Force: 1.214273 -3.730157 3.663934 +Torque: 1.045997 -0.015886 -0.307095 + +Polar angle tht: 2.2689; Azimuth angle phi: 1.9635 +Force: 1.363346 -3.664176 3.651439 +Torque: 1.039299 -0.017238 -0.341701 + +Polar angle tht: 2.2689; Azimuth angle phi: 2.0071 +Force: 1.509605 -3.589498 3.636072 +Torque: 1.031812 -0.018408 -0.375022 + +Polar angle tht: 2.2689; Azimuth angle phi: 2.0508 +Force: 1.652405 -3.506460 3.617873 +Torque: 1.023546 -0.019389 -0.406941 + +Polar angle tht: 2.2689; Azimuth angle phi: 2.0944 +Force: 1.791118 -3.415440 3.596891 +Torque: 1.014515 -0.020174 -0.437350 + +Polar angle tht: 2.2689; Azimuth angle phi: 2.1380 +Force: 1.925138 -3.316852 3.573181 +Torque: 1.004732 -0.020755 -0.466149 + +Polar angle tht: 2.2689; Azimuth angle phi: 2.1817 +Force: 2.053883 -3.211148 3.546801 +Torque: 0.994212 -0.021130 -0.493246 + +Polar angle tht: 2.2689; Azimuth angle phi: 2.2253 +Force: 2.176800 -3.098813 3.517818 +Torque: 0.982972 -0.021296 -0.518561 + +Polar angle tht: 2.2689; Azimuth angle phi: 2.2689 +Force: 2.293365 -2.980362 3.486303 +Torque: 0.971030 -0.021251 -0.542021 + +Polar angle tht: 2.2689; Azimuth angle phi: 2.3126 +Force: 2.403091 -2.856336 3.452331 +Torque: 0.958406 -0.020997 -0.563565 + +Polar angle tht: 2.2689; Azimuth angle phi: 2.3562 +Force: 2.505529 -2.727298 3.415985 +Torque: 0.945121 -0.020535 -0.583142 + +Polar angle tht: 2.2689; Azimuth angle phi: 2.3998 +Force: 2.628248 -2.611418 3.415961 +Torque: 0.905011 -0.021016 -0.582257 + +Polar angle tht: 2.2689; Azimuth angle phi: 2.4435 +Force: 2.748563 -2.491012 3.418493 +Torque: 0.861179 -0.021531 -0.575601 + +Polar angle tht: 2.2689; Azimuth angle phi: 2.4871 +Force: 2.864014 -2.364893 3.420691 +Torque: 0.815690 -0.021999 -0.564565 + +Polar angle tht: 2.2689; Azimuth angle phi: 2.5307 +Force: 2.974185 -2.233321 3.422583 +Torque: 0.768633 -0.022421 -0.549232 + +Polar angle tht: 2.2689; Azimuth angle phi: 2.5744 +Force: 3.078675 -2.096570 3.424198 +Torque: 0.720097 -0.022802 -0.529719 + +Polar angle tht: 2.2689; Azimuth angle phi: 2.6180 +Force: 3.177100 -1.954936 3.425564 +Torque: 0.670174 -0.023142 -0.506174 + +Polar angle tht: 2.2689; Azimuth angle phi: 2.6616 +Force: 3.269093 -1.808726 3.426707 +Torque: 0.618961 -0.023446 -0.478778 + +Polar angle tht: 2.2689; Azimuth angle phi: 2.7053 +Force: 3.354312 -1.658265 3.427654 +Torque: 0.566556 -0.023714 -0.447737 + +Polar angle tht: 2.2689; Azimuth angle phi: 2.7489 +Force: 3.432434 -1.503892 3.428429 +Torque: 0.513060 -0.023949 -0.413289 + +Polar angle tht: 2.2689; Azimuth angle phi: 2.7925 +Force: 3.503163 -1.345960 3.429056 +Torque: 0.458575 -0.024153 -0.375695 + +Polar angle tht: 2.2689; Azimuth angle phi: 2.8362 +Force: 3.566229 -1.184832 3.429556 +Torque: 0.403206 -0.024328 -0.335242 + +Polar angle tht: 2.2689; Azimuth angle phi: 2.8798 +Force: 3.621389 -1.020883 3.429947 +Torque: 0.347060 -0.024476 -0.292238 + +Polar angle tht: 2.2689; Azimuth angle phi: 2.9234 +Force: 3.668430 -0.854497 3.430249 +Torque: 0.290244 -0.024599 -0.247009 + +Polar angle tht: 2.2689; Azimuth angle phi: 2.9671 +Force: 3.707171 -0.686069 3.430475 +Torque: 0.232869 -0.024697 -0.199901 + +Polar angle tht: 2.2689; Azimuth angle phi: 3.0107 +Force: 3.737460 -0.515997 3.430637 +Torque: 0.175045 -0.024773 -0.151271 + +Polar angle tht: 2.2689; Azimuth angle phi: 3.0543 +Force: 3.759180 -0.344688 3.430746 +Torque: 0.116884 -0.024826 -0.101490 + +Polar angle tht: 2.2689; Azimuth angle phi: 3.0980 +Force: 3.772247 -0.172551 3.430809 +Torque: 0.058497 -0.024857 -0.050936 + +Polar angle tht: 2.2689; Azimuth angle phi: 3.1416 +Force: 3.776608 0.000000 3.430830 +Torque: -0.000003 -0.024868 0.000005 + +Polar angle tht: 2.2689; Azimuth angle phi: 3.1852 +Force: 3.772247 0.172551 3.430809 +Torque: -0.058503 -0.024857 0.050946 + +Polar angle tht: 2.2689; Azimuth angle phi: 3.2289 +Force: 3.759180 0.344688 3.430746 +Torque: -0.116890 -0.024826 0.101499 + +Polar angle tht: 2.2689; Azimuth angle phi: 3.2725 +Force: 3.737460 0.515997 3.430637 +Torque: -0.175052 -0.024773 0.151281 + +Polar angle tht: 2.2689; Azimuth angle phi: 3.3161 +Force: 3.707171 0.686069 3.430475 +Torque: -0.232876 -0.024697 0.199910 + +Polar angle tht: 2.2689; Azimuth angle phi: 3.3598 +Force: 3.668430 0.854497 3.430249 +Torque: -0.290251 -0.024599 0.247019 + +Polar angle tht: 2.2689; Azimuth angle phi: 3.4034 +Force: 3.621389 1.020883 3.429947 +Torque: -0.347066 -0.024476 0.292247 + +Polar angle tht: 2.2689; Azimuth angle phi: 3.4470 +Force: 3.566229 1.184832 3.429556 +Torque: -0.403212 -0.024328 0.335251 + +Polar angle tht: 2.2689; Azimuth angle phi: 3.4907 +Force: 3.503163 1.345960 3.429056 +Torque: -0.458581 -0.024153 0.375704 + +Polar angle tht: 2.2689; Azimuth angle phi: 3.5343 +Force: 3.432434 1.503892 3.428429 +Torque: -0.513066 -0.023949 0.413298 + +Polar angle tht: 2.2689; Azimuth angle phi: 3.5779 +Force: 3.354312 1.658265 3.427654 +Torque: -0.566563 -0.023714 0.447746 + +Polar angle tht: 2.2689; Azimuth angle phi: 3.6216 +Force: 3.269093 1.808726 3.426707 +Torque: -0.618968 -0.023446 0.478786 + +Polar angle tht: 2.2689; Azimuth angle phi: 3.6652 +Force: 3.177100 1.954936 3.425564 +Torque: -0.670181 -0.023142 0.506183 + +Polar angle tht: 2.2689; Azimuth angle phi: 3.7088 +Force: 3.078675 2.096570 3.424198 +Torque: -0.720103 -0.022802 0.529727 + +Polar angle tht: 2.2689; Azimuth angle phi: 3.7525 +Force: 2.974185 2.233321 3.422583 +Torque: -0.768640 -0.022421 0.549240 + +Polar angle tht: 2.2689; Azimuth angle phi: 3.7961 +Force: 2.864014 2.364893 3.420691 +Torque: -0.815697 -0.021999 0.564573 + +Polar angle tht: 2.2689; Azimuth angle phi: 3.8397 +Force: 2.748563 2.491012 3.418493 +Torque: -0.861186 -0.021531 0.575609 + +Polar angle tht: 2.2689; Azimuth angle phi: 3.8834 +Force: 2.628248 2.611418 3.415961 +Torque: -0.905018 -0.021016 0.582264 + +Polar angle tht: 2.2689; Azimuth angle phi: 3.9270 +Force: 2.505529 2.727298 3.415985 +Torque: -0.945128 -0.020535 0.583148 + +Polar angle tht: 2.2689; Azimuth angle phi: 3.9706 +Force: 2.403091 2.856336 3.452331 +Torque: -0.958415 -0.020997 0.563572 + +Polar angle tht: 2.2689; Azimuth angle phi: 4.0143 +Force: 2.293365 2.980362 3.486303 +Torque: -0.971039 -0.021251 0.542028 + +Polar angle tht: 2.2689; Azimuth angle phi: 4.0579 +Force: 2.176800 3.098813 3.517818 +Torque: -0.982982 -0.021296 0.518568 + +Polar angle tht: 2.2689; Azimuth angle phi: 4.1015 +Force: 2.053883 3.211148 3.546801 +Torque: -0.994223 -0.021130 0.493254 + +Polar angle tht: 2.2689; Azimuth angle phi: 4.1452 +Force: 1.925138 3.316852 3.573181 +Torque: -1.004743 -0.020755 0.466156 + +Polar angle tht: 2.2689; Azimuth angle phi: 4.1888 +Force: 1.791118 3.415440 3.596891 +Torque: -1.014527 -0.020174 0.437357 + +Polar angle tht: 2.2689; Azimuth angle phi: 4.2324 +Force: 1.652405 3.506460 3.617873 +Torque: -1.023559 -0.019389 0.406948 + +Polar angle tht: 2.2689; Azimuth angle phi: 4.2761 +Force: 1.509605 3.589498 3.636072 +Torque: -1.031825 -0.018408 0.375028 + +Polar angle tht: 2.2689; Azimuth angle phi: 4.3197 +Force: 1.363346 3.664176 3.651439 +Torque: -1.039313 -0.017238 0.341707 + +Polar angle tht: 2.2689; Azimuth angle phi: 4.3633 +Force: 1.214273 3.730157 3.663934 +Torque: -1.046012 -0.015886 0.307100 + +Polar angle tht: 2.2689; Azimuth angle phi: 4.4070 +Force: 1.063042 3.787147 3.673521 +Torque: -1.051912 -0.014363 0.271331 + +Polar angle tht: 2.2689; Azimuth angle phi: 4.4506 +Force: 0.910319 3.834899 3.680173 +Torque: -1.057004 -0.012680 0.234531 + +Polar angle tht: 2.2689; Azimuth angle phi: 4.4942 +Force: 0.756774 3.873210 3.683866 +Torque: -1.061283 -0.010850 0.196835 + +Polar angle tht: 2.2689; Azimuth angle phi: 4.5379 +Force: 0.603079 3.901924 3.684588 +Torque: -1.064742 -0.008886 0.158385 + +Polar angle tht: 2.2689; Azimuth angle phi: 4.5815 +Force: 0.449901 3.920937 3.682328 +Torque: -1.067378 -0.006803 0.119326 + +Polar angle tht: 2.2689; Azimuth angle phi: 4.6251 +Force: 0.297900 3.930190 3.677088 +Torque: -1.069188 -0.004617 0.079807 + +Polar angle tht: 2.2689; Azimuth angle phi: 4.6688 +Force: 0.147722 3.929676 3.668874 +Torque: -1.070170 -0.002344 0.039981 + +Polar angle tht: 2.2689; Azimuth angle phi: 4.7124 +Force: 0.000000 3.919437 3.657698 +Torque: -1.070325 0.000000 -0.000000 + +Polar angle tht: 2.2689; Azimuth angle phi: 4.7560 +Force: -0.147722 3.929676 3.668874 +Torque: -1.070170 0.002344 -0.039981 + +Polar angle tht: 2.2689; Azimuth angle phi: 4.7997 +Force: -0.297900 3.930190 3.677088 +Torque: -1.069188 0.004617 -0.079807 + +Polar angle tht: 2.2689; Azimuth angle phi: 4.8433 +Force: -0.449901 3.920937 3.682328 +Torque: -1.067378 0.006803 -0.119326 + +Polar angle tht: 2.2689; Azimuth angle phi: 4.8869 +Force: -0.603079 3.901924 3.684588 +Torque: -1.064742 0.008886 -0.158385 + +Polar angle tht: 2.2689; Azimuth angle phi: 4.9306 +Force: -0.756774 3.873210 3.683866 +Torque: -1.061283 0.010850 -0.196835 + +Polar angle tht: 2.2689; Azimuth angle phi: 4.9742 +Force: -0.910319 3.834899 3.680173 +Torque: -1.057004 0.012680 -0.234531 + +Polar angle tht: 2.2689; Azimuth angle phi: 5.0178 +Force: -1.063042 3.787147 3.673521 +Torque: -1.051912 0.014363 -0.271331 + +Polar angle tht: 2.2689; Azimuth angle phi: 5.0615 +Force: -1.214273 3.730157 3.663934 +Torque: -1.046012 0.015886 -0.307100 + +Polar angle tht: 2.2689; Azimuth angle phi: 5.1051 +Force: -1.363346 3.664176 3.651439 +Torque: -1.039313 0.017238 -0.341707 + +Polar angle tht: 2.2689; Azimuth angle phi: 5.1487 +Force: -1.509605 3.589498 3.636072 +Torque: -1.031825 0.018408 -0.375028 + +Polar angle tht: 2.2689; Azimuth angle phi: 5.1924 +Force: -1.652405 3.506460 3.617873 +Torque: -1.023559 0.019389 -0.406948 + +Polar angle tht: 2.2689; Azimuth angle phi: 5.2360 +Force: -1.791118 3.415440 3.596891 +Torque: -1.014527 0.020174 -0.437357 + +Polar angle tht: 2.2689; Azimuth angle phi: 5.2796 +Force: -1.925138 3.316852 3.573181 +Torque: -1.004743 0.020755 -0.466156 + +Polar angle tht: 2.2689; Azimuth angle phi: 5.3233 +Force: -2.053883 3.211148 3.546801 +Torque: -0.994223 0.021130 -0.493254 + +Polar angle tht: 2.2689; Azimuth angle phi: 5.3669 +Force: -2.176800 3.098813 3.517818 +Torque: -0.982982 0.021296 -0.518568 + +Polar angle tht: 2.2689; Azimuth angle phi: 5.4105 +Force: -2.293365 2.980362 3.486303 +Torque: -0.971039 0.021251 -0.542028 + +Polar angle tht: 2.2689; Azimuth angle phi: 5.4542 +Force: -2.403091 2.856336 3.452331 +Torque: -0.958415 0.020997 -0.563572 + +Polar angle tht: 2.2689; Azimuth angle phi: 5.4978 +Force: -2.505529 2.727298 3.415985 +Torque: -0.945128 0.020535 -0.583148 + +Polar angle tht: 2.2689; Azimuth angle phi: 5.5414 +Force: -2.628248 2.611418 3.415961 +Torque: -0.905018 0.021016 -0.582264 + +Polar angle tht: 2.2689; Azimuth angle phi: 5.5851 +Force: -2.748563 2.491012 3.418493 +Torque: -0.861186 0.021531 -0.575609 + +Polar angle tht: 2.2689; Azimuth angle phi: 5.6287 +Force: -2.864014 2.364893 3.420691 +Torque: -0.815697 0.021999 -0.564573 + +Polar angle tht: 2.2689; Azimuth angle phi: 5.6723 +Force: -2.974185 2.233321 3.422583 +Torque: -0.768640 0.022421 -0.549240 + +Polar angle tht: 2.2689; Azimuth angle phi: 5.7160 +Force: -3.078675 2.096570 3.424198 +Torque: -0.720103 0.022802 -0.529727 + +Polar angle tht: 2.2689; Azimuth angle phi: 5.7596 +Force: -3.177100 1.954936 3.425564 +Torque: -0.670181 0.023142 -0.506183 + +Polar angle tht: 2.2689; Azimuth angle phi: 5.8032 +Force: -3.269093 1.808726 3.426707 +Torque: -0.618968 0.023446 -0.478786 + +Polar angle tht: 2.2689; Azimuth angle phi: 5.8469 +Force: -3.354312 1.658265 3.427654 +Torque: -0.566563 0.023714 -0.447746 + +Polar angle tht: 2.2689; Azimuth angle phi: 5.8905 +Force: -3.432434 1.503892 3.428429 +Torque: -0.513066 0.023949 -0.413298 + +Polar angle tht: 2.2689; Azimuth angle phi: 5.9341 +Force: -3.503163 1.345960 3.429056 +Torque: -0.458581 0.024153 -0.375704 + +Polar angle tht: 2.2689; Azimuth angle phi: 5.9778 +Force: -3.566229 1.184832 3.429556 +Torque: -0.403212 0.024328 -0.335251 + +Polar angle tht: 2.2689; Azimuth angle phi: 6.0214 +Force: -3.621389 1.020883 3.429947 +Torque: -0.347066 0.024476 -0.292247 + +Polar angle tht: 2.2689; Azimuth angle phi: 6.0650 +Force: -3.668430 0.854497 3.430249 +Torque: -0.290251 0.024599 -0.247019 + +Polar angle tht: 2.2689; Azimuth angle phi: 6.1087 +Force: -3.707171 0.686069 3.430475 +Torque: -0.232876 0.024697 -0.199910 + +Polar angle tht: 2.2689; Azimuth angle phi: 6.1523 +Force: -3.737460 0.515997 3.430637 +Torque: -0.175052 0.024773 -0.151281 + +Polar angle tht: 2.2689; Azimuth angle phi: 6.1959 +Force: -3.759180 0.344688 3.430746 +Torque: -0.116890 0.024826 -0.101499 + +Polar angle tht: 2.2689; Azimuth angle phi: 6.2396 +Force: -3.772247 0.172551 3.430809 +Torque: -0.058503 0.024857 -0.050946 + +Polar angle tht: 2.2689; Azimuth angle phi: 6.2832 +Force: -3.776608 0.000000 3.430830 +Torque: -0.000003 0.024868 -0.000005 + +Polar angle tht: 2.3126; Azimuth angle phi: 0.0000 +Force: -3.745141 0.000000 3.730673 +Torque: -0.000003 0.026446 -0.000005 + +Polar angle tht: 2.3126; Azimuth angle phi: 0.0436 +Force: -3.740867 -0.172095 3.730631 +Torque: 0.058552 0.026433 0.047182 + +Polar angle tht: 2.3126; Azimuth angle phi: 0.0873 +Force: -3.728059 -0.343782 3.730502 +Torque: 0.116994 0.026394 0.094010 + +Polar angle tht: 2.3126; Azimuth angle phi: 0.1309 +Force: -3.706767 -0.514656 3.730284 +Torque: 0.175211 0.026328 0.140123 + +Polar angle tht: 2.3126; Azimuth angle phi: 0.1745 +Force: -3.677071 -0.684314 3.729969 +Torque: 0.233090 0.026236 0.185169 + +Polar angle tht: 2.3126; Azimuth angle phi: 0.2182 +Force: -3.639084 -0.852358 3.729550 +Torque: 0.290520 0.026116 0.228805 + +Polar angle tht: 2.3126; Azimuth angle phi: 0.2618 +Force: -3.592950 -1.018392 3.729014 +Torque: 0.347391 0.025967 0.270701 + +Polar angle tht: 2.3126; Azimuth angle phi: 0.3054 +Force: -3.538841 -1.182032 3.728349 +Torque: 0.403592 0.025788 0.310536 + +Polar angle tht: 2.3126; Azimuth angle phi: 0.3491 +Force: -3.476961 -1.342898 3.727540 +Torque: 0.459016 0.025577 0.348008 + +Polar angle tht: 2.3126; Azimuth angle phi: 0.3927 +Force: -3.407541 -1.500620 3.726569 +Torque: 0.513557 0.025334 0.382831 + +Polar angle tht: 2.3126; Azimuth angle phi: 0.4363 +Force: -3.330839 -1.654840 3.725416 +Torque: 0.567108 0.025057 0.414740 + +Polar angle tht: 2.3126; Azimuth angle phi: 0.4800 +Force: -3.247137 -1.805211 3.724062 +Torque: 0.619568 0.024743 0.443494 + +Polar angle tht: 2.3126; Azimuth angle phi: 0.5236 +Force: -3.156742 -1.951397 3.722484 +Torque: 0.670836 0.024390 0.468871 + +Polar angle tht: 2.3126; Azimuth angle phi: 0.5672 +Force: -3.059984 -2.093077 3.720660 +Torque: 0.720813 0.023998 0.490681 + +Polar angle tht: 2.3126; Azimuth angle phi: 0.6109 +Force: -2.957211 -2.229946 3.718565 +Torque: 0.769404 0.023563 0.508756 + +Polar angle tht: 2.3126; Azimuth angle phi: 0.6545 +Force: -2.848791 -2.361711 3.716174 +Torque: 0.816516 0.023083 0.522959 + +Polar angle tht: 2.3126; Azimuth angle phi: 0.6981 +Force: -2.735107 -2.488099 3.713463 +Torque: 0.862058 0.022557 0.533182 + +Polar angle tht: 2.3126; Azimuth angle phi: 0.7418 +Force: -2.616557 -2.608851 3.710407 +Torque: 0.905943 0.021982 0.539347 + +Polar angle tht: 2.3126; Azimuth angle phi: 0.7854 +Force: -2.493552 -2.723727 3.706980 +Torque: 0.948089 0.021356 0.541407 + +Polar angle tht: 2.3126; Azimuth angle phi: 0.8290 +Force: -2.366511 -2.832505 3.703159 +Torque: 0.988414 0.020677 0.539347 + +Polar angle tht: 2.3126; Azimuth angle phi: 0.8727 +Force: -2.235861 -2.934982 3.698919 +Torque: 1.026842 0.019943 0.533183 + +Polar angle tht: 2.3126; Azimuth angle phi: 0.9163 +Force: -2.119264 -3.047278 3.725333 +Torque: 1.042124 0.019860 0.511598 + +Polar angle tht: 2.3126; Azimuth angle phi: 0.9599 +Force: -1.999460 -3.156074 3.754123 +Torque: 1.053367 0.019698 0.486343 + +Polar angle tht: 2.3126; Azimuth angle phi: 1.0036 +Force: -1.874072 -3.258442 3.780304 +Torque: 1.063892 0.019343 0.459380 + +Polar angle tht: 2.3126; Azimuth angle phi: 1.0472 +Force: -1.743624 -3.353924 3.803813 +Torque: 1.073683 0.018796 0.430789 + +Polar angle tht: 2.3126; Azimuth angle phi: 1.0908 +Force: -1.608669 -3.442093 3.824591 +Torque: 1.082724 0.018061 0.400657 + +Polar angle tht: 2.3126; Azimuth angle phi: 1.1345 +Force: -1.469780 -3.522558 3.842584 +Torque: 1.091002 0.017144 0.369081 + +Polar angle tht: 2.3126; Azimuth angle phi: 1.1781 +Force: -1.327550 -3.594961 3.857748 +Torque: 1.098503 0.016051 0.336166 + +Polar angle tht: 2.3126; Azimuth angle phi: 1.2217 +Force: -1.182590 -3.658985 3.870041 +Torque: 1.105217 0.014790 0.302022 + +Polar angle tht: 2.3126; Azimuth angle phi: 1.2654 +Force: -1.035522 -3.714353 3.879429 +Torque: 1.111133 0.013370 0.266769 + +Polar angle tht: 2.3126; Azimuth angle phi: 1.3090 +Force: -0.886974 -3.760829 3.885886 +Torque: 1.116243 0.011802 0.230530 + +Polar angle tht: 2.3126; Azimuth angle phi: 1.3526 +Force: -0.737583 -3.798222 3.889390 +Torque: 1.120540 0.010098 0.193437 + +Polar angle tht: 2.3126; Azimuth angle phi: 1.3963 +Force: -0.587983 -3.826384 3.889929 +Torque: 1.124018 0.008269 0.155624 + +Polar angle tht: 2.3126; Azimuth angle phi: 1.4399 +Force: -0.438805 -3.845215 3.887494 +Torque: 1.126674 0.006331 0.117231 + +Polar angle tht: 2.3126; Azimuth angle phi: 1.4835 +Force: -0.290676 -3.854659 3.882086 +Torque: 1.128503 0.004296 0.078399 + +Polar angle tht: 2.3126; Azimuth angle phi: 1.5272 +Force: -0.144208 -3.854708 3.873711 +Torque: 1.129504 0.002180 0.039273 + +Polar angle tht: 2.3126; Azimuth angle phi: 1.5708 +Force: 0.000000 -3.845398 3.862385 +Torque: 1.129678 0.000000 0.000000 + +Polar angle tht: 2.3126; Azimuth angle phi: 1.6144 +Force: 0.144208 -3.854708 3.873711 +Torque: 1.129504 -0.002180 -0.039273 + +Polar angle tht: 2.3126; Azimuth angle phi: 1.6581 +Force: 0.290676 -3.854659 3.882086 +Torque: 1.128503 -0.004296 -0.078399 + +Polar angle tht: 2.3126; Azimuth angle phi: 1.7017 +Force: 0.438805 -3.845215 3.887494 +Torque: 1.126674 -0.006331 -0.117231 + +Polar angle tht: 2.3126; Azimuth angle phi: 1.7453 +Force: 0.587983 -3.826384 3.889929 +Torque: 1.124018 -0.008269 -0.155624 + +Polar angle tht: 2.3126; Azimuth angle phi: 1.7890 +Force: 0.737583 -3.798222 3.889390 +Torque: 1.120540 -0.010098 -0.193437 + +Polar angle tht: 2.3126; Azimuth angle phi: 1.8326 +Force: 0.886974 -3.760829 3.885886 +Torque: 1.116243 -0.011802 -0.230530 + +Polar angle tht: 2.3126; Azimuth angle phi: 1.8762 +Force: 1.035522 -3.714353 3.879429 +Torque: 1.111133 -0.013370 -0.266769 + +Polar angle tht: 2.3126; Azimuth angle phi: 1.9199 +Force: 1.182590 -3.658985 3.870041 +Torque: 1.105217 -0.014790 -0.302022 + +Polar angle tht: 2.3126; Azimuth angle phi: 1.9635 +Force: 1.327550 -3.594961 3.857748 +Torque: 1.098503 -0.016051 -0.336166 + +Polar angle tht: 2.3126; Azimuth angle phi: 2.0071 +Force: 1.469780 -3.522558 3.842584 +Torque: 1.091002 -0.017144 -0.369081 + +Polar angle tht: 2.3126; Azimuth angle phi: 2.0508 +Force: 1.608669 -3.442093 3.824591 +Torque: 1.082724 -0.018061 -0.400657 + +Polar angle tht: 2.3126; Azimuth angle phi: 2.0944 +Force: 1.743624 -3.353924 3.803813 +Torque: 1.073683 -0.018796 -0.430789 + +Polar angle tht: 2.3126; Azimuth angle phi: 2.1380 +Force: 1.874072 -3.258442 3.780304 +Torque: 1.063892 -0.019343 -0.459380 + +Polar angle tht: 2.3126; Azimuth angle phi: 2.1817 +Force: 1.999460 -3.156074 3.754123 +Torque: 1.053367 -0.019698 -0.486343 + +Polar angle tht: 2.3126; Azimuth angle phi: 2.2253 +Force: 2.119264 -3.047278 3.725333 +Torque: 1.042124 -0.019860 -0.511598 + +Polar angle tht: 2.3126; Azimuth angle phi: 2.2689 +Force: 2.235861 -2.934982 3.698919 +Torque: 1.026842 -0.019943 -0.533183 + +Polar angle tht: 2.3126; Azimuth angle phi: 2.3126 +Force: 2.366511 -2.832505 3.703159 +Torque: 0.988414 -0.020677 -0.539347 + +Polar angle tht: 2.3126; Azimuth angle phi: 2.3562 +Force: 2.493552 -2.723727 3.706980 +Torque: 0.948089 -0.021356 -0.541407 + +Polar angle tht: 2.3126; Azimuth angle phi: 2.3998 +Force: 2.616557 -2.608851 3.710407 +Torque: 0.905943 -0.021982 -0.539347 + +Polar angle tht: 2.3126; Azimuth angle phi: 2.4435 +Force: 2.735107 -2.488099 3.713463 +Torque: 0.862058 -0.022557 -0.533182 + +Polar angle tht: 2.3126; Azimuth angle phi: 2.4871 +Force: 2.848791 -2.361711 3.716174 +Torque: 0.816516 -0.023083 -0.522959 + +Polar angle tht: 2.3126; Azimuth angle phi: 2.5307 +Force: 2.957211 -2.229946 3.718565 +Torque: 0.769404 -0.023563 -0.508756 + +Polar angle tht: 2.3126; Azimuth angle phi: 2.5744 +Force: 3.059984 -2.093077 3.720660 +Torque: 0.720813 -0.023998 -0.490681 + +Polar angle tht: 2.3126; Azimuth angle phi: 2.6180 +Force: 3.156742 -1.951397 3.722484 +Torque: 0.670836 -0.024390 -0.468871 + +Polar angle tht: 2.3126; Azimuth angle phi: 2.6616 +Force: 3.247137 -1.805211 3.724062 +Torque: 0.619568 -0.024743 -0.443494 + +Polar angle tht: 2.3126; Azimuth angle phi: 2.7053 +Force: 3.330839 -1.654840 3.725416 +Torque: 0.567108 -0.025057 -0.414740 + +Polar angle tht: 2.3126; Azimuth angle phi: 2.7489 +Force: 3.407541 -1.500620 3.726569 +Torque: 0.513557 -0.025334 -0.382831 + +Polar angle tht: 2.3126; Azimuth angle phi: 2.7925 +Force: 3.476961 -1.342898 3.727540 +Torque: 0.459016 -0.025577 -0.348008 + +Polar angle tht: 2.3126; Azimuth angle phi: 2.8362 +Force: 3.538841 -1.182032 3.728349 +Torque: 0.403592 -0.025788 -0.310536 + +Polar angle tht: 2.3126; Azimuth angle phi: 2.8798 +Force: 3.592950 -1.018392 3.729014 +Torque: 0.347391 -0.025967 -0.270701 + +Polar angle tht: 2.3126; Azimuth angle phi: 2.9234 +Force: 3.639084 -0.852358 3.729550 +Torque: 0.290520 -0.026116 -0.228805 + +Polar angle tht: 2.3126; Azimuth angle phi: 2.9671 +Force: 3.677071 -0.684314 3.729969 +Torque: 0.233090 -0.026236 -0.185169 + +Polar angle tht: 2.3126; Azimuth angle phi: 3.0107 +Force: 3.706767 -0.514656 3.730284 +Torque: 0.175211 -0.026328 -0.140123 + +Polar angle tht: 2.3126; Azimuth angle phi: 3.0543 +Force: 3.728059 -0.343782 3.730502 +Torque: 0.116994 -0.026394 -0.094010 + +Polar angle tht: 2.3126; Azimuth angle phi: 3.0980 +Force: 3.740867 -0.172095 3.730631 +Torque: 0.058552 -0.026433 -0.047182 + +Polar angle tht: 2.3126; Azimuth angle phi: 3.1416 +Force: 3.745141 0.000000 3.730673 +Torque: -0.000003 -0.026446 0.000005 + +Polar angle tht: 2.3126; Azimuth angle phi: 3.1852 +Force: 3.740867 0.172095 3.730631 +Torque: -0.058558 -0.026433 0.047192 + +Polar angle tht: 2.3126; Azimuth angle phi: 3.2289 +Force: 3.728059 0.343782 3.730502 +Torque: -0.117001 -0.026394 0.094020 + +Polar angle tht: 2.3126; Azimuth angle phi: 3.2725 +Force: 3.706767 0.514656 3.730284 +Torque: -0.175218 -0.026328 0.140132 + +Polar angle tht: 2.3126; Azimuth angle phi: 3.3161 +Force: 3.677071 0.684314 3.729969 +Torque: -0.233097 -0.026236 0.185178 + +Polar angle tht: 2.3126; Azimuth angle phi: 3.3598 +Force: 3.639084 0.852358 3.729550 +Torque: -0.290527 -0.026116 0.228815 + +Polar angle tht: 2.3126; Azimuth angle phi: 3.4034 +Force: 3.592950 1.018392 3.729014 +Torque: -0.347398 -0.025967 0.270710 + +Polar angle tht: 2.3126; Azimuth angle phi: 3.4470 +Force: 3.538841 1.182032 3.728349 +Torque: -0.403599 -0.025788 0.310545 + +Polar angle tht: 2.3126; Azimuth angle phi: 3.4907 +Force: 3.476961 1.342898 3.727540 +Torque: -0.459023 -0.025577 0.348017 + +Polar angle tht: 2.3126; Azimuth angle phi: 3.5343 +Force: 3.407541 1.500620 3.726569 +Torque: -0.513564 -0.025334 0.382840 + +Polar angle tht: 2.3126; Azimuth angle phi: 3.5779 +Force: 3.330839 1.654840 3.725416 +Torque: -0.567115 -0.025057 0.414749 + +Polar angle tht: 2.3126; Azimuth angle phi: 3.6216 +Force: 3.247137 1.805211 3.724062 +Torque: -0.619575 -0.024743 0.443502 + +Polar angle tht: 2.3126; Azimuth angle phi: 3.6652 +Force: 3.156742 1.951397 3.722484 +Torque: -0.670843 -0.024390 0.468880 + +Polar angle tht: 2.3126; Azimuth angle phi: 3.7088 +Force: 3.059984 2.093077 3.720660 +Torque: -0.720821 -0.023998 0.490689 + +Polar angle tht: 2.3126; Azimuth angle phi: 3.7525 +Force: 2.957211 2.229946 3.718565 +Torque: -0.769412 -0.023563 0.508764 + +Polar angle tht: 2.3126; Azimuth angle phi: 3.7961 +Force: 2.848791 2.361711 3.716174 +Torque: -0.816523 -0.023083 0.522967 + +Polar angle tht: 2.3126; Azimuth angle phi: 3.8397 +Force: 2.735107 2.488099 3.713463 +Torque: -0.862066 -0.022557 0.533189 + +Polar angle tht: 2.3126; Azimuth angle phi: 3.8834 +Force: 2.616557 2.608851 3.710407 +Torque: -0.905951 -0.021982 0.539354 + +Polar angle tht: 2.3126; Azimuth angle phi: 3.9270 +Force: 2.493552 2.723727 3.706980 +Torque: -0.948097 -0.021356 0.541414 + +Polar angle tht: 2.3126; Azimuth angle phi: 3.9706 +Force: 2.366511 2.832505 3.703159 +Torque: -0.988422 -0.020677 0.539354 + +Polar angle tht: 2.3126; Azimuth angle phi: 4.0143 +Force: 2.235861 2.934982 3.698919 +Torque: -1.026850 -0.019943 0.533189 + +Polar angle tht: 2.3126; Azimuth angle phi: 4.0579 +Force: 2.119264 3.047278 3.725333 +Torque: -1.042133 -0.019860 0.511604 + +Polar angle tht: 2.3126; Azimuth angle phi: 4.1015 +Force: 1.999460 3.156074 3.754123 +Torque: -1.053376 -0.019698 0.486349 + +Polar angle tht: 2.3126; Azimuth angle phi: 4.1452 +Force: 1.874072 3.258442 3.780304 +Torque: -1.063902 -0.019343 0.459386 + +Polar angle tht: 2.3126; Azimuth angle phi: 4.1888 +Force: 1.743624 3.353924 3.803813 +Torque: -1.073694 -0.018796 0.430795 + +Polar angle tht: 2.3126; Azimuth angle phi: 4.2324 +Force: 1.608669 3.442093 3.824591 +Torque: -1.082736 -0.018061 0.400663 + +Polar angle tht: 2.3126; Azimuth angle phi: 4.2761 +Force: 1.469780 3.522558 3.842584 +Torque: -1.091014 -0.017144 0.369087 + +Polar angle tht: 2.3126; Azimuth angle phi: 4.3197 +Force: 1.327550 3.594961 3.857748 +Torque: -1.098516 -0.016051 0.336171 + +Polar angle tht: 2.3126; Azimuth angle phi: 4.3633 +Force: 1.182590 3.658985 3.870041 +Torque: -1.105230 -0.014790 0.302027 + +Polar angle tht: 2.3126; Azimuth angle phi: 4.4070 +Force: 1.035522 3.714353 3.879429 +Torque: -1.111147 -0.013370 0.266773 + +Polar angle tht: 2.3126; Azimuth angle phi: 4.4506 +Force: 0.886974 3.760829 3.885886 +Torque: -1.116257 -0.011802 0.230534 + +Polar angle tht: 2.3126; Azimuth angle phi: 4.4942 +Force: 0.737583 3.798222 3.889390 +Torque: -1.120555 -0.010098 0.193440 + +Polar angle tht: 2.3126; Azimuth angle phi: 4.5379 +Force: 0.587983 3.826384 3.889929 +Torque: -1.124033 -0.008269 0.155627 + +Polar angle tht: 2.3126; Azimuth angle phi: 4.5815 +Force: 0.438805 3.845215 3.887494 +Torque: -1.126688 -0.006331 0.117233 + +Polar angle tht: 2.3126; Azimuth angle phi: 4.6251 +Force: 0.290676 3.854659 3.882086 +Torque: -1.128518 -0.004296 0.078400 + +Polar angle tht: 2.3126; Azimuth angle phi: 4.6688 +Force: 0.144208 3.854708 3.873711 +Torque: -1.129519 -0.002180 0.039274 + +Polar angle tht: 2.3126; Azimuth angle phi: 4.7124 +Force: 0.000000 3.845398 3.862385 +Torque: -1.129693 0.000000 -0.000000 + +Polar angle tht: 2.3126; Azimuth angle phi: 4.7560 +Force: -0.144208 3.854708 3.873711 +Torque: -1.129519 0.002180 -0.039274 + +Polar angle tht: 2.3126; Azimuth angle phi: 4.7997 +Force: -0.290676 3.854659 3.882086 +Torque: -1.128518 0.004296 -0.078400 + +Polar angle tht: 2.3126; Azimuth angle phi: 4.8433 +Force: -0.438805 3.845215 3.887494 +Torque: -1.126688 0.006331 -0.117233 + +Polar angle tht: 2.3126; Azimuth angle phi: 4.8869 +Force: -0.587983 3.826384 3.889929 +Torque: -1.124033 0.008269 -0.155627 + +Polar angle tht: 2.3126; Azimuth angle phi: 4.9306 +Force: -0.737583 3.798222 3.889390 +Torque: -1.120555 0.010098 -0.193440 + +Polar angle tht: 2.3126; Azimuth angle phi: 4.9742 +Force: -0.886974 3.760829 3.885886 +Torque: -1.116257 0.011802 -0.230534 + +Polar angle tht: 2.3126; Azimuth angle phi: 5.0178 +Force: -1.035522 3.714353 3.879429 +Torque: -1.111147 0.013370 -0.266773 + +Polar angle tht: 2.3126; Azimuth angle phi: 5.0615 +Force: -1.182590 3.658985 3.870041 +Torque: -1.105230 0.014790 -0.302027 + +Polar angle tht: 2.3126; Azimuth angle phi: 5.1051 +Force: -1.327550 3.594961 3.857748 +Torque: -1.098516 0.016051 -0.336171 + +Polar angle tht: 2.3126; Azimuth angle phi: 5.1487 +Force: -1.469780 3.522558 3.842584 +Torque: -1.091014 0.017144 -0.369087 + +Polar angle tht: 2.3126; Azimuth angle phi: 5.1924 +Force: -1.608669 3.442093 3.824591 +Torque: -1.082736 0.018061 -0.400663 + +Polar angle tht: 2.3126; Azimuth angle phi: 5.2360 +Force: -1.743624 3.353924 3.803813 +Torque: -1.073694 0.018796 -0.430795 + +Polar angle tht: 2.3126; Azimuth angle phi: 5.2796 +Force: -1.874072 3.258442 3.780304 +Torque: -1.063902 0.019343 -0.459386 + +Polar angle tht: 2.3126; Azimuth angle phi: 5.3233 +Force: -1.999460 3.156074 3.754123 +Torque: -1.053376 0.019698 -0.486349 + +Polar angle tht: 2.3126; Azimuth angle phi: 5.3669 +Force: -2.119264 3.047278 3.725333 +Torque: -1.042133 0.019860 -0.511604 + +Polar angle tht: 2.3126; Azimuth angle phi: 5.4105 +Force: -2.235861 2.934982 3.698919 +Torque: -1.026850 0.019943 -0.533189 + +Polar angle tht: 2.3126; Azimuth angle phi: 5.4542 +Force: -2.366511 2.832505 3.703159 +Torque: -0.988422 0.020677 -0.539354 + +Polar angle tht: 2.3126; Azimuth angle phi: 5.4978 +Force: -2.493552 2.723727 3.706980 +Torque: -0.948097 0.021356 -0.541414 + +Polar angle tht: 2.3126; Azimuth angle phi: 5.5414 +Force: -2.616557 2.608851 3.710407 +Torque: -0.905951 0.021982 -0.539354 + +Polar angle tht: 2.3126; Azimuth angle phi: 5.5851 +Force: -2.735107 2.488099 3.713463 +Torque: -0.862066 0.022557 -0.533189 + +Polar angle tht: 2.3126; Azimuth angle phi: 5.6287 +Force: -2.848791 2.361711 3.716174 +Torque: -0.816523 0.023083 -0.522967 + +Polar angle tht: 2.3126; Azimuth angle phi: 5.6723 +Force: -2.957211 2.229946 3.718565 +Torque: -0.769412 0.023563 -0.508764 + +Polar angle tht: 2.3126; Azimuth angle phi: 5.7160 +Force: -3.059984 2.093077 3.720660 +Torque: -0.720821 0.023998 -0.490689 + +Polar angle tht: 2.3126; Azimuth angle phi: 5.7596 +Force: -3.156742 1.951397 3.722484 +Torque: -0.670843 0.024390 -0.468880 + +Polar angle tht: 2.3126; Azimuth angle phi: 5.8032 +Force: -3.247137 1.805211 3.724062 +Torque: -0.619575 0.024743 -0.443502 + +Polar angle tht: 2.3126; Azimuth angle phi: 5.8469 +Force: -3.330839 1.654840 3.725416 +Torque: -0.567115 0.025057 -0.414749 + +Polar angle tht: 2.3126; Azimuth angle phi: 5.8905 +Force: -3.407541 1.500620 3.726569 +Torque: -0.513564 0.025334 -0.382840 + +Polar angle tht: 2.3126; Azimuth angle phi: 5.9341 +Force: -3.476961 1.342898 3.727540 +Torque: -0.459023 0.025577 -0.348017 + +Polar angle tht: 2.3126; Azimuth angle phi: 5.9778 +Force: -3.538841 1.182032 3.728349 +Torque: -0.403599 0.025788 -0.310545 + +Polar angle tht: 2.3126; Azimuth angle phi: 6.0214 +Force: -3.592950 1.018392 3.729014 +Torque: -0.347398 0.025967 -0.270710 + +Polar angle tht: 2.3126; Azimuth angle phi: 6.0650 +Force: -3.639084 0.852358 3.729550 +Torque: -0.290527 0.026116 -0.228815 + +Polar angle tht: 2.3126; Azimuth angle phi: 6.1087 +Force: -3.677071 0.684314 3.729969 +Torque: -0.233097 0.026236 -0.185178 + +Polar angle tht: 2.3126; Azimuth angle phi: 6.1523 +Force: -3.706767 0.514656 3.730284 +Torque: -0.175218 0.026328 -0.140132 + +Polar angle tht: 2.3126; Azimuth angle phi: 6.1959 +Force: -3.728059 0.343782 3.730502 +Torque: -0.117001 0.026394 -0.094020 + +Polar angle tht: 2.3126; Azimuth angle phi: 6.2396 +Force: -3.740867 0.172095 3.730631 +Torque: -0.058558 0.026433 -0.047192 + +Polar angle tht: 2.3126; Azimuth angle phi: 6.2832 +Force: -3.745141 0.000000 3.730673 +Torque: -0.000003 0.026446 -0.000005 + +Polar angle tht: 2.3562; Azimuth angle phi: 0.0000 +Force: -3.691116 0.000000 4.029120 +Torque: -0.000004 0.027720 -0.000005 + +Polar angle tht: 2.3562; Azimuth angle phi: 0.0436 +Force: -3.686949 -0.170557 4.029058 +Torque: 0.058230 0.027705 0.043399 + +Polar angle tht: 2.3562; Azimuth angle phi: 0.0873 +Force: -3.674466 -0.340715 4.028869 +Torque: 0.116351 0.027659 0.086473 + +Polar angle tht: 2.3562; Azimuth angle phi: 0.1309 +Force: -3.653711 -0.510079 4.028551 +Torque: 0.174248 0.027583 0.128889 + +Polar angle tht: 2.3562; Azimuth angle phi: 0.1745 +Force: -3.624762 -0.678255 4.028098 +Torque: 0.231810 0.027475 0.170324 + +Polar angle tht: 2.3562; Azimuth angle phi: 0.2182 +Force: -3.587725 -0.844853 4.027503 +Torque: 0.288926 0.027336 0.210462 + +Polar angle tht: 2.3562; Azimuth angle phi: 0.2618 +Force: -3.542735 -1.009487 4.026755 +Torque: 0.345485 0.027164 0.248999 + +Polar angle tht: 2.3562; Azimuth angle phi: 0.3054 +Force: -3.489959 -1.171779 4.025843 +Torque: 0.401380 0.026958 0.285640 + +Polar angle tht: 2.3562; Azimuth angle phi: 0.3491 +Force: -3.429587 -1.331360 4.024753 +Torque: 0.456502 0.026717 0.320108 + +Polar angle tht: 2.3562; Azimuth angle phi: 0.3927 +Force: -3.361838 -1.487865 4.023470 +Torque: 0.510746 0.026439 0.352139 + +Polar angle tht: 2.3562; Azimuth angle phi: 0.4363 +Force: -3.286958 -1.640945 4.021977 +Torque: 0.564008 0.026124 0.381491 + +Polar angle tht: 2.3562; Azimuth angle phi: 0.4800 +Force: -3.205216 -1.790258 4.020256 +Torque: 0.616185 0.025770 0.407939 + +Polar angle tht: 2.3562; Azimuth angle phi: 0.5236 +Force: -3.116901 -1.935474 4.018288 +Torque: 0.667177 0.025375 0.431282 + +Polar angle tht: 2.3562; Azimuth angle phi: 0.5672 +Force: -3.022327 -2.076279 4.016052 +Torque: 0.716887 0.024937 0.451343 + +Polar angle tht: 2.3562; Azimuth angle phi: 0.6109 +Force: -2.921825 -2.212370 4.013528 +Torque: 0.765219 0.024454 0.467969 + +Polar angle tht: 2.3562; Azimuth angle phi: 0.6545 +Force: -2.815744 -2.343460 4.010694 +Torque: 0.812080 0.023925 0.481034 + +Polar angle tht: 2.3562; Azimuth angle phi: 0.6981 +Force: -2.704450 -2.469278 4.007527 +Torque: 0.857382 0.023349 0.490437 + +Polar angle tht: 2.3562; Azimuth angle phi: 0.7418 +Force: -2.588322 -2.589568 4.004007 +Torque: 0.901038 0.022722 0.496108 + +Polar angle tht: 2.3562; Azimuth angle phi: 0.7854 +Force: -2.467749 -2.704092 4.000112 +Torque: 0.942964 0.022044 0.498003 + +Polar angle tht: 2.3562; Azimuth angle phi: 0.8290 +Force: -2.343133 -2.812629 3.995821 +Torque: 0.983081 0.021312 0.496108 + +Polar angle tht: 2.3562; Azimuth angle phi: 0.8727 +Force: -2.214881 -2.914975 3.991113 +Torque: 1.021312 0.020526 0.490438 + +Polar angle tht: 2.3562; Azimuth angle phi: 0.9163 +Force: -2.083407 -3.010944 3.985969 +Torque: 1.057584 0.019684 0.481035 + +Polar angle tht: 2.3562; Azimuth angle phi: 0.9599 +Force: -1.949128 -3.100371 3.980371 +Torque: 1.091830 0.018784 0.467970 + +Polar angle tht: 2.3562; Azimuth angle phi: 1.0036 +Force: -1.814442 -3.185374 3.978692 +Torque: 1.120996 0.017907 0.450039 + +Polar angle tht: 2.3562; Azimuth angle phi: 1.0472 +Force: -1.688162 -3.277357 4.001865 +Torque: 1.130734 0.017396 0.421832 + +Polar angle tht: 2.3562; Azimuth angle phi: 1.0908 +Force: -1.557575 -3.362310 4.022323 +Torque: 1.139729 0.016712 0.392159 + +Polar angle tht: 2.3562; Azimuth angle phi: 1.1345 +Force: -1.423221 -3.439867 4.040014 +Torque: 1.147967 0.015860 0.361113 + +Polar angle tht: 2.3562; Azimuth angle phi: 1.1781 +Force: -1.285660 -3.509692 4.054895 +Torque: 1.155436 0.014846 0.328793 + +Polar angle tht: 2.3562; Azimuth angle phi: 1.2217 +Force: -1.145463 -3.571486 4.066925 +Torque: 1.162122 0.013677 0.295306 + +Polar angle tht: 2.3562; Azimuth angle phi: 1.2654 +Force: -1.003218 -3.624990 4.076072 +Torque: 1.168018 0.012362 0.260766 + +Polar angle tht: 2.3562; Azimuth angle phi: 1.3090 +Force: -0.859515 -3.669982 4.082311 +Torque: 1.173113 0.010911 0.225290 + +Polar angle tht: 2.3562; Azimuth angle phi: 1.3526 +Force: -0.714953 -3.706280 4.085621 +Torque: 1.177401 0.009334 0.189002 + +Polar angle tht: 2.3562; Azimuth angle phi: 1.3963 +Force: -0.570130 -3.733748 4.085990 +Torque: 1.180875 0.007643 0.152032 + +Polar angle tht: 2.3562; Azimuth angle phi: 1.4399 +Force: -0.425640 -3.752288 4.083412 +Torque: 1.183532 0.005851 0.114510 + +Polar angle tht: 2.3562; Azimuth angle phi: 1.4835 +Force: -0.282071 -3.761847 4.077887 +Torque: 1.185368 0.003970 0.076572 + +Polar angle tht: 2.3562; Azimuth angle phi: 1.5272 +Force: -0.140003 -3.762415 4.069423 +Torque: 1.186381 0.002015 0.038356 + +Polar angle tht: 2.3562; Azimuth angle phi: 1.5708 +Force: 0.000000 -3.754027 4.058034 +Torque: 1.186572 0.000000 0.000000 + +Polar angle tht: 2.3562; Azimuth angle phi: 1.6144 +Force: 0.140003 -3.762415 4.069423 +Torque: 1.186381 -0.002015 -0.038356 + +Polar angle tht: 2.3562; Azimuth angle phi: 1.6581 +Force: 0.282071 -3.761847 4.077887 +Torque: 1.185368 -0.003970 -0.076572 + +Polar angle tht: 2.3562; Azimuth angle phi: 1.7017 +Force: 0.425640 -3.752288 4.083412 +Torque: 1.183532 -0.005851 -0.114510 + +Polar angle tht: 2.3562; Azimuth angle phi: 1.7453 +Force: 0.570130 -3.733748 4.085990 +Torque: 1.180875 -0.007643 -0.152032 + +Polar angle tht: 2.3562; Azimuth angle phi: 1.7890 +Force: 0.714953 -3.706280 4.085621 +Torque: 1.177401 -0.009334 -0.189002 + +Polar angle tht: 2.3562; Azimuth angle phi: 1.8326 +Force: 0.859515 -3.669982 4.082311 +Torque: 1.173113 -0.010911 -0.225290 + +Polar angle tht: 2.3562; Azimuth angle phi: 1.8762 +Force: 1.003218 -3.624990 4.076072 +Torque: 1.168018 -0.012362 -0.260766 + +Polar angle tht: 2.3562; Azimuth angle phi: 1.9199 +Force: 1.145463 -3.571486 4.066925 +Torque: 1.162122 -0.013677 -0.295306 + +Polar angle tht: 2.3562; Azimuth angle phi: 1.9635 +Force: 1.285660 -3.509692 4.054895 +Torque: 1.155436 -0.014846 -0.328793 + +Polar angle tht: 2.3562; Azimuth angle phi: 2.0071 +Force: 1.423221 -3.439867 4.040014 +Torque: 1.147967 -0.015860 -0.361113 + +Polar angle tht: 2.3562; Azimuth angle phi: 2.0508 +Force: 1.557575 -3.362310 4.022323 +Torque: 1.139729 -0.016712 -0.392159 + +Polar angle tht: 2.3562; Azimuth angle phi: 2.0944 +Force: 1.688162 -3.277357 4.001865 +Torque: 1.130734 -0.017396 -0.421832 + +Polar angle tht: 2.3562; Azimuth angle phi: 2.1380 +Force: 1.814442 -3.185374 3.978692 +Torque: 1.120996 -0.017907 -0.450039 + +Polar angle tht: 2.3562; Azimuth angle phi: 2.1817 +Force: 1.949128 -3.100371 3.980371 +Torque: 1.091830 -0.018784 -0.467970 + +Polar angle tht: 2.3562; Azimuth angle phi: 2.2253 +Force: 2.083407 -3.010944 3.985969 +Torque: 1.057584 -0.019684 -0.481035 + +Polar angle tht: 2.3562; Azimuth angle phi: 2.2689 +Force: 2.214881 -2.914975 3.991113 +Torque: 1.021312 -0.020526 -0.490438 + +Polar angle tht: 2.3562; Azimuth angle phi: 2.3126 +Force: 2.343133 -2.812629 3.995821 +Torque: 0.983081 -0.021312 -0.496108 + +Polar angle tht: 2.3562; Azimuth angle phi: 2.3562 +Force: 2.467749 -2.704092 4.000112 +Torque: 0.942964 -0.022044 -0.498003 + +Polar angle tht: 2.3562; Azimuth angle phi: 2.3998 +Force: 2.588322 -2.589568 4.004007 +Torque: 0.901038 -0.022722 -0.496108 + +Polar angle tht: 2.3562; Azimuth angle phi: 2.4435 +Force: 2.704450 -2.469278 4.007527 +Torque: 0.857382 -0.023349 -0.490437 + +Polar angle tht: 2.3562; Azimuth angle phi: 2.4871 +Force: 2.815744 -2.343460 4.010694 +Torque: 0.812080 -0.023925 -0.481034 + +Polar angle tht: 2.3562; Azimuth angle phi: 2.5307 +Force: 2.921825 -2.212370 4.013528 +Torque: 0.765219 -0.024454 -0.467969 + +Polar angle tht: 2.3562; Azimuth angle phi: 2.5744 +Force: 3.022327 -2.076279 4.016052 +Torque: 0.716887 -0.024937 -0.451343 + +Polar angle tht: 2.3562; Azimuth angle phi: 2.6180 +Force: 3.116901 -1.935474 4.018288 +Torque: 0.667177 -0.025375 -0.431282 + +Polar angle tht: 2.3562; Azimuth angle phi: 2.6616 +Force: 3.205216 -1.790258 4.020256 +Torque: 0.616185 -0.025770 -0.407939 + +Polar angle tht: 2.3562; Azimuth angle phi: 2.7053 +Force: 3.286958 -1.640945 4.021977 +Torque: 0.564008 -0.026124 -0.381491 + +Polar angle tht: 2.3562; Azimuth angle phi: 2.7489 +Force: 3.361838 -1.487865 4.023470 +Torque: 0.510746 -0.026439 -0.352139 + +Polar angle tht: 2.3562; Azimuth angle phi: 2.7925 +Force: 3.429587 -1.331360 4.024753 +Torque: 0.456502 -0.026717 -0.320108 + +Polar angle tht: 2.3562; Azimuth angle phi: 2.8362 +Force: 3.489959 -1.171779 4.025843 +Torque: 0.401380 -0.026958 -0.285640 + +Polar angle tht: 2.3562; Azimuth angle phi: 2.8798 +Force: 3.542735 -1.009487 4.026755 +Torque: 0.345485 -0.027164 -0.248999 + +Polar angle tht: 2.3562; Azimuth angle phi: 2.9234 +Force: 3.587725 -0.844853 4.027503 +Torque: 0.288926 -0.027336 -0.210462 + +Polar angle tht: 2.3562; Azimuth angle phi: 2.9671 +Force: 3.624762 -0.678255 4.028098 +Torque: 0.231810 -0.027475 -0.170324 + +Polar angle tht: 2.3562; Azimuth angle phi: 3.0107 +Force: 3.653711 -0.510079 4.028551 +Torque: 0.174248 -0.027583 -0.128889 + +Polar angle tht: 2.3562; Azimuth angle phi: 3.0543 +Force: 3.674466 -0.340715 4.028869 +Torque: 0.116351 -0.027659 -0.086473 + +Polar angle tht: 2.3562; Azimuth angle phi: 3.0980 +Force: 3.686949 -0.170557 4.029058 +Torque: 0.058230 -0.027705 -0.043399 + +Polar angle tht: 2.3562; Azimuth angle phi: 3.1416 +Force: 3.691116 0.000000 4.029120 +Torque: -0.000004 -0.027720 0.000005 + +Polar angle tht: 2.3562; Azimuth angle phi: 3.1852 +Force: 3.686949 0.170557 4.029058 +Torque: -0.058237 -0.027705 0.043409 + +Polar angle tht: 2.3562; Azimuth angle phi: 3.2289 +Force: 3.674466 0.340715 4.028869 +Torque: -0.116358 -0.027659 0.086483 + +Polar angle tht: 2.3562; Azimuth angle phi: 3.2725 +Force: 3.653711 0.510079 4.028551 +Torque: -0.174256 -0.027583 0.128898 + +Polar angle tht: 2.3562; Azimuth angle phi: 3.3161 +Force: 3.624762 0.678255 4.028098 +Torque: -0.231818 -0.027475 0.170333 + +Polar angle tht: 2.3562; Azimuth angle phi: 3.3598 +Force: 3.587725 0.844853 4.027503 +Torque: -0.288933 -0.027336 0.210472 + +Polar angle tht: 2.3562; Azimuth angle phi: 3.4034 +Force: 3.542735 1.009487 4.026755 +Torque: -0.345493 -0.027164 0.249008 + +Polar angle tht: 2.3562; Azimuth angle phi: 3.4470 +Force: 3.489959 1.171779 4.025843 +Torque: -0.401388 -0.026958 0.285650 + +Polar angle tht: 2.3562; Azimuth angle phi: 3.4907 +Force: 3.429587 1.331360 4.024753 +Torque: -0.456510 -0.026717 0.320117 + +Polar angle tht: 2.3562; Azimuth angle phi: 3.5343 +Force: 3.361838 1.487865 4.023470 +Torque: -0.510754 -0.026439 0.352148 + +Polar angle tht: 2.3562; Azimuth angle phi: 3.5779 +Force: 3.286958 1.640945 4.021977 +Torque: -0.564016 -0.026124 0.381500 + +Polar angle tht: 2.3562; Azimuth angle phi: 3.6216 +Force: 3.205216 1.790258 4.020256 +Torque: -0.616193 -0.025770 0.407948 + +Polar angle tht: 2.3562; Azimuth angle phi: 3.6652 +Force: 3.116901 1.935474 4.018288 +Torque: -0.667185 -0.025375 0.431291 + +Polar angle tht: 2.3562; Azimuth angle phi: 3.7088 +Force: 3.022327 2.076279 4.016052 +Torque: -0.716895 -0.024937 0.451352 + +Polar angle tht: 2.3562; Azimuth angle phi: 3.7525 +Force: 2.921825 2.212370 4.013528 +Torque: -0.765227 -0.024454 0.467977 + +Polar angle tht: 2.3562; Azimuth angle phi: 3.7961 +Force: 2.815744 2.343460 4.010694 +Torque: -0.812089 -0.023925 0.481041 + +Polar angle tht: 2.3562; Azimuth angle phi: 3.8397 +Force: 2.704450 2.469278 4.007527 +Torque: -0.857391 -0.023349 0.490445 + +Polar angle tht: 2.3562; Azimuth angle phi: 3.8834 +Force: 2.588322 2.589568 4.004007 +Torque: -0.901047 -0.022722 0.496115 + +Polar angle tht: 2.3562; Azimuth angle phi: 3.9270 +Force: 2.467749 2.704092 4.000112 +Torque: -0.942973 -0.022044 0.498010 + +Polar angle tht: 2.3562; Azimuth angle phi: 3.9706 +Force: 2.343133 2.812629 3.995821 +Torque: -0.983090 -0.021312 0.496115 + +Polar angle tht: 2.3562; Azimuth angle phi: 4.0143 +Force: 2.214881 2.914975 3.991113 +Torque: -1.021321 -0.020526 0.490444 + +Polar angle tht: 2.3562; Azimuth angle phi: 4.0579 +Force: 2.083407 3.010944 3.985969 +Torque: -1.057593 -0.019684 0.481041 + +Polar angle tht: 2.3562; Azimuth angle phi: 4.1015 +Force: 1.949128 3.100371 3.980371 +Torque: -1.091839 -0.018784 0.467976 + +Polar angle tht: 2.3562; Azimuth angle phi: 4.1452 +Force: 1.814442 3.185374 3.978692 +Torque: -1.121006 -0.017907 0.450045 + +Polar angle tht: 2.3562; Azimuth angle phi: 4.1888 +Force: 1.688162 3.277357 4.001865 +Torque: -1.130744 -0.017396 0.421837 + +Polar angle tht: 2.3562; Azimuth angle phi: 4.2324 +Force: 1.557575 3.362310 4.022323 +Torque: -1.139740 -0.016712 0.392164 + +Polar angle tht: 2.3562; Azimuth angle phi: 4.2761 +Force: 1.423221 3.439867 4.040014 +Torque: -1.147978 -0.015860 0.361118 + +Polar angle tht: 2.3562; Azimuth angle phi: 4.3197 +Force: 1.285660 3.509692 4.054895 +Torque: -1.155447 -0.014846 0.328798 + +Polar angle tht: 2.3562; Azimuth angle phi: 4.3633 +Force: 1.145463 3.571486 4.066925 +Torque: -1.162134 -0.013677 0.295311 + +Polar angle tht: 2.3562; Azimuth angle phi: 4.4070 +Force: 1.003218 3.624990 4.076072 +Torque: -1.168030 -0.012362 0.260769 + +Polar angle tht: 2.3562; Azimuth angle phi: 4.4506 +Force: 0.859515 3.669982 4.082311 +Torque: -1.173126 -0.010911 0.225293 + +Polar angle tht: 2.3562; Azimuth angle phi: 4.4942 +Force: 0.714953 3.706280 4.085621 +Torque: -1.177414 -0.009334 0.189005 + +Polar angle tht: 2.3562; Azimuth angle phi: 4.5379 +Force: 0.570130 3.733748 4.085990 +Torque: -1.180888 -0.007643 0.152034 + +Polar angle tht: 2.3562; Azimuth angle phi: 4.5815 +Force: 0.425640 3.752288 4.083412 +Torque: -1.183546 -0.005851 0.114512 + +Polar angle tht: 2.3562; Azimuth angle phi: 4.6251 +Force: 0.282071 3.761847 4.077887 +Torque: -1.185382 -0.003970 0.076574 + +Polar angle tht: 2.3562; Azimuth angle phi: 4.6688 +Force: 0.140003 3.762415 4.069423 +Torque: -1.186395 -0.002015 0.038357 + +Polar angle tht: 2.3562; Azimuth angle phi: 4.7124 +Force: 0.000000 3.754027 4.058034 +Torque: -1.186586 0.000000 -0.000000 + +Polar angle tht: 2.3562; Azimuth angle phi: 4.7560 +Force: -0.140003 3.762415 4.069423 +Torque: -1.186395 0.002015 -0.038357 + +Polar angle tht: 2.3562; Azimuth angle phi: 4.7997 +Force: -0.282071 3.761847 4.077887 +Torque: -1.185382 0.003970 -0.076574 + +Polar angle tht: 2.3562; Azimuth angle phi: 4.8433 +Force: -0.425640 3.752288 4.083412 +Torque: -1.183546 0.005851 -0.114512 + +Polar angle tht: 2.3562; Azimuth angle phi: 4.8869 +Force: -0.570130 3.733748 4.085990 +Torque: -1.180888 0.007643 -0.152034 + +Polar angle tht: 2.3562; Azimuth angle phi: 4.9306 +Force: -0.714953 3.706280 4.085621 +Torque: -1.177414 0.009334 -0.189005 + +Polar angle tht: 2.3562; Azimuth angle phi: 4.9742 +Force: -0.859515 3.669982 4.082311 +Torque: -1.173126 0.010911 -0.225293 + +Polar angle tht: 2.3562; Azimuth angle phi: 5.0178 +Force: -1.003218 3.624990 4.076072 +Torque: -1.168030 0.012362 -0.260769 + +Polar angle tht: 2.3562; Azimuth angle phi: 5.0615 +Force: -1.145463 3.571486 4.066925 +Torque: -1.162134 0.013677 -0.295311 + +Polar angle tht: 2.3562; Azimuth angle phi: 5.1051 +Force: -1.285660 3.509692 4.054895 +Torque: -1.155447 0.014846 -0.328798 + +Polar angle tht: 2.3562; Azimuth angle phi: 5.1487 +Force: -1.423221 3.439867 4.040014 +Torque: -1.147978 0.015860 -0.361118 + +Polar angle tht: 2.3562; Azimuth angle phi: 5.1924 +Force: -1.557575 3.362310 4.022323 +Torque: -1.139740 0.016712 -0.392164 + +Polar angle tht: 2.3562; Azimuth angle phi: 5.2360 +Force: -1.688162 3.277357 4.001865 +Torque: -1.130744 0.017396 -0.421837 + +Polar angle tht: 2.3562; Azimuth angle phi: 5.2796 +Force: -1.814442 3.185374 3.978692 +Torque: -1.121006 0.017907 -0.450045 + +Polar angle tht: 2.3562; Azimuth angle phi: 5.3233 +Force: -1.949128 3.100371 3.980371 +Torque: -1.091839 0.018784 -0.467976 + +Polar angle tht: 2.3562; Azimuth angle phi: 5.3669 +Force: -2.083407 3.010944 3.985969 +Torque: -1.057593 0.019684 -0.481041 + +Polar angle tht: 2.3562; Azimuth angle phi: 5.4105 +Force: -2.214881 2.914975 3.991113 +Torque: -1.021321 0.020526 -0.490444 + +Polar angle tht: 2.3562; Azimuth angle phi: 5.4542 +Force: -2.343133 2.812629 3.995821 +Torque: -0.983090 0.021312 -0.496115 + +Polar angle tht: 2.3562; Azimuth angle phi: 5.4978 +Force: -2.467749 2.704092 4.000112 +Torque: -0.942973 0.022044 -0.498010 + +Polar angle tht: 2.3562; Azimuth angle phi: 5.5414 +Force: -2.588322 2.589568 4.004007 +Torque: -0.901047 0.022722 -0.496115 + +Polar angle tht: 2.3562; Azimuth angle phi: 5.5851 +Force: -2.704450 2.469278 4.007527 +Torque: -0.857391 0.023349 -0.490445 + +Polar angle tht: 2.3562; Azimuth angle phi: 5.6287 +Force: -2.815744 2.343460 4.010694 +Torque: -0.812089 0.023925 -0.481041 + +Polar angle tht: 2.3562; Azimuth angle phi: 5.6723 +Force: -2.921825 2.212370 4.013528 +Torque: -0.765227 0.024454 -0.467977 + +Polar angle tht: 2.3562; Azimuth angle phi: 5.7160 +Force: -3.022327 2.076279 4.016052 +Torque: -0.716895 0.024937 -0.451352 + +Polar angle tht: 2.3562; Azimuth angle phi: 5.7596 +Force: -3.116901 1.935474 4.018288 +Torque: -0.667185 0.025375 -0.431291 + +Polar angle tht: 2.3562; Azimuth angle phi: 5.8032 +Force: -3.205216 1.790258 4.020256 +Torque: -0.616193 0.025770 -0.407948 + +Polar angle tht: 2.3562; Azimuth angle phi: 5.8469 +Force: -3.286958 1.640945 4.021977 +Torque: -0.564016 0.026124 -0.381500 + +Polar angle tht: 2.3562; Azimuth angle phi: 5.8905 +Force: -3.361838 1.487865 4.023470 +Torque: -0.510754 0.026439 -0.352148 + +Polar angle tht: 2.3562; Azimuth angle phi: 5.9341 +Force: -3.429587 1.331360 4.024753 +Torque: -0.456510 0.026717 -0.320117 + +Polar angle tht: 2.3562; Azimuth angle phi: 5.9778 +Force: -3.489959 1.171779 4.025843 +Torque: -0.401388 0.026958 -0.285650 + +Polar angle tht: 2.3562; Azimuth angle phi: 6.0214 +Force: -3.542735 1.009487 4.026755 +Torque: -0.345493 0.027164 -0.249008 + +Polar angle tht: 2.3562; Azimuth angle phi: 6.0650 +Force: -3.587725 0.844853 4.027503 +Torque: -0.288933 0.027336 -0.210472 + +Polar angle tht: 2.3562; Azimuth angle phi: 6.1087 +Force: -3.624762 0.678255 4.028098 +Torque: -0.231818 0.027475 -0.170333 + +Polar angle tht: 2.3562; Azimuth angle phi: 6.1523 +Force: -3.653711 0.510079 4.028551 +Torque: -0.174256 0.027583 -0.128898 + +Polar angle tht: 2.3562; Azimuth angle phi: 6.1959 +Force: -3.674466 0.340715 4.028869 +Torque: -0.116358 0.027659 -0.086483 + +Polar angle tht: 2.3562; Azimuth angle phi: 6.2396 +Force: -3.686949 0.170557 4.029058 +Torque: -0.058237 0.027705 -0.043409 + +Polar angle tht: 2.3562; Azimuth angle phi: 6.2832 +Force: -3.691116 0.000000 4.029120 +Torque: -0.000004 0.027720 -0.000005 + +Polar angle tht: 2.3998; Azimuth angle phi: 0.0000 +Force: -3.614912 0.000000 4.324067 +Torque: -0.000004 0.028682 -0.000005 + +Polar angle tht: 2.3998; Azimuth angle phi: 0.0436 +Force: -3.610876 -0.167943 4.323987 +Torque: 0.057530 0.028665 0.039616 + +Polar angle tht: 2.3998; Azimuth angle phi: 0.0873 +Force: -3.598780 -0.335500 4.323745 +Torque: 0.114954 0.028613 0.078936 + +Polar angle tht: 2.3998; Azimuth angle phi: 0.1309 +Force: -3.578668 -0.502286 4.323338 +Torque: 0.172157 0.028528 0.117655 + +Polar angle tht: 2.3998; Azimuth angle phi: 0.1745 +Force: -3.550612 -0.667916 4.322762 +Torque: 0.229028 0.028407 0.155478 + +Polar angle tht: 2.3998; Azimuth angle phi: 0.2182 +Force: -3.514713 -0.832013 4.322009 +Torque: 0.285459 0.028251 0.192119 + +Polar angle tht: 2.3998; Azimuth angle phi: 0.2618 +Force: -3.471099 -0.994202 4.321072 +Torque: 0.341341 0.028059 0.227297 + +Polar angle tht: 2.3998; Azimuth angle phi: 0.3054 +Force: -3.419925 -1.154115 4.319940 +Torque: 0.396567 0.027830 0.260745 + +Polar angle tht: 2.3998; Azimuth angle phi: 0.3491 +Force: -3.361372 -1.311391 4.318600 +Torque: 0.451030 0.027562 0.292208 + +Polar angle tht: 2.3998; Azimuth angle phi: 0.3927 +Force: -3.295646 -1.465678 4.317041 +Torque: 0.504626 0.027256 0.321448 + +Polar angle tht: 2.3998; Azimuth angle phi: 0.4363 +Force: -3.222979 -1.616633 4.315247 +Torque: 0.557253 0.026909 0.348241 + +Polar angle tht: 2.3998; Azimuth angle phi: 0.4800 +Force: -3.143623 -1.763923 4.313203 +Torque: 0.608808 0.026520 0.372384 + +Polar angle tht: 2.3998; Azimuth angle phi: 0.5236 +Force: -3.057853 -1.907227 4.310892 +Torque: 0.659194 0.026088 0.393693 + +Polar angle tht: 2.3998; Azimuth angle phi: 0.5672 +Force: -2.965965 -2.046237 4.308295 +Torque: 0.708313 0.025612 0.412006 + +Polar angle tht: 2.3998; Azimuth angle phi: 0.6109 +Force: -2.868272 -2.180656 4.305396 +Torque: 0.756073 0.025090 0.427183 + +Polar angle tht: 2.3998; Azimuth angle phi: 0.6545 +Force: -2.765103 -2.310204 4.302176 +Torque: 0.802380 0.024520 0.439109 + +Polar angle tht: 2.3998; Azimuth angle phi: 0.6981 +Force: -2.656805 -2.434614 4.298615 +Torque: 0.847148 0.023901 0.447692 + +Polar angle tht: 2.3998; Azimuth angle phi: 0.7418 +Force: -2.543735 -2.553633 4.294696 +Torque: 0.890290 0.023232 0.452869 + +Polar angle tht: 2.3998; Azimuth angle phi: 0.7854 +Force: -2.426264 -2.667029 4.290400 +Torque: 0.931724 0.022511 0.454599 + +Polar angle tht: 2.3998; Azimuth angle phi: 0.8290 +Force: -2.304772 -2.774580 4.285710 +Torque: 0.971371 0.021737 0.452869 + +Polar angle tht: 2.3998; Azimuth angle phi: 0.8727 +Force: -2.179645 -2.876086 4.280607 +Torque: 1.009156 0.020909 0.447693 + +Polar angle tht: 2.3998; Azimuth angle phi: 0.9163 +Force: -2.051276 -2.971362 4.275077 +Torque: 1.045007 0.020025 0.439109 + +Polar angle tht: 2.3998; Azimuth angle phi: 0.9599 +Force: -1.920063 -3.060241 4.269104 +Torque: 1.078857 0.019085 0.427184 + +Polar angle tht: 2.3998; Azimuth angle phi: 1.0036 +Force: -1.786403 -3.142574 4.262674 +Torque: 1.110640 0.018088 0.412007 + +Polar angle tht: 2.3998; Azimuth angle phi: 1.0472 +Force: -1.650696 -3.218230 4.255777 +Torque: 1.140297 0.017033 0.393695 + +Polar angle tht: 2.3998; Azimuth angle phi: 1.0908 +Force: -1.513338 -3.287096 4.248402 +Torque: 1.167772 0.015920 0.372386 + +Polar angle tht: 2.3998; Azimuth angle phi: 1.1345 +Force: -1.374722 -3.349076 4.240541 +Torque: 1.193013 0.014749 0.348244 + +Polar angle tht: 2.3998; Azimuth angle phi: 1.1781 +Force: -1.237982 -3.409014 4.241455 +Torque: 1.209661 0.013632 0.319640 + +Polar angle tht: 2.3998; Azimuth angle phi: 1.2217 +Force: -1.103165 -3.468322 4.253162 +Torque: 1.216278 0.012557 0.286999 + +Polar angle tht: 2.3998; Azimuth angle phi: 1.2654 +Force: -0.966367 -3.519734 4.262027 +Torque: 1.222115 0.011348 0.253364 + +Polar angle tht: 2.3998; Azimuth angle phi: 1.3090 +Force: -0.828142 -3.563043 4.268025 +Torque: 1.227162 0.010015 0.218845 + +Polar angle tht: 2.3998; Azimuth angle phi: 1.3526 +Force: -0.689051 -3.598080 4.271137 +Torque: 1.231412 0.008566 0.183560 + +Polar angle tht: 2.3998; Azimuth angle phi: 1.3963 +Force: -0.549651 -3.624714 4.271352 +Torque: 1.234860 0.007014 0.147631 + +Polar angle tht: 2.3998; Azimuth angle phi: 1.4399 +Force: -0.410500 -3.642855 4.268664 +Torque: 1.237501 0.005368 0.111182 + +Polar angle tht: 2.3998; Azimuth angle phi: 1.4835 +Force: -0.272148 -3.652452 4.263074 +Torque: 1.239331 0.003642 0.074340 + +Polar angle tht: 2.3998; Azimuth angle phi: 1.5272 +Force: -0.135138 -3.653494 4.254590 +Torque: 1.240349 0.001849 0.037236 + +Polar angle tht: 2.3998; Azimuth angle phi: 1.5708 +Force: 0.000000 -3.646011 4.243227 +Torque: 1.240554 0.000000 0.000000 + +Polar angle tht: 2.3998; Azimuth angle phi: 1.6144 +Force: 0.135138 -3.653494 4.254590 +Torque: 1.240349 -0.001849 -0.037236 + +Polar angle tht: 2.3998; Azimuth angle phi: 1.6581 +Force: 0.272148 -3.652452 4.263074 +Torque: 1.239331 -0.003642 -0.074340 + +Polar angle tht: 2.3998; Azimuth angle phi: 1.7017 +Force: 0.410500 -3.642855 4.268664 +Torque: 1.237501 -0.005368 -0.111182 + +Polar angle tht: 2.3998; Azimuth angle phi: 1.7453 +Force: 0.549651 -3.624714 4.271352 +Torque: 1.234860 -0.007014 -0.147631 + +Polar angle tht: 2.3998; Azimuth angle phi: 1.7890 +Force: 0.689051 -3.598080 4.271137 +Torque: 1.231412 -0.008566 -0.183560 + +Polar angle tht: 2.3998; Azimuth angle phi: 1.8326 +Force: 0.828142 -3.563043 4.268025 +Torque: 1.227162 -0.010015 -0.218845 + +Polar angle tht: 2.3998; Azimuth angle phi: 1.8762 +Force: 0.966367 -3.519734 4.262027 +Torque: 1.222115 -0.011348 -0.253364 + +Polar angle tht: 2.3998; Azimuth angle phi: 1.9199 +Force: 1.103165 -3.468322 4.253162 +Torque: 1.216278 -0.012557 -0.286999 + +Polar angle tht: 2.3998; Azimuth angle phi: 1.9635 +Force: 1.237982 -3.409014 4.241455 +Torque: 1.209661 -0.013632 -0.319640 + +Polar angle tht: 2.3998; Azimuth angle phi: 2.0071 +Force: 1.374722 -3.349076 4.240541 +Torque: 1.193013 -0.014749 -0.348244 + +Polar angle tht: 2.3998; Azimuth angle phi: 2.0508 +Force: 1.513338 -3.287096 4.248402 +Torque: 1.167772 -0.015920 -0.372386 + +Polar angle tht: 2.3998; Azimuth angle phi: 2.0944 +Force: 1.650696 -3.218230 4.255777 +Torque: 1.140297 -0.017033 -0.393695 + +Polar angle tht: 2.3998; Azimuth angle phi: 2.1380 +Force: 1.786403 -3.142574 4.262674 +Torque: 1.110640 -0.018088 -0.412007 + +Polar angle tht: 2.3998; Azimuth angle phi: 2.1817 +Force: 1.920063 -3.060241 4.269104 +Torque: 1.078857 -0.019085 -0.427184 + +Polar angle tht: 2.3998; Azimuth angle phi: 2.2253 +Force: 2.051276 -2.971362 4.275077 +Torque: 1.045007 -0.020025 -0.439109 + +Polar angle tht: 2.3998; Azimuth angle phi: 2.2689 +Force: 2.179645 -2.876086 4.280607 +Torque: 1.009156 -0.020909 -0.447693 + +Polar angle tht: 2.3998; Azimuth angle phi: 2.3126 +Force: 2.304772 -2.774580 4.285710 +Torque: 0.971371 -0.021737 -0.452869 + +Polar angle tht: 2.3998; Azimuth angle phi: 2.3562 +Force: 2.426264 -2.667029 4.290400 +Torque: 0.931724 -0.022511 -0.454599 + +Polar angle tht: 2.3998; Azimuth angle phi: 2.3998 +Force: 2.543735 -2.553633 4.294696 +Torque: 0.890290 -0.023232 -0.452869 + +Polar angle tht: 2.3998; Azimuth angle phi: 2.4435 +Force: 2.656805 -2.434614 4.298615 +Torque: 0.847148 -0.023901 -0.447692 + +Polar angle tht: 2.3998; Azimuth angle phi: 2.4871 +Force: 2.765103 -2.310204 4.302176 +Torque: 0.802380 -0.024520 -0.439109 + +Polar angle tht: 2.3998; Azimuth angle phi: 2.5307 +Force: 2.868272 -2.180656 4.305396 +Torque: 0.756073 -0.025090 -0.427183 + +Polar angle tht: 2.3998; Azimuth angle phi: 2.5744 +Force: 2.965965 -2.046237 4.308295 +Torque: 0.708313 -0.025612 -0.412006 + +Polar angle tht: 2.3998; Azimuth angle phi: 2.6180 +Force: 3.057853 -1.907227 4.310892 +Torque: 0.659194 -0.026088 -0.393693 + +Polar angle tht: 2.3998; Azimuth angle phi: 2.6616 +Force: 3.143623 -1.763923 4.313203 +Torque: 0.608808 -0.026520 -0.372384 + +Polar angle tht: 2.3998; Azimuth angle phi: 2.7053 +Force: 3.222979 -1.616633 4.315247 +Torque: 0.557253 -0.026909 -0.348241 + +Polar angle tht: 2.3998; Azimuth angle phi: 2.7489 +Force: 3.295646 -1.465678 4.317041 +Torque: 0.504626 -0.027256 -0.321448 + +Polar angle tht: 2.3998; Azimuth angle phi: 2.7925 +Force: 3.361372 -1.311391 4.318600 +Torque: 0.451030 -0.027562 -0.292208 + +Polar angle tht: 2.3998; Azimuth angle phi: 2.8362 +Force: 3.419925 -1.154115 4.319940 +Torque: 0.396567 -0.027830 -0.260745 + +Polar angle tht: 2.3998; Azimuth angle phi: 2.8798 +Force: 3.471099 -0.994202 4.321072 +Torque: 0.341341 -0.028059 -0.227297 + +Polar angle tht: 2.3998; Azimuth angle phi: 2.9234 +Force: 3.514713 -0.832013 4.322009 +Torque: 0.285459 -0.028251 -0.192119 + +Polar angle tht: 2.3998; Azimuth angle phi: 2.9671 +Force: 3.550612 -0.667916 4.322762 +Torque: 0.229028 -0.028407 -0.155478 + +Polar angle tht: 2.3998; Azimuth angle phi: 3.0107 +Force: 3.578668 -0.502286 4.323338 +Torque: 0.172157 -0.028528 -0.117655 + +Polar angle tht: 2.3998; Azimuth angle phi: 3.0543 +Force: 3.598780 -0.335500 4.323745 +Torque: 0.114954 -0.028613 -0.078936 + +Polar angle tht: 2.3998; Azimuth angle phi: 3.0980 +Force: 3.610876 -0.167943 4.323987 +Torque: 0.057530 -0.028665 -0.039616 + +Polar angle tht: 2.3998; Azimuth angle phi: 3.1416 +Force: 3.614912 0.000000 4.324067 +Torque: -0.000004 -0.028682 0.000005 + +Polar angle tht: 2.3998; Azimuth angle phi: 3.1852 +Force: 3.610876 0.167943 4.323987 +Torque: -0.057538 -0.028665 0.039626 + +Polar angle tht: 2.3998; Azimuth angle phi: 3.2289 +Force: 3.598780 0.335500 4.323745 +Torque: -0.114962 -0.028613 0.078946 + +Polar angle tht: 2.3998; Azimuth angle phi: 3.2725 +Force: 3.578668 0.502286 4.323338 +Torque: -0.172165 -0.028528 0.117665 + +Polar angle tht: 2.3998; Azimuth angle phi: 3.3161 +Force: 3.550612 0.667916 4.322762 +Torque: -0.229036 -0.028407 0.155488 + +Polar angle tht: 2.3998; Azimuth angle phi: 3.3598 +Force: 3.514713 0.832013 4.322009 +Torque: -0.285467 -0.028251 0.192128 + +Polar angle tht: 2.3998; Azimuth angle phi: 3.4034 +Force: 3.471099 0.994202 4.321072 +Torque: -0.341349 -0.028059 0.227306 + +Polar angle tht: 2.3998; Azimuth angle phi: 3.4470 +Force: 3.419925 1.154115 4.319940 +Torque: -0.396575 -0.027830 0.260754 + +Polar angle tht: 2.3998; Azimuth angle phi: 3.4907 +Force: 3.361372 1.311391 4.318600 +Torque: -0.451038 -0.027562 0.292217 + +Polar angle tht: 2.3998; Azimuth angle phi: 3.5343 +Force: 3.295646 1.465678 4.317041 +Torque: -0.504635 -0.027256 0.321457 + +Polar angle tht: 2.3998; Azimuth angle phi: 3.5779 +Force: 3.222979 1.616633 4.315247 +Torque: -0.557261 -0.026909 0.348250 + +Polar angle tht: 2.3998; Azimuth angle phi: 3.6216 +Force: 3.143623 1.763923 4.313203 +Torque: -0.608817 -0.026520 0.372393 + +Polar angle tht: 2.3998; Azimuth angle phi: 3.6652 +Force: 3.057853 1.907227 4.310892 +Torque: -0.659202 -0.026088 0.393702 + +Polar angle tht: 2.3998; Azimuth angle phi: 3.7088 +Force: 2.965965 2.046237 4.308295 +Torque: -0.708322 -0.025612 0.412014 + +Polar angle tht: 2.3998; Azimuth angle phi: 3.7525 +Force: 2.868272 2.180656 4.305396 +Torque: -0.756081 -0.025090 0.427191 + +Polar angle tht: 2.3998; Azimuth angle phi: 3.7961 +Force: 2.765103 2.310204 4.302176 +Torque: -0.802389 -0.024520 0.439116 + +Polar angle tht: 2.3998; Azimuth angle phi: 3.8397 +Force: 2.656805 2.434614 4.298615 +Torque: -0.847157 -0.023901 0.447700 + +Polar angle tht: 2.3998; Azimuth angle phi: 3.8834 +Force: 2.543735 2.553633 4.294696 +Torque: -0.890299 -0.023232 0.452876 + +Polar angle tht: 2.3998; Azimuth angle phi: 3.9270 +Force: 2.426264 2.667029 4.290400 +Torque: -0.931733 -0.022511 0.454606 + +Polar angle tht: 2.3998; Azimuth angle phi: 3.9706 +Force: 2.304772 2.774580 4.285710 +Torque: -0.971380 -0.021737 0.452876 + +Polar angle tht: 2.3998; Azimuth angle phi: 4.0143 +Force: 2.179645 2.876086 4.280607 +Torque: -1.009166 -0.020909 0.447699 + +Polar angle tht: 2.3998; Azimuth angle phi: 4.0579 +Force: 2.051276 2.971362 4.275077 +Torque: -1.045017 -0.020025 0.439115 + +Polar angle tht: 2.3998; Azimuth angle phi: 4.1015 +Force: 1.920063 3.060241 4.269104 +Torque: -1.078866 -0.019085 0.427190 + +Polar angle tht: 2.3998; Azimuth angle phi: 4.1452 +Force: 1.786403 3.142574 4.262674 +Torque: -1.110650 -0.018088 0.412012 + +Polar angle tht: 2.3998; Azimuth angle phi: 4.1888 +Force: 1.650696 3.218230 4.255777 +Torque: -1.140307 -0.017033 0.393700 + +Polar angle tht: 2.3998; Azimuth angle phi: 4.2324 +Force: 1.513338 3.287096 4.248402 +Torque: -1.167782 -0.015920 0.372391 + +Polar angle tht: 2.3998; Azimuth angle phi: 4.2761 +Force: 1.374722 3.349076 4.240541 +Torque: -1.193023 -0.014749 0.348248 + +Polar angle tht: 2.3998; Azimuth angle phi: 4.3197 +Force: 1.237982 3.409014 4.241455 +Torque: -1.209671 -0.013632 0.319644 + +Polar angle tht: 2.3998; Azimuth angle phi: 4.3633 +Force: 1.103165 3.468322 4.253162 +Torque: -1.216289 -0.012557 0.287003 + +Polar angle tht: 2.3998; Azimuth angle phi: 4.4070 +Force: 0.966367 3.519734 4.262027 +Torque: -1.222126 -0.011348 0.253367 + +Polar angle tht: 2.3998; Azimuth angle phi: 4.4506 +Force: 0.828142 3.563043 4.268025 +Torque: -1.227173 -0.010015 0.218848 + +Polar angle tht: 2.3998; Azimuth angle phi: 4.4942 +Force: 0.689051 3.598080 4.271137 +Torque: -1.231424 -0.008566 0.183563 + +Polar angle tht: 2.3998; Azimuth angle phi: 4.5379 +Force: 0.549651 3.624714 4.271352 +Torque: -1.234872 -0.007014 0.147633 + +Polar angle tht: 2.3998; Azimuth angle phi: 4.5815 +Force: 0.410500 3.642855 4.268664 +Torque: -1.237513 -0.005368 0.111183 + +Polar angle tht: 2.3998; Azimuth angle phi: 4.6251 +Force: 0.272148 3.652452 4.263074 +Torque: -1.239343 -0.003642 0.074341 + +Polar angle tht: 2.3998; Azimuth angle phi: 4.6688 +Force: 0.135138 3.653494 4.254590 +Torque: -1.240361 -0.001849 0.037237 + +Polar angle tht: 2.3998; Azimuth angle phi: 4.7124 +Force: 0.000000 3.646011 4.243227 +Torque: -1.240566 0.000000 -0.000000 + +Polar angle tht: 2.3998; Azimuth angle phi: 4.7560 +Force: -0.135138 3.653494 4.254590 +Torque: -1.240361 0.001849 -0.037237 + +Polar angle tht: 2.3998; Azimuth angle phi: 4.7997 +Force: -0.272148 3.652452 4.263074 +Torque: -1.239343 0.003642 -0.074341 + +Polar angle tht: 2.3998; Azimuth angle phi: 4.8433 +Force: -0.410500 3.642855 4.268664 +Torque: -1.237513 0.005368 -0.111183 + +Polar angle tht: 2.3998; Azimuth angle phi: 4.8869 +Force: -0.549651 3.624714 4.271352 +Torque: -1.234872 0.007014 -0.147633 + +Polar angle tht: 2.3998; Azimuth angle phi: 4.9306 +Force: -0.689051 3.598080 4.271137 +Torque: -1.231424 0.008566 -0.183563 + +Polar angle tht: 2.3998; Azimuth angle phi: 4.9742 +Force: -0.828142 3.563043 4.268025 +Torque: -1.227173 0.010015 -0.218848 + +Polar angle tht: 2.3998; Azimuth angle phi: 5.0178 +Force: -0.966367 3.519734 4.262027 +Torque: -1.222126 0.011348 -0.253367 + +Polar angle tht: 2.3998; Azimuth angle phi: 5.0615 +Force: -1.103165 3.468322 4.253162 +Torque: -1.216289 0.012557 -0.287003 + +Polar angle tht: 2.3998; Azimuth angle phi: 5.1051 +Force: -1.237982 3.409014 4.241455 +Torque: -1.209671 0.013632 -0.319644 + +Polar angle tht: 2.3998; Azimuth angle phi: 5.1487 +Force: -1.374722 3.349076 4.240541 +Torque: -1.193023 0.014749 -0.348248 + +Polar angle tht: 2.3998; Azimuth angle phi: 5.1924 +Force: -1.513338 3.287096 4.248402 +Torque: -1.167782 0.015920 -0.372391 + +Polar angle tht: 2.3998; Azimuth angle phi: 5.2360 +Force: -1.650696 3.218230 4.255777 +Torque: -1.140307 0.017033 -0.393700 + +Polar angle tht: 2.3998; Azimuth angle phi: 5.2796 +Force: -1.786403 3.142574 4.262674 +Torque: -1.110650 0.018088 -0.412012 + +Polar angle tht: 2.3998; Azimuth angle phi: 5.3233 +Force: -1.920063 3.060241 4.269104 +Torque: -1.078866 0.019085 -0.427190 + +Polar angle tht: 2.3998; Azimuth angle phi: 5.3669 +Force: -2.051276 2.971362 4.275077 +Torque: -1.045017 0.020025 -0.439115 + +Polar angle tht: 2.3998; Azimuth angle phi: 5.4105 +Force: -2.179645 2.876086 4.280607 +Torque: -1.009166 0.020909 -0.447699 + +Polar angle tht: 2.3998; Azimuth angle phi: 5.4542 +Force: -2.304772 2.774580 4.285710 +Torque: -0.971380 0.021737 -0.452876 + +Polar angle tht: 2.3998; Azimuth angle phi: 5.4978 +Force: -2.426264 2.667029 4.290400 +Torque: -0.931733 0.022511 -0.454606 + +Polar angle tht: 2.3998; Azimuth angle phi: 5.5414 +Force: -2.543735 2.553633 4.294696 +Torque: -0.890299 0.023232 -0.452876 + +Polar angle tht: 2.3998; Azimuth angle phi: 5.5851 +Force: -2.656805 2.434614 4.298615 +Torque: -0.847157 0.023901 -0.447700 + +Polar angle tht: 2.3998; Azimuth angle phi: 5.6287 +Force: -2.765103 2.310204 4.302176 +Torque: -0.802389 0.024520 -0.439116 + +Polar angle tht: 2.3998; Azimuth angle phi: 5.6723 +Force: -2.868272 2.180656 4.305396 +Torque: -0.756081 0.025090 -0.427191 + +Polar angle tht: 2.3998; Azimuth angle phi: 5.7160 +Force: -2.965965 2.046237 4.308295 +Torque: -0.708322 0.025612 -0.412014 + +Polar angle tht: 2.3998; Azimuth angle phi: 5.7596 +Force: -3.057853 1.907227 4.310892 +Torque: -0.659202 0.026088 -0.393702 + +Polar angle tht: 2.3998; Azimuth angle phi: 5.8032 +Force: -3.143623 1.763923 4.313203 +Torque: -0.608817 0.026520 -0.372393 + +Polar angle tht: 2.3998; Azimuth angle phi: 5.8469 +Force: -3.222979 1.616633 4.315247 +Torque: -0.557261 0.026909 -0.348250 + +Polar angle tht: 2.3998; Azimuth angle phi: 5.8905 +Force: -3.295646 1.465678 4.317041 +Torque: -0.504635 0.027256 -0.321457 + +Polar angle tht: 2.3998; Azimuth angle phi: 5.9341 +Force: -3.361372 1.311391 4.318600 +Torque: -0.451038 0.027562 -0.292217 + +Polar angle tht: 2.3998; Azimuth angle phi: 5.9778 +Force: -3.419925 1.154115 4.319940 +Torque: -0.396575 0.027830 -0.260754 + +Polar angle tht: 2.3998; Azimuth angle phi: 6.0214 +Force: -3.471099 0.994202 4.321072 +Torque: -0.341349 0.028059 -0.227306 + +Polar angle tht: 2.3998; Azimuth angle phi: 6.0650 +Force: -3.514713 0.832013 4.322009 +Torque: -0.285467 0.028251 -0.192128 + +Polar angle tht: 2.3998; Azimuth angle phi: 6.1087 +Force: -3.550612 0.667916 4.322762 +Torque: -0.229036 0.028407 -0.155488 + +Polar angle tht: 2.3998; Azimuth angle phi: 6.1523 +Force: -3.578668 0.502286 4.323338 +Torque: -0.172165 0.028528 -0.117665 + +Polar angle tht: 2.3998; Azimuth angle phi: 6.1959 +Force: -3.598780 0.335500 4.323745 +Torque: -0.114962 0.028613 -0.078946 + +Polar angle tht: 2.3998; Azimuth angle phi: 6.2396 +Force: -3.610876 0.167943 4.323987 +Torque: -0.057538 0.028665 -0.039626 + +Polar angle tht: 2.3998; Azimuth angle phi: 6.2832 +Force: -3.614912 0.000000 4.324067 +Torque: -0.000004 0.028682 -0.000005 + +Polar angle tht: 2.4435; Azimuth angle phi: 0.0000 +Force: -3.517081 0.000000 4.613431 +Torque: -0.000004 0.029324 -0.000005 + +Polar angle tht: 2.4435; Azimuth angle phi: 0.0436 +Force: -3.513194 -0.164270 4.613335 +Torque: 0.056456 0.029306 0.035862 + +Polar angle tht: 2.4435; Azimuth angle phi: 0.0873 +Force: -3.501546 -0.328166 4.613046 +Torque: 0.112808 0.029250 0.071456 + +Polar angle tht: 2.4435; Azimuth angle phi: 0.1309 +Force: -3.482178 -0.491317 4.612561 +Torque: 0.168944 0.029156 0.106507 + +Polar angle tht: 2.4435; Azimuth angle phi: 0.1745 +Force: -3.455156 -0.653353 4.611878 +Torque: 0.224754 0.029025 0.140746 + +Polar angle tht: 2.4435; Azimuth angle phi: 0.2182 +Force: -3.420576 -0.813908 4.610988 +Torque: 0.280133 0.028855 0.173915 + +Polar angle tht: 2.4435; Azimuth angle phi: 0.2618 +Force: -3.378557 -0.972621 4.609886 +Torque: 0.334973 0.028646 0.205760 + +Polar angle tht: 2.4435; Azimuth angle phi: 0.3054 +Force: -3.329244 -1.129134 4.608563 +Torque: 0.389170 0.028397 0.236039 + +Polar angle tht: 2.4435; Azimuth angle phi: 0.3491 +Force: -3.272808 -1.283101 4.607008 +Torque: 0.442619 0.028108 0.264521 + +Polar angle tht: 2.4435; Azimuth angle phi: 0.3927 +Force: -3.209440 -1.434178 4.605210 +Torque: 0.495218 0.027778 0.290990 + +Polar angle tht: 2.4435; Azimuth angle phi: 0.4363 +Force: -3.139358 -1.582035 4.603157 +Torque: 0.546866 0.027405 0.315245 + +Polar angle tht: 2.4435; Azimuth angle phi: 0.4800 +Force: -3.062800 -1.726349 4.600835 +Torque: 0.597463 0.026988 0.337100 + +Polar angle tht: 2.4435; Azimuth angle phi: 0.5236 +Force: -2.980022 -1.866807 4.598230 +Torque: 0.646914 0.026527 0.356390 + +Polar angle tht: 2.4435; Azimuth angle phi: 0.5672 +Force: -2.891302 -2.003111 4.595326 +Torque: 0.695123 0.026019 0.372968 + +Polar angle tht: 2.4435; Azimuth angle phi: 0.6109 +Force: -2.796935 -2.134973 4.592110 +Torque: 0.741998 0.025465 0.386707 + +Polar angle tht: 2.4435; Azimuth angle phi: 0.6545 +Force: -2.697229 -2.262118 4.588564 +Torque: 0.787449 0.024863 0.397502 + +Polar angle tht: 2.4435; Azimuth angle phi: 0.6981 +Force: -2.592510 -2.384287 4.584674 +Torque: 0.831389 0.024211 0.405273 + +Polar angle tht: 2.4435; Azimuth angle phi: 0.7418 +Force: -2.483115 -2.501234 4.580423 +Torque: 0.873736 0.023508 0.409959 + +Polar angle tht: 2.4435; Azimuth angle phi: 0.7854 +Force: -2.369392 -2.612727 4.575797 +Torque: 0.914407 0.022754 0.411525 + +Polar angle tht: 2.4435; Azimuth angle phi: 0.8290 +Force: -2.251699 -2.718554 4.570780 +Torque: 0.953326 0.021947 0.409960 + +Polar angle tht: 2.4435; Azimuth angle phi: 0.8727 +Force: -2.130402 -2.818513 4.565360 +Torque: 0.990418 0.021087 0.405274 + +Polar angle tht: 2.4435; Azimuth angle phi: 0.9163 +Force: -2.005871 -2.912424 4.559522 +Torque: 1.025613 0.020173 0.397503 + +Polar angle tht: 2.4435; Azimuth angle phi: 0.9599 +Force: -1.878480 -3.000120 4.553255 +Torque: 1.058844 0.019204 0.386708 + +Polar angle tht: 2.4435; Azimuth angle phi: 1.0036 +Force: -1.748609 -3.081453 4.546549 +Torque: 1.090048 0.018179 0.372969 + +Polar angle tht: 2.4435; Azimuth angle phi: 1.0472 +Force: -1.616633 -3.156292 4.539394 +Torque: 1.119167 0.017099 0.356392 + +Polar angle tht: 2.4435; Azimuth angle phi: 1.0908 +Force: -1.482931 -3.224521 4.531783 +Torque: 1.146145 0.015963 0.337102 + +Polar angle tht: 2.4435; Azimuth angle phi: 1.1345 +Force: -1.347874 -3.286043 4.523710 +Torque: 1.170931 0.014771 0.315247 + +Polar angle tht: 2.4435; Azimuth angle phi: 1.1781 +Force: -1.211834 -3.340778 4.515174 +Torque: 1.193479 0.013525 0.290993 + +Polar angle tht: 2.4435; Azimuth angle phi: 1.2217 +Force: -1.075172 -3.388663 4.506171 +Torque: 1.213747 0.012223 0.264524 + +Polar angle tht: 2.4435; Azimuth angle phi: 1.2654 +Force: -0.938245 -3.429651 4.496704 +Torque: 1.231697 0.010868 0.236042 + +Polar angle tht: 2.4435; Azimuth angle phi: 1.3090 +Force: -0.801398 -3.463713 4.486777 +Torque: 1.247296 0.009459 0.205763 + +Polar angle tht: 2.4435; Azimuth angle phi: 1.3526 +Force: -0.664969 -3.490834 4.476395 +Torque: 1.260514 0.008000 0.173919 + +Polar angle tht: 2.4435; Azimuth angle phi: 1.3963 +Force: -0.529283 -3.511017 4.465568 +Torque: 1.271327 0.006491 0.140750 + +Polar angle tht: 2.4435; Azimuth angle phi: 1.4399 +Force: -0.394651 -3.524279 4.454306 +Torque: 1.279717 0.004934 0.106511 + +Polar angle tht: 2.4435; Azimuth angle phi: 1.4835 +Force: -0.261373 -3.530653 4.442625 +Torque: 1.285667 0.003331 0.071461 + +Polar angle tht: 2.4435; Azimuth angle phi: 1.5272 +Force: -0.129733 -3.530185 4.430541 +Torque: 1.289168 0.001686 0.035867 + +Polar angle tht: 2.4435; Azimuth angle phi: 1.5708 +Force: 0.000000 -3.522495 4.417248 +Torque: 1.290767 -0.000004 -0.000002 + +Polar angle tht: 2.4435; Azimuth angle phi: 1.6144 +Force: 0.129733 -3.530185 4.430541 +Torque: 1.289168 -0.001686 -0.035867 + +Polar angle tht: 2.4435; Azimuth angle phi: 1.6581 +Force: 0.261373 -3.530653 4.442625 +Torque: 1.285667 -0.003331 -0.071461 + +Polar angle tht: 2.4435; Azimuth angle phi: 1.7017 +Force: 0.394651 -3.524279 4.454306 +Torque: 1.279717 -0.004934 -0.106511 + +Polar angle tht: 2.4435; Azimuth angle phi: 1.7453 +Force: 0.529283 -3.511017 4.465568 +Torque: 1.271327 -0.006491 -0.140750 + +Polar angle tht: 2.4435; Azimuth angle phi: 1.7890 +Force: 0.664969 -3.490834 4.476395 +Torque: 1.260514 -0.008000 -0.173919 + +Polar angle tht: 2.4435; Azimuth angle phi: 1.8326 +Force: 0.801398 -3.463713 4.486777 +Torque: 1.247296 -0.009459 -0.205763 + +Polar angle tht: 2.4435; Azimuth angle phi: 1.8762 +Force: 0.938245 -3.429651 4.496704 +Torque: 1.231697 -0.010868 -0.236042 + +Polar angle tht: 2.4435; Azimuth angle phi: 1.9199 +Force: 1.075172 -3.388663 4.506171 +Torque: 1.213747 -0.012223 -0.264524 + +Polar angle tht: 2.4435; Azimuth angle phi: 1.9635 +Force: 1.211834 -3.340778 4.515174 +Torque: 1.193479 -0.013525 -0.290993 + +Polar angle tht: 2.4435; Azimuth angle phi: 2.0071 +Force: 1.347874 -3.286043 4.523710 +Torque: 1.170931 -0.014771 -0.315247 + +Polar angle tht: 2.4435; Azimuth angle phi: 2.0508 +Force: 1.482931 -3.224521 4.531783 +Torque: 1.146145 -0.015963 -0.337102 + +Polar angle tht: 2.4435; Azimuth angle phi: 2.0944 +Force: 1.616633 -3.156292 4.539394 +Torque: 1.119167 -0.017099 -0.356392 + +Polar angle tht: 2.4435; Azimuth angle phi: 2.1380 +Force: 1.748609 -3.081453 4.546549 +Torque: 1.090048 -0.018179 -0.372969 + +Polar angle tht: 2.4435; Azimuth angle phi: 2.1817 +Force: 1.878480 -3.000120 4.553255 +Torque: 1.058844 -0.019204 -0.386708 + +Polar angle tht: 2.4435; Azimuth angle phi: 2.2253 +Force: 2.005871 -2.912424 4.559522 +Torque: 1.025613 -0.020173 -0.397503 + +Polar angle tht: 2.4435; Azimuth angle phi: 2.2689 +Force: 2.130402 -2.818513 4.565360 +Torque: 0.990418 -0.021087 -0.405274 + +Polar angle tht: 2.4435; Azimuth angle phi: 2.3126 +Force: 2.251699 -2.718554 4.570780 +Torque: 0.953326 -0.021947 -0.409960 + +Polar angle tht: 2.4435; Azimuth angle phi: 2.3562 +Force: 2.369392 -2.612727 4.575797 +Torque: 0.914407 -0.022754 -0.411525 + +Polar angle tht: 2.4435; Azimuth angle phi: 2.3998 +Force: 2.483115 -2.501234 4.580423 +Torque: 0.873736 -0.023508 -0.409959 + +Polar angle tht: 2.4435; Azimuth angle phi: 2.4435 +Force: 2.592510 -2.384287 4.584674 +Torque: 0.831389 -0.024211 -0.405273 + +Polar angle tht: 2.4435; Azimuth angle phi: 2.4871 +Force: 2.697229 -2.262118 4.588564 +Torque: 0.787449 -0.024863 -0.397502 + +Polar angle tht: 2.4435; Azimuth angle phi: 2.5307 +Force: 2.796935 -2.134973 4.592110 +Torque: 0.741998 -0.025465 -0.386707 + +Polar angle tht: 2.4435; Azimuth angle phi: 2.5744 +Force: 2.891302 -2.003111 4.595326 +Torque: 0.695123 -0.026019 -0.372968 + +Polar angle tht: 2.4435; Azimuth angle phi: 2.6180 +Force: 2.980022 -1.866807 4.598230 +Torque: 0.646914 -0.026527 -0.356390 + +Polar angle tht: 2.4435; Azimuth angle phi: 2.6616 +Force: 3.062800 -1.726349 4.600835 +Torque: 0.597463 -0.026988 -0.337100 + +Polar angle tht: 2.4435; Azimuth angle phi: 2.7053 +Force: 3.139358 -1.582035 4.603157 +Torque: 0.546866 -0.027405 -0.315245 + +Polar angle tht: 2.4435; Azimuth angle phi: 2.7489 +Force: 3.209440 -1.434178 4.605210 +Torque: 0.495218 -0.027778 -0.290990 + +Polar angle tht: 2.4435; Azimuth angle phi: 2.7925 +Force: 3.272808 -1.283101 4.607008 +Torque: 0.442619 -0.028108 -0.264521 + +Polar angle tht: 2.4435; Azimuth angle phi: 2.8362 +Force: 3.329244 -1.129134 4.608563 +Torque: 0.389170 -0.028397 -0.236039 + +Polar angle tht: 2.4435; Azimuth angle phi: 2.8798 +Force: 3.378557 -0.972621 4.609886 +Torque: 0.334973 -0.028646 -0.205760 + +Polar angle tht: 2.4435; Azimuth angle phi: 2.9234 +Force: 3.420576 -0.813908 4.610988 +Torque: 0.280133 -0.028855 -0.173915 + +Polar angle tht: 2.4435; Azimuth angle phi: 2.9671 +Force: 3.455156 -0.653353 4.611878 +Torque: 0.224754 -0.029025 -0.140746 + +Polar angle tht: 2.4435; Azimuth angle phi: 3.0107 +Force: 3.482178 -0.491317 4.612561 +Torque: 0.168944 -0.029156 -0.106507 + +Polar angle tht: 2.4435; Azimuth angle phi: 3.0543 +Force: 3.501546 -0.328166 4.613046 +Torque: 0.112808 -0.029250 -0.071456 + +Polar angle tht: 2.4435; Azimuth angle phi: 3.0980 +Force: 3.513194 -0.164270 4.613335 +Torque: 0.056456 -0.029306 -0.035862 + +Polar angle tht: 2.4435; Azimuth angle phi: 3.1416 +Force: 3.517081 0.000000 4.613431 +Torque: -0.000004 -0.029324 0.000005 + +Polar angle tht: 2.4435; Azimuth angle phi: 3.1852 +Force: 3.513194 0.164270 4.613335 +Torque: -0.056465 -0.029306 0.035872 + +Polar angle tht: 2.4435; Azimuth angle phi: 3.2289 +Force: 3.501546 0.328166 4.613046 +Torque: -0.112817 -0.029250 0.071466 + +Polar angle tht: 2.4435; Azimuth angle phi: 3.2725 +Force: 3.482178 0.491317 4.612561 +Torque: -0.168952 -0.029156 0.106516 + +Polar angle tht: 2.4435; Azimuth angle phi: 3.3161 +Force: 3.455156 0.653353 4.611878 +Torque: -0.224763 -0.029025 0.140756 + +Polar angle tht: 2.4435; Azimuth angle phi: 3.3598 +Force: 3.420576 0.813908 4.610988 +Torque: -0.280142 -0.028855 0.173924 + +Polar angle tht: 2.4435; Azimuth angle phi: 3.4034 +Force: 3.378557 0.972621 4.609886 +Torque: -0.334982 -0.028646 0.205769 + +Polar angle tht: 2.4435; Azimuth angle phi: 3.4470 +Force: 3.329244 1.129134 4.608563 +Torque: -0.389179 -0.028397 0.236048 + +Polar angle tht: 2.4435; Azimuth angle phi: 3.4907 +Force: 3.272808 1.283101 4.607008 +Torque: -0.442628 -0.028108 0.264530 + +Polar angle tht: 2.4435; Azimuth angle phi: 3.5343 +Force: 3.209440 1.434178 4.605210 +Torque: -0.495227 -0.027778 0.290999 + +Polar angle tht: 2.4435; Azimuth angle phi: 3.5779 +Force: 3.139358 1.582035 4.603157 +Torque: -0.546875 -0.027405 0.315254 + +Polar angle tht: 2.4435; Azimuth angle phi: 3.6216 +Force: 3.062800 1.726349 4.600835 +Torque: -0.597473 -0.026988 0.337109 + +Polar angle tht: 2.4435; Azimuth angle phi: 3.6652 +Force: 2.980022 1.866807 4.598230 +Torque: -0.646923 -0.026527 0.356399 + +Polar angle tht: 2.4435; Azimuth angle phi: 3.7088 +Force: 2.891302 2.003111 4.595326 +Torque: -0.695132 -0.026019 0.372976 + +Polar angle tht: 2.4435; Azimuth angle phi: 3.7525 +Force: 2.796935 2.134973 4.592110 +Torque: -0.742007 -0.025465 0.386714 + +Polar angle tht: 2.4435; Azimuth angle phi: 3.7961 +Force: 2.697229 2.262118 4.588564 +Torque: -0.787458 -0.024863 0.397510 + +Polar angle tht: 2.4435; Azimuth angle phi: 3.8397 +Force: 2.592510 2.384287 4.584674 +Torque: -0.831399 -0.024211 0.405280 + +Polar angle tht: 2.4435; Azimuth angle phi: 3.8834 +Force: 2.483115 2.501234 4.580423 +Torque: -0.873745 -0.023508 0.409966 + +Polar angle tht: 2.4435; Azimuth angle phi: 3.9270 +Force: 2.369392 2.612727 4.575797 +Torque: -0.914417 -0.022754 0.411532 + +Polar angle tht: 2.4435; Azimuth angle phi: 3.9706 +Force: 2.251699 2.718554 4.570780 +Torque: -0.953335 -0.021947 0.409966 + +Polar angle tht: 2.4435; Azimuth angle phi: 4.0143 +Force: 2.130402 2.818513 4.565360 +Torque: -0.990428 -0.021087 0.405280 + +Polar angle tht: 2.4435; Azimuth angle phi: 4.0579 +Force: 2.005871 2.912424 4.559522 +Torque: -1.025623 -0.020173 0.397509 + +Polar angle tht: 2.4435; Azimuth angle phi: 4.1015 +Force: 1.878480 3.000120 4.553255 +Torque: -1.058854 -0.019204 0.386713 + +Polar angle tht: 2.4435; Azimuth angle phi: 4.1452 +Force: 1.748609 3.081453 4.546549 +Torque: -1.090058 -0.018179 0.372974 + +Polar angle tht: 2.4435; Azimuth angle phi: 4.1888 +Force: 1.616633 3.156292 4.539394 +Torque: -1.119177 -0.017099 0.356397 + +Polar angle tht: 2.4435; Azimuth angle phi: 4.2324 +Force: 1.482931 3.224521 4.531783 +Torque: -1.146155 -0.015963 0.337107 + +Polar angle tht: 2.4435; Azimuth angle phi: 4.2761 +Force: 1.347874 3.286043 4.523710 +Torque: -1.170941 -0.014771 0.315251 + +Polar angle tht: 2.4435; Azimuth angle phi: 4.3197 +Force: 1.211834 3.340778 4.515174 +Torque: -1.193490 -0.013525 0.290997 + +Polar angle tht: 2.4435; Azimuth angle phi: 4.3633 +Force: 1.075172 3.388663 4.506171 +Torque: -1.213758 -0.012223 0.264527 + +Polar angle tht: 2.4435; Azimuth angle phi: 4.4070 +Force: 0.938245 3.429651 4.496704 +Torque: -1.231708 -0.010868 0.236045 + +Polar angle tht: 2.4435; Azimuth angle phi: 4.4506 +Force: 0.801398 3.463713 4.486777 +Torque: -1.247306 -0.009459 0.205766 + +Polar angle tht: 2.4435; Azimuth angle phi: 4.4942 +Force: 0.664969 3.490834 4.476395 +Torque: -1.260524 -0.008000 0.173921 + +Polar angle tht: 2.4435; Azimuth angle phi: 4.5379 +Force: 0.529283 3.511017 4.465568 +Torque: -1.271338 -0.006491 0.140752 + +Polar angle tht: 2.4435; Azimuth angle phi: 4.5815 +Force: 0.394651 3.524279 4.454306 +Torque: -1.279728 -0.004934 0.106512 + +Polar angle tht: 2.4435; Azimuth angle phi: 4.6251 +Force: 0.261373 3.530653 4.442625 +Torque: -1.285678 -0.003331 0.071462 + +Polar angle tht: 2.4435; Azimuth angle phi: 4.6688 +Force: 0.129733 3.530185 4.430541 +Torque: -1.289179 -0.001686 0.035867 + +Polar angle tht: 2.4435; Azimuth angle phi: 4.7124 +Force: 0.000000 3.522340 4.416957 +Torque: -1.290998 -0.000027 0.000014 + +Polar angle tht: 2.4435; Azimuth angle phi: 4.7560 +Force: -0.129733 3.530185 4.430541 +Torque: -1.289179 0.001686 -0.035867 + +Polar angle tht: 2.4435; Azimuth angle phi: 4.7997 +Force: -0.261373 3.530653 4.442625 +Torque: -1.285678 0.003331 -0.071462 + +Polar angle tht: 2.4435; Azimuth angle phi: 4.8433 +Force: -0.394651 3.524279 4.454306 +Torque: -1.279728 0.004934 -0.106512 + +Polar angle tht: 2.4435; Azimuth angle phi: 4.8869 +Force: -0.529283 3.511017 4.465568 +Torque: -1.271338 0.006491 -0.140752 + +Polar angle tht: 2.4435; Azimuth angle phi: 4.9306 +Force: -0.664969 3.490834 4.476395 +Torque: -1.260524 0.008000 -0.173921 + +Polar angle tht: 2.4435; Azimuth angle phi: 4.9742 +Force: -0.801398 3.463713 4.486777 +Torque: -1.247306 0.009459 -0.205766 + +Polar angle tht: 2.4435; Azimuth angle phi: 5.0178 +Force: -0.938245 3.429651 4.496704 +Torque: -1.231708 0.010868 -0.236045 + +Polar angle tht: 2.4435; Azimuth angle phi: 5.0615 +Force: -1.075172 3.388663 4.506171 +Torque: -1.213758 0.012223 -0.264527 + +Polar angle tht: 2.4435; Azimuth angle phi: 5.1051 +Force: -1.211834 3.340778 4.515174 +Torque: -1.193490 0.013525 -0.290997 + +Polar angle tht: 2.4435; Azimuth angle phi: 5.1487 +Force: -1.347874 3.286043 4.523710 +Torque: -1.170941 0.014771 -0.315251 + +Polar angle tht: 2.4435; Azimuth angle phi: 5.1924 +Force: -1.482931 3.224521 4.531783 +Torque: -1.146155 0.015963 -0.337107 + +Polar angle tht: 2.4435; Azimuth angle phi: 5.2360 +Force: -1.616633 3.156292 4.539394 +Torque: -1.119177 0.017099 -0.356397 + +Polar angle tht: 2.4435; Azimuth angle phi: 5.2796 +Force: -1.748609 3.081453 4.546549 +Torque: -1.090058 0.018179 -0.372974 + +Polar angle tht: 2.4435; Azimuth angle phi: 5.3233 +Force: -1.878480 3.000120 4.553255 +Torque: -1.058854 0.019204 -0.386713 + +Polar angle tht: 2.4435; Azimuth angle phi: 5.3669 +Force: -2.005871 2.912424 4.559522 +Torque: -1.025623 0.020173 -0.397509 + +Polar angle tht: 2.4435; Azimuth angle phi: 5.4105 +Force: -2.130402 2.818513 4.565360 +Torque: -0.990428 0.021087 -0.405280 + +Polar angle tht: 2.4435; Azimuth angle phi: 5.4542 +Force: -2.251699 2.718554 4.570780 +Torque: -0.953335 0.021947 -0.409966 + +Polar angle tht: 2.4435; Azimuth angle phi: 5.4978 +Force: -2.369392 2.612727 4.575797 +Torque: -0.914417 0.022754 -0.411532 + +Polar angle tht: 2.4435; Azimuth angle phi: 5.5414 +Force: -2.483115 2.501234 4.580423 +Torque: -0.873745 0.023508 -0.409966 + +Polar angle tht: 2.4435; Azimuth angle phi: 5.5851 +Force: -2.592510 2.384287 4.584674 +Torque: -0.831399 0.024211 -0.405280 + +Polar angle tht: 2.4435; Azimuth angle phi: 5.6287 +Force: -2.697229 2.262118 4.588564 +Torque: -0.787458 0.024863 -0.397510 + +Polar angle tht: 2.4435; Azimuth angle phi: 5.6723 +Force: -2.796935 2.134973 4.592110 +Torque: -0.742007 0.025465 -0.386714 + +Polar angle tht: 2.4435; Azimuth angle phi: 5.7160 +Force: -2.891302 2.003111 4.595326 +Torque: -0.695132 0.026019 -0.372976 + +Polar angle tht: 2.4435; Azimuth angle phi: 5.7596 +Force: -2.980022 1.866807 4.598230 +Torque: -0.646923 0.026527 -0.356399 + +Polar angle tht: 2.4435; Azimuth angle phi: 5.8032 +Force: -3.062800 1.726349 4.600835 +Torque: -0.597473 0.026988 -0.337109 + +Polar angle tht: 2.4435; Azimuth angle phi: 5.8469 +Force: -3.139358 1.582035 4.603157 +Torque: -0.546875 0.027405 -0.315254 + +Polar angle tht: 2.4435; Azimuth angle phi: 5.8905 +Force: -3.209440 1.434178 4.605210 +Torque: -0.495227 0.027778 -0.290999 + +Polar angle tht: 2.4435; Azimuth angle phi: 5.9341 +Force: -3.272808 1.283101 4.607008 +Torque: -0.442628 0.028108 -0.264530 + +Polar angle tht: 2.4435; Azimuth angle phi: 5.9778 +Force: -3.329244 1.129134 4.608563 +Torque: -0.389179 0.028397 -0.236048 + +Polar angle tht: 2.4435; Azimuth angle phi: 6.0214 +Force: -3.378557 0.972621 4.609886 +Torque: -0.334982 0.028646 -0.205769 + +Polar angle tht: 2.4435; Azimuth angle phi: 6.0650 +Force: -3.420576 0.813908 4.610988 +Torque: -0.280142 0.028855 -0.173924 + +Polar angle tht: 2.4435; Azimuth angle phi: 6.1087 +Force: -3.455156 0.653353 4.611878 +Torque: -0.224763 0.029025 -0.140756 + +Polar angle tht: 2.4435; Azimuth angle phi: 6.1523 +Force: -3.482178 0.491317 4.612561 +Torque: -0.168952 0.029156 -0.106516 + +Polar angle tht: 2.4435; Azimuth angle phi: 6.1959 +Force: -3.501546 0.328166 4.613046 +Torque: -0.112817 0.029250 -0.071466 + +Polar angle tht: 2.4435; Azimuth angle phi: 6.2396 +Force: -3.513194 0.164270 4.613335 +Torque: -0.056465 0.029306 -0.035872 + +Polar angle tht: 2.4435; Azimuth angle phi: 6.2832 +Force: -3.517081 0.000000 4.613431 +Torque: -0.000004 0.029324 -0.000005 + +Polar angle tht: 2.4871; Azimuth angle phi: 0.0000 +Force: -3.398335 0.000000 4.895162 +Torque: -0.000005 0.029643 -0.000005 + +Polar angle tht: 2.4871; Azimuth angle phi: 0.0436 +Force: -3.394616 -0.159557 4.895053 +Torque: 0.055012 0.029623 0.032166 + +Polar angle tht: 2.4871; Azimuth angle phi: 0.0873 +Force: -3.383473 -0.318756 4.894724 +Torque: 0.109924 0.029564 0.064091 + +Polar angle tht: 2.4871; Azimuth angle phi: 0.1309 +Force: -3.364943 -0.477240 4.894174 +Torque: 0.164625 0.029464 0.095529 + +Polar angle tht: 2.4871; Azimuth angle phi: 0.1745 +Force: -3.339089 -0.634654 4.893399 +Torque: 0.219009 0.029324 0.126239 + +Polar angle tht: 2.4871; Azimuth angle phi: 0.2182 +Force: -3.305998 -0.790648 4.892395 +Torque: 0.272973 0.029143 0.155989 + +Polar angle tht: 2.4871; Azimuth angle phi: 0.2618 +Force: -3.265782 -0.944873 4.891154 +Torque: 0.326412 0.028921 0.184552 + +Polar angle tht: 2.4871; Azimuth angle phi: 0.3054 +Force: -3.218576 -1.096988 4.889670 +Torque: 0.379225 0.028657 0.211710 + +Polar angle tht: 2.4871; Azimuth angle phi: 0.3491 +Force: -3.164538 -1.246658 4.887934 +Torque: 0.431310 0.028351 0.237257 + +Polar angle tht: 2.4871; Azimuth angle phi: 0.3927 +Force: -3.103847 -1.393555 4.885937 +Torque: 0.482567 0.028002 0.260998 + +Polar angle tht: 2.4871; Azimuth angle phi: 0.4363 +Force: -3.036705 -1.537358 4.883668 +Torque: 0.532898 0.027608 0.282753 + +Polar angle tht: 2.4871; Azimuth angle phi: 0.4800 +Force: -2.963334 -1.677759 4.881116 +Torque: 0.582206 0.027170 0.302356 + +Polar angle tht: 2.4871; Azimuth angle phi: 0.5236 +Force: -2.883973 -1.814455 4.878269 +Torque: 0.630397 0.026686 0.319657 + +Polar angle tht: 2.4871; Azimuth angle phi: 0.5672 +Force: -2.798880 -1.947159 4.875114 +Torque: 0.677379 0.026156 0.334526 + +Polar angle tht: 2.4871; Azimuth angle phi: 0.6109 +Force: -2.708330 -2.075591 4.871640 +Torque: 0.723062 0.025577 0.346849 + +Polar angle tht: 2.4871; Azimuth angle phi: 0.6545 +Force: -2.612612 -2.199488 4.867832 +Torque: 0.767358 0.024951 0.356532 + +Polar angle tht: 2.4871; Azimuth angle phi: 0.6981 +Force: -2.512030 -2.318596 4.863678 +Torque: 0.810183 0.024275 0.363502 + +Polar angle tht: 2.4871; Azimuth angle phi: 0.7418 +Force: -2.406898 -2.432678 4.859166 +Torque: 0.851456 0.023549 0.367705 + +Polar angle tht: 2.4871; Azimuth angle phi: 0.7854 +Force: -2.297542 -2.541508 4.854283 +Torque: 0.891097 0.022771 0.369110 + +Polar angle tht: 2.4871; Azimuth angle phi: 0.8290 +Force: -2.184298 -2.644878 4.849017 +Torque: 0.929031 0.021943 0.367705 + +Polar angle tht: 2.4871; Azimuth angle phi: 0.8727 +Force: -2.067507 -2.742593 4.843357 +Torque: 0.965186 0.021062 0.363502 + +Polar angle tht: 2.4871; Azimuth angle phi: 0.9163 +Force: -1.947516 -2.834474 4.837294 +Torque: 0.999493 0.020128 0.356533 + +Polar angle tht: 2.4871; Azimuth angle phi: 0.9599 +Force: -1.824680 -2.920358 4.830817 +Torque: 1.031887 0.019141 0.346850 + +Polar angle tht: 2.4871; Azimuth angle phi: 1.0036 +Force: -1.699351 -3.000098 4.823919 +Torque: 1.062307 0.018101 0.334528 + +Polar angle tht: 2.4871; Azimuth angle phi: 1.0472 +Force: -1.571886 -3.073563 4.816594 +Torque: 1.090695 0.017007 0.319659 + +Polar angle tht: 2.4871; Azimuth angle phi: 1.0908 +Force: -1.442640 -3.140638 4.808837 +Torque: 1.116998 0.015860 0.302358 + +Polar angle tht: 2.4871; Azimuth angle phi: 1.1345 +Force: -1.311966 -3.201225 4.800645 +Torque: 1.141166 0.014661 0.282755 + +Polar angle tht: 2.4871; Azimuth angle phi: 1.1781 +Force: -1.180212 -3.255241 4.792017 +Torque: 1.163153 0.013409 0.261001 + +Polar angle tht: 2.4871; Azimuth angle phi: 1.2217 +Force: -1.047724 -3.302620 4.782954 +Torque: 1.182918 0.012106 0.237260 + +Polar angle tht: 2.4871; Azimuth angle phi: 1.2654 +Force: -0.914839 -3.343312 4.773458 +Torque: 1.200425 0.010752 0.211713 + +Polar angle tht: 2.4871; Azimuth angle phi: 1.3090 +Force: -0.781887 -3.377283 4.763535 +Torque: 1.215640 0.009349 0.184555 + +Polar angle tht: 2.4871; Azimuth angle phi: 1.3526 +Force: -0.649190 -3.404513 4.753192 +Torque: 1.228536 0.007899 0.155993 + +Polar angle tht: 2.4871; Azimuth angle phi: 1.3963 +Force: -0.517058 -3.425000 4.742440 +Torque: 1.239089 0.006402 0.126243 + +Polar angle tht: 2.4871; Azimuth angle phi: 1.4399 +Force: -0.385792 -3.438755 4.731290 +Torque: 1.247280 0.004861 0.095533 + +Polar angle tht: 2.4871; Azimuth angle phi: 1.4835 +Force: -0.255679 -3.445802 4.719758 +Torque: 1.253094 0.003279 0.064095 + +Polar angle tht: 2.4871; Azimuth angle phi: 1.5272 +Force: -0.126994 -3.446182 4.707861 +Torque: 1.256520 0.001658 0.032170 + +Polar angle tht: 2.4871; Azimuth angle phi: 1.5708 +Force: 0.000000 -3.439947 4.695619 +Torque: 1.257554 0.000000 0.000000 + +Polar angle tht: 2.4871; Azimuth angle phi: 1.6144 +Force: 0.126994 -3.446182 4.707861 +Torque: 1.256520 -0.001658 -0.032170 + +Polar angle tht: 2.4871; Azimuth angle phi: 1.6581 +Force: 0.255679 -3.445802 4.719758 +Torque: 1.253094 -0.003279 -0.064095 + +Polar angle tht: 2.4871; Azimuth angle phi: 1.7017 +Force: 0.385792 -3.438755 4.731290 +Torque: 1.247280 -0.004861 -0.095533 + +Polar angle tht: 2.4871; Azimuth angle phi: 1.7453 +Force: 0.517058 -3.425000 4.742440 +Torque: 1.239089 -0.006402 -0.126243 + +Polar angle tht: 2.4871; Azimuth angle phi: 1.7890 +Force: 0.649190 -3.404513 4.753192 +Torque: 1.228536 -0.007899 -0.155993 + +Polar angle tht: 2.4871; Azimuth angle phi: 1.8326 +Force: 0.781887 -3.377283 4.763535 +Torque: 1.215640 -0.009349 -0.184555 + +Polar angle tht: 2.4871; Azimuth angle phi: 1.8762 +Force: 0.914839 -3.343312 4.773458 +Torque: 1.200425 -0.010752 -0.211713 + +Polar angle tht: 2.4871; Azimuth angle phi: 1.9199 +Force: 1.047724 -3.302620 4.782954 +Torque: 1.182918 -0.012106 -0.237260 + +Polar angle tht: 2.4871; Azimuth angle phi: 1.9635 +Force: 1.180212 -3.255241 4.792017 +Torque: 1.163153 -0.013409 -0.261001 + +Polar angle tht: 2.4871; Azimuth angle phi: 2.0071 +Force: 1.311966 -3.201225 4.800645 +Torque: 1.141166 -0.014661 -0.282755 + +Polar angle tht: 2.4871; Azimuth angle phi: 2.0508 +Force: 1.442640 -3.140638 4.808837 +Torque: 1.116998 -0.015860 -0.302358 + +Polar angle tht: 2.4871; Azimuth angle phi: 2.0944 +Force: 1.571886 -3.073563 4.816594 +Torque: 1.090695 -0.017007 -0.319659 + +Polar angle tht: 2.4871; Azimuth angle phi: 2.1380 +Force: 1.699351 -3.000098 4.823919 +Torque: 1.062307 -0.018101 -0.334528 + +Polar angle tht: 2.4871; Azimuth angle phi: 2.1817 +Force: 1.824680 -2.920358 4.830817 +Torque: 1.031887 -0.019141 -0.346850 + +Polar angle tht: 2.4871; Azimuth angle phi: 2.2253 +Force: 1.947516 -2.834474 4.837294 +Torque: 0.999493 -0.020128 -0.356533 + +Polar angle tht: 2.4871; Azimuth angle phi: 2.2689 +Force: 2.067507 -2.742593 4.843357 +Torque: 0.965186 -0.021062 -0.363502 + +Polar angle tht: 2.4871; Azimuth angle phi: 2.3126 +Force: 2.184298 -2.644878 4.849017 +Torque: 0.929031 -0.021943 -0.367705 + +Polar angle tht: 2.4871; Azimuth angle phi: 2.3562 +Force: 2.297542 -2.541508 4.854283 +Torque: 0.891097 -0.022771 -0.369110 + +Polar angle tht: 2.4871; Azimuth angle phi: 2.3998 +Force: 2.406898 -2.432678 4.859166 +Torque: 0.851456 -0.023549 -0.367705 + +Polar angle tht: 2.4871; Azimuth angle phi: 2.4435 +Force: 2.512030 -2.318596 4.863678 +Torque: 0.810183 -0.024275 -0.363502 + +Polar angle tht: 2.4871; Azimuth angle phi: 2.4871 +Force: 2.612612 -2.199488 4.867832 +Torque: 0.767358 -0.024951 -0.356532 + +Polar angle tht: 2.4871; Azimuth angle phi: 2.5307 +Force: 2.708330 -2.075591 4.871640 +Torque: 0.723062 -0.025577 -0.346849 + +Polar angle tht: 2.4871; Azimuth angle phi: 2.5744 +Force: 2.798880 -1.947159 4.875114 +Torque: 0.677379 -0.026156 -0.334526 + +Polar angle tht: 2.4871; Azimuth angle phi: 2.6180 +Force: 2.883973 -1.814455 4.878269 +Torque: 0.630397 -0.026686 -0.319657 + +Polar angle tht: 2.4871; Azimuth angle phi: 2.6616 +Force: 2.963334 -1.677759 4.881116 +Torque: 0.582206 -0.027170 -0.302356 + +Polar angle tht: 2.4871; Azimuth angle phi: 2.7053 +Force: 3.036705 -1.537358 4.883668 +Torque: 0.532898 -0.027608 -0.282753 + +Polar angle tht: 2.4871; Azimuth angle phi: 2.7489 +Force: 3.103847 -1.393555 4.885937 +Torque: 0.482567 -0.028002 -0.260998 + +Polar angle tht: 2.4871; Azimuth angle phi: 2.7925 +Force: 3.164538 -1.246658 4.887934 +Torque: 0.431310 -0.028351 -0.237257 + +Polar angle tht: 2.4871; Azimuth angle phi: 2.8362 +Force: 3.218576 -1.096988 4.889670 +Torque: 0.379225 -0.028657 -0.211710 + +Polar angle tht: 2.4871; Azimuth angle phi: 2.8798 +Force: 3.265782 -0.944873 4.891154 +Torque: 0.326412 -0.028921 -0.184552 + +Polar angle tht: 2.4871; Azimuth angle phi: 2.9234 +Force: 3.305998 -0.790648 4.892395 +Torque: 0.272973 -0.029143 -0.155989 + +Polar angle tht: 2.4871; Azimuth angle phi: 2.9671 +Force: 3.339089 -0.634654 4.893399 +Torque: 0.219009 -0.029324 -0.126239 + +Polar angle tht: 2.4871; Azimuth angle phi: 3.0107 +Force: 3.364943 -0.477240 4.894174 +Torque: 0.164625 -0.029464 -0.095529 + +Polar angle tht: 2.4871; Azimuth angle phi: 3.0543 +Force: 3.383473 -0.318756 4.894724 +Torque: 0.109924 -0.029564 -0.064091 + +Polar angle tht: 2.4871; Azimuth angle phi: 3.0980 +Force: 3.394616 -0.159557 4.895053 +Torque: 0.055012 -0.029623 -0.032166 + +Polar angle tht: 2.4871; Azimuth angle phi: 3.1416 +Force: 3.398335 0.000000 4.895162 +Torque: -0.000005 -0.029643 0.000005 + +Polar angle tht: 2.4871; Azimuth angle phi: 3.1852 +Force: 3.394616 0.159557 4.895053 +Torque: -0.055022 -0.029623 0.032175 + +Polar angle tht: 2.4871; Azimuth angle phi: 3.2289 +Force: 3.383473 0.318756 4.894724 +Torque: -0.109934 -0.029564 0.064101 + +Polar angle tht: 2.4871; Azimuth angle phi: 3.2725 +Force: 3.364943 0.477240 4.894174 +Torque: -0.164634 -0.029464 0.095538 + +Polar angle tht: 2.4871; Azimuth angle phi: 3.3161 +Force: 3.339089 0.634654 4.893399 +Torque: -0.219018 -0.029324 0.126249 + +Polar angle tht: 2.4871; Azimuth angle phi: 3.3598 +Force: 3.305998 0.790648 4.892395 +Torque: -0.272982 -0.029143 0.155999 + +Polar angle tht: 2.4871; Azimuth angle phi: 3.4034 +Force: 3.265782 0.944873 4.891154 +Torque: -0.326422 -0.028921 0.184561 + +Polar angle tht: 2.4871; Azimuth angle phi: 3.4470 +Force: 3.218576 1.096988 4.889670 +Torque: -0.379235 -0.028657 0.211719 + +Polar angle tht: 2.4871; Azimuth angle phi: 3.4907 +Force: 3.164538 1.246658 4.887934 +Torque: -0.431320 -0.028351 0.237266 + +Polar angle tht: 2.4871; Azimuth angle phi: 3.5343 +Force: 3.103847 1.393555 4.885937 +Torque: -0.482577 -0.028002 0.261007 + +Polar angle tht: 2.4871; Azimuth angle phi: 3.5779 +Force: 3.036705 1.537358 4.883668 +Torque: -0.532908 -0.027608 0.282761 + +Polar angle tht: 2.4871; Azimuth angle phi: 3.6216 +Force: 2.963334 1.677759 4.881116 +Torque: -0.582216 -0.027170 0.302364 + +Polar angle tht: 2.4871; Azimuth angle phi: 3.6652 +Force: 2.883973 1.814455 4.878269 +Torque: -0.630407 -0.026686 0.319665 + +Polar angle tht: 2.4871; Azimuth angle phi: 3.7088 +Force: 2.798880 1.947159 4.875114 +Torque: -0.677389 -0.026156 0.334534 + +Polar angle tht: 2.4871; Azimuth angle phi: 3.7525 +Force: 2.708330 2.075591 4.871640 +Torque: -0.723072 -0.025577 0.346857 + +Polar angle tht: 2.4871; Azimuth angle phi: 3.7961 +Force: 2.612612 2.199488 4.867832 +Torque: -0.767368 -0.024951 0.356540 + +Polar angle tht: 2.4871; Azimuth angle phi: 3.8397 +Force: 2.512030 2.318596 4.863678 +Torque: -0.810194 -0.024275 0.363509 + +Polar angle tht: 2.4871; Azimuth angle phi: 3.8834 +Force: 2.406898 2.432678 4.859166 +Torque: -0.851466 -0.023549 0.367712 + +Polar angle tht: 2.4871; Azimuth angle phi: 3.9270 +Force: 2.297542 2.541508 4.854283 +Torque: -0.891107 -0.022771 0.369116 + +Polar angle tht: 2.4871; Azimuth angle phi: 3.9706 +Force: 2.184298 2.644878 4.849017 +Torque: -0.929041 -0.021943 0.367712 + +Polar angle tht: 2.4871; Azimuth angle phi: 4.0143 +Force: 2.067507 2.742593 4.843357 +Torque: -0.965197 -0.021062 0.363508 + +Polar angle tht: 2.4871; Azimuth angle phi: 4.0579 +Force: 1.947516 2.834474 4.837294 +Torque: -0.999504 -0.020128 0.356539 + +Polar angle tht: 2.4871; Azimuth angle phi: 4.1015 +Force: 1.824680 2.920358 4.830817 +Torque: -1.031898 -0.019141 0.346856 + +Polar angle tht: 2.4871; Azimuth angle phi: 4.1452 +Force: 1.699351 3.000098 4.823919 +Torque: -1.062318 -0.018101 0.334533 + +Polar angle tht: 2.4871; Azimuth angle phi: 4.1888 +Force: 1.571886 3.073563 4.816594 +Torque: -1.090706 -0.017007 0.319664 + +Polar angle tht: 2.4871; Azimuth angle phi: 4.2324 +Force: 1.442640 3.140638 4.808837 +Torque: -1.117009 -0.015860 0.302362 + +Polar angle tht: 2.4871; Azimuth angle phi: 4.2761 +Force: 1.311966 3.201225 4.800645 +Torque: -1.141176 -0.014661 0.282759 + +Polar angle tht: 2.4871; Azimuth angle phi: 4.3197 +Force: 1.180212 3.255241 4.792017 +Torque: -1.163164 -0.013409 0.261004 + +Polar angle tht: 2.4871; Azimuth angle phi: 4.3633 +Force: 1.047724 3.302620 4.782954 +Torque: -1.182929 -0.012106 0.237263 + +Polar angle tht: 2.4871; Azimuth angle phi: 4.4070 +Force: 0.914839 3.343312 4.773458 +Torque: -1.200436 -0.010752 0.211716 + +Polar angle tht: 2.4871; Azimuth angle phi: 4.4506 +Force: 0.781887 3.377283 4.763535 +Torque: -1.215651 -0.009349 0.184558 + +Polar angle tht: 2.4871; Azimuth angle phi: 4.4942 +Force: 0.649190 3.404513 4.753192 +Torque: -1.228547 -0.007899 0.155995 + +Polar angle tht: 2.4871; Azimuth angle phi: 4.5379 +Force: 0.517058 3.425000 4.742440 +Torque: -1.239101 -0.006402 0.126245 + +Polar angle tht: 2.4871; Azimuth angle phi: 4.5815 +Force: 0.385792 3.438755 4.731290 +Torque: -1.247291 -0.004861 0.095534 + +Polar angle tht: 2.4871; Azimuth angle phi: 4.6251 +Force: 0.255679 3.445802 4.719758 +Torque: -1.253105 -0.003279 0.064096 + +Polar angle tht: 2.4871; Azimuth angle phi: 4.6688 +Force: 0.126994 3.446182 4.707861 +Torque: -1.256531 -0.001658 0.032171 + +Polar angle tht: 2.4871; Azimuth angle phi: 4.7124 +Force: 0.000000 3.439947 4.695619 +Torque: -1.257565 0.000000 -0.000000 + +Polar angle tht: 2.4871; Azimuth angle phi: 4.7560 +Force: -0.126994 3.446182 4.707861 +Torque: -1.256531 0.001658 -0.032171 + +Polar angle tht: 2.4871; Azimuth angle phi: 4.7997 +Force: -0.255679 3.445802 4.719758 +Torque: -1.253105 0.003279 -0.064096 + +Polar angle tht: 2.4871; Azimuth angle phi: 4.8433 +Force: -0.385792 3.438755 4.731290 +Torque: -1.247291 0.004861 -0.095534 + +Polar angle tht: 2.4871; Azimuth angle phi: 4.8869 +Force: -0.517058 3.425000 4.742440 +Torque: -1.239101 0.006402 -0.126245 + +Polar angle tht: 2.4871; Azimuth angle phi: 4.9306 +Force: -0.649190 3.404513 4.753192 +Torque: -1.228547 0.007899 -0.155995 + +Polar angle tht: 2.4871; Azimuth angle phi: 4.9742 +Force: -0.781887 3.377283 4.763535 +Torque: -1.215651 0.009349 -0.184558 + +Polar angle tht: 2.4871; Azimuth angle phi: 5.0178 +Force: -0.914839 3.343312 4.773458 +Torque: -1.200436 0.010752 -0.211716 + +Polar angle tht: 2.4871; Azimuth angle phi: 5.0615 +Force: -1.047724 3.302620 4.782954 +Torque: -1.182929 0.012106 -0.237263 + +Polar angle tht: 2.4871; Azimuth angle phi: 5.1051 +Force: -1.180212 3.255241 4.792017 +Torque: -1.163164 0.013409 -0.261004 + +Polar angle tht: 2.4871; Azimuth angle phi: 5.1487 +Force: -1.311966 3.201225 4.800645 +Torque: -1.141176 0.014661 -0.282759 + +Polar angle tht: 2.4871; Azimuth angle phi: 5.1924 +Force: -1.442640 3.140638 4.808837 +Torque: -1.117009 0.015860 -0.302362 + +Polar angle tht: 2.4871; Azimuth angle phi: 5.2360 +Force: -1.571886 3.073563 4.816594 +Torque: -1.090706 0.017007 -0.319664 + +Polar angle tht: 2.4871; Azimuth angle phi: 5.2796 +Force: -1.699351 3.000098 4.823919 +Torque: -1.062318 0.018101 -0.334533 + +Polar angle tht: 2.4871; Azimuth angle phi: 5.3233 +Force: -1.824680 2.920358 4.830817 +Torque: -1.031898 0.019141 -0.346856 + +Polar angle tht: 2.4871; Azimuth angle phi: 5.3669 +Force: -1.947516 2.834474 4.837294 +Torque: -0.999504 0.020128 -0.356539 + +Polar angle tht: 2.4871; Azimuth angle phi: 5.4105 +Force: -2.067507 2.742593 4.843357 +Torque: -0.965197 0.021062 -0.363508 + +Polar angle tht: 2.4871; Azimuth angle phi: 5.4542 +Force: -2.184298 2.644878 4.849017 +Torque: -0.929041 0.021943 -0.367712 + +Polar angle tht: 2.4871; Azimuth angle phi: 5.4978 +Force: -2.297542 2.541508 4.854283 +Torque: -0.891107 0.022771 -0.369116 + +Polar angle tht: 2.4871; Azimuth angle phi: 5.5414 +Force: -2.406898 2.432678 4.859166 +Torque: -0.851466 0.023549 -0.367712 + +Polar angle tht: 2.4871; Azimuth angle phi: 5.5851 +Force: -2.512030 2.318596 4.863678 +Torque: -0.810194 0.024275 -0.363509 + +Polar angle tht: 2.4871; Azimuth angle phi: 5.6287 +Force: -2.612612 2.199488 4.867832 +Torque: -0.767368 0.024951 -0.356540 + +Polar angle tht: 2.4871; Azimuth angle phi: 5.6723 +Force: -2.708330 2.075591 4.871640 +Torque: -0.723072 0.025577 -0.346857 + +Polar angle tht: 2.4871; Azimuth angle phi: 5.7160 +Force: -2.798880 1.947159 4.875114 +Torque: -0.677389 0.026156 -0.334534 + +Polar angle tht: 2.4871; Azimuth angle phi: 5.7596 +Force: -2.883973 1.814455 4.878269 +Torque: -0.630407 0.026686 -0.319665 + +Polar angle tht: 2.4871; Azimuth angle phi: 5.8032 +Force: -2.963334 1.677759 4.881116 +Torque: -0.582216 0.027170 -0.302364 + +Polar angle tht: 2.4871; Azimuth angle phi: 5.8469 +Force: -3.036705 1.537358 4.883668 +Torque: -0.532908 0.027608 -0.282761 + +Polar angle tht: 2.4871; Azimuth angle phi: 5.8905 +Force: -3.103847 1.393555 4.885937 +Torque: -0.482577 0.028002 -0.261007 + +Polar angle tht: 2.4871; Azimuth angle phi: 5.9341 +Force: -3.164538 1.246658 4.887934 +Torque: -0.431320 0.028351 -0.237266 + +Polar angle tht: 2.4871; Azimuth angle phi: 5.9778 +Force: -3.218576 1.096988 4.889670 +Torque: -0.379235 0.028657 -0.211719 + +Polar angle tht: 2.4871; Azimuth angle phi: 6.0214 +Force: -3.265782 0.944873 4.891154 +Torque: -0.326422 0.028921 -0.184561 + +Polar angle tht: 2.4871; Azimuth angle phi: 6.0650 +Force: -3.305998 0.790648 4.892395 +Torque: -0.272982 0.029143 -0.155999 + +Polar angle tht: 2.4871; Azimuth angle phi: 6.1087 +Force: -3.339089 0.634654 4.893399 +Torque: -0.219018 0.029324 -0.126249 + +Polar angle tht: 2.4871; Azimuth angle phi: 6.1523 +Force: -3.364943 0.477240 4.894174 +Torque: -0.164634 0.029464 -0.095538 + +Polar angle tht: 2.4871; Azimuth angle phi: 6.1959 +Force: -3.383473 0.318756 4.894724 +Torque: -0.109934 0.029564 -0.064101 + +Polar angle tht: 2.4871; Azimuth angle phi: 6.2396 +Force: -3.394616 0.159557 4.895053 +Torque: -0.055022 0.029623 -0.032175 + +Polar angle tht: 2.4871; Azimuth angle phi: 6.2832 +Force: -3.398335 0.000000 4.895162 +Torque: -0.000005 0.029643 -0.000005 + +Polar angle tht: 2.5307; Azimuth angle phi: 0.0000 +Force: -3.259544 0.000000 5.167262 +Torque: -0.000005 0.029637 -0.000005 + +Polar angle tht: 2.5307; Azimuth angle phi: 0.0436 +Force: -3.256011 -0.153835 5.167142 +Torque: 0.053207 0.029616 0.028554 + +Polar angle tht: 2.5307; Azimuth angle phi: 0.0873 +Force: -3.245427 -0.307330 5.166782 +Torque: 0.106317 0.029553 0.056896 + +Polar angle tht: 2.5307; Azimuth angle phi: 0.1309 +Force: -3.227824 -0.460143 5.166179 +Torque: 0.159223 0.029449 0.084805 + +Polar angle tht: 2.5307; Azimuth angle phi: 0.1745 +Force: -3.203262 -0.611938 5.165330 +Torque: 0.211823 0.029302 0.112068 + +Polar angle tht: 2.5307; Azimuth angle phi: 0.2182 +Force: -3.171820 -0.762378 5.164232 +Torque: 0.264017 0.029114 0.138478 + +Polar angle tht: 2.5307; Azimuth angle phi: 0.2618 +Force: -3.133602 -0.911134 5.162880 +Torque: 0.315705 0.028882 0.163835 + +Polar angle tht: 2.5307; Azimuth angle phi: 0.3054 +Force: -3.088731 -1.057879 5.161267 +Torque: 0.366786 0.028607 0.187944 + +Polar angle tht: 2.5307; Azimuth angle phi: 0.3491 +Force: -3.037356 -1.202293 5.159387 +Torque: 0.417164 0.028289 0.210623 + +Polar angle tht: 2.5307; Azimuth angle phi: 0.3927 +Force: -2.979640 -1.344064 5.157231 +Torque: 0.466742 0.027926 0.231699 + +Polar angle tht: 2.5307; Azimuth angle phi: 0.4363 +Force: -2.915771 -1.482885 5.154792 +Torque: 0.515425 0.027519 0.251012 + +Polar angle tht: 2.5307; Azimuth angle phi: 0.4800 +Force: -2.845953 -1.618459 5.152059 +Torque: 0.563119 0.027066 0.268414 + +Polar angle tht: 2.5307; Azimuth angle phi: 0.5236 +Force: -2.770407 -1.750501 5.149024 +Torque: 0.609733 0.026566 0.283774 + +Polar angle tht: 2.5307; Azimuth angle phi: 0.5672 +Force: -2.689374 -1.878731 5.145676 +Torque: 0.655179 0.026020 0.296974 + +Polar angle tht: 2.5307; Azimuth angle phi: 0.6109 +Force: -2.603106 -2.002884 5.142005 +Torque: 0.699369 0.025427 0.307913 + +Polar angle tht: 2.5307; Azimuth angle phi: 0.6545 +Force: -2.511872 -2.122705 5.138000 +Torque: 0.742218 0.024785 0.316509 + +Polar angle tht: 2.5307; Azimuth angle phi: 0.6981 +Force: -2.415953 -2.237952 5.133652 +Torque: 0.783646 0.024094 0.322697 + +Polar angle tht: 2.5307; Azimuth angle phi: 0.7418 +Force: -2.315641 -2.348394 5.128950 +Torque: 0.823572 0.023354 0.326428 + +Polar angle tht: 2.5307; Azimuth angle phi: 0.7854 +Force: -2.211239 -2.453815 5.123885 +Torque: 0.861921 0.022564 0.327675 + +Polar angle tht: 2.5307; Azimuth angle phi: 0.8290 +Force: -2.103058 -2.554012 5.118448 +Torque: 0.898620 0.021723 0.326428 + +Polar angle tht: 2.5307; Azimuth angle phi: 0.8727 +Force: -1.991416 -2.648797 5.112629 +Torque: 0.933599 0.020832 0.322697 + +Polar angle tht: 2.5307; Azimuth angle phi: 0.9163 +Force: -1.876638 -2.737996 5.106423 +Torque: 0.966792 0.019890 0.316510 + +Polar angle tht: 2.5307; Azimuth angle phi: 0.9599 +Force: -1.759051 -2.821449 5.099822 +Torque: 0.998135 0.018897 0.307914 + +Polar angle tht: 2.5307; Azimuth angle phi: 1.0036 +Force: -1.638987 -2.899011 5.092821 +Torque: 1.027569 0.017853 0.296975 + +Polar angle tht: 2.5307; Azimuth angle phi: 1.0472 +Force: -1.516779 -2.970555 5.085416 +Torque: 1.055038 0.016759 0.283776 + +Polar angle tht: 2.5307; Azimuth angle phi: 1.0908 +Force: -1.392758 -3.035965 5.077604 +Torque: 1.080491 0.015614 0.268416 + +Polar angle tht: 2.5307; Azimuth angle phi: 1.1345 +Force: -1.267256 -3.095143 5.069385 +Torque: 1.103879 0.014419 0.251014 + +Polar angle tht: 2.5307; Azimuth angle phi: 1.1781 +Force: -1.140601 -3.148005 5.060759 +Torque: 1.125159 0.013175 0.231702 + +Polar angle tht: 2.5307; Azimuth angle phi: 1.2217 +Force: -1.013117 -3.194485 5.051728 +Torque: 1.144290 0.011883 0.210626 + +Polar angle tht: 2.5307; Azimuth angle phi: 1.2654 +Force: -0.885122 -3.234528 5.042299 +Torque: 1.161237 0.010544 0.187947 + +Polar angle tht: 2.5307; Azimuth angle phi: 1.3090 +Force: -0.756929 -3.268098 5.032476 +Torque: 1.175968 0.009159 0.163838 + +Polar angle tht: 2.5307; Azimuth angle phi: 1.3526 +Force: -0.628843 -3.295169 5.022269 +Torque: 1.188455 0.007731 0.138482 + +Polar angle tht: 2.5307; Azimuth angle phi: 1.3963 +Force: -0.501158 -3.315735 5.011688 +Torque: 1.198677 0.006260 0.112072 + +Polar angle tht: 2.5307; Azimuth angle phi: 1.4399 +Force: -0.374162 -3.329800 5.000747 +Torque: 1.206613 0.004749 0.084809 + +Polar angle tht: 2.5307; Azimuth angle phi: 1.4835 +Force: -0.248129 -3.337384 4.989460 +Torque: 1.212250 0.003200 0.056900 + +Polar angle tht: 2.5307; Azimuth angle phi: 1.5272 +Force: -0.123324 -3.338518 4.977845 +Torque: 1.215578 0.001616 0.028559 + +Polar angle tht: 2.5307; Azimuth angle phi: 1.5708 +Force: 0.000000 -3.333250 4.965921 +Torque: 1.216591 0.000000 0.000000 + +Polar angle tht: 2.5307; Azimuth angle phi: 1.6144 +Force: 0.123324 -3.338518 4.977845 +Torque: 1.215578 -0.001616 -0.028559 + +Polar angle tht: 2.5307; Azimuth angle phi: 1.6581 +Force: 0.248129 -3.337384 4.989460 +Torque: 1.212250 -0.003200 -0.056900 + +Polar angle tht: 2.5307; Azimuth angle phi: 1.7017 +Force: 0.374162 -3.329800 5.000747 +Torque: 1.206613 -0.004749 -0.084809 + +Polar angle tht: 2.5307; Azimuth angle phi: 1.7453 +Force: 0.501158 -3.315735 5.011688 +Torque: 1.198677 -0.006260 -0.112072 + +Polar angle tht: 2.5307; Azimuth angle phi: 1.7890 +Force: 0.628843 -3.295169 5.022269 +Torque: 1.188455 -0.007731 -0.138482 + +Polar angle tht: 2.5307; Azimuth angle phi: 1.8326 +Force: 0.756929 -3.268098 5.032476 +Torque: 1.175968 -0.009159 -0.163838 + +Polar angle tht: 2.5307; Azimuth angle phi: 1.8762 +Force: 0.885122 -3.234528 5.042299 +Torque: 1.161237 -0.010544 -0.187947 + +Polar angle tht: 2.5307; Azimuth angle phi: 1.9199 +Force: 1.013117 -3.194485 5.051728 +Torque: 1.144290 -0.011883 -0.210626 + +Polar angle tht: 2.5307; Azimuth angle phi: 1.9635 +Force: 1.140601 -3.148005 5.060759 +Torque: 1.125159 -0.013175 -0.231702 + +Polar angle tht: 2.5307; Azimuth angle phi: 2.0071 +Force: 1.267256 -3.095143 5.069385 +Torque: 1.103879 -0.014419 -0.251014 + +Polar angle tht: 2.5307; Azimuth angle phi: 2.0508 +Force: 1.392758 -3.035965 5.077604 +Torque: 1.080491 -0.015614 -0.268416 + +Polar angle tht: 2.5307; Azimuth angle phi: 2.0944 +Force: 1.516779 -2.970555 5.085416 +Torque: 1.055038 -0.016759 -0.283776 + +Polar angle tht: 2.5307; Azimuth angle phi: 2.1380 +Force: 1.638987 -2.899011 5.092821 +Torque: 1.027569 -0.017853 -0.296975 + +Polar angle tht: 2.5307; Azimuth angle phi: 2.1817 +Force: 1.759051 -2.821449 5.099822 +Torque: 0.998135 -0.018897 -0.307914 + +Polar angle tht: 2.5307; Azimuth angle phi: 2.2253 +Force: 1.876638 -2.737996 5.106423 +Torque: 0.966792 -0.019890 -0.316510 + +Polar angle tht: 2.5307; Azimuth angle phi: 2.2689 +Force: 1.991416 -2.648797 5.112629 +Torque: 0.933599 -0.020832 -0.322697 + +Polar angle tht: 2.5307; Azimuth angle phi: 2.3126 +Force: 2.103058 -2.554012 5.118448 +Torque: 0.898620 -0.021723 -0.326428 + +Polar angle tht: 2.5307; Azimuth angle phi: 2.3562 +Force: 2.211239 -2.453815 5.123885 +Torque: 0.861921 -0.022564 -0.327675 + +Polar angle tht: 2.5307; Azimuth angle phi: 2.3998 +Force: 2.315641 -2.348394 5.128950 +Torque: 0.823572 -0.023354 -0.326428 + +Polar angle tht: 2.5307; Azimuth angle phi: 2.4435 +Force: 2.415953 -2.237952 5.133652 +Torque: 0.783646 -0.024094 -0.322697 + +Polar angle tht: 2.5307; Azimuth angle phi: 2.4871 +Force: 2.511872 -2.122705 5.138000 +Torque: 0.742218 -0.024785 -0.316509 + +Polar angle tht: 2.5307; Azimuth angle phi: 2.5307 +Force: 2.603106 -2.002884 5.142005 +Torque: 0.699369 -0.025427 -0.307913 + +Polar angle tht: 2.5307; Azimuth angle phi: 2.5744 +Force: 2.689374 -1.878731 5.145676 +Torque: 0.655179 -0.026020 -0.296974 + +Polar angle tht: 2.5307; Azimuth angle phi: 2.6180 +Force: 2.770407 -1.750501 5.149024 +Torque: 0.609733 -0.026566 -0.283774 + +Polar angle tht: 2.5307; Azimuth angle phi: 2.6616 +Force: 2.845953 -1.618459 5.152059 +Torque: 0.563119 -0.027066 -0.268414 + +Polar angle tht: 2.5307; Azimuth angle phi: 2.7053 +Force: 2.915771 -1.482885 5.154792 +Torque: 0.515425 -0.027519 -0.251012 + +Polar angle tht: 2.5307; Azimuth angle phi: 2.7489 +Force: 2.979640 -1.344064 5.157231 +Torque: 0.466742 -0.027926 -0.231699 + +Polar angle tht: 2.5307; Azimuth angle phi: 2.7925 +Force: 3.037356 -1.202293 5.159387 +Torque: 0.417164 -0.028289 -0.210623 + +Polar angle tht: 2.5307; Azimuth angle phi: 2.8362 +Force: 3.088731 -1.057879 5.161267 +Torque: 0.366786 -0.028607 -0.187944 + +Polar angle tht: 2.5307; Azimuth angle phi: 2.8798 +Force: 3.133602 -0.911134 5.162880 +Torque: 0.315705 -0.028882 -0.163835 + +Polar angle tht: 2.5307; Azimuth angle phi: 2.9234 +Force: 3.171820 -0.762378 5.164232 +Torque: 0.264017 -0.029114 -0.138478 + +Polar angle tht: 2.5307; Azimuth angle phi: 2.9671 +Force: 3.203262 -0.611938 5.165330 +Torque: 0.211823 -0.029302 -0.112068 + +Polar angle tht: 2.5307; Azimuth angle phi: 3.0107 +Force: 3.227824 -0.460143 5.166179 +Torque: 0.159223 -0.029449 -0.084805 + +Polar angle tht: 2.5307; Azimuth angle phi: 3.0543 +Force: 3.245427 -0.307330 5.166782 +Torque: 0.106317 -0.029553 -0.056896 + +Polar angle tht: 2.5307; Azimuth angle phi: 3.0980 +Force: 3.256011 -0.153835 5.167142 +Torque: 0.053207 -0.029616 -0.028554 + +Polar angle tht: 2.5307; Azimuth angle phi: 3.1416 +Force: 3.259544 0.000000 5.167262 +Torque: -0.000005 -0.029637 0.000005 + +Polar angle tht: 2.5307; Azimuth angle phi: 3.1852 +Force: 3.256011 0.153835 5.167142 +Torque: -0.053217 -0.029616 0.028564 + +Polar angle tht: 2.5307; Azimuth angle phi: 3.2289 +Force: 3.245427 0.307330 5.166782 +Torque: -0.106327 -0.029553 0.056905 + +Polar angle tht: 2.5307; Azimuth angle phi: 3.2725 +Force: 3.227824 0.460143 5.166179 +Torque: -0.159233 -0.029449 0.084814 + +Polar angle tht: 2.5307; Azimuth angle phi: 3.3161 +Force: 3.203262 0.611938 5.165330 +Torque: -0.211834 -0.029302 0.112077 + +Polar angle tht: 2.5307; Azimuth angle phi: 3.3598 +Force: 3.171820 0.762378 5.164232 +Torque: -0.264028 -0.029114 0.138487 + +Polar angle tht: 2.5307; Azimuth angle phi: 3.4034 +Force: 3.133602 0.911134 5.162880 +Torque: -0.315715 -0.028882 0.163844 + +Polar angle tht: 2.5307; Azimuth angle phi: 3.4470 +Force: 3.088731 1.057879 5.161267 +Torque: -0.366797 -0.028607 0.187953 + +Polar angle tht: 2.5307; Azimuth angle phi: 3.4907 +Force: 3.037356 1.202293 5.159387 +Torque: -0.417175 -0.028289 0.210632 + +Polar angle tht: 2.5307; Azimuth angle phi: 3.5343 +Force: 2.979640 1.344064 5.157231 +Torque: -0.466753 -0.027926 0.231708 + +Polar angle tht: 2.5307; Azimuth angle phi: 3.5779 +Force: 2.915771 1.482885 5.154792 +Torque: -0.515435 -0.027519 0.251020 + +Polar angle tht: 2.5307; Azimuth angle phi: 3.6216 +Force: 2.845953 1.618459 5.152059 +Torque: -0.563129 -0.027066 0.268423 + +Polar angle tht: 2.5307; Azimuth angle phi: 3.6652 +Force: 2.770407 1.750501 5.149024 +Torque: -0.609744 -0.026566 0.283782 + +Polar angle tht: 2.5307; Azimuth angle phi: 3.7088 +Force: 2.689374 1.878731 5.145676 +Torque: -0.655189 -0.026020 0.296981 + +Polar angle tht: 2.5307; Azimuth angle phi: 3.7525 +Force: 2.603106 2.002884 5.142005 +Torque: -0.699379 -0.025427 0.307921 + +Polar angle tht: 2.5307; Azimuth angle phi: 3.7961 +Force: 2.511872 2.122705 5.138000 +Torque: -0.742229 -0.024785 0.316517 + +Polar angle tht: 2.5307; Azimuth angle phi: 3.8397 +Force: 2.415953 2.237952 5.133652 +Torque: -0.783656 -0.024094 0.322704 + +Polar angle tht: 2.5307; Azimuth angle phi: 3.8834 +Force: 2.315641 2.348394 5.128950 +Torque: -0.823583 -0.023354 0.326435 + +Polar angle tht: 2.5307; Azimuth angle phi: 3.9270 +Force: 2.211239 2.453815 5.123885 +Torque: -0.861932 -0.022564 0.327682 + +Polar angle tht: 2.5307; Azimuth angle phi: 3.9706 +Force: 2.103058 2.554012 5.118448 +Torque: -0.898631 -0.021723 0.326435 + +Polar angle tht: 2.5307; Azimuth angle phi: 4.0143 +Force: 1.991416 2.648797 5.112629 +Torque: -0.933610 -0.020832 0.322703 + +Polar angle tht: 2.5307; Azimuth angle phi: 4.0579 +Force: 1.876638 2.737996 5.106423 +Torque: -0.966803 -0.019890 0.316516 + +Polar angle tht: 2.5307; Azimuth angle phi: 4.1015 +Force: 1.759051 2.821449 5.099822 +Torque: -0.998146 -0.018897 0.307920 + +Polar angle tht: 2.5307; Azimuth angle phi: 4.1452 +Force: 1.638987 2.899011 5.092821 +Torque: -1.027580 -0.017853 0.296980 + +Polar angle tht: 2.5307; Azimuth angle phi: 4.1888 +Force: 1.516779 2.970555 5.085416 +Torque: -1.055049 -0.016759 0.283780 + +Polar angle tht: 2.5307; Azimuth angle phi: 4.2324 +Force: 1.392758 3.035965 5.077604 +Torque: -1.080502 -0.015614 0.268421 + +Polar angle tht: 2.5307; Azimuth angle phi: 4.2761 +Force: 1.267256 3.095143 5.069385 +Torque: -1.103891 -0.014419 0.251018 + +Polar angle tht: 2.5307; Azimuth angle phi: 4.3197 +Force: 1.140601 3.148005 5.060759 +Torque: -1.125170 -0.013175 0.231705 + +Polar angle tht: 2.5307; Azimuth angle phi: 4.3633 +Force: 1.013117 3.194485 5.051728 +Torque: -1.144302 -0.011883 0.210629 + +Polar angle tht: 2.5307; Azimuth angle phi: 4.4070 +Force: 0.885122 3.234528 5.042299 +Torque: -1.161248 -0.010544 0.187950 + +Polar angle tht: 2.5307; Azimuth angle phi: 4.4506 +Force: 0.756929 3.268098 5.032476 +Torque: -1.175979 -0.009159 0.163840 + +Polar angle tht: 2.5307; Azimuth angle phi: 4.4942 +Force: 0.628843 3.295169 5.022269 +Torque: -1.188467 -0.007731 0.138484 + +Polar angle tht: 2.5307; Azimuth angle phi: 4.5379 +Force: 0.501158 3.315735 5.011688 +Torque: -1.198688 -0.006260 0.112073 + +Polar angle tht: 2.5307; Azimuth angle phi: 4.5815 +Force: 0.374162 3.329800 5.000747 +Torque: -1.206625 -0.004749 0.084810 + +Polar angle tht: 2.5307; Azimuth angle phi: 4.6251 +Force: 0.248129 3.337384 4.989460 +Torque: -1.212262 -0.003200 0.056901 + +Polar angle tht: 2.5307; Azimuth angle phi: 4.6688 +Force: 0.123324 3.338518 4.977845 +Torque: -1.215589 -0.001616 0.028559 + +Polar angle tht: 2.5307; Azimuth angle phi: 4.7124 +Force: 0.000000 3.333250 4.965921 +Torque: -1.216602 0.000000 -0.000000 + +Polar angle tht: 2.5307; Azimuth angle phi: 4.7560 +Force: -0.123324 3.338518 4.977845 +Torque: -1.215589 0.001616 -0.028559 + +Polar angle tht: 2.5307; Azimuth angle phi: 4.7997 +Force: -0.248129 3.337384 4.989460 +Torque: -1.212262 0.003200 -0.056901 + +Polar angle tht: 2.5307; Azimuth angle phi: 4.8433 +Force: -0.374162 3.329800 5.000747 +Torque: -1.206625 0.004749 -0.084810 + +Polar angle tht: 2.5307; Azimuth angle phi: 4.8869 +Force: -0.501158 3.315735 5.011688 +Torque: -1.198688 0.006260 -0.112073 + +Polar angle tht: 2.5307; Azimuth angle phi: 4.9306 +Force: -0.628843 3.295169 5.022269 +Torque: -1.188467 0.007731 -0.138484 + +Polar angle tht: 2.5307; Azimuth angle phi: 4.9742 +Force: -0.756929 3.268098 5.032476 +Torque: -1.175979 0.009159 -0.163840 + +Polar angle tht: 2.5307; Azimuth angle phi: 5.0178 +Force: -0.885122 3.234528 5.042299 +Torque: -1.161248 0.010544 -0.187950 + +Polar angle tht: 2.5307; Azimuth angle phi: 5.0615 +Force: -1.013117 3.194485 5.051728 +Torque: -1.144302 0.011883 -0.210629 + +Polar angle tht: 2.5307; Azimuth angle phi: 5.1051 +Force: -1.140601 3.148005 5.060759 +Torque: -1.125170 0.013175 -0.231705 + +Polar angle tht: 2.5307; Azimuth angle phi: 5.1487 +Force: -1.267256 3.095143 5.069385 +Torque: -1.103891 0.014419 -0.251018 + +Polar angle tht: 2.5307; Azimuth angle phi: 5.1924 +Force: -1.392758 3.035965 5.077604 +Torque: -1.080502 0.015614 -0.268421 + +Polar angle tht: 2.5307; Azimuth angle phi: 5.2360 +Force: -1.516779 2.970555 5.085416 +Torque: -1.055049 0.016759 -0.283780 + +Polar angle tht: 2.5307; Azimuth angle phi: 5.2796 +Force: -1.638987 2.899011 5.092821 +Torque: -1.027580 0.017853 -0.296980 + +Polar angle tht: 2.5307; Azimuth angle phi: 5.3233 +Force: -1.759051 2.821449 5.099822 +Torque: -0.998146 0.018897 -0.307920 + +Polar angle tht: 2.5307; Azimuth angle phi: 5.3669 +Force: -1.876638 2.737996 5.106423 +Torque: -0.966803 0.019890 -0.316516 + +Polar angle tht: 2.5307; Azimuth angle phi: 5.4105 +Force: -1.991416 2.648797 5.112629 +Torque: -0.933610 0.020832 -0.322703 + +Polar angle tht: 2.5307; Azimuth angle phi: 5.4542 +Force: -2.103058 2.554012 5.118448 +Torque: -0.898631 0.021723 -0.326435 + +Polar angle tht: 2.5307; Azimuth angle phi: 5.4978 +Force: -2.211239 2.453815 5.123885 +Torque: -0.861932 0.022564 -0.327682 + +Polar angle tht: 2.5307; Azimuth angle phi: 5.5414 +Force: -2.315641 2.348394 5.128950 +Torque: -0.823583 0.023354 -0.326435 + +Polar angle tht: 2.5307; Azimuth angle phi: 5.5851 +Force: -2.415953 2.237952 5.133652 +Torque: -0.783656 0.024094 -0.322704 + +Polar angle tht: 2.5307; Azimuth angle phi: 5.6287 +Force: -2.511872 2.122705 5.138000 +Torque: -0.742229 0.024785 -0.316517 + +Polar angle tht: 2.5307; Azimuth angle phi: 5.6723 +Force: -2.603106 2.002884 5.142005 +Torque: -0.699379 0.025427 -0.307921 + +Polar angle tht: 2.5307; Azimuth angle phi: 5.7160 +Force: -2.689374 1.878731 5.145676 +Torque: -0.655189 0.026020 -0.296981 + +Polar angle tht: 2.5307; Azimuth angle phi: 5.7596 +Force: -2.770407 1.750501 5.149024 +Torque: -0.609744 0.026566 -0.283782 + +Polar angle tht: 2.5307; Azimuth angle phi: 5.8032 +Force: -2.845953 1.618459 5.152059 +Torque: -0.563129 0.027066 -0.268423 + +Polar angle tht: 2.5307; Azimuth angle phi: 5.8469 +Force: -2.915771 1.482885 5.154792 +Torque: -0.515435 0.027519 -0.251020 + +Polar angle tht: 2.5307; Azimuth angle phi: 5.8905 +Force: -2.979640 1.344064 5.157231 +Torque: -0.466753 0.027926 -0.231708 + +Polar angle tht: 2.5307; Azimuth angle phi: 5.9341 +Force: -3.037356 1.202293 5.159387 +Torque: -0.417175 0.028289 -0.210632 + +Polar angle tht: 2.5307; Azimuth angle phi: 5.9778 +Force: -3.088731 1.057879 5.161267 +Torque: -0.366797 0.028607 -0.187953 + +Polar angle tht: 2.5307; Azimuth angle phi: 6.0214 +Force: -3.133602 0.911134 5.162880 +Torque: -0.315715 0.028882 -0.163844 + +Polar angle tht: 2.5307; Azimuth angle phi: 6.0650 +Force: -3.171820 0.762378 5.164232 +Torque: -0.264028 0.029114 -0.138487 + +Polar angle tht: 2.5307; Azimuth angle phi: 6.1087 +Force: -3.203262 0.611938 5.165330 +Torque: -0.211834 0.029302 -0.112077 + +Polar angle tht: 2.5307; Azimuth angle phi: 6.1523 +Force: -3.227824 0.460143 5.166179 +Torque: -0.159233 0.029449 -0.084814 + +Polar angle tht: 2.5307; Azimuth angle phi: 6.1959 +Force: -3.245427 0.307330 5.166782 +Torque: -0.106327 0.029553 -0.056905 + +Polar angle tht: 2.5307; Azimuth angle phi: 6.2396 +Force: -3.256011 0.153835 5.167142 +Torque: -0.053217 0.029616 -0.028564 + +Polar angle tht: 2.5307; Azimuth angle phi: 6.2832 +Force: -3.259544 0.000000 5.167262 +Torque: -0.000005 0.029637 -0.000005 + +Polar angle tht: 2.5744; Azimuth angle phi: 0.0000 +Force: -3.101730 0.000000 5.427799 +Torque: -0.000005 0.029305 -0.000004 + +Polar angle tht: 2.5744; Azimuth angle phi: 0.0436 +Force: -3.098401 -0.147142 5.427671 +Torque: 0.051050 0.029284 0.025056 + +Polar angle tht: 2.5744; Azimuth angle phi: 0.0873 +Force: -3.088423 -0.293963 5.427286 +Torque: 0.102008 0.029219 0.049926 + +Polar angle tht: 2.5744; Azimuth angle phi: 0.1309 +Force: -3.071830 -0.440139 5.426643 +Torque: 0.152771 0.029112 0.074416 + +Polar angle tht: 2.5744; Azimuth angle phi: 0.1745 +Force: -3.048674 -0.585352 5.425738 +Torque: 0.203240 0.028962 0.098340 + +Polar angle tht: 2.5744; Azimuth angle phi: 0.2182 +Force: -3.019028 -0.729285 5.424570 +Torque: 0.253320 0.028768 0.121515 + +Polar angle tht: 2.5744; Azimuth angle phi: 0.2618 +Force: -2.982987 -0.871624 5.423134 +Torque: 0.302914 0.028531 0.143766 + +Polar angle tht: 2.5744; Azimuth angle phi: 0.3054 +Force: -2.940666 -1.012062 5.421425 +Torque: 0.351927 0.028249 0.164922 + +Polar angle tht: 2.5744; Azimuth angle phi: 0.3491 +Force: -2.892197 -1.150295 5.419438 +Torque: 0.400265 0.027924 0.184823 + +Polar angle tht: 2.5744; Azimuth angle phi: 0.3927 +Force: -2.837733 -1.286027 5.417166 +Torque: 0.447836 0.027553 0.203317 + +Polar angle tht: 2.5744; Azimuth angle phi: 0.4363 +Force: -2.777444 -1.418968 5.414602 +Torque: 0.494549 0.027138 0.220264 + +Polar angle tht: 2.5744; Azimuth angle phi: 0.4800 +Force: -2.711519 -1.548836 5.411740 +Torque: 0.540314 0.026676 0.235535 + +Polar angle tht: 2.5744; Azimuth angle phi: 0.5236 +Force: -2.640160 -1.675358 5.408572 +Torque: 0.585043 0.026169 0.249013 + +Polar angle tht: 2.5744; Azimuth angle phi: 0.5672 +Force: -2.563587 -1.798272 5.405089 +Torque: 0.628652 0.025615 0.260596 + +Polar angle tht: 2.5744; Azimuth angle phi: 0.6109 +Force: -2.482034 -1.917322 5.401285 +Torque: 0.671056 0.025014 0.270196 + +Polar angle tht: 2.5744; Azimuth angle phi: 0.6545 +Force: -2.395746 -2.032267 5.397150 +Torque: 0.712175 0.024366 0.277739 + +Polar angle tht: 2.5744; Azimuth angle phi: 0.6981 +Force: -2.304983 -2.142875 5.392678 +Torque: 0.751931 0.023669 0.283168 + +Polar angle tht: 2.5744; Azimuth angle phi: 0.7418 +Force: -2.210012 -2.248927 5.387860 +Torque: 0.790247 0.022925 0.286443 + +Polar angle tht: 2.5744; Azimuth angle phi: 0.7854 +Force: -2.111114 -2.350214 5.382689 +Torque: 0.827050 0.022132 0.287537 + +Polar angle tht: 2.5744; Azimuth angle phi: 0.8290 +Force: -2.008574 -2.446542 5.377160 +Torque: 0.862271 0.021291 0.286443 + +Polar angle tht: 2.5744; Azimuth angle phi: 0.8727 +Force: -1.902687 -2.537730 5.371265 +Torque: 0.895842 0.020401 0.283169 + +Polar angle tht: 2.5744; Azimuth angle phi: 0.9163 +Force: -1.793753 -2.623610 5.365000 +Torque: 0.927699 0.019462 0.277740 + +Polar angle tht: 2.5744; Azimuth angle phi: 0.9599 +Force: -1.682074 -2.704027 5.358361 +Torque: 0.957783 0.018474 0.270197 + +Polar angle tht: 2.5744; Azimuth angle phi: 1.0036 +Force: -1.567958 -2.778841 5.351345 +Torque: 0.986035 0.017439 0.260597 + +Polar angle tht: 2.5744; Azimuth angle phi: 1.0472 +Force: -1.451713 -2.847926 5.343949 +Torque: 1.012403 0.016355 0.249015 + +Polar angle tht: 2.5744; Azimuth angle phi: 1.0908 +Force: -1.333647 -2.911169 5.336174 +Torque: 1.036837 0.015224 0.235537 + +Polar angle tht: 2.5744; Azimuth angle phi: 1.1345 +Force: -1.214070 -2.968474 5.328020 +Torque: 1.059290 0.014047 0.220267 + +Polar angle tht: 2.5744; Azimuth angle phi: 1.1781 +Force: -1.093287 -3.019756 5.319490 +Torque: 1.079720 0.012823 0.203320 + +Polar angle tht: 2.5744; Azimuth angle phi: 1.2217 +Force: -0.971600 -3.064947 5.310588 +Torque: 1.098089 0.011555 0.184826 + +Polar angle tht: 2.5744; Azimuth angle phi: 1.2654 +Force: -0.849308 -3.103992 5.301319 +Torque: 1.114362 0.010244 0.164925 + +Polar angle tht: 2.5744; Azimuth angle phi: 1.3090 +Force: -0.726705 -3.136850 5.291692 +Torque: 1.128510 0.008891 0.143769 + +Polar angle tht: 2.5744; Azimuth angle phi: 1.3526 +Force: -0.604075 -3.163495 5.281716 +Torque: 1.140504 0.007498 0.121519 + +Polar angle tht: 2.5744; Azimuth angle phi: 1.3963 +Force: -0.481699 -3.183913 5.271402 +Torque: 1.150325 0.006066 0.098344 + +Polar angle tht: 2.5744; Azimuth angle phi: 1.4399 +Force: -0.359846 -3.198104 5.260763 +Torque: 1.157953 0.004598 0.074420 + +Polar angle tht: 2.5744; Azimuth angle phi: 1.4835 +Force: -0.238779 -3.206081 5.249815 +Torque: 1.163374 0.003096 0.049930 + +Polar angle tht: 2.5744; Azimuth angle phi: 1.5272 +Force: -0.118750 -3.207872 5.238576 +Torque: 1.166580 0.001562 0.025061 + +Polar angle tht: 2.5744; Azimuth angle phi: 1.5708 +Force: 0.000000 -3.203514 5.227063 +Torque: 1.167564 0.000000 0.000000 + +Polar angle tht: 2.5744; Azimuth angle phi: 1.6144 +Force: 0.118750 -3.207872 5.238576 +Torque: 1.166580 -0.001562 -0.025061 + +Polar angle tht: 2.5744; Azimuth angle phi: 1.6581 +Force: 0.238779 -3.206081 5.249815 +Torque: 1.163374 -0.003096 -0.049930 + +Polar angle tht: 2.5744; Azimuth angle phi: 1.7017 +Force: 0.359846 -3.198104 5.260763 +Torque: 1.157953 -0.004598 -0.074420 + +Polar angle tht: 2.5744; Azimuth angle phi: 1.7453 +Force: 0.481699 -3.183913 5.271402 +Torque: 1.150325 -0.006066 -0.098344 + +Polar angle tht: 2.5744; Azimuth angle phi: 1.7890 +Force: 0.604075 -3.163495 5.281716 +Torque: 1.140504 -0.007498 -0.121519 + +Polar angle tht: 2.5744; Azimuth angle phi: 1.8326 +Force: 0.726705 -3.136850 5.291692 +Torque: 1.128510 -0.008891 -0.143769 + +Polar angle tht: 2.5744; Azimuth angle phi: 1.8762 +Force: 0.849308 -3.103992 5.301319 +Torque: 1.114362 -0.010244 -0.164925 + +Polar angle tht: 2.5744; Azimuth angle phi: 1.9199 +Force: 0.971600 -3.064947 5.310588 +Torque: 1.098089 -0.011555 -0.184826 + +Polar angle tht: 2.5744; Azimuth angle phi: 1.9635 +Force: 1.093287 -3.019756 5.319490 +Torque: 1.079720 -0.012823 -0.203320 + +Polar angle tht: 2.5744; Azimuth angle phi: 2.0071 +Force: 1.214070 -2.968474 5.328020 +Torque: 1.059290 -0.014047 -0.220267 + +Polar angle tht: 2.5744; Azimuth angle phi: 2.0508 +Force: 1.333647 -2.911169 5.336174 +Torque: 1.036837 -0.015224 -0.235537 + +Polar angle tht: 2.5744; Azimuth angle phi: 2.0944 +Force: 1.451713 -2.847926 5.343949 +Torque: 1.012403 -0.016355 -0.249015 + +Polar angle tht: 2.5744; Azimuth angle phi: 2.1380 +Force: 1.567958 -2.778841 5.351345 +Torque: 0.986035 -0.017439 -0.260597 + +Polar angle tht: 2.5744; Azimuth angle phi: 2.1817 +Force: 1.682074 -2.704027 5.358361 +Torque: 0.957783 -0.018474 -0.270197 + +Polar angle tht: 2.5744; Azimuth angle phi: 2.2253 +Force: 1.793753 -2.623610 5.365000 +Torque: 0.927699 -0.019462 -0.277740 + +Polar angle tht: 2.5744; Azimuth angle phi: 2.2689 +Force: 1.902687 -2.537730 5.371265 +Torque: 0.895842 -0.020401 -0.283169 + +Polar angle tht: 2.5744; Azimuth angle phi: 2.3126 +Force: 2.008574 -2.446542 5.377160 +Torque: 0.862271 -0.021291 -0.286443 + +Polar angle tht: 2.5744; Azimuth angle phi: 2.3562 +Force: 2.111114 -2.350214 5.382689 +Torque: 0.827050 -0.022132 -0.287537 + +Polar angle tht: 2.5744; Azimuth angle phi: 2.3998 +Force: 2.210012 -2.248927 5.387860 +Torque: 0.790247 -0.022925 -0.286443 + +Polar angle tht: 2.5744; Azimuth angle phi: 2.4435 +Force: 2.304983 -2.142875 5.392678 +Torque: 0.751931 -0.023669 -0.283168 + +Polar angle tht: 2.5744; Azimuth angle phi: 2.4871 +Force: 2.395746 -2.032267 5.397150 +Torque: 0.712175 -0.024366 -0.277739 + +Polar angle tht: 2.5744; Azimuth angle phi: 2.5307 +Force: 2.482034 -1.917322 5.401285 +Torque: 0.671056 -0.025014 -0.270196 + +Polar angle tht: 2.5744; Azimuth angle phi: 2.5744 +Force: 2.563587 -1.798272 5.405089 +Torque: 0.628652 -0.025615 -0.260596 + +Polar angle tht: 2.5744; Azimuth angle phi: 2.6180 +Force: 2.640160 -1.675358 5.408572 +Torque: 0.585043 -0.026169 -0.249013 + +Polar angle tht: 2.5744; Azimuth angle phi: 2.6616 +Force: 2.711519 -1.548836 5.411740 +Torque: 0.540314 -0.026676 -0.235535 + +Polar angle tht: 2.5744; Azimuth angle phi: 2.7053 +Force: 2.777444 -1.418968 5.414602 +Torque: 0.494549 -0.027138 -0.220264 + +Polar angle tht: 2.5744; Azimuth angle phi: 2.7489 +Force: 2.837733 -1.286027 5.417166 +Torque: 0.447836 -0.027553 -0.203317 + +Polar angle tht: 2.5744; Azimuth angle phi: 2.7925 +Force: 2.892197 -1.150295 5.419438 +Torque: 0.400265 -0.027924 -0.184823 + +Polar angle tht: 2.5744; Azimuth angle phi: 2.8362 +Force: 2.940666 -1.012062 5.421425 +Torque: 0.351927 -0.028249 -0.164922 + +Polar angle tht: 2.5744; Azimuth angle phi: 2.8798 +Force: 2.982987 -0.871624 5.423134 +Torque: 0.302914 -0.028531 -0.143766 + +Polar angle tht: 2.5744; Azimuth angle phi: 2.9234 +Force: 3.019028 -0.729285 5.424570 +Torque: 0.253320 -0.028768 -0.121515 + +Polar angle tht: 2.5744; Azimuth angle phi: 2.9671 +Force: 3.048674 -0.585352 5.425738 +Torque: 0.203240 -0.028962 -0.098340 + +Polar angle tht: 2.5744; Azimuth angle phi: 3.0107 +Force: 3.071830 -0.440139 5.426643 +Torque: 0.152771 -0.029112 -0.074416 + +Polar angle tht: 2.5744; Azimuth angle phi: 3.0543 +Force: 3.088423 -0.293963 5.427286 +Torque: 0.102008 -0.029219 -0.049926 + +Polar angle tht: 2.5744; Azimuth angle phi: 3.0980 +Force: 3.098401 -0.147142 5.427671 +Torque: 0.051050 -0.029284 -0.025056 + +Polar angle tht: 2.5744; Azimuth angle phi: 3.1416 +Force: 3.101730 0.000000 5.427799 +Torque: -0.000005 -0.029305 0.000004 + +Polar angle tht: 2.5744; Azimuth angle phi: 3.1852 +Force: 3.098401 0.147142 5.427671 +Torque: -0.051061 -0.029284 0.025065 + +Polar angle tht: 2.5744; Azimuth angle phi: 3.2289 +Force: 3.088423 0.293963 5.427286 +Torque: -0.102019 -0.029219 0.049935 + +Polar angle tht: 2.5744; Azimuth angle phi: 3.2725 +Force: 3.071830 0.440139 5.426643 +Torque: -0.152782 -0.029112 0.074425 + +Polar angle tht: 2.5744; Azimuth angle phi: 3.3161 +Force: 3.048674 0.585352 5.425738 +Torque: -0.203251 -0.028962 0.098349 + +Polar angle tht: 2.5744; Azimuth angle phi: 3.3598 +Force: 3.019028 0.729285 5.424570 +Torque: -0.253331 -0.028768 0.121524 + +Polar angle tht: 2.5744; Azimuth angle phi: 3.4034 +Force: 2.982987 0.871624 5.423134 +Torque: -0.302924 -0.028531 0.143774 + +Polar angle tht: 2.5744; Azimuth angle phi: 3.4470 +Force: 2.940666 1.012062 5.421425 +Torque: -0.351938 -0.028249 0.164930 + +Polar angle tht: 2.5744; Azimuth angle phi: 3.4907 +Force: 2.892197 1.150295 5.419438 +Torque: -0.400276 -0.027924 0.184831 + +Polar angle tht: 2.5744; Azimuth angle phi: 3.5343 +Force: 2.837733 1.286027 5.417166 +Torque: -0.447847 -0.027553 0.203326 + +Polar angle tht: 2.5744; Azimuth angle phi: 3.5779 +Force: 2.777444 1.418968 5.414602 +Torque: -0.494560 -0.027138 0.220272 + +Polar angle tht: 2.5744; Azimuth angle phi: 3.6216 +Force: 2.711519 1.548836 5.411740 +Torque: -0.540325 -0.026676 0.235543 + +Polar angle tht: 2.5744; Azimuth angle phi: 3.6652 +Force: 2.640160 1.675358 5.408572 +Torque: -0.585054 -0.026169 0.249021 + +Polar angle tht: 2.5744; Azimuth angle phi: 3.7088 +Force: 2.563587 1.798272 5.405089 +Torque: -0.628663 -0.025615 0.260603 + +Polar angle tht: 2.5744; Azimuth angle phi: 3.7525 +Force: 2.482034 1.917322 5.401285 +Torque: -0.671068 -0.025014 0.270203 + +Polar angle tht: 2.5744; Azimuth angle phi: 3.7961 +Force: 2.395746 2.032267 5.397150 +Torque: -0.712187 -0.024366 0.277746 + +Polar angle tht: 2.5744; Azimuth angle phi: 3.8397 +Force: 2.304983 2.142875 5.392678 +Torque: -0.751942 -0.023669 0.283175 + +Polar angle tht: 2.5744; Azimuth angle phi: 3.8834 +Force: 2.210012 2.248927 5.387860 +Torque: -0.790258 -0.022925 0.286449 + +Polar angle tht: 2.5744; Azimuth angle phi: 3.9270 +Force: 2.111114 2.350214 5.382689 +Torque: -0.827062 -0.022132 0.287543 + +Polar angle tht: 2.5744; Azimuth angle phi: 3.9706 +Force: 2.008574 2.446542 5.377160 +Torque: -0.862282 -0.021291 0.286449 + +Polar angle tht: 2.5744; Azimuth angle phi: 4.0143 +Force: 1.902687 2.537730 5.371265 +Torque: -0.895853 -0.020401 0.283174 + +Polar angle tht: 2.5744; Azimuth angle phi: 4.0579 +Force: 1.793753 2.623610 5.365000 +Torque: -0.927711 -0.019462 0.277745 + +Polar angle tht: 2.5744; Azimuth angle phi: 4.1015 +Force: 1.682074 2.704027 5.358361 +Torque: -0.957794 -0.018474 0.270202 + +Polar angle tht: 2.5744; Azimuth angle phi: 4.1452 +Force: 1.567958 2.778841 5.351345 +Torque: -0.986047 -0.017439 0.260602 + +Polar angle tht: 2.5744; Azimuth angle phi: 4.1888 +Force: 1.451713 2.847926 5.343949 +Torque: -1.012415 -0.016355 0.249019 + +Polar angle tht: 2.5744; Azimuth angle phi: 4.2324 +Force: 1.333647 2.911169 5.336174 +Torque: -1.036848 -0.015224 0.235541 + +Polar angle tht: 2.5744; Azimuth angle phi: 4.2761 +Force: 1.214070 2.968474 5.328020 +Torque: -1.059302 -0.014047 0.220270 + +Polar angle tht: 2.5744; Azimuth angle phi: 4.3197 +Force: 1.093287 3.019756 5.319490 +Torque: -1.079732 -0.012823 0.203323 + +Polar angle tht: 2.5744; Azimuth angle phi: 4.3633 +Force: 0.971600 3.064947 5.310588 +Torque: -1.098101 -0.011555 0.184829 + +Polar angle tht: 2.5744; Azimuth angle phi: 4.4070 +Force: 0.849308 3.103992 5.301319 +Torque: -1.114374 -0.010244 0.164928 + +Polar angle tht: 2.5744; Azimuth angle phi: 4.4506 +Force: 0.726705 3.136850 5.291692 +Torque: -1.128522 -0.008891 0.143771 + +Polar angle tht: 2.5744; Azimuth angle phi: 4.4942 +Force: 0.604075 3.163495 5.281716 +Torque: -1.140517 -0.007498 0.121521 + +Polar angle tht: 2.5744; Azimuth angle phi: 4.5379 +Force: 0.481699 3.183913 5.271402 +Torque: -1.150337 -0.006066 0.098345 + +Polar angle tht: 2.5744; Azimuth angle phi: 4.5815 +Force: 0.359846 3.198104 5.260763 +Torque: -1.157965 -0.004598 0.074421 + +Polar angle tht: 2.5744; Azimuth angle phi: 4.6251 +Force: 0.238779 3.206081 5.249815 +Torque: -1.163386 -0.003096 0.049931 + +Polar angle tht: 2.5744; Azimuth angle phi: 4.6688 +Force: 0.118750 3.207872 5.238576 +Torque: -1.166592 -0.001562 0.025061 + +Polar angle tht: 2.5744; Azimuth angle phi: 4.7124 +Force: 0.000000 3.203514 5.227063 +Torque: -1.167576 0.000000 -0.000000 + +Polar angle tht: 2.5744; Azimuth angle phi: 4.7560 +Force: -0.118750 3.207872 5.238576 +Torque: -1.166592 0.001562 -0.025061 + +Polar angle tht: 2.5744; Azimuth angle phi: 4.7997 +Force: -0.238779 3.206081 5.249815 +Torque: -1.163386 0.003096 -0.049931 + +Polar angle tht: 2.5744; Azimuth angle phi: 4.8433 +Force: -0.359846 3.198104 5.260763 +Torque: -1.157965 0.004598 -0.074421 + +Polar angle tht: 2.5744; Azimuth angle phi: 4.8869 +Force: -0.481699 3.183913 5.271402 +Torque: -1.150337 0.006066 -0.098345 + +Polar angle tht: 2.5744; Azimuth angle phi: 4.9306 +Force: -0.604075 3.163495 5.281716 +Torque: -1.140517 0.007498 -0.121521 + +Polar angle tht: 2.5744; Azimuth angle phi: 4.9742 +Force: -0.726705 3.136850 5.291692 +Torque: -1.128522 0.008891 -0.143771 + +Polar angle tht: 2.5744; Azimuth angle phi: 5.0178 +Force: -0.849308 3.103992 5.301319 +Torque: -1.114374 0.010244 -0.164928 + +Polar angle tht: 2.5744; Azimuth angle phi: 5.0615 +Force: -0.971600 3.064947 5.310588 +Torque: -1.098101 0.011555 -0.184829 + +Polar angle tht: 2.5744; Azimuth angle phi: 5.1051 +Force: -1.093287 3.019756 5.319490 +Torque: -1.079732 0.012823 -0.203323 + +Polar angle tht: 2.5744; Azimuth angle phi: 5.1487 +Force: -1.214070 2.968474 5.328020 +Torque: -1.059302 0.014047 -0.220270 + +Polar angle tht: 2.5744; Azimuth angle phi: 5.1924 +Force: -1.333647 2.911169 5.336174 +Torque: -1.036848 0.015224 -0.235541 + +Polar angle tht: 2.5744; Azimuth angle phi: 5.2360 +Force: -1.451713 2.847926 5.343949 +Torque: -1.012415 0.016355 -0.249019 + +Polar angle tht: 2.5744; Azimuth angle phi: 5.2796 +Force: -1.567958 2.778841 5.351345 +Torque: -0.986047 0.017439 -0.260602 + +Polar angle tht: 2.5744; Azimuth angle phi: 5.3233 +Force: -1.682074 2.704027 5.358361 +Torque: -0.957794 0.018474 -0.270202 + +Polar angle tht: 2.5744; Azimuth angle phi: 5.3669 +Force: -1.793753 2.623610 5.365000 +Torque: -0.927711 0.019462 -0.277745 + +Polar angle tht: 2.5744; Azimuth angle phi: 5.4105 +Force: -1.902687 2.537730 5.371265 +Torque: -0.895853 0.020401 -0.283174 + +Polar angle tht: 2.5744; Azimuth angle phi: 5.4542 +Force: -2.008574 2.446542 5.377160 +Torque: -0.862282 0.021291 -0.286449 + +Polar angle tht: 2.5744; Azimuth angle phi: 5.4978 +Force: -2.111114 2.350214 5.382689 +Torque: -0.827062 0.022132 -0.287543 + +Polar angle tht: 2.5744; Azimuth angle phi: 5.5414 +Force: -2.210012 2.248927 5.387860 +Torque: -0.790258 0.022925 -0.286449 + +Polar angle tht: 2.5744; Azimuth angle phi: 5.5851 +Force: -2.304983 2.142875 5.392678 +Torque: -0.751942 0.023669 -0.283175 + +Polar angle tht: 2.5744; Azimuth angle phi: 5.6287 +Force: -2.395746 2.032267 5.397150 +Torque: -0.712187 0.024366 -0.277746 + +Polar angle tht: 2.5744; Azimuth angle phi: 5.6723 +Force: -2.482034 1.917322 5.401285 +Torque: -0.671068 0.025014 -0.270203 + +Polar angle tht: 2.5744; Azimuth angle phi: 5.7160 +Force: -2.563587 1.798272 5.405089 +Torque: -0.628663 0.025615 -0.260603 + +Polar angle tht: 2.5744; Azimuth angle phi: 5.7596 +Force: -2.640160 1.675358 5.408572 +Torque: -0.585054 0.026169 -0.249021 + +Polar angle tht: 2.5744; Azimuth angle phi: 5.8032 +Force: -2.711519 1.548836 5.411740 +Torque: -0.540325 0.026676 -0.235543 + +Polar angle tht: 2.5744; Azimuth angle phi: 5.8469 +Force: -2.777444 1.418968 5.414602 +Torque: -0.494560 0.027138 -0.220272 + +Polar angle tht: 2.5744; Azimuth angle phi: 5.8905 +Force: -2.837733 1.286027 5.417166 +Torque: -0.447847 0.027553 -0.203326 + +Polar angle tht: 2.5744; Azimuth angle phi: 5.9341 +Force: -2.892197 1.150295 5.419438 +Torque: -0.400276 0.027924 -0.184831 + +Polar angle tht: 2.5744; Azimuth angle phi: 5.9778 +Force: -2.940666 1.012062 5.421425 +Torque: -0.351938 0.028249 -0.164930 + +Polar angle tht: 2.5744; Azimuth angle phi: 6.0214 +Force: -2.982987 0.871624 5.423134 +Torque: -0.302924 0.028531 -0.143774 + +Polar angle tht: 2.5744; Azimuth angle phi: 6.0650 +Force: -3.019028 0.729285 5.424570 +Torque: -0.253331 0.028768 -0.121524 + +Polar angle tht: 2.5744; Azimuth angle phi: 6.1087 +Force: -3.048674 0.585352 5.425738 +Torque: -0.203251 0.028962 -0.098349 + +Polar angle tht: 2.5744; Azimuth angle phi: 6.1523 +Force: -3.071830 0.440139 5.426643 +Torque: -0.152782 0.029112 -0.074425 + +Polar angle tht: 2.5744; Azimuth angle phi: 6.1959 +Force: -3.088423 0.293963 5.427286 +Torque: -0.102019 0.029219 -0.049935 + +Polar angle tht: 2.5744; Azimuth angle phi: 6.2396 +Force: -3.098401 0.147142 5.427671 +Torque: -0.051061 0.029284 -0.025065 + +Polar angle tht: 2.5744; Azimuth angle phi: 6.2832 +Force: -3.101730 0.000000 5.427799 +Torque: -0.000005 0.029305 -0.000004 + +Polar angle tht: 2.6180; Azimuth angle phi: 0.0000 +Force: -2.926060 0.000000 5.674920 +Torque: -0.000006 0.028652 -0.000004 + +Polar angle tht: 2.6180; Azimuth angle phi: 0.0436 +Force: -2.922948 -0.139522 5.674786 +Torque: 0.048556 0.028630 0.021698 + +Polar angle tht: 2.6180; Azimuth angle phi: 0.0873 +Force: -2.913623 -0.278743 5.674384 +Torque: 0.097024 0.028565 0.043235 + +Polar angle tht: 2.6180; Azimuth angle phi: 0.1309 +Force: -2.898114 -0.417359 5.673713 +Torque: 0.145307 0.028457 0.064443 + +Polar angle tht: 2.6180; Azimuth angle phi: 0.1745 +Force: -2.876468 -0.555073 5.672772 +Torque: 0.193311 0.028305 0.085160 + +Polar angle tht: 2.6180; Azimuth angle phi: 0.2182 +Force: -2.848752 -0.691586 5.671557 +Torque: 0.240944 0.028109 0.105229 + +Polar angle tht: 2.6180; Azimuth angle phi: 0.2618 +Force: -2.815052 -0.826606 5.670065 +Torque: 0.288116 0.027870 0.124498 + +Polar angle tht: 2.6180; Azimuth angle phi: 0.3054 +Force: -2.775472 -0.959841 5.668293 +Torque: 0.334736 0.027586 0.142818 + +Polar angle tht: 2.6180; Azimuth angle phi: 0.3491 +Force: -2.730133 -1.091009 5.666237 +Torque: 0.380715 0.027258 0.160052 + +Polar angle tht: 2.6180; Azimuth angle phi: 0.3927 +Force: -2.679173 -1.219830 5.663892 +Torque: 0.425964 0.026885 0.176068 + +Polar angle tht: 2.6180; Azimuth angle phi: 0.4363 +Force: -2.622747 -1.346032 5.661252 +Torque: 0.470397 0.026468 0.190744 + +Polar angle tht: 2.6180; Azimuth angle phi: 0.4800 +Force: -2.561025 -1.469350 5.658312 +Torque: 0.513929 0.026005 0.203968 + +Polar angle tht: 2.6180; Azimuth angle phi: 0.5236 +Force: -2.494192 -1.589527 5.655067 +Torque: 0.556477 0.025497 0.215640 + +Polar angle tht: 2.6180; Azimuth angle phi: 0.5672 +Force: -2.422449 -1.706314 5.651510 +Torque: 0.597959 0.024944 0.225670 + +Polar angle tht: 2.6180; Azimuth angle phi: 0.6109 +Force: -2.346008 -1.819473 5.647636 +Torque: 0.638297 0.024344 0.233983 + +Polar angle tht: 2.6180; Azimuth angle phi: 0.6545 +Force: -2.265092 -1.928773 5.643439 +Torque: 0.677413 0.023698 0.240515 + +Polar angle tht: 2.6180; Azimuth angle phi: 0.6981 +Force: -2.179938 -2.033997 5.638913 +Torque: 0.715232 0.023005 0.245217 + +Polar angle tht: 2.6180; Azimuth angle phi: 0.7418 +Force: -2.090790 -2.134934 5.634054 +Torque: 0.751683 0.022267 0.248053 + +Polar angle tht: 2.6180; Azimuth angle phi: 0.7854 +Force: -1.997905 -2.231390 5.628855 +Torque: 0.786695 0.021481 0.249000 + +Polar angle tht: 2.6180; Azimuth angle phi: 0.8290 +Force: -1.901543 -2.323178 5.623313 +Torque: 0.820203 0.020649 0.248053 + +Polar angle tht: 2.6180; Azimuth angle phi: 0.8727 +Force: -1.801974 -2.410125 5.617425 +Torque: 0.852143 0.019771 0.245218 + +Polar angle tht: 2.6180; Azimuth angle phi: 0.9163 +Force: -1.699471 -2.492070 5.611186 +Torque: 0.882453 0.018847 0.240516 + +Polar angle tht: 2.6180; Azimuth angle phi: 0.9599 +Force: -1.594314 -2.568866 5.604596 +Torque: 0.911076 0.017876 0.233984 + +Polar angle tht: 2.6180; Azimuth angle phi: 1.0036 +Force: -1.486785 -2.640378 5.597653 +Torque: 0.937959 0.016861 0.225671 + +Polar angle tht: 2.6180; Azimuth angle phi: 1.0472 +Force: -1.377166 -2.706482 5.590357 +Torque: 0.963049 0.015800 0.215641 + +Polar angle tht: 2.6180; Azimuth angle phi: 1.0908 +Force: -1.265743 -2.767071 5.582710 +Torque: 0.986300 0.014696 0.203970 + +Polar angle tht: 2.6180; Azimuth angle phi: 1.1345 +Force: -1.152799 -2.822049 5.574714 +Torque: 1.007667 0.013548 0.190746 + +Polar angle tht: 2.6180; Azimuth angle phi: 1.1781 +Force: -1.038618 -2.871333 5.566373 +Torque: 1.027111 0.012358 0.176070 + +Polar angle tht: 2.6180; Azimuth angle phi: 1.2217 +Force: -0.923479 -2.914854 5.557692 +Torque: 1.044595 0.011127 0.160055 + +Polar angle tht: 2.6180; Azimuth angle phi: 1.2654 +Force: -0.807661 -2.952556 5.548678 +Torque: 1.060085 0.009856 0.142821 + +Polar angle tht: 2.6180; Azimuth angle phi: 1.3090 +Force: -0.691434 -2.984398 5.539340 +Torque: 1.073553 0.008547 0.124501 + +Polar angle tht: 2.6180; Azimuth angle phi: 1.3526 +Force: -0.575067 -3.010348 5.529688 +Torque: 1.084975 0.007202 0.105232 + +Polar angle tht: 2.6180; Azimuth angle phi: 1.3963 +Force: -0.458821 -3.030391 5.519733 +Torque: 1.094327 0.005822 0.085163 + +Polar angle tht: 2.6180; Azimuth angle phi: 1.4399 +Force: -0.342949 -3.044521 5.509490 +Torque: 1.101595 0.004409 0.064446 + +Polar angle tht: 2.6180; Azimuth angle phi: 1.4835 +Force: -0.227698 -3.052747 5.498973 +Torque: 1.106763 0.002966 0.043239 + +Polar angle tht: 2.6180; Azimuth angle phi: 1.5272 +Force: -0.113305 -3.055089 5.488199 +Torque: 1.109823 0.001496 0.021702 + +Polar angle tht: 2.6180; Azimuth angle phi: 1.5708 +Force: 0.000000 -3.051579 5.477187 +Torque: 1.110770 0.000000 0.000000 + +Polar angle tht: 2.6180; Azimuth angle phi: 1.6144 +Force: 0.113305 -3.055089 5.488199 +Torque: 1.109823 -0.001496 -0.021702 + +Polar angle tht: 2.6180; Azimuth angle phi: 1.6581 +Force: 0.227698 -3.052747 5.498973 +Torque: 1.106763 -0.002966 -0.043239 + +Polar angle tht: 2.6180; Azimuth angle phi: 1.7017 +Force: 0.342949 -3.044521 5.509490 +Torque: 1.101595 -0.004409 -0.064446 + +Polar angle tht: 2.6180; Azimuth angle phi: 1.7453 +Force: 0.458821 -3.030391 5.519733 +Torque: 1.094327 -0.005822 -0.085163 + +Polar angle tht: 2.6180; Azimuth angle phi: 1.7890 +Force: 0.575067 -3.010348 5.529688 +Torque: 1.084975 -0.007202 -0.105232 + +Polar angle tht: 2.6180; Azimuth angle phi: 1.8326 +Force: 0.691434 -2.984398 5.539340 +Torque: 1.073553 -0.008547 -0.124501 + +Polar angle tht: 2.6180; Azimuth angle phi: 1.8762 +Force: 0.807661 -2.952556 5.548678 +Torque: 1.060085 -0.009856 -0.142821 + +Polar angle tht: 2.6180; Azimuth angle phi: 1.9199 +Force: 0.923479 -2.914854 5.557692 +Torque: 1.044595 -0.011127 -0.160055 + +Polar angle tht: 2.6180; Azimuth angle phi: 1.9635 +Force: 1.038618 -2.871333 5.566373 +Torque: 1.027111 -0.012358 -0.176070 + +Polar angle tht: 2.6180; Azimuth angle phi: 2.0071 +Force: 1.152799 -2.822049 5.574714 +Torque: 1.007667 -0.013548 -0.190746 + +Polar angle tht: 2.6180; Azimuth angle phi: 2.0508 +Force: 1.265743 -2.767071 5.582710 +Torque: 0.986300 -0.014696 -0.203970 + +Polar angle tht: 2.6180; Azimuth angle phi: 2.0944 +Force: 1.377166 -2.706482 5.590357 +Torque: 0.963049 -0.015800 -0.215641 + +Polar angle tht: 2.6180; Azimuth angle phi: 2.1380 +Force: 1.486785 -2.640378 5.597653 +Torque: 0.937959 -0.016861 -0.225671 + +Polar angle tht: 2.6180; Azimuth angle phi: 2.1817 +Force: 1.594314 -2.568866 5.604596 +Torque: 0.911076 -0.017876 -0.233984 + +Polar angle tht: 2.6180; Azimuth angle phi: 2.2253 +Force: 1.699471 -2.492070 5.611186 +Torque: 0.882453 -0.018847 -0.240516 + +Polar angle tht: 2.6180; Azimuth angle phi: 2.2689 +Force: 1.801974 -2.410125 5.617425 +Torque: 0.852143 -0.019771 -0.245218 + +Polar angle tht: 2.6180; Azimuth angle phi: 2.3126 +Force: 1.901543 -2.323178 5.623313 +Torque: 0.820203 -0.020649 -0.248053 + +Polar angle tht: 2.6180; Azimuth angle phi: 2.3562 +Force: 1.997905 -2.231390 5.628855 +Torque: 0.786695 -0.021481 -0.249000 + +Polar angle tht: 2.6180; Azimuth angle phi: 2.3998 +Force: 2.090790 -2.134934 5.634054 +Torque: 0.751683 -0.022267 -0.248053 + +Polar angle tht: 2.6180; Azimuth angle phi: 2.4435 +Force: 2.179938 -2.033997 5.638913 +Torque: 0.715232 -0.023005 -0.245217 + +Polar angle tht: 2.6180; Azimuth angle phi: 2.4871 +Force: 2.265092 -1.928773 5.643439 +Torque: 0.677413 -0.023698 -0.240515 + +Polar angle tht: 2.6180; Azimuth angle phi: 2.5307 +Force: 2.346008 -1.819473 5.647636 +Torque: 0.638297 -0.024344 -0.233983 + +Polar angle tht: 2.6180; Azimuth angle phi: 2.5744 +Force: 2.422449 -1.706314 5.651510 +Torque: 0.597959 -0.024944 -0.225670 + +Polar angle tht: 2.6180; Azimuth angle phi: 2.6180 +Force: 2.494192 -1.589527 5.655067 +Torque: 0.556477 -0.025497 -0.215640 + +Polar angle tht: 2.6180; Azimuth angle phi: 2.6616 +Force: 2.561025 -1.469350 5.658312 +Torque: 0.513929 -0.026005 -0.203968 + +Polar angle tht: 2.6180; Azimuth angle phi: 2.7053 +Force: 2.622747 -1.346032 5.661252 +Torque: 0.470397 -0.026468 -0.190744 + +Polar angle tht: 2.6180; Azimuth angle phi: 2.7489 +Force: 2.679173 -1.219830 5.663892 +Torque: 0.425964 -0.026885 -0.176068 + +Polar angle tht: 2.6180; Azimuth angle phi: 2.7925 +Force: 2.730133 -1.091009 5.666237 +Torque: 0.380715 -0.027258 -0.160052 + +Polar angle tht: 2.6180; Azimuth angle phi: 2.8362 +Force: 2.775472 -0.959841 5.668293 +Torque: 0.334736 -0.027586 -0.142818 + +Polar angle tht: 2.6180; Azimuth angle phi: 2.8798 +Force: 2.815052 -0.826606 5.670065 +Torque: 0.288116 -0.027870 -0.124498 + +Polar angle tht: 2.6180; Azimuth angle phi: 2.9234 +Force: 2.848752 -0.691586 5.671557 +Torque: 0.240944 -0.028109 -0.105229 + +Polar angle tht: 2.6180; Azimuth angle phi: 2.9671 +Force: 2.876468 -0.555073 5.672772 +Torque: 0.193311 -0.028305 -0.085160 + +Polar angle tht: 2.6180; Azimuth angle phi: 3.0107 +Force: 2.898114 -0.417359 5.673713 +Torque: 0.145307 -0.028457 -0.064443 + +Polar angle tht: 2.6180; Azimuth angle phi: 3.0543 +Force: 2.913623 -0.278743 5.674384 +Torque: 0.097024 -0.028565 -0.043235 + +Polar angle tht: 2.6180; Azimuth angle phi: 3.0980 +Force: 2.922948 -0.139522 5.674786 +Torque: 0.048556 -0.028630 -0.021698 + +Polar angle tht: 2.6180; Azimuth angle phi: 3.1416 +Force: 2.926060 0.000000 5.674920 +Torque: -0.000006 -0.028652 0.000004 + +Polar angle tht: 2.6180; Azimuth angle phi: 3.1852 +Force: 2.922948 0.139522 5.674786 +Torque: -0.048567 -0.028630 0.021706 + +Polar angle tht: 2.6180; Azimuth angle phi: 3.2289 +Force: 2.913623 0.278743 5.674384 +Torque: -0.097036 -0.028565 0.043243 + +Polar angle tht: 2.6180; Azimuth angle phi: 3.2725 +Force: 2.898114 0.417359 5.673713 +Torque: -0.145318 -0.028457 0.064451 + +Polar angle tht: 2.6180; Azimuth angle phi: 3.3161 +Force: 2.876468 0.555073 5.672772 +Torque: -0.193322 -0.028305 0.085168 + +Polar angle tht: 2.6180; Azimuth angle phi: 3.3598 +Force: 2.848752 0.691586 5.671557 +Torque: -0.240956 -0.028109 0.105237 + +Polar angle tht: 2.6180; Azimuth angle phi: 3.4034 +Force: 2.815052 0.826606 5.670065 +Torque: -0.288128 -0.027870 0.124506 + +Polar angle tht: 2.6180; Azimuth angle phi: 3.4470 +Force: 2.775472 0.959841 5.668293 +Torque: -0.334748 -0.027586 0.142826 + +Polar angle tht: 2.6180; Azimuth angle phi: 3.4907 +Force: 2.730133 1.091009 5.666237 +Torque: -0.380726 -0.027258 0.160060 + +Polar angle tht: 2.6180; Azimuth angle phi: 3.5343 +Force: 2.679173 1.219830 5.663892 +Torque: -0.425975 -0.026885 0.176076 + +Polar angle tht: 2.6180; Azimuth angle phi: 3.5779 +Force: 2.622747 1.346032 5.661252 +Torque: -0.470408 -0.026468 0.190751 + +Polar angle tht: 2.6180; Azimuth angle phi: 3.6216 +Force: 2.561025 1.469350 5.658312 +Torque: -0.513941 -0.026005 0.203975 + +Polar angle tht: 2.6180; Azimuth angle phi: 3.6652 +Force: 2.494192 1.589527 5.655067 +Torque: -0.556489 -0.025497 0.215647 + +Polar angle tht: 2.6180; Azimuth angle phi: 3.7088 +Force: 2.422449 1.706314 5.651510 +Torque: -0.597971 -0.024944 0.225677 + +Polar angle tht: 2.6180; Azimuth angle phi: 3.7525 +Force: 2.346008 1.819473 5.647636 +Torque: -0.638309 -0.024344 0.233990 + +Polar angle tht: 2.6180; Azimuth angle phi: 3.7961 +Force: 2.265092 1.928773 5.643439 +Torque: -0.677425 -0.023698 0.240522 + +Polar angle tht: 2.6180; Azimuth angle phi: 3.8397 +Force: 2.179938 2.033997 5.638913 +Torque: -0.715244 -0.023005 0.245224 + +Polar angle tht: 2.6180; Azimuth angle phi: 3.8834 +Force: 2.090790 2.134934 5.634054 +Torque: -0.751695 -0.022267 0.248059 + +Polar angle tht: 2.6180; Azimuth angle phi: 3.9270 +Force: 1.997905 2.231390 5.628855 +Torque: -0.786707 -0.021481 0.249006 + +Polar angle tht: 2.6180; Azimuth angle phi: 3.9706 +Force: 1.901543 2.323178 5.623313 +Torque: -0.820215 -0.020649 0.248059 + +Polar angle tht: 2.6180; Azimuth angle phi: 4.0143 +Force: 1.801974 2.410125 5.617425 +Torque: -0.852155 -0.019771 0.245223 + +Polar angle tht: 2.6180; Azimuth angle phi: 4.0579 +Force: 1.699471 2.492070 5.611186 +Torque: -0.882465 -0.018847 0.240521 + +Polar angle tht: 2.6180; Azimuth angle phi: 4.1015 +Force: 1.594314 2.568866 5.604596 +Torque: -0.911089 -0.017876 0.233989 + +Polar angle tht: 2.6180; Azimuth angle phi: 4.1452 +Force: 1.486785 2.640378 5.597653 +Torque: -0.937971 -0.016861 0.225676 + +Polar angle tht: 2.6180; Azimuth angle phi: 4.1888 +Force: 1.377166 2.706482 5.590357 +Torque: -0.963061 -0.015800 0.215645 + +Polar angle tht: 2.6180; Azimuth angle phi: 4.2324 +Force: 1.265743 2.767071 5.582710 +Torque: -0.986312 -0.014696 0.203974 + +Polar angle tht: 2.6180; Azimuth angle phi: 4.2761 +Force: 1.152799 2.822049 5.574714 +Torque: -1.007680 -0.013548 0.190749 + +Polar angle tht: 2.6180; Azimuth angle phi: 4.3197 +Force: 1.038618 2.871333 5.566373 +Torque: -1.027124 -0.012358 0.176074 + +Polar angle tht: 2.6180; Azimuth angle phi: 4.3633 +Force: 0.923479 2.914854 5.557692 +Torque: -1.044607 -0.011127 0.160058 + +Polar angle tht: 2.6180; Azimuth angle phi: 4.4070 +Force: 0.807661 2.952556 5.548678 +Torque: -1.060098 -0.009856 0.142824 + +Polar angle tht: 2.6180; Azimuth angle phi: 4.4506 +Force: 0.691434 2.984398 5.539340 +Torque: -1.073566 -0.008547 0.124503 + +Polar angle tht: 2.6180; Azimuth angle phi: 4.4942 +Force: 0.575067 3.010348 5.529688 +Torque: -1.084987 -0.007202 0.105234 + +Polar angle tht: 2.6180; Azimuth angle phi: 4.5379 +Force: 0.458821 3.030391 5.519733 +Torque: -1.094340 -0.005822 0.085165 + +Polar angle tht: 2.6180; Azimuth angle phi: 4.5815 +Force: 0.342949 3.044521 5.509490 +Torque: -1.101607 -0.004409 0.064447 + +Polar angle tht: 2.6180; Azimuth angle phi: 4.6251 +Force: 0.227698 3.052747 5.498973 +Torque: -1.106775 -0.002966 0.043239 + +Polar angle tht: 2.6180; Azimuth angle phi: 4.6688 +Force: 0.113305 3.055089 5.488199 +Torque: -1.109836 -0.001496 0.021702 + +Polar angle tht: 2.6180; Azimuth angle phi: 4.7124 +Force: 0.000000 3.051579 5.477187 +Torque: -1.110783 0.000000 -0.000000 + +Polar angle tht: 2.6180; Azimuth angle phi: 4.7560 +Force: -0.113305 3.055089 5.488199 +Torque: -1.109836 0.001496 -0.021702 + +Polar angle tht: 2.6180; Azimuth angle phi: 4.7997 +Force: -0.227698 3.052747 5.498973 +Torque: -1.106775 0.002966 -0.043239 + +Polar angle tht: 2.6180; Azimuth angle phi: 4.8433 +Force: -0.342949 3.044521 5.509490 +Torque: -1.101607 0.004409 -0.064447 + +Polar angle tht: 2.6180; Azimuth angle phi: 4.8869 +Force: -0.458821 3.030391 5.519733 +Torque: -1.094340 0.005822 -0.085165 + +Polar angle tht: 2.6180; Azimuth angle phi: 4.9306 +Force: -0.575067 3.010348 5.529688 +Torque: -1.084987 0.007202 -0.105234 + +Polar angle tht: 2.6180; Azimuth angle phi: 4.9742 +Force: -0.691434 2.984398 5.539340 +Torque: -1.073566 0.008547 -0.124503 + +Polar angle tht: 2.6180; Azimuth angle phi: 5.0178 +Force: -0.807661 2.952556 5.548678 +Torque: -1.060098 0.009856 -0.142824 + +Polar angle tht: 2.6180; Azimuth angle phi: 5.0615 +Force: -0.923479 2.914854 5.557692 +Torque: -1.044607 0.011127 -0.160058 + +Polar angle tht: 2.6180; Azimuth angle phi: 5.1051 +Force: -1.038618 2.871333 5.566373 +Torque: -1.027124 0.012358 -0.176074 + +Polar angle tht: 2.6180; Azimuth angle phi: 5.1487 +Force: -1.152799 2.822049 5.574714 +Torque: -1.007680 0.013548 -0.190749 + +Polar angle tht: 2.6180; Azimuth angle phi: 5.1924 +Force: -1.265743 2.767071 5.582710 +Torque: -0.986312 0.014696 -0.203974 + +Polar angle tht: 2.6180; Azimuth angle phi: 5.2360 +Force: -1.377166 2.706482 5.590357 +Torque: -0.963061 0.015800 -0.215645 + +Polar angle tht: 2.6180; Azimuth angle phi: 5.2796 +Force: -1.486785 2.640378 5.597653 +Torque: -0.937971 0.016861 -0.225676 + +Polar angle tht: 2.6180; Azimuth angle phi: 5.3233 +Force: -1.594314 2.568866 5.604596 +Torque: -0.911089 0.017876 -0.233989 + +Polar angle tht: 2.6180; Azimuth angle phi: 5.3669 +Force: -1.699471 2.492070 5.611186 +Torque: -0.882465 0.018847 -0.240521 + +Polar angle tht: 2.6180; Azimuth angle phi: 5.4105 +Force: -1.801974 2.410125 5.617425 +Torque: -0.852155 0.019771 -0.245223 + +Polar angle tht: 2.6180; Azimuth angle phi: 5.4542 +Force: -1.901543 2.323178 5.623313 +Torque: -0.820215 0.020649 -0.248059 + +Polar angle tht: 2.6180; Azimuth angle phi: 5.4978 +Force: -1.997905 2.231390 5.628855 +Torque: -0.786707 0.021481 -0.249006 + +Polar angle tht: 2.6180; Azimuth angle phi: 5.5414 +Force: -2.090790 2.134934 5.634054 +Torque: -0.751695 0.022267 -0.248059 + +Polar angle tht: 2.6180; Azimuth angle phi: 5.5851 +Force: -2.179938 2.033997 5.638913 +Torque: -0.715244 0.023005 -0.245224 + +Polar angle tht: 2.6180; Azimuth angle phi: 5.6287 +Force: -2.265092 1.928773 5.643439 +Torque: -0.677425 0.023698 -0.240522 + +Polar angle tht: 2.6180; Azimuth angle phi: 5.6723 +Force: -2.346008 1.819473 5.647636 +Torque: -0.638309 0.024344 -0.233990 + +Polar angle tht: 2.6180; Azimuth angle phi: 5.7160 +Force: -2.422449 1.706314 5.651510 +Torque: -0.597971 0.024944 -0.225677 + +Polar angle tht: 2.6180; Azimuth angle phi: 5.7596 +Force: -2.494192 1.589527 5.655067 +Torque: -0.556489 0.025497 -0.215647 + +Polar angle tht: 2.6180; Azimuth angle phi: 5.8032 +Force: -2.561025 1.469350 5.658312 +Torque: -0.513941 0.026005 -0.203975 + +Polar angle tht: 2.6180; Azimuth angle phi: 5.8469 +Force: -2.622747 1.346032 5.661252 +Torque: -0.470408 0.026468 -0.190751 + +Polar angle tht: 2.6180; Azimuth angle phi: 5.8905 +Force: -2.679173 1.219830 5.663892 +Torque: -0.425975 0.026885 -0.176076 + +Polar angle tht: 2.6180; Azimuth angle phi: 5.9341 +Force: -2.730133 1.091009 5.666237 +Torque: -0.380726 0.027258 -0.160060 + +Polar angle tht: 2.6180; Azimuth angle phi: 5.9778 +Force: -2.775472 0.959841 5.668293 +Torque: -0.334748 0.027586 -0.142826 + +Polar angle tht: 2.6180; Azimuth angle phi: 6.0214 +Force: -2.815052 0.826606 5.670065 +Torque: -0.288128 0.027870 -0.124506 + +Polar angle tht: 2.6180; Azimuth angle phi: 6.0650 +Force: -2.848752 0.691586 5.671557 +Torque: -0.240956 0.028109 -0.105237 + +Polar angle tht: 2.6180; Azimuth angle phi: 6.1087 +Force: -2.876468 0.555073 5.672772 +Torque: -0.193322 0.028305 -0.085168 + +Polar angle tht: 2.6180; Azimuth angle phi: 6.1523 +Force: -2.898114 0.417359 5.673713 +Torque: -0.145318 0.028457 -0.064451 + +Polar angle tht: 2.6180; Azimuth angle phi: 6.1959 +Force: -2.913623 0.278743 5.674384 +Torque: -0.097036 0.028565 -0.043243 + +Polar angle tht: 2.6180; Azimuth angle phi: 6.2396 +Force: -2.922948 0.139522 5.674786 +Torque: -0.048567 0.028630 -0.021706 + +Polar angle tht: 2.6180; Azimuth angle phi: 6.2832 +Force: -2.926060 0.000000 5.674920 +Torque: -0.000006 0.028652 -0.000004 + +Polar angle tht: 2.6616; Azimuth angle phi: 0.0000 +Force: -2.733833 0.000000 5.906863 +Torque: -0.000006 0.027682 -0.000004 + +Polar angle tht: 2.6616; Azimuth angle phi: 0.0436 +Force: -2.730953 -0.131027 5.906726 +Torque: 0.045739 0.027661 0.018505 + +Polar angle tht: 2.6616; Azimuth angle phi: 0.0873 +Force: -2.722320 -0.261773 5.906316 +Torque: 0.091396 0.027596 0.036872 + +Polar angle tht: 2.6616; Azimuth angle phi: 0.1309 +Force: -2.707961 -0.391959 5.905631 +Torque: 0.136878 0.027488 0.054959 + +Polar angle tht: 2.6616; Azimuth angle phi: 0.1745 +Force: -2.687918 -0.521305 5.904671 +Torque: 0.182098 0.027337 0.072628 + +Polar angle tht: 2.6616; Azimuth angle phi: 0.2182 +Force: -2.662252 -0.649537 5.903432 +Torque: 0.226969 0.027142 0.089744 + +Polar angle tht: 2.6616; Azimuth angle phi: 0.2618 +Force: -2.631040 -0.776382 5.901915 +Torque: 0.271405 0.026905 0.106177 + +Polar angle tht: 2.6616; Azimuth angle phi: 0.3054 +Force: -2.594374 -0.901569 5.900114 +Torque: 0.315322 0.026623 0.121802 + +Polar angle tht: 2.6616; Azimuth angle phi: 0.3491 +Force: -2.552363 -1.024834 5.898028 +Torque: 0.358635 0.026298 0.136500 + +Polar angle tht: 2.6616; Azimuth angle phi: 0.3927 +Force: -2.505133 -1.145919 5.895652 +Torque: 0.401262 0.025929 0.150159 + +Polar angle tht: 2.6616; Azimuth angle phi: 0.4363 +Force: -2.452822 -1.264568 5.892984 +Torque: 0.443120 0.025516 0.162675 + +Polar angle tht: 2.6616; Azimuth angle phi: 0.4800 +Force: -2.395583 -1.380537 5.890019 +Torque: 0.484130 0.025059 0.173953 + +Polar angle tht: 2.6616; Azimuth angle phi: 0.5236 +Force: -2.333584 -1.493584 5.886754 +Torque: 0.524213 0.024557 0.183907 + +Polar angle tht: 2.6616; Azimuth angle phi: 0.5672 +Force: -2.267003 -1.603477 5.883184 +Torque: 0.563293 0.024011 0.192462 + +Polar angle tht: 2.6616; Azimuth angle phi: 0.6109 +Force: -2.196032 -1.709994 5.879305 +Torque: 0.601295 0.023421 0.199552 + +Polar angle tht: 2.6616; Azimuth angle phi: 0.6545 +Force: -2.120874 -1.812918 5.875114 +Torque: 0.638147 0.022786 0.205123 + +Polar angle tht: 2.6616; Azimuth angle phi: 0.6981 +Force: -2.041742 -1.912046 5.870606 +Torque: 0.673778 0.022107 0.209133 + +Polar angle tht: 2.6616; Azimuth angle phi: 0.7418 +Force: -1.958856 -2.007182 5.865779 +Torque: 0.708121 0.021384 0.211551 + +Polar angle tht: 2.6616; Azimuth angle phi: 0.7854 +Force: -1.872448 -2.098139 5.860630 +Torque: 0.741109 0.020616 0.212359 + +Polar angle tht: 2.6616; Azimuth angle phi: 0.8290 +Force: -1.782754 -2.184745 5.855156 +Torque: 0.772681 0.019804 0.211551 + +Polar angle tht: 2.6616; Azimuth angle phi: 0.8727 +Force: -1.690018 -2.266835 5.849356 +Torque: 0.802775 0.018949 0.209133 + +Polar angle tht: 2.6616; Azimuth angle phi: 0.9163 +Force: -1.594489 -2.344257 5.843229 +Torque: 0.831336 0.018050 0.205123 + +Polar angle tht: 2.6616; Azimuth angle phi: 0.9599 +Force: -1.496419 -2.416871 5.836774 +Torque: 0.858308 0.017108 0.199553 + +Polar angle tht: 2.6616; Azimuth angle phi: 1.0036 +Force: -1.396066 -2.484547 5.829992 +Torque: 0.883640 0.016124 0.192463 + +Polar angle tht: 2.6616; Azimuth angle phi: 1.0472 +Force: -1.293688 -2.547170 5.822885 +Torque: 0.907284 0.015099 0.183909 + +Polar angle tht: 2.6616; Azimuth angle phi: 1.0908 +Force: -1.189544 -2.604633 5.815456 +Torque: 0.929197 0.014032 0.173955 + +Polar angle tht: 2.6616; Azimuth angle phi: 1.1345 +Force: -1.083893 -2.656845 5.807709 +Torque: 0.949335 0.012926 0.162677 + +Polar angle tht: 2.6616; Azimuth angle phi: 1.1781 +Force: -0.976996 -2.703725 5.799648 +Torque: 0.967662 0.011782 0.150161 + +Polar angle tht: 2.6616; Azimuth angle phi: 1.2217 +Force: -0.869108 -2.745205 5.791280 +Torque: 0.984142 0.010600 0.136502 + +Polar angle tht: 2.6616; Azimuth angle phi: 1.2654 +Force: -0.760485 -2.781229 5.782612 +Torque: 0.998745 0.009382 0.121805 + +Polar angle tht: 2.6616; Azimuth angle phi: 1.3090 +Force: -0.651378 -2.811754 5.773655 +Torque: 1.011443 0.008130 0.106180 + +Polar angle tht: 2.6616; Azimuth angle phi: 1.3526 +Force: -0.542033 -2.836747 5.764418 +Torque: 1.022212 0.006845 0.089747 + +Polar angle tht: 2.6616; Azimuth angle phi: 1.3963 +Force: -0.432694 -2.856188 5.754914 +Torque: 1.031034 0.005529 0.072631 + +Polar angle tht: 2.6616; Azimuth angle phi: 1.4399 +Force: -0.323594 -2.870071 5.745155 +Torque: 1.037890 0.004184 0.054963 + +Polar angle tht: 2.6616; Azimuth angle phi: 1.4835 +Force: -0.214965 -2.878397 5.735157 +Torque: 1.042770 0.002813 0.036876 + +Polar angle tht: 2.6616; Azimuth angle phi: 1.5272 +Force: -0.107029 -2.881182 5.724936 +Torque: 1.045663 0.001417 0.018508 + +Polar angle tht: 2.6616; Azimuth angle phi: 1.5708 +Force: 0.000000 -2.878451 5.714510 +Torque: 1.046565 0.000000 0.000000 + +Polar angle tht: 2.6616; Azimuth angle phi: 1.6144 +Force: 0.107029 -2.881182 5.724936 +Torque: 1.045663 -0.001417 -0.018508 + +Polar angle tht: 2.6616; Azimuth angle phi: 1.6581 +Force: 0.214965 -2.878397 5.735157 +Torque: 1.042770 -0.002813 -0.036876 + +Polar angle tht: 2.6616; Azimuth angle phi: 1.7017 +Force: 0.323594 -2.870071 5.745155 +Torque: 1.037890 -0.004184 -0.054963 + +Polar angle tht: 2.6616; Azimuth angle phi: 1.7453 +Force: 0.432694 -2.856188 5.754914 +Torque: 1.031034 -0.005529 -0.072631 + +Polar angle tht: 2.6616; Azimuth angle phi: 1.7890 +Force: 0.542033 -2.836747 5.764418 +Torque: 1.022212 -0.006845 -0.089747 + +Polar angle tht: 2.6616; Azimuth angle phi: 1.8326 +Force: 0.651378 -2.811754 5.773655 +Torque: 1.011443 -0.008130 -0.106180 + +Polar angle tht: 2.6616; Azimuth angle phi: 1.8762 +Force: 0.760485 -2.781229 5.782612 +Torque: 0.998745 -0.009382 -0.121805 + +Polar angle tht: 2.6616; Azimuth angle phi: 1.9199 +Force: 0.869108 -2.745205 5.791280 +Torque: 0.984142 -0.010600 -0.136502 + +Polar angle tht: 2.6616; Azimuth angle phi: 1.9635 +Force: 0.976996 -2.703725 5.799648 +Torque: 0.967662 -0.011782 -0.150161 + +Polar angle tht: 2.6616; Azimuth angle phi: 2.0071 +Force: 1.083893 -2.656845 5.807709 +Torque: 0.949335 -0.012926 -0.162677 + +Polar angle tht: 2.6616; Azimuth angle phi: 2.0508 +Force: 1.189544 -2.604633 5.815456 +Torque: 0.929197 -0.014032 -0.173955 + +Polar angle tht: 2.6616; Azimuth angle phi: 2.0944 +Force: 1.293688 -2.547170 5.822885 +Torque: 0.907284 -0.015099 -0.183909 + +Polar angle tht: 2.6616; Azimuth angle phi: 2.1380 +Force: 1.396066 -2.484547 5.829992 +Torque: 0.883640 -0.016124 -0.192463 + +Polar angle tht: 2.6616; Azimuth angle phi: 2.1817 +Force: 1.496419 -2.416871 5.836774 +Torque: 0.858308 -0.017108 -0.199553 + +Polar angle tht: 2.6616; Azimuth angle phi: 2.2253 +Force: 1.594489 -2.344257 5.843229 +Torque: 0.831336 -0.018050 -0.205123 + +Polar angle tht: 2.6616; Azimuth angle phi: 2.2689 +Force: 1.690018 -2.266835 5.849356 +Torque: 0.802775 -0.018949 -0.209133 + +Polar angle tht: 2.6616; Azimuth angle phi: 2.3126 +Force: 1.782754 -2.184745 5.855156 +Torque: 0.772681 -0.019804 -0.211551 + +Polar angle tht: 2.6616; Azimuth angle phi: 2.3562 +Force: 1.872448 -2.098139 5.860630 +Torque: 0.741109 -0.020616 -0.212359 + +Polar angle tht: 2.6616; Azimuth angle phi: 2.3998 +Force: 1.958856 -2.007182 5.865779 +Torque: 0.708121 -0.021384 -0.211551 + +Polar angle tht: 2.6616; Azimuth angle phi: 2.4435 +Force: 2.041742 -1.912046 5.870606 +Torque: 0.673778 -0.022107 -0.209133 + +Polar angle tht: 2.6616; Azimuth angle phi: 2.4871 +Force: 2.120874 -1.812918 5.875114 +Torque: 0.638147 -0.022786 -0.205123 + +Polar angle tht: 2.6616; Azimuth angle phi: 2.5307 +Force: 2.196032 -1.709994 5.879305 +Torque: 0.601295 -0.023421 -0.199552 + +Polar angle tht: 2.6616; Azimuth angle phi: 2.5744 +Force: 2.267003 -1.603477 5.883184 +Torque: 0.563293 -0.024011 -0.192462 + +Polar angle tht: 2.6616; Azimuth angle phi: 2.6180 +Force: 2.333584 -1.493584 5.886754 +Torque: 0.524213 -0.024557 -0.183907 + +Polar angle tht: 2.6616; Azimuth angle phi: 2.6616 +Force: 2.395583 -1.380537 5.890019 +Torque: 0.484130 -0.025059 -0.173953 + +Polar angle tht: 2.6616; Azimuth angle phi: 2.7053 +Force: 2.452822 -1.264568 5.892984 +Torque: 0.443120 -0.025516 -0.162675 + +Polar angle tht: 2.6616; Azimuth angle phi: 2.7489 +Force: 2.505133 -1.145919 5.895652 +Torque: 0.401262 -0.025929 -0.150159 + +Polar angle tht: 2.6616; Azimuth angle phi: 2.7925 +Force: 2.552363 -1.024834 5.898028 +Torque: 0.358635 -0.026298 -0.136500 + +Polar angle tht: 2.6616; Azimuth angle phi: 2.8362 +Force: 2.594374 -0.901569 5.900114 +Torque: 0.315322 -0.026623 -0.121802 + +Polar angle tht: 2.6616; Azimuth angle phi: 2.8798 +Force: 2.631040 -0.776382 5.901915 +Torque: 0.271405 -0.026905 -0.106177 + +Polar angle tht: 2.6616; Azimuth angle phi: 2.9234 +Force: 2.662252 -0.649537 5.903432 +Torque: 0.226969 -0.027142 -0.089744 + +Polar angle tht: 2.6616; Azimuth angle phi: 2.9671 +Force: 2.687918 -0.521305 5.904671 +Torque: 0.182098 -0.027337 -0.072628 + +Polar angle tht: 2.6616; Azimuth angle phi: 3.0107 +Force: 2.707961 -0.391959 5.905631 +Torque: 0.136878 -0.027488 -0.054959 + +Polar angle tht: 2.6616; Azimuth angle phi: 3.0543 +Force: 2.722320 -0.261773 5.906316 +Torque: 0.091396 -0.027596 -0.036872 + +Polar angle tht: 2.6616; Azimuth angle phi: 3.0980 +Force: 2.730953 -0.131027 5.906726 +Torque: 0.045739 -0.027661 -0.018505 + +Polar angle tht: 2.6616; Azimuth angle phi: 3.1416 +Force: 2.733833 0.000000 5.906863 +Torque: -0.000006 -0.027682 0.000004 + +Polar angle tht: 2.6616; Azimuth angle phi: 3.1852 +Force: 2.730953 0.131027 5.906726 +Torque: -0.045751 -0.027661 0.018513 + +Polar angle tht: 2.6616; Azimuth angle phi: 3.2289 +Force: 2.722320 0.261773 5.906316 +Torque: -0.091408 -0.027596 0.036880 + +Polar angle tht: 2.6616; Azimuth angle phi: 3.2725 +Force: 2.707961 0.391959 5.905631 +Torque: -0.136890 -0.027488 0.054967 + +Polar angle tht: 2.6616; Azimuth angle phi: 3.3161 +Force: 2.687918 0.521305 5.904671 +Torque: -0.182110 -0.027337 0.072636 + +Polar angle tht: 2.6616; Azimuth angle phi: 3.3598 +Force: 2.662252 0.649537 5.903432 +Torque: -0.226981 -0.027142 0.089752 + +Polar angle tht: 2.6616; Azimuth angle phi: 3.4034 +Force: 2.631040 0.776382 5.901915 +Torque: -0.271418 -0.026905 0.106185 + +Polar angle tht: 2.6616; Azimuth angle phi: 3.4470 +Force: 2.594374 0.901569 5.900114 +Torque: -0.315334 -0.026623 0.121810 + +Polar angle tht: 2.6616; Azimuth angle phi: 3.4907 +Force: 2.552363 1.024834 5.898028 +Torque: -0.358647 -0.026298 0.136507 + +Polar angle tht: 2.6616; Azimuth angle phi: 3.5343 +Force: 2.505133 1.145919 5.895652 +Torque: -0.401274 -0.025929 0.150166 + +Polar angle tht: 2.6616; Azimuth angle phi: 3.5779 +Force: 2.452822 1.264568 5.892984 +Torque: -0.443132 -0.025516 0.162682 + +Polar angle tht: 2.6616; Azimuth angle phi: 3.6216 +Force: 2.395583 1.380537 5.890019 +Torque: -0.484142 -0.025059 0.173960 + +Polar angle tht: 2.6616; Azimuth angle phi: 3.6652 +Force: 2.333584 1.493584 5.886754 +Torque: -0.524225 -0.024557 0.183914 + +Polar angle tht: 2.6616; Azimuth angle phi: 3.7088 +Force: 2.267003 1.603477 5.883184 +Torque: -0.563305 -0.024011 0.192469 + +Polar angle tht: 2.6616; Azimuth angle phi: 3.7525 +Force: 2.196032 1.709994 5.879305 +Torque: -0.601308 -0.023421 0.199558 + +Polar angle tht: 2.6616; Azimuth angle phi: 3.7961 +Force: 2.120874 1.812918 5.875114 +Torque: -0.638160 -0.022786 0.205129 + +Polar angle tht: 2.6616; Azimuth angle phi: 3.8397 +Force: 2.041742 1.912046 5.870606 +Torque: -0.673791 -0.022107 0.209139 + +Polar angle tht: 2.6616; Azimuth angle phi: 3.8834 +Force: 1.958856 2.007182 5.865779 +Torque: -0.708133 -0.021384 0.211557 + +Polar angle tht: 2.6616; Azimuth angle phi: 3.9270 +Force: 1.872448 2.098139 5.860630 +Torque: -0.741122 -0.020616 0.212365 + +Polar angle tht: 2.6616; Azimuth angle phi: 3.9706 +Force: 1.782754 2.184745 5.855156 +Torque: -0.772693 -0.019804 0.211556 + +Polar angle tht: 2.6616; Azimuth angle phi: 4.0143 +Force: 1.690018 2.266835 5.849356 +Torque: -0.802788 -0.018949 0.209138 + +Polar angle tht: 2.6616; Azimuth angle phi: 4.0579 +Force: 1.594489 2.344257 5.843229 +Torque: -0.831348 -0.018050 0.205128 + +Polar angle tht: 2.6616; Azimuth angle phi: 4.1015 +Force: 1.496419 2.416871 5.836774 +Torque: -0.858320 -0.017108 0.199557 + +Polar angle tht: 2.6616; Azimuth angle phi: 4.1452 +Force: 1.396066 2.484547 5.829992 +Torque: -0.883653 -0.016124 0.192467 + +Polar angle tht: 2.6616; Azimuth angle phi: 4.1888 +Force: 1.293688 2.547170 5.822885 +Torque: -0.907297 -0.015099 0.183913 + +Polar angle tht: 2.6616; Azimuth angle phi: 4.2324 +Force: 1.189544 2.604633 5.815456 +Torque: -0.929209 -0.014032 0.173958 + +Polar angle tht: 2.6616; Azimuth angle phi: 4.2761 +Force: 1.083893 2.656845 5.807709 +Torque: -0.949348 -0.012926 0.162680 + +Polar angle tht: 2.6616; Azimuth angle phi: 4.3197 +Force: 0.976996 2.703725 5.799648 +Torque: -0.967674 -0.011782 0.150164 + +Polar angle tht: 2.6616; Azimuth angle phi: 4.3633 +Force: 0.869108 2.745205 5.791280 +Torque: -0.984155 -0.010600 0.136505 + +Polar angle tht: 2.6616; Azimuth angle phi: 4.4070 +Force: 0.760485 2.781229 5.782612 +Torque: -0.998758 -0.009382 0.121807 + +Polar angle tht: 2.6616; Azimuth angle phi: 4.4506 +Force: 0.651378 2.811754 5.773655 +Torque: -1.011456 -0.008130 0.106182 + +Polar angle tht: 2.6616; Azimuth angle phi: 4.4942 +Force: 0.542033 2.836747 5.764418 +Torque: -1.022225 -0.006845 0.089749 + +Polar angle tht: 2.6616; Azimuth angle phi: 4.5379 +Force: 0.432694 2.856188 5.754914 +Torque: -1.031047 -0.005529 0.072633 + +Polar angle tht: 2.6616; Azimuth angle phi: 4.5815 +Force: 0.323594 2.870071 5.745155 +Torque: -1.037903 -0.004184 0.054964 + +Polar angle tht: 2.6616; Azimuth angle phi: 4.6251 +Force: 0.214965 2.878397 5.735157 +Torque: -1.042783 -0.002813 0.036877 + +Polar angle tht: 2.6616; Azimuth angle phi: 4.6688 +Force: 0.107029 2.881182 5.724936 +Torque: -1.045676 -0.001417 0.018509 + +Polar angle tht: 2.6616; Azimuth angle phi: 4.7124 +Force: 0.000000 2.878451 5.714510 +Torque: -1.046578 0.000000 -0.000000 + +Polar angle tht: 2.6616; Azimuth angle phi: 4.7560 +Force: -0.107029 2.881182 5.724936 +Torque: -1.045676 0.001417 -0.018509 + +Polar angle tht: 2.6616; Azimuth angle phi: 4.7997 +Force: -0.214965 2.878397 5.735157 +Torque: -1.042783 0.002813 -0.036877 + +Polar angle tht: 2.6616; Azimuth angle phi: 4.8433 +Force: -0.323594 2.870071 5.745155 +Torque: -1.037903 0.004184 -0.054964 + +Polar angle tht: 2.6616; Azimuth angle phi: 4.8869 +Force: -0.432694 2.856188 5.754914 +Torque: -1.031047 0.005529 -0.072633 + +Polar angle tht: 2.6616; Azimuth angle phi: 4.9306 +Force: -0.542033 2.836747 5.764418 +Torque: -1.022225 0.006845 -0.089749 + +Polar angle tht: 2.6616; Azimuth angle phi: 4.9742 +Force: -0.651378 2.811754 5.773655 +Torque: -1.011456 0.008130 -0.106182 + +Polar angle tht: 2.6616; Azimuth angle phi: 5.0178 +Force: -0.760485 2.781229 5.782612 +Torque: -0.998758 0.009382 -0.121807 + +Polar angle tht: 2.6616; Azimuth angle phi: 5.0615 +Force: -0.869108 2.745205 5.791280 +Torque: -0.984155 0.010600 -0.136505 + +Polar angle tht: 2.6616; Azimuth angle phi: 5.1051 +Force: -0.976996 2.703725 5.799648 +Torque: -0.967674 0.011782 -0.150164 + +Polar angle tht: 2.6616; Azimuth angle phi: 5.1487 +Force: -1.083893 2.656845 5.807709 +Torque: -0.949348 0.012926 -0.162680 + +Polar angle tht: 2.6616; Azimuth angle phi: 5.1924 +Force: -1.189544 2.604633 5.815456 +Torque: -0.929209 0.014032 -0.173958 + +Polar angle tht: 2.6616; Azimuth angle phi: 5.2360 +Force: -1.293688 2.547170 5.822885 +Torque: -0.907297 0.015099 -0.183913 + +Polar angle tht: 2.6616; Azimuth angle phi: 5.2796 +Force: -1.396066 2.484547 5.829992 +Torque: -0.883653 0.016124 -0.192467 + +Polar angle tht: 2.6616; Azimuth angle phi: 5.3233 +Force: -1.496419 2.416871 5.836774 +Torque: -0.858320 0.017108 -0.199557 + +Polar angle tht: 2.6616; Azimuth angle phi: 5.3669 +Force: -1.594489 2.344257 5.843229 +Torque: -0.831348 0.018050 -0.205128 + +Polar angle tht: 2.6616; Azimuth angle phi: 5.4105 +Force: -1.690018 2.266835 5.849356 +Torque: -0.802788 0.018949 -0.209138 + +Polar angle tht: 2.6616; Azimuth angle phi: 5.4542 +Force: -1.782754 2.184745 5.855156 +Torque: -0.772693 0.019804 -0.211556 + +Polar angle tht: 2.6616; Azimuth angle phi: 5.4978 +Force: -1.872448 2.098139 5.860630 +Torque: -0.741122 0.020616 -0.212365 + +Polar angle tht: 2.6616; Azimuth angle phi: 5.5414 +Force: -1.958856 2.007182 5.865779 +Torque: -0.708133 0.021384 -0.211557 + +Polar angle tht: 2.6616; Azimuth angle phi: 5.5851 +Force: -2.041742 1.912046 5.870606 +Torque: -0.673791 0.022107 -0.209139 + +Polar angle tht: 2.6616; Azimuth angle phi: 5.6287 +Force: -2.120874 1.812918 5.875114 +Torque: -0.638160 0.022786 -0.205129 + +Polar angle tht: 2.6616; Azimuth angle phi: 5.6723 +Force: -2.196032 1.709994 5.879305 +Torque: -0.601308 0.023421 -0.199558 + +Polar angle tht: 2.6616; Azimuth angle phi: 5.7160 +Force: -2.267003 1.603477 5.883184 +Torque: -0.563305 0.024011 -0.192469 + +Polar angle tht: 2.6616; Azimuth angle phi: 5.7596 +Force: -2.333584 1.493584 5.886754 +Torque: -0.524225 0.024557 -0.183914 + +Polar angle tht: 2.6616; Azimuth angle phi: 5.8032 +Force: -2.395583 1.380537 5.890019 +Torque: -0.484142 0.025059 -0.173960 + +Polar angle tht: 2.6616; Azimuth angle phi: 5.8469 +Force: -2.452822 1.264568 5.892984 +Torque: -0.443132 0.025516 -0.162682 + +Polar angle tht: 2.6616; Azimuth angle phi: 5.8905 +Force: -2.505133 1.145919 5.895652 +Torque: -0.401274 0.025929 -0.150166 + +Polar angle tht: 2.6616; Azimuth angle phi: 5.9341 +Force: -2.552363 1.024834 5.898028 +Torque: -0.358647 0.026298 -0.136507 + +Polar angle tht: 2.6616; Azimuth angle phi: 5.9778 +Force: -2.594374 0.901569 5.900114 +Torque: -0.315334 0.026623 -0.121810 + +Polar angle tht: 2.6616; Azimuth angle phi: 6.0214 +Force: -2.631040 0.776382 5.901915 +Torque: -0.271418 0.026905 -0.106185 + +Polar angle tht: 2.6616; Azimuth angle phi: 6.0650 +Force: -2.662252 0.649537 5.903432 +Torque: -0.226981 0.027142 -0.089752 + +Polar angle tht: 2.6616; Azimuth angle phi: 6.1087 +Force: -2.687918 0.521305 5.904671 +Torque: -0.182110 0.027337 -0.072636 + +Polar angle tht: 2.6616; Azimuth angle phi: 6.1523 +Force: -2.707961 0.391959 5.905631 +Torque: -0.136890 0.027488 -0.054967 + +Polar angle tht: 2.6616; Azimuth angle phi: 6.1959 +Force: -2.722320 0.261773 5.906316 +Torque: -0.091408 0.027596 -0.036880 + +Polar angle tht: 2.6616; Azimuth angle phi: 6.2396 +Force: -2.730953 0.131027 5.906726 +Torque: -0.045751 0.027661 -0.018513 + +Polar angle tht: 2.6616; Azimuth angle phi: 6.2832 +Force: -2.733833 0.000000 5.906863 +Torque: -0.000006 0.027682 -0.000004 + +Polar angle tht: 2.7053; Azimuth angle phi: 0.0000 +Force: -2.526477 0.000000 6.121976 +Torque: -0.000006 0.026405 -0.000004 + +Polar angle tht: 2.7053; Azimuth angle phi: 0.0436 +Force: -2.523839 -0.121713 6.121839 +Torque: 0.042617 0.026384 0.015501 + +Polar angle tht: 2.7053; Azimuth angle phi: 0.0873 +Force: -2.515933 -0.243169 6.121428 +Torque: 0.085159 0.026320 0.030887 + +Polar angle tht: 2.7053; Azimuth angle phi: 0.1309 +Force: -2.502781 -0.364109 6.120743 +Torque: 0.127538 0.026215 0.046039 + +Polar angle tht: 2.7053; Azimuth angle phi: 0.1745 +Force: -2.484423 -0.484279 6.119782 +Torque: 0.169673 0.026067 0.060840 + +Polar angle tht: 2.7053; Azimuth angle phi: 0.2182 +Force: -2.460911 -0.603425 6.118545 +Torque: 0.211482 0.025876 0.075178 + +Polar angle tht: 2.7053; Azimuth angle phi: 0.2618 +Force: -2.432313 -0.721294 6.117030 +Torque: 0.252888 0.025644 0.088943 + +Polar angle tht: 2.7053; Azimuth angle phi: 0.3054 +Force: -2.398713 -0.837641 6.115235 +Torque: 0.293809 0.025369 0.102032 + +Polar angle tht: 2.7053; Azimuth angle phi: 0.3491 +Force: -2.360206 -0.952221 6.113157 +Torque: 0.334168 0.025051 0.114345 + +Polar angle tht: 2.7053; Azimuth angle phi: 0.3927 +Force: -2.316904 -1.064796 6.110796 +Torque: 0.373887 0.024691 0.125787 + +Polar angle tht: 2.7053; Azimuth angle phi: 0.4363 +Force: -2.268930 -1.175132 6.108148 +Torque: 0.412892 0.024289 0.136271 + +Polar angle tht: 2.7053; Azimuth angle phi: 0.4800 +Force: -2.216421 -1.283000 6.105211 +Torque: 0.451106 0.023844 0.145719 + +Polar angle tht: 2.7053; Azimuth angle phi: 0.5236 +Force: -2.159524 -1.388181 6.101982 +Torque: 0.488457 0.023356 0.154058 + +Polar angle tht: 2.7053; Azimuth angle phi: 0.5672 +Force: -2.098400 -1.490459 6.098459 +Torque: 0.524874 0.022826 0.161224 + +Polar angle tht: 2.7053; Azimuth angle phi: 0.6109 +Force: -2.033219 -1.589629 6.094640 +Torque: 0.560287 0.022254 0.167163 + +Polar angle tht: 2.7053; Azimuth angle phi: 0.6545 +Force: -1.964162 -1.685490 6.090522 +Torque: 0.594629 0.021639 0.171830 + +Polar angle tht: 2.7053; Azimuth angle phi: 0.6981 +Force: -1.891418 -1.777853 6.086105 +Torque: 0.627834 0.020982 0.175189 + +Polar angle tht: 2.7053; Azimuth angle phi: 0.7418 +Force: -1.815186 -1.866536 6.081385 +Torque: 0.659839 0.020284 0.177214 + +Polar angle tht: 2.7053; Azimuth angle phi: 0.7854 +Force: -1.735671 -1.951367 6.076362 +Torque: 0.690582 0.019544 0.177892 + +Polar angle tht: 2.7053; Azimuth angle phi: 0.8290 +Force: -1.653085 -2.032184 6.071036 +Torque: 0.720006 0.018762 0.177215 + +Polar angle tht: 2.7053; Azimuth angle phi: 0.8727 +Force: -1.567648 -2.108833 6.065406 +Torque: 0.748054 0.017940 0.175189 + +Polar angle tht: 2.7053; Azimuth angle phi: 0.9163 +Force: -1.479581 -2.181173 6.059474 +Torque: 0.774673 0.017078 0.171830 + +Polar angle tht: 2.7053; Azimuth angle phi: 0.9599 +Force: -1.389113 -2.249071 6.053240 +Torque: 0.799813 0.016176 0.167164 + +Polar angle tht: 2.7053; Azimuth angle phi: 1.0036 +Force: -1.296473 -2.312405 6.046706 +Torque: 0.823425 0.015235 0.161225 + +Polar angle tht: 2.7053; Azimuth angle phi: 1.0472 +Force: -1.201895 -2.371066 6.039876 +Torque: 0.845465 0.014256 0.154059 + +Polar angle tht: 2.7053; Azimuth angle phi: 1.0908 +Force: -1.105613 -2.424953 6.032753 +Torque: 0.865891 0.013239 0.145721 + +Polar angle tht: 2.7053; Azimuth angle phi: 1.1345 +Force: -1.007861 -2.473979 6.025343 +Torque: 0.884664 0.012187 0.136273 + +Polar angle tht: 2.7053; Azimuth angle phi: 1.1781 +Force: -0.908875 -2.518065 6.017652 +Torque: 0.901750 0.011100 0.125789 + +Polar angle tht: 2.7053; Azimuth angle phi: 1.2217 +Force: -0.808887 -2.557146 6.009686 +Torque: 0.917115 0.009979 0.114347 + +Polar angle tht: 2.7053; Azimuth angle phi: 1.2654 +Force: -0.708129 -2.591166 6.001455 +Torque: 0.930732 0.008826 0.102035 + +Polar angle tht: 2.7053; Azimuth angle phi: 1.3090 +Force: -0.606830 -2.620082 5.992967 +Torque: 0.942573 0.007642 0.088946 + +Polar angle tht: 2.7053; Azimuth angle phi: 1.3526 +Force: -0.505216 -2.643860 5.984233 +Torque: 0.952618 0.006430 0.075181 + +Polar angle tht: 2.7053; Azimuth angle phi: 1.3963 +Force: -0.403508 -2.662479 5.975265 +Torque: 0.960847 0.005190 0.060843 + +Polar angle tht: 2.7053; Azimuth angle phi: 1.4399 +Force: -0.301924 -2.675927 5.966076 +Torque: 0.967246 0.003925 0.046042 + +Polar angle tht: 2.7053; Azimuth angle phi: 1.4835 +Force: -0.200675 -2.684203 5.956682 +Torque: 0.971802 0.002637 0.030891 + +Polar angle tht: 2.7053; Azimuth angle phi: 1.5272 +Force: -0.099967 -2.687318 5.947096 +Torque: 0.974507 0.001328 0.015504 + +Polar angle tht: 2.7053; Azimuth angle phi: 1.5708 +Force: 0.000000 -2.685291 5.937337 +Torque: 0.975356 0.000000 0.000000 + +Polar angle tht: 2.7053; Azimuth angle phi: 1.6144 +Force: 0.099967 -2.687318 5.947096 +Torque: 0.974507 -0.001328 -0.015504 + +Polar angle tht: 2.7053; Azimuth angle phi: 1.6581 +Force: 0.200675 -2.684203 5.956682 +Torque: 0.971802 -0.002637 -0.030891 + +Polar angle tht: 2.7053; Azimuth angle phi: 1.7017 +Force: 0.301924 -2.675927 5.966076 +Torque: 0.967246 -0.003925 -0.046042 + +Polar angle tht: 2.7053; Azimuth angle phi: 1.7453 +Force: 0.403508 -2.662479 5.975265 +Torque: 0.960847 -0.005190 -0.060843 + +Polar angle tht: 2.7053; Azimuth angle phi: 1.7890 +Force: 0.505216 -2.643860 5.984233 +Torque: 0.952618 -0.006430 -0.075181 + +Polar angle tht: 2.7053; Azimuth angle phi: 1.8326 +Force: 0.606830 -2.620082 5.992967 +Torque: 0.942573 -0.007642 -0.088946 + +Polar angle tht: 2.7053; Azimuth angle phi: 1.8762 +Force: 0.708129 -2.591166 6.001455 +Torque: 0.930732 -0.008826 -0.102035 + +Polar angle tht: 2.7053; Azimuth angle phi: 1.9199 +Force: 0.808887 -2.557146 6.009686 +Torque: 0.917115 -0.009979 -0.114347 + +Polar angle tht: 2.7053; Azimuth angle phi: 1.9635 +Force: 0.908875 -2.518065 6.017652 +Torque: 0.901750 -0.011100 -0.125789 + +Polar angle tht: 2.7053; Azimuth angle phi: 2.0071 +Force: 1.007861 -2.473979 6.025343 +Torque: 0.884664 -0.012187 -0.136273 + +Polar angle tht: 2.7053; Azimuth angle phi: 2.0508 +Force: 1.105613 -2.424953 6.032753 +Torque: 0.865891 -0.013239 -0.145721 + +Polar angle tht: 2.7053; Azimuth angle phi: 2.0944 +Force: 1.201895 -2.371066 6.039876 +Torque: 0.845465 -0.014256 -0.154059 + +Polar angle tht: 2.7053; Azimuth angle phi: 2.1380 +Force: 1.296473 -2.312405 6.046706 +Torque: 0.823425 -0.015235 -0.161225 + +Polar angle tht: 2.7053; Azimuth angle phi: 2.1817 +Force: 1.389113 -2.249071 6.053240 +Torque: 0.799813 -0.016176 -0.167164 + +Polar angle tht: 2.7053; Azimuth angle phi: 2.2253 +Force: 1.479581 -2.181173 6.059474 +Torque: 0.774673 -0.017078 -0.171830 + +Polar angle tht: 2.7053; Azimuth angle phi: 2.2689 +Force: 1.567648 -2.108833 6.065406 +Torque: 0.748054 -0.017940 -0.175189 + +Polar angle tht: 2.7053; Azimuth angle phi: 2.3126 +Force: 1.653085 -2.032184 6.071036 +Torque: 0.720006 -0.018762 -0.177215 + +Polar angle tht: 2.7053; Azimuth angle phi: 2.3562 +Force: 1.735671 -1.951367 6.076362 +Torque: 0.690582 -0.019544 -0.177892 + +Polar angle tht: 2.7053; Azimuth angle phi: 2.3998 +Force: 1.815186 -1.866536 6.081385 +Torque: 0.659839 -0.020284 -0.177214 + +Polar angle tht: 2.7053; Azimuth angle phi: 2.4435 +Force: 1.891418 -1.777853 6.086105 +Torque: 0.627834 -0.020982 -0.175189 + +Polar angle tht: 2.7053; Azimuth angle phi: 2.4871 +Force: 1.964162 -1.685490 6.090522 +Torque: 0.594629 -0.021639 -0.171830 + +Polar angle tht: 2.7053; Azimuth angle phi: 2.5307 +Force: 2.033219 -1.589629 6.094640 +Torque: 0.560287 -0.022254 -0.167163 + +Polar angle tht: 2.7053; Azimuth angle phi: 2.5744 +Force: 2.098400 -1.490459 6.098459 +Torque: 0.524874 -0.022826 -0.161224 + +Polar angle tht: 2.7053; Azimuth angle phi: 2.6180 +Force: 2.159524 -1.388181 6.101982 +Torque: 0.488457 -0.023356 -0.154058 + +Polar angle tht: 2.7053; Azimuth angle phi: 2.6616 +Force: 2.216421 -1.283000 6.105211 +Torque: 0.451106 -0.023844 -0.145719 + +Polar angle tht: 2.7053; Azimuth angle phi: 2.7053 +Force: 2.268930 -1.175132 6.108148 +Torque: 0.412892 -0.024289 -0.136271 + +Polar angle tht: 2.7053; Azimuth angle phi: 2.7489 +Force: 2.316904 -1.064796 6.110796 +Torque: 0.373887 -0.024691 -0.125787 + +Polar angle tht: 2.7053; Azimuth angle phi: 2.7925 +Force: 2.360206 -0.952221 6.113157 +Torque: 0.334168 -0.025051 -0.114345 + +Polar angle tht: 2.7053; Azimuth angle phi: 2.8362 +Force: 2.398713 -0.837641 6.115235 +Torque: 0.293809 -0.025369 -0.102032 + +Polar angle tht: 2.7053; Azimuth angle phi: 2.8798 +Force: 2.432313 -0.721294 6.117030 +Torque: 0.252888 -0.025644 -0.088943 + +Polar angle tht: 2.7053; Azimuth angle phi: 2.9234 +Force: 2.460911 -0.603425 6.118545 +Torque: 0.211482 -0.025876 -0.075178 + +Polar angle tht: 2.7053; Azimuth angle phi: 2.9671 +Force: 2.484423 -0.484279 6.119782 +Torque: 0.169673 -0.026067 -0.060840 + +Polar angle tht: 2.7053; Azimuth angle phi: 3.0107 +Force: 2.502781 -0.364109 6.120743 +Torque: 0.127538 -0.026215 -0.046039 + +Polar angle tht: 2.7053; Azimuth angle phi: 3.0543 +Force: 2.515933 -0.243169 6.121428 +Torque: 0.085159 -0.026320 -0.030887 + +Polar angle tht: 2.7053; Azimuth angle phi: 3.0980 +Force: 2.523839 -0.121713 6.121839 +Torque: 0.042617 -0.026384 -0.015501 + +Polar angle tht: 2.7053; Azimuth angle phi: 3.1416 +Force: 2.526477 0.000000 6.121976 +Torque: -0.000006 -0.026405 0.000004 + +Polar angle tht: 2.7053; Azimuth angle phi: 3.1852 +Force: 2.523839 0.121713 6.121839 +Torque: -0.042630 -0.026384 0.015508 + +Polar angle tht: 2.7053; Azimuth angle phi: 3.2289 +Force: 2.515933 0.243169 6.121428 +Torque: -0.085172 -0.026320 0.030895 + +Polar angle tht: 2.7053; Azimuth angle phi: 3.2725 +Force: 2.502781 0.364109 6.120743 +Torque: -0.127550 -0.026215 0.046046 + +Polar angle tht: 2.7053; Azimuth angle phi: 3.3161 +Force: 2.484423 0.484279 6.119782 +Torque: -0.169685 -0.026067 0.060847 + +Polar angle tht: 2.7053; Azimuth angle phi: 3.3598 +Force: 2.460911 0.603425 6.118545 +Torque: -0.211495 -0.025876 0.075185 + +Polar angle tht: 2.7053; Azimuth angle phi: 3.4034 +Force: 2.432313 0.721294 6.117030 +Torque: -0.252900 -0.025644 0.088951 + +Polar angle tht: 2.7053; Azimuth angle phi: 3.4470 +Force: 2.398713 0.837641 6.115235 +Torque: -0.293822 -0.025369 0.102039 + +Polar angle tht: 2.7053; Azimuth angle phi: 3.4907 +Force: 2.360206 0.952221 6.113157 +Torque: -0.334181 -0.025051 0.114352 + +Polar angle tht: 2.7053; Azimuth angle phi: 3.5343 +Force: 2.316904 1.064796 6.110796 +Torque: -0.373900 -0.024691 0.125794 + +Polar angle tht: 2.7053; Azimuth angle phi: 3.5779 +Force: 2.268930 1.175132 6.108148 +Torque: -0.412904 -0.024289 0.136278 + +Polar angle tht: 2.7053; Azimuth angle phi: 3.6216 +Force: 2.216421 1.283000 6.105211 +Torque: -0.451119 -0.023844 0.145726 + +Polar angle tht: 2.7053; Azimuth angle phi: 3.6652 +Force: 2.159524 1.388181 6.101982 +Torque: -0.488470 -0.023356 0.154064 + +Polar angle tht: 2.7053; Azimuth angle phi: 3.7088 +Force: 2.098400 1.490459 6.098459 +Torque: -0.524887 -0.022826 0.161230 + +Polar angle tht: 2.7053; Azimuth angle phi: 3.7525 +Force: 2.033219 1.589629 6.094640 +Torque: -0.560300 -0.022254 0.167169 + +Polar angle tht: 2.7053; Azimuth angle phi: 3.7961 +Force: 1.964162 1.685490 6.090522 +Torque: -0.594642 -0.021639 0.171836 + +Polar angle tht: 2.7053; Azimuth angle phi: 3.8397 +Force: 1.891418 1.777853 6.086105 +Torque: -0.627847 -0.020982 0.175194 + +Polar angle tht: 2.7053; Azimuth angle phi: 3.8834 +Force: 1.815186 1.866536 6.081385 +Torque: -0.659852 -0.020284 0.177220 + +Polar angle tht: 2.7053; Azimuth angle phi: 3.9270 +Force: 1.735671 1.951367 6.076362 +Torque: -0.690595 -0.019544 0.177897 + +Polar angle tht: 2.7053; Azimuth angle phi: 3.9706 +Force: 1.653085 2.032184 6.071036 +Torque: -0.720019 -0.018762 0.177220 + +Polar angle tht: 2.7053; Azimuth angle phi: 4.0143 +Force: 1.567648 2.108833 6.065406 +Torque: -0.748067 -0.017940 0.175194 + +Polar angle tht: 2.7053; Azimuth angle phi: 4.0579 +Force: 1.479581 2.181173 6.059474 +Torque: -0.774686 -0.017078 0.171835 + +Polar angle tht: 2.7053; Azimuth angle phi: 4.1015 +Force: 1.389113 2.249071 6.053240 +Torque: -0.799826 -0.016176 0.167168 + +Polar angle tht: 2.7053; Azimuth angle phi: 4.1452 +Force: 1.296473 2.312405 6.046706 +Torque: -0.823438 -0.015235 0.161229 + +Polar angle tht: 2.7053; Azimuth angle phi: 4.1888 +Force: 1.201895 2.371066 6.039876 +Torque: -0.845478 -0.014256 0.154063 + +Polar angle tht: 2.7053; Azimuth angle phi: 4.2324 +Force: 1.105613 2.424953 6.032753 +Torque: -0.865904 -0.013239 0.145724 + +Polar angle tht: 2.7053; Azimuth angle phi: 4.2761 +Force: 1.007861 2.473979 6.025343 +Torque: -0.884678 -0.012187 0.136276 + +Polar angle tht: 2.7053; Azimuth angle phi: 4.3197 +Force: 0.908875 2.518065 6.017652 +Torque: -0.901763 -0.011100 0.125792 + +Polar angle tht: 2.7053; Azimuth angle phi: 4.3633 +Force: 0.808887 2.557146 6.009686 +Torque: -0.917129 -0.009979 0.114349 + +Polar angle tht: 2.7053; Azimuth angle phi: 4.4070 +Force: 0.708129 2.591166 6.001455 +Torque: -0.930745 -0.008826 0.102037 + +Polar angle tht: 2.7053; Azimuth angle phi: 4.4506 +Force: 0.606830 2.620082 5.992967 +Torque: -0.942587 -0.007642 0.088948 + +Polar angle tht: 2.7053; Azimuth angle phi: 4.4942 +Force: 0.505216 2.643860 5.984233 +Torque: -0.952631 -0.006430 0.075182 + +Polar angle tht: 2.7053; Azimuth angle phi: 4.5379 +Force: 0.403508 2.662479 5.975265 +Torque: -0.960861 -0.005190 0.060844 + +Polar angle tht: 2.7053; Azimuth angle phi: 4.5815 +Force: 0.301924 2.675927 5.966076 +Torque: -0.967259 -0.003925 0.046043 + +Polar angle tht: 2.7053; Azimuth angle phi: 4.6251 +Force: 0.200675 2.684203 5.956682 +Torque: -0.971815 -0.002637 0.030891 + +Polar angle tht: 2.7053; Azimuth angle phi: 4.6688 +Force: 0.099967 2.687318 5.947096 +Torque: -0.974520 -0.001328 0.015505 + +Polar angle tht: 2.7053; Azimuth angle phi: 4.7124 +Force: 0.000000 2.685291 5.937337 +Torque: -0.975370 0.000000 -0.000000 + +Polar angle tht: 2.7053; Azimuth angle phi: 4.7560 +Force: -0.099967 2.687318 5.947096 +Torque: -0.974520 0.001328 -0.015505 + +Polar angle tht: 2.7053; Azimuth angle phi: 4.7997 +Force: -0.200675 2.684203 5.956682 +Torque: -0.971815 0.002637 -0.030891 + +Polar angle tht: 2.7053; Azimuth angle phi: 4.8433 +Force: -0.301924 2.675927 5.966076 +Torque: -0.967259 0.003925 -0.046043 + +Polar angle tht: 2.7053; Azimuth angle phi: 4.8869 +Force: -0.403508 2.662479 5.975265 +Torque: -0.960861 0.005190 -0.060844 + +Polar angle tht: 2.7053; Azimuth angle phi: 4.9306 +Force: -0.505216 2.643860 5.984233 +Torque: -0.952631 0.006430 -0.075182 + +Polar angle tht: 2.7053; Azimuth angle phi: 4.9742 +Force: -0.606830 2.620082 5.992967 +Torque: -0.942587 0.007642 -0.088948 + +Polar angle tht: 2.7053; Azimuth angle phi: 5.0178 +Force: -0.708129 2.591166 6.001455 +Torque: -0.930745 0.008826 -0.102037 + +Polar angle tht: 2.7053; Azimuth angle phi: 5.0615 +Force: -0.808887 2.557146 6.009686 +Torque: -0.917129 0.009979 -0.114349 + +Polar angle tht: 2.7053; Azimuth angle phi: 5.1051 +Force: -0.908875 2.518065 6.017652 +Torque: -0.901763 0.011100 -0.125792 + +Polar angle tht: 2.7053; Azimuth angle phi: 5.1487 +Force: -1.007861 2.473979 6.025343 +Torque: -0.884678 0.012187 -0.136276 + +Polar angle tht: 2.7053; Azimuth angle phi: 5.1924 +Force: -1.105613 2.424953 6.032753 +Torque: -0.865904 0.013239 -0.145724 + +Polar angle tht: 2.7053; Azimuth angle phi: 5.2360 +Force: -1.201895 2.371066 6.039876 +Torque: -0.845478 0.014256 -0.154063 + +Polar angle tht: 2.7053; Azimuth angle phi: 5.2796 +Force: -1.296473 2.312405 6.046706 +Torque: -0.823438 0.015235 -0.161229 + +Polar angle tht: 2.7053; Azimuth angle phi: 5.3233 +Force: -1.389113 2.249071 6.053240 +Torque: -0.799826 0.016176 -0.167168 + +Polar angle tht: 2.7053; Azimuth angle phi: 5.3669 +Force: -1.479581 2.181173 6.059474 +Torque: -0.774686 0.017078 -0.171835 + +Polar angle tht: 2.7053; Azimuth angle phi: 5.4105 +Force: -1.567648 2.108833 6.065406 +Torque: -0.748067 0.017940 -0.175194 + +Polar angle tht: 2.7053; Azimuth angle phi: 5.4542 +Force: -1.653085 2.032184 6.071036 +Torque: -0.720019 0.018762 -0.177220 + +Polar angle tht: 2.7053; Azimuth angle phi: 5.4978 +Force: -1.735671 1.951367 6.076362 +Torque: -0.690595 0.019544 -0.177897 + +Polar angle tht: 2.7053; Azimuth angle phi: 5.5414 +Force: -1.815186 1.866536 6.081385 +Torque: -0.659852 0.020284 -0.177220 + +Polar angle tht: 2.7053; Azimuth angle phi: 5.5851 +Force: -1.891418 1.777853 6.086105 +Torque: -0.627847 0.020982 -0.175194 + +Polar angle tht: 2.7053; Azimuth angle phi: 5.6287 +Force: -1.964162 1.685490 6.090522 +Torque: -0.594642 0.021639 -0.171836 + +Polar angle tht: 2.7053; Azimuth angle phi: 5.6723 +Force: -2.033219 1.589629 6.094640 +Torque: -0.560300 0.022254 -0.167169 + +Polar angle tht: 2.7053; Azimuth angle phi: 5.7160 +Force: -2.098400 1.490459 6.098459 +Torque: -0.524887 0.022826 -0.161230 + +Polar angle tht: 2.7053; Azimuth angle phi: 5.7596 +Force: -2.159524 1.388181 6.101982 +Torque: -0.488470 0.023356 -0.154064 + +Polar angle tht: 2.7053; Azimuth angle phi: 5.8032 +Force: -2.216421 1.283000 6.105211 +Torque: -0.451119 0.023844 -0.145726 + +Polar angle tht: 2.7053; Azimuth angle phi: 5.8469 +Force: -2.268930 1.175132 6.108148 +Torque: -0.412904 0.024289 -0.136278 + +Polar angle tht: 2.7053; Azimuth angle phi: 5.8905 +Force: -2.316904 1.064796 6.110796 +Torque: -0.373900 0.024691 -0.125794 + +Polar angle tht: 2.7053; Azimuth angle phi: 5.9341 +Force: -2.360206 0.952221 6.113157 +Torque: -0.334181 0.025051 -0.114352 + +Polar angle tht: 2.7053; Azimuth angle phi: 5.9778 +Force: -2.398713 0.837641 6.115235 +Torque: -0.293822 0.025369 -0.102039 + +Polar angle tht: 2.7053; Azimuth angle phi: 6.0214 +Force: -2.432313 0.721294 6.117030 +Torque: -0.252900 0.025644 -0.088951 + +Polar angle tht: 2.7053; Azimuth angle phi: 6.0650 +Force: -2.460911 0.603425 6.118545 +Torque: -0.211495 0.025876 -0.075185 + +Polar angle tht: 2.7053; Azimuth angle phi: 6.1087 +Force: -2.484423 0.484279 6.119782 +Torque: -0.169685 0.026067 -0.060847 + +Polar angle tht: 2.7053; Azimuth angle phi: 6.1523 +Force: -2.502781 0.364109 6.120743 +Torque: -0.127550 0.026215 -0.046046 + +Polar angle tht: 2.7053; Azimuth angle phi: 6.1959 +Force: -2.515933 0.243169 6.121428 +Torque: -0.085172 0.026320 -0.030895 + +Polar angle tht: 2.7053; Azimuth angle phi: 6.2396 +Force: -2.523839 0.121713 6.121839 +Torque: -0.042630 0.026384 -0.015508 + +Polar angle tht: 2.7053; Azimuth angle phi: 6.2832 +Force: -2.526477 0.000000 6.121976 +Torque: -0.000006 0.026405 -0.000004 + +Polar angle tht: 2.7489; Azimuth angle phi: 0.0000 +Force: -2.305531 0.000000 6.318725 +Torque: -0.000007 0.024829 -0.000003 + +Polar angle tht: 2.7489; Azimuth angle phi: 0.0436 +Force: -2.303145 -0.111646 6.318591 +Torque: 0.039211 0.024809 0.012709 + +Polar angle tht: 2.7489; Azimuth angle phi: 0.0873 +Force: -2.295995 -0.223058 6.318187 +Torque: 0.078354 0.024748 0.025325 + +Polar angle tht: 2.7489; Azimuth angle phi: 0.1309 +Force: -2.284100 -0.334003 6.317515 +Torque: 0.117347 0.024646 0.037749 + +Polar angle tht: 2.7489; Azimuth angle phi: 0.1745 +Force: -2.267494 -0.444249 6.316573 +Torque: 0.156115 0.024504 0.049885 + +Polar angle tht: 2.7489; Azimuth angle phi: 0.2182 +Force: -2.246224 -0.553564 6.315361 +Torque: 0.194585 0.024321 0.061641 + +Polar angle tht: 2.7489; Azimuth angle phi: 0.2618 +Force: -2.220350 -0.661722 6.313877 +Torque: 0.232683 0.024097 0.072928 + +Polar angle tht: 2.7489; Azimuth angle phi: 0.3054 +Force: -2.189943 -0.768497 6.312121 +Torque: 0.270335 0.023833 0.083660 + +Polar angle tht: 2.7489; Azimuth angle phi: 0.3491 +Force: -2.155089 -0.873669 6.310092 +Torque: 0.307471 0.023528 0.093756 + +Polar angle tht: 2.7489; Azimuth angle phi: 0.3927 +Force: -2.115884 -0.977019 6.307788 +Torque: 0.344018 0.023182 0.103137 + +Polar angle tht: 2.7489; Azimuth angle phi: 0.4363 +Force: -2.072437 -1.078335 6.305208 +Torque: 0.379908 0.022796 0.111734 + +Polar angle tht: 2.7489; Azimuth angle phi: 0.4800 +Force: -2.024867 -1.177410 6.302351 +Torque: 0.415071 0.022370 0.119481 + +Polar angle tht: 2.7489; Azimuth angle phi: 0.5236 +Force: -1.973305 -1.274042 6.299215 +Torque: 0.449441 0.021904 0.126318 + +Polar angle tht: 2.7489; Azimuth angle phi: 0.5672 +Force: -1.917891 -1.368036 6.295801 +Torque: 0.482951 0.021397 0.132194 + +Polar angle tht: 2.7489; Azimuth angle phi: 0.6109 +Force: -1.858775 -1.459203 6.292105 +Torque: 0.515538 0.020851 0.137063 + +Polar angle tht: 2.7489; Azimuth angle phi: 0.6545 +Force: -1.796116 -1.547361 6.288129 +Torque: 0.547140 0.020265 0.140890 + +Polar angle tht: 2.7489; Azimuth angle phi: 0.6981 +Force: -1.730081 -1.632335 6.283872 +Torque: 0.577696 0.019640 0.143644 + +Polar angle tht: 2.7489; Azimuth angle phi: 0.7418 +Force: -1.660845 -1.713961 6.279333 +Torque: 0.607149 0.018975 0.145305 + +Polar angle tht: 2.7489; Azimuth angle phi: 0.7854 +Force: -1.588588 -1.792078 6.274513 +Torque: 0.635441 0.018272 0.145860 + +Polar angle tht: 2.7489; Azimuth angle phi: 0.8290 +Force: -1.513499 -1.866538 6.269413 +Torque: 0.662520 0.017532 0.145305 + +Polar angle tht: 2.7489; Azimuth angle phi: 0.8727 +Force: -1.435771 -1.937200 6.264034 +Torque: 0.688333 0.016753 0.143645 + +Polar angle tht: 2.7489; Azimuth angle phi: 0.9163 +Force: -1.355600 -2.003932 6.258379 +Torque: 0.712832 0.015938 0.140891 + +Polar angle tht: 2.7489; Azimuth angle phi: 0.9599 +Force: -1.273189 -2.066612 6.252449 +Torque: 0.735970 0.015086 0.137064 + +Polar angle tht: 2.7489; Azimuth angle phi: 1.0036 +Force: -1.188743 -2.125127 6.246248 +Torque: 0.757703 0.014200 0.132195 + +Polar angle tht: 2.7489; Azimuth angle phi: 1.0472 +Force: -1.102468 -2.179373 6.239780 +Torque: 0.777989 0.013278 0.126319 + +Polar angle tht: 2.7489; Azimuth angle phi: 1.0908 +Force: -1.014572 -2.229258 6.233050 +Torque: 0.796791 0.012324 0.119482 + +Polar angle tht: 2.7489; Azimuth angle phi: 1.1345 +Force: -0.925266 -2.274698 6.226065 +Torque: 0.814073 0.011336 0.111736 + +Polar angle tht: 2.7489; Azimuth angle phi: 1.1781 +Force: -0.834760 -2.315619 6.218830 +Torque: 0.829802 0.010318 0.103139 + +Polar angle tht: 2.7489; Azimuth angle phi: 1.2217 +Force: -0.743261 -2.351958 6.211353 +Torque: 0.843949 0.009270 0.093758 + +Polar angle tht: 2.7489; Azimuth angle phi: 1.2654 +Force: -0.650980 -2.383662 6.203642 +Torque: 0.856486 0.008193 0.083662 + +Polar angle tht: 2.7489; Azimuth angle phi: 1.3090 +Force: -0.558120 -2.410688 6.195709 +Torque: 0.867390 0.007089 0.072931 + +Polar angle tht: 2.7489; Azimuth angle phi: 1.3526 +Force: -0.464887 -2.433001 6.187562 +Torque: 0.876641 0.005960 0.061644 + +Polar angle tht: 2.7489; Azimuth angle phi: 1.3963 +Force: -0.371481 -2.450580 6.179213 +Torque: 0.884222 0.004807 0.049887 + +Polar angle tht: 2.7489; Azimuth angle phi: 1.4399 +Force: -0.278099 -2.463409 6.170677 +Torque: 0.890118 0.003633 0.037752 + +Polar angle tht: 2.7489; Azimuth angle phi: 1.4835 +Force: -0.184934 -2.471485 6.161965 +Torque: 0.894318 0.002439 0.025329 + +Polar angle tht: 2.7489; Azimuth angle phi: 1.5272 +Force: -0.092173 -2.474814 6.153093 +Torque: 0.896816 0.001227 0.012713 + +Polar angle tht: 2.7489; Azimuth angle phi: 1.5708 +Force: 0.000000 -2.473411 6.144077 +Torque: 0.897605 0.000000 0.000000 + +Polar angle tht: 2.7489; Azimuth angle phi: 1.6144 +Force: 0.092173 -2.474814 6.153093 +Torque: 0.896816 -0.001227 -0.012713 + +Polar angle tht: 2.7489; Azimuth angle phi: 1.6581 +Force: 0.184934 -2.471485 6.161965 +Torque: 0.894318 -0.002439 -0.025329 + +Polar angle tht: 2.7489; Azimuth angle phi: 1.7017 +Force: 0.278099 -2.463409 6.170677 +Torque: 0.890118 -0.003633 -0.037752 + +Polar angle tht: 2.7489; Azimuth angle phi: 1.7453 +Force: 0.371481 -2.450580 6.179213 +Torque: 0.884222 -0.004807 -0.049887 + +Polar angle tht: 2.7489; Azimuth angle phi: 1.7890 +Force: 0.464887 -2.433001 6.187562 +Torque: 0.876641 -0.005960 -0.061644 + +Polar angle tht: 2.7489; Azimuth angle phi: 1.8326 +Force: 0.558120 -2.410688 6.195709 +Torque: 0.867390 -0.007089 -0.072931 + +Polar angle tht: 2.7489; Azimuth angle phi: 1.8762 +Force: 0.650980 -2.383662 6.203642 +Torque: 0.856486 -0.008193 -0.083662 + +Polar angle tht: 2.7489; Azimuth angle phi: 1.9199 +Force: 0.743261 -2.351958 6.211353 +Torque: 0.843949 -0.009270 -0.093758 + +Polar angle tht: 2.7489; Azimuth angle phi: 1.9635 +Force: 0.834760 -2.315619 6.218830 +Torque: 0.829802 -0.010318 -0.103139 + +Polar angle tht: 2.7489; Azimuth angle phi: 2.0071 +Force: 0.925266 -2.274698 6.226065 +Torque: 0.814073 -0.011336 -0.111736 + +Polar angle tht: 2.7489; Azimuth angle phi: 2.0508 +Force: 1.014572 -2.229258 6.233050 +Torque: 0.796791 -0.012324 -0.119482 + +Polar angle tht: 2.7489; Azimuth angle phi: 2.0944 +Force: 1.102468 -2.179373 6.239780 +Torque: 0.777989 -0.013278 -0.126319 + +Polar angle tht: 2.7489; Azimuth angle phi: 2.1380 +Force: 1.188743 -2.125127 6.246248 +Torque: 0.757703 -0.014200 -0.132195 + +Polar angle tht: 2.7489; Azimuth angle phi: 2.1817 +Force: 1.273189 -2.066612 6.252449 +Torque: 0.735970 -0.015086 -0.137064 + +Polar angle tht: 2.7489; Azimuth angle phi: 2.2253 +Force: 1.355600 -2.003932 6.258379 +Torque: 0.712832 -0.015938 -0.140891 + +Polar angle tht: 2.7489; Azimuth angle phi: 2.2689 +Force: 1.435771 -1.937200 6.264034 +Torque: 0.688333 -0.016753 -0.143645 + +Polar angle tht: 2.7489; Azimuth angle phi: 2.3126 +Force: 1.513499 -1.866538 6.269413 +Torque: 0.662520 -0.017532 -0.145305 + +Polar angle tht: 2.7489; Azimuth angle phi: 2.3562 +Force: 1.588588 -1.792078 6.274513 +Torque: 0.635441 -0.018272 -0.145860 + +Polar angle tht: 2.7489; Azimuth angle phi: 2.3998 +Force: 1.660845 -1.713961 6.279333 +Torque: 0.607149 -0.018975 -0.145305 + +Polar angle tht: 2.7489; Azimuth angle phi: 2.4435 +Force: 1.730081 -1.632335 6.283872 +Torque: 0.577696 -0.019640 -0.143644 + +Polar angle tht: 2.7489; Azimuth angle phi: 2.4871 +Force: 1.796116 -1.547361 6.288129 +Torque: 0.547140 -0.020265 -0.140890 + +Polar angle tht: 2.7489; Azimuth angle phi: 2.5307 +Force: 1.858775 -1.459203 6.292105 +Torque: 0.515538 -0.020851 -0.137063 + +Polar angle tht: 2.7489; Azimuth angle phi: 2.5744 +Force: 1.917891 -1.368036 6.295801 +Torque: 0.482951 -0.021397 -0.132194 + +Polar angle tht: 2.7489; Azimuth angle phi: 2.6180 +Force: 1.973305 -1.274042 6.299215 +Torque: 0.449441 -0.021904 -0.126318 + +Polar angle tht: 2.7489; Azimuth angle phi: 2.6616 +Force: 2.024867 -1.177410 6.302351 +Torque: 0.415071 -0.022370 -0.119481 + +Polar angle tht: 2.7489; Azimuth angle phi: 2.7053 +Force: 2.072437 -1.078335 6.305208 +Torque: 0.379908 -0.022796 -0.111734 + +Polar angle tht: 2.7489; Azimuth angle phi: 2.7489 +Force: 2.115884 -0.977019 6.307788 +Torque: 0.344018 -0.023182 -0.103137 + +Polar angle tht: 2.7489; Azimuth angle phi: 2.7925 +Force: 2.155089 -0.873669 6.310092 +Torque: 0.307471 -0.023528 -0.093756 + +Polar angle tht: 2.7489; Azimuth angle phi: 2.8362 +Force: 2.189943 -0.768497 6.312121 +Torque: 0.270335 -0.023833 -0.083660 + +Polar angle tht: 2.7489; Azimuth angle phi: 2.8798 +Force: 2.220350 -0.661722 6.313877 +Torque: 0.232683 -0.024097 -0.072928 + +Polar angle tht: 2.7489; Azimuth angle phi: 2.9234 +Force: 2.246224 -0.553564 6.315361 +Torque: 0.194585 -0.024321 -0.061641 + +Polar angle tht: 2.7489; Azimuth angle phi: 2.9671 +Force: 2.267494 -0.444249 6.316573 +Torque: 0.156115 -0.024504 -0.049885 + +Polar angle tht: 2.7489; Azimuth angle phi: 3.0107 +Force: 2.284100 -0.334003 6.317515 +Torque: 0.117347 -0.024646 -0.037749 + +Polar angle tht: 2.7489; Azimuth angle phi: 3.0543 +Force: 2.295995 -0.223058 6.318187 +Torque: 0.078354 -0.024748 -0.025325 + +Polar angle tht: 2.7489; Azimuth angle phi: 3.0980 +Force: 2.303145 -0.111646 6.318591 +Torque: 0.039211 -0.024809 -0.012709 + +Polar angle tht: 2.7489; Azimuth angle phi: 3.1416 +Force: 2.305531 0.000000 6.318725 +Torque: -0.000007 -0.024829 0.000003 + +Polar angle tht: 2.7489; Azimuth angle phi: 3.1852 +Force: 2.303145 0.111646 6.318591 +Torque: -0.039224 -0.024809 0.012716 + +Polar angle tht: 2.7489; Azimuth angle phi: 3.2289 +Force: 2.295995 0.223058 6.318187 +Torque: -0.078367 -0.024748 0.025332 + +Polar angle tht: 2.7489; Azimuth angle phi: 3.2725 +Force: 2.284100 0.334003 6.317515 +Torque: -0.117360 -0.024646 0.037755 + +Polar angle tht: 2.7489; Azimuth angle phi: 3.3161 +Force: 2.267494 0.444249 6.316573 +Torque: -0.156129 -0.024504 0.049891 + +Polar angle tht: 2.7489; Azimuth angle phi: 3.3598 +Force: 2.246224 0.553564 6.315361 +Torque: -0.194598 -0.024321 0.061648 + +Polar angle tht: 2.7489; Azimuth angle phi: 3.4034 +Force: 2.220350 0.661722 6.313877 +Torque: -0.232696 -0.024097 0.072935 + +Polar angle tht: 2.7489; Azimuth angle phi: 3.4470 +Force: 2.189943 0.768497 6.312121 +Torque: -0.270348 -0.023833 0.083667 + +Polar angle tht: 2.7489; Azimuth angle phi: 3.4907 +Force: 2.155089 0.873669 6.310092 +Torque: -0.307484 -0.023528 0.093762 + +Polar angle tht: 2.7489; Azimuth angle phi: 3.5343 +Force: 2.115884 0.977019 6.307788 +Torque: -0.344031 -0.023182 0.103144 + +Polar angle tht: 2.7489; Azimuth angle phi: 3.5779 +Force: 2.072437 1.078335 6.305208 +Torque: -0.379921 -0.022796 0.111741 + +Polar angle tht: 2.7489; Azimuth angle phi: 3.6216 +Force: 2.024867 1.177410 6.302351 +Torque: -0.415084 -0.022370 0.119487 + +Polar angle tht: 2.7489; Azimuth angle phi: 3.6652 +Force: 1.973305 1.274042 6.299215 +Torque: -0.449454 -0.021904 0.126324 + +Polar angle tht: 2.7489; Azimuth angle phi: 3.7088 +Force: 1.917891 1.368036 6.295801 +Torque: -0.482964 -0.021397 0.132199 + +Polar angle tht: 2.7489; Azimuth angle phi: 3.7525 +Force: 1.858775 1.459203 6.292105 +Torque: -0.515552 -0.020851 0.137069 + +Polar angle tht: 2.7489; Azimuth angle phi: 3.7961 +Force: 1.796116 1.547361 6.288129 +Torque: -0.547154 -0.020265 0.140895 + +Polar angle tht: 2.7489; Azimuth angle phi: 3.8397 +Force: 1.730081 1.632335 6.283872 +Torque: -0.577710 -0.019640 0.143649 + +Polar angle tht: 2.7489; Azimuth angle phi: 3.8834 +Force: 1.660845 1.713961 6.279333 +Torque: -0.607162 -0.018975 0.145310 + +Polar angle tht: 2.7489; Azimuth angle phi: 3.9270 +Force: 1.588588 1.792078 6.274513 +Torque: -0.635455 -0.018272 0.145865 + +Polar angle tht: 2.7489; Azimuth angle phi: 3.9706 +Force: 1.513499 1.866538 6.269413 +Torque: -0.662533 -0.017532 0.145310 + +Polar angle tht: 2.7489; Azimuth angle phi: 4.0143 +Force: 1.435771 1.937200 6.264034 +Torque: -0.688347 -0.016753 0.143649 + +Polar angle tht: 2.7489; Azimuth angle phi: 4.0579 +Force: 1.355600 2.003932 6.258379 +Torque: -0.712846 -0.015938 0.140895 + +Polar angle tht: 2.7489; Azimuth angle phi: 4.1015 +Force: 1.273189 2.066612 6.252449 +Torque: -0.735983 -0.015086 0.137068 + +Polar angle tht: 2.7489; Azimuth angle phi: 4.1452 +Force: 1.188743 2.125127 6.246248 +Torque: -0.757716 -0.014200 0.132198 + +Polar angle tht: 2.7489; Azimuth angle phi: 4.1888 +Force: 1.102468 2.179373 6.239780 +Torque: -0.778003 -0.013278 0.126323 + +Polar angle tht: 2.7489; Azimuth angle phi: 4.2324 +Force: 1.014572 2.229258 6.233050 +Torque: -0.796805 -0.012324 0.119485 + +Polar angle tht: 2.7489; Azimuth angle phi: 4.2761 +Force: 0.925266 2.274698 6.226065 +Torque: -0.814087 -0.011336 0.111739 + +Polar angle tht: 2.7489; Azimuth angle phi: 4.3197 +Force: 0.834760 2.315619 6.218830 +Torque: -0.829816 -0.010318 0.103142 + +Polar angle tht: 2.7489; Azimuth angle phi: 4.3633 +Force: 0.743261 2.351958 6.211353 +Torque: -0.843962 -0.009270 0.093760 + +Polar angle tht: 2.7489; Azimuth angle phi: 4.4070 +Force: 0.650980 2.383662 6.203642 +Torque: -0.856500 -0.008193 0.083665 + +Polar angle tht: 2.7489; Azimuth angle phi: 4.4506 +Force: 0.558120 2.410688 6.195709 +Torque: -0.867404 -0.007089 0.072932 + +Polar angle tht: 2.7489; Azimuth angle phi: 4.4942 +Force: 0.464887 2.433001 6.187562 +Torque: -0.876655 -0.005960 0.061645 + +Polar angle tht: 2.7489; Azimuth angle phi: 4.5379 +Force: 0.371481 2.450580 6.179213 +Torque: -0.884236 -0.004807 0.049889 + +Polar angle tht: 2.7489; Azimuth angle phi: 4.5815 +Force: 0.278099 2.463409 6.170677 +Torque: -0.890132 -0.003633 0.037753 + +Polar angle tht: 2.7489; Azimuth angle phi: 4.6251 +Force: 0.184934 2.471485 6.161965 +Torque: -0.894332 -0.002439 0.025329 + +Polar angle tht: 2.7489; Azimuth angle phi: 4.6688 +Force: 0.092173 2.474814 6.153093 +Torque: -0.896829 -0.001227 0.012713 + +Polar angle tht: 2.7489; Azimuth angle phi: 4.7124 +Force: 0.000000 2.473411 6.144077 +Torque: -0.897619 0.000000 -0.000000 + +Polar angle tht: 2.7489; Azimuth angle phi: 4.7560 +Force: -0.092173 2.474814 6.153093 +Torque: -0.896829 0.001227 -0.012713 + +Polar angle tht: 2.7489; Azimuth angle phi: 4.7997 +Force: -0.184934 2.471485 6.161965 +Torque: -0.894332 0.002439 -0.025329 + +Polar angle tht: 2.7489; Azimuth angle phi: 4.8433 +Force: -0.278099 2.463409 6.170677 +Torque: -0.890132 0.003633 -0.037753 + +Polar angle tht: 2.7489; Azimuth angle phi: 4.8869 +Force: -0.371481 2.450580 6.179213 +Torque: -0.884236 0.004807 -0.049889 + +Polar angle tht: 2.7489; Azimuth angle phi: 4.9306 +Force: -0.464887 2.433001 6.187562 +Torque: -0.876655 0.005960 -0.061645 + +Polar angle tht: 2.7489; Azimuth angle phi: 4.9742 +Force: -0.558120 2.410688 6.195709 +Torque: -0.867404 0.007089 -0.072932 + +Polar angle tht: 2.7489; Azimuth angle phi: 5.0178 +Force: -0.650980 2.383662 6.203642 +Torque: -0.856500 0.008193 -0.083665 + +Polar angle tht: 2.7489; Azimuth angle phi: 5.0615 +Force: -0.743261 2.351958 6.211353 +Torque: -0.843962 0.009270 -0.093760 + +Polar angle tht: 2.7489; Azimuth angle phi: 5.1051 +Force: -0.834760 2.315619 6.218830 +Torque: -0.829816 0.010318 -0.103142 + +Polar angle tht: 2.7489; Azimuth angle phi: 5.1487 +Force: -0.925266 2.274698 6.226065 +Torque: -0.814087 0.011336 -0.111739 + +Polar angle tht: 2.7489; Azimuth angle phi: 5.1924 +Force: -1.014572 2.229258 6.233050 +Torque: -0.796805 0.012324 -0.119485 + +Polar angle tht: 2.7489; Azimuth angle phi: 5.2360 +Force: -1.102468 2.179373 6.239780 +Torque: -0.778003 0.013278 -0.126323 + +Polar angle tht: 2.7489; Azimuth angle phi: 5.2796 +Force: -1.188743 2.125127 6.246248 +Torque: -0.757716 0.014200 -0.132198 + +Polar angle tht: 2.7489; Azimuth angle phi: 5.3233 +Force: -1.273189 2.066612 6.252449 +Torque: -0.735983 0.015086 -0.137068 + +Polar angle tht: 2.7489; Azimuth angle phi: 5.3669 +Force: -1.355600 2.003932 6.258379 +Torque: -0.712846 0.015938 -0.140895 + +Polar angle tht: 2.7489; Azimuth angle phi: 5.4105 +Force: -1.435771 1.937200 6.264034 +Torque: -0.688347 0.016753 -0.143649 + +Polar angle tht: 2.7489; Azimuth angle phi: 5.4542 +Force: -1.513499 1.866538 6.269413 +Torque: -0.662533 0.017532 -0.145310 + +Polar angle tht: 2.7489; Azimuth angle phi: 5.4978 +Force: -1.588588 1.792078 6.274513 +Torque: -0.635455 0.018272 -0.145865 + +Polar angle tht: 2.7489; Azimuth angle phi: 5.5414 +Force: -1.660845 1.713961 6.279333 +Torque: -0.607162 0.018975 -0.145310 + +Polar angle tht: 2.7489; Azimuth angle phi: 5.5851 +Force: -1.730081 1.632335 6.283872 +Torque: -0.577710 0.019640 -0.143649 + +Polar angle tht: 2.7489; Azimuth angle phi: 5.6287 +Force: -1.796116 1.547361 6.288129 +Torque: -0.547154 0.020265 -0.140895 + +Polar angle tht: 2.7489; Azimuth angle phi: 5.6723 +Force: -1.858775 1.459203 6.292105 +Torque: -0.515552 0.020851 -0.137069 + +Polar angle tht: 2.7489; Azimuth angle phi: 5.7160 +Force: -1.917891 1.368036 6.295801 +Torque: -0.482964 0.021397 -0.132199 + +Polar angle tht: 2.7489; Azimuth angle phi: 5.7596 +Force: -1.973305 1.274042 6.299215 +Torque: -0.449454 0.021904 -0.126324 + +Polar angle tht: 2.7489; Azimuth angle phi: 5.8032 +Force: -2.024867 1.177410 6.302351 +Torque: -0.415084 0.022370 -0.119487 + +Polar angle tht: 2.7489; Azimuth angle phi: 5.8469 +Force: -2.072437 1.078335 6.305208 +Torque: -0.379921 0.022796 -0.111741 + +Polar angle tht: 2.7489; Azimuth angle phi: 5.8905 +Force: -2.115884 0.977019 6.307788 +Torque: -0.344031 0.023182 -0.103144 + +Polar angle tht: 2.7489; Azimuth angle phi: 5.9341 +Force: -2.155089 0.873669 6.310092 +Torque: -0.307484 0.023528 -0.093762 + +Polar angle tht: 2.7489; Azimuth angle phi: 5.9778 +Force: -2.189943 0.768497 6.312121 +Torque: -0.270348 0.023833 -0.083667 + +Polar angle tht: 2.7489; Azimuth angle phi: 6.0214 +Force: -2.220350 0.661722 6.313877 +Torque: -0.232696 0.024097 -0.072935 + +Polar angle tht: 2.7489; Azimuth angle phi: 6.0650 +Force: -2.246224 0.553564 6.315361 +Torque: -0.194598 0.024321 -0.061648 + +Polar angle tht: 2.7489; Azimuth angle phi: 6.1087 +Force: -2.267494 0.444249 6.316573 +Torque: -0.156129 0.024504 -0.049891 + +Polar angle tht: 2.7489; Azimuth angle phi: 6.1523 +Force: -2.284100 0.334003 6.317515 +Torque: -0.117360 0.024646 -0.037755 + +Polar angle tht: 2.7489; Azimuth angle phi: 6.1959 +Force: -2.295995 0.223058 6.318187 +Torque: -0.078367 0.024748 -0.025332 + +Polar angle tht: 2.7489; Azimuth angle phi: 6.2396 +Force: -2.303145 0.111646 6.318591 +Torque: -0.039224 0.024809 -0.012716 + +Polar angle tht: 2.7489; Azimuth angle phi: 6.2832 +Force: -2.305531 0.000000 6.318725 +Torque: -0.000007 0.024829 -0.000003 + +Polar angle tht: 2.7925; Azimuth angle phi: 0.0000 +Force: -2.072637 0.000000 6.495706 +Torque: -0.000007 0.022969 -0.000003 + +Polar angle tht: 2.7925; Azimuth angle phi: 0.0436 +Force: -2.070512 -0.100895 6.495577 +Torque: 0.035543 0.022950 0.010152 + +Polar angle tht: 2.7925; Azimuth angle phi: 0.0873 +Force: -2.064141 -0.201580 6.495190 +Torque: 0.071026 0.022892 0.020229 + +Polar angle tht: 2.7925; Azimuth angle phi: 0.1309 +Force: -2.053542 -0.301848 6.494544 +Torque: 0.106372 0.022796 0.030152 + +Polar angle tht: 2.7925; Azimuth angle phi: 0.1745 +Force: -2.038745 -0.401490 6.493639 +Torque: 0.141515 0.022661 0.039846 + +Polar angle tht: 2.7925; Azimuth angle phi: 0.2182 +Force: -2.019788 -0.500301 6.492475 +Torque: 0.176388 0.022488 0.049237 + +Polar angle tht: 2.7925; Azimuth angle phi: 0.2618 +Force: -1.996725 -0.598076 6.491052 +Torque: 0.210923 0.022277 0.058253 + +Polar angle tht: 2.7925; Azimuth angle phi: 0.3054 +Force: -1.969616 -0.694615 6.489369 +Torque: 0.245055 0.022028 0.066825 + +Polar angle tht: 2.7925; Azimuth angle phi: 0.3491 +Force: -1.938535 -0.789718 6.487426 +Torque: 0.278719 0.021740 0.074889 + +Polar angle tht: 2.7925; Azimuth angle phi: 0.3927 +Force: -1.903565 -0.883192 6.485223 +Torque: 0.311850 0.021415 0.082383 + +Polar angle tht: 2.7925; Azimuth angle phi: 0.4363 +Force: -1.864801 -0.974846 6.482759 +Torque: 0.344385 0.021051 0.089250 + +Polar angle tht: 2.7925; Azimuth angle phi: 0.4800 +Force: -1.822345 -1.064494 6.480034 +Torque: 0.376261 0.020650 0.095438 + +Polar angle tht: 2.7925; Azimuth angle phi: 0.5236 +Force: -1.776310 -1.151954 6.477047 +Torque: 0.407419 0.020212 0.100899 + +Polar angle tht: 2.7925; Azimuth angle phi: 0.5672 +Force: -1.726818 -1.237051 6.473800 +Torque: 0.437798 0.019736 0.105593 + +Polar angle tht: 2.7925; Azimuth angle phi: 0.6109 +Force: -1.673998 -1.319616 6.470292 +Torque: 0.467341 0.019224 0.109482 + +Polar angle tht: 2.7925; Azimuth angle phi: 0.6545 +Force: -1.617987 -1.399483 6.466524 +Torque: 0.495991 0.018675 0.112539 + +Polar angle tht: 2.7925; Azimuth angle phi: 0.6981 +Force: -1.558930 -1.476497 6.462497 +Torque: 0.523694 0.018090 0.114739 + +Polar angle tht: 2.7925; Azimuth angle phi: 0.7418 +Force: -1.496980 -1.550507 6.458211 +Torque: 0.550396 0.017469 0.116066 + +Polar angle tht: 2.7925; Azimuth angle phi: 0.7854 +Force: -1.432292 -1.621369 6.453668 +Torque: 0.576047 0.016813 0.116509 + +Polar angle tht: 2.7925; Azimuth angle phi: 0.8290 +Force: -1.365032 -1.688949 6.448871 +Torque: 0.600599 0.016122 0.116066 + +Polar angle tht: 2.7925; Azimuth angle phi: 0.8727 +Force: -1.295365 -1.753118 6.443822 +Torque: 0.624003 0.015398 0.114739 + +Polar angle tht: 2.7925; Azimuth angle phi: 0.9163 +Force: -1.223466 -1.813756 6.438523 +Torque: 0.646217 0.014640 0.112540 + +Polar angle tht: 2.7925; Azimuth angle phi: 0.9599 +Force: -1.149509 -1.870751 6.432979 +Torque: 0.667197 0.013849 0.109483 + +Polar angle tht: 2.7925; Azimuth angle phi: 1.0036 +Force: -1.073674 -1.924001 6.427193 +Torque: 0.686904 0.013027 0.105594 + +Polar angle tht: 2.7925; Azimuth angle phi: 1.0472 +Force: -0.996142 -1.973411 6.421171 +Torque: 0.705300 0.012174 0.100900 + +Polar angle tht: 2.7925; Azimuth angle phi: 1.0908 +Force: -0.917096 -2.018893 6.414917 +Torque: 0.722351 0.011292 0.095439 + +Polar angle tht: 2.7925; Azimuth angle phi: 1.1345 +Force: -0.836720 -2.060372 6.408439 +Torque: 0.738024 0.010380 0.089252 + +Polar angle tht: 2.7925; Azimuth angle phi: 1.1781 +Force: -0.755199 -2.097778 6.401743 +Torque: 0.752290 0.009442 0.082385 + +Polar angle tht: 2.7925; Azimuth angle phi: 1.2217 +Force: -0.672718 -2.131051 6.394837 +Torque: 0.765121 0.008477 0.074891 + +Polar angle tht: 2.7925; Azimuth angle phi: 1.2654 +Force: -0.589460 -2.160142 6.387730 +Torque: 0.776493 0.007487 0.066827 + +Polar angle tht: 2.7925; Azimuth angle phi: 1.3090 +Force: -0.505609 -2.185008 6.380432 +Torque: 0.786386 0.006474 0.058255 + +Polar angle tht: 2.7925; Azimuth angle phi: 1.3526 +Force: -0.421346 -2.205617 6.372951 +Torque: 0.794779 0.005439 0.049239 + +Polar angle tht: 2.7925; Azimuth angle phi: 1.3963 +Force: -0.336849 -2.221944 6.365301 +Torque: 0.801659 0.004384 0.039849 + +Polar angle tht: 2.7925; Azimuth angle phi: 1.4399 +Force: -0.252295 -2.233974 6.357492 +Torque: 0.807011 0.003311 0.030155 + +Polar angle tht: 2.7925; Azimuth angle phi: 1.4835 +Force: -0.167856 -2.241701 6.349538 +Torque: 0.810826 0.002221 0.020232 + +Polar angle tht: 2.7925; Azimuth angle phi: 1.5272 +Force: -0.083703 -2.245126 6.341452 +Torque: 0.813097 0.001117 0.010155 + +Polar angle tht: 2.7925; Azimuth angle phi: 1.5708 +Force: 0.000000 -2.244261 6.333249 +Torque: 0.813820 0.000000 0.000000 + +Polar angle tht: 2.7925; Azimuth angle phi: 1.6144 +Force: 0.083703 -2.245126 6.341452 +Torque: 0.813097 -0.001117 -0.010155 + +Polar angle tht: 2.7925; Azimuth angle phi: 1.6581 +Force: 0.167856 -2.241701 6.349538 +Torque: 0.810826 -0.002221 -0.020232 + +Polar angle tht: 2.7925; Azimuth angle phi: 1.7017 +Force: 0.252295 -2.233974 6.357492 +Torque: 0.807011 -0.003311 -0.030155 + +Polar angle tht: 2.7925; Azimuth angle phi: 1.7453 +Force: 0.336849 -2.221944 6.365301 +Torque: 0.801659 -0.004384 -0.039849 + +Polar angle tht: 2.7925; Azimuth angle phi: 1.7890 +Force: 0.421346 -2.205617 6.372951 +Torque: 0.794779 -0.005439 -0.049239 + +Polar angle tht: 2.7925; Azimuth angle phi: 1.8326 +Force: 0.505609 -2.185008 6.380432 +Torque: 0.786386 -0.006474 -0.058255 + +Polar angle tht: 2.7925; Azimuth angle phi: 1.8762 +Force: 0.589460 -2.160142 6.387730 +Torque: 0.776493 -0.007487 -0.066827 + +Polar angle tht: 2.7925; Azimuth angle phi: 1.9199 +Force: 0.672718 -2.131051 6.394837 +Torque: 0.765121 -0.008477 -0.074891 + +Polar angle tht: 2.7925; Azimuth angle phi: 1.9635 +Force: 0.755199 -2.097778 6.401743 +Torque: 0.752290 -0.009442 -0.082385 + +Polar angle tht: 2.7925; Azimuth angle phi: 2.0071 +Force: 0.836720 -2.060372 6.408439 +Torque: 0.738024 -0.010380 -0.089252 + +Polar angle tht: 2.7925; Azimuth angle phi: 2.0508 +Force: 0.917096 -2.018893 6.414917 +Torque: 0.722351 -0.011292 -0.095439 + +Polar angle tht: 2.7925; Azimuth angle phi: 2.0944 +Force: 0.996142 -1.973411 6.421171 +Torque: 0.705300 -0.012174 -0.100900 + +Polar angle tht: 2.7925; Azimuth angle phi: 2.1380 +Force: 1.073674 -1.924001 6.427193 +Torque: 0.686904 -0.013027 -0.105594 + +Polar angle tht: 2.7925; Azimuth angle phi: 2.1817 +Force: 1.149509 -1.870751 6.432979 +Torque: 0.667197 -0.013849 -0.109483 + +Polar angle tht: 2.7925; Azimuth angle phi: 2.2253 +Force: 1.223466 -1.813756 6.438523 +Torque: 0.646217 -0.014640 -0.112540 + +Polar angle tht: 2.7925; Azimuth angle phi: 2.2689 +Force: 1.295365 -1.753118 6.443822 +Torque: 0.624003 -0.015398 -0.114739 + +Polar angle tht: 2.7925; Azimuth angle phi: 2.3126 +Force: 1.365032 -1.688949 6.448871 +Torque: 0.600599 -0.016122 -0.116066 + +Polar angle tht: 2.7925; Azimuth angle phi: 2.3562 +Force: 1.432292 -1.621369 6.453668 +Torque: 0.576047 -0.016813 -0.116509 + +Polar angle tht: 2.7925; Azimuth angle phi: 2.3998 +Force: 1.496980 -1.550507 6.458211 +Torque: 0.550396 -0.017469 -0.116066 + +Polar angle tht: 2.7925; Azimuth angle phi: 2.4435 +Force: 1.558930 -1.476497 6.462497 +Torque: 0.523694 -0.018090 -0.114739 + +Polar angle tht: 2.7925; Azimuth angle phi: 2.4871 +Force: 1.617987 -1.399483 6.466524 +Torque: 0.495991 -0.018675 -0.112539 + +Polar angle tht: 2.7925; Azimuth angle phi: 2.5307 +Force: 1.673998 -1.319616 6.470292 +Torque: 0.467341 -0.019224 -0.109482 + +Polar angle tht: 2.7925; Azimuth angle phi: 2.5744 +Force: 1.726818 -1.237051 6.473800 +Torque: 0.437798 -0.019736 -0.105593 + +Polar angle tht: 2.7925; Azimuth angle phi: 2.6180 +Force: 1.776310 -1.151954 6.477047 +Torque: 0.407419 -0.020212 -0.100899 + +Polar angle tht: 2.7925; Azimuth angle phi: 2.6616 +Force: 1.822345 -1.064494 6.480034 +Torque: 0.376261 -0.020650 -0.095438 + +Polar angle tht: 2.7925; Azimuth angle phi: 2.7053 +Force: 1.864801 -0.974846 6.482759 +Torque: 0.344385 -0.021051 -0.089250 + +Polar angle tht: 2.7925; Azimuth angle phi: 2.7489 +Force: 1.903565 -0.883192 6.485223 +Torque: 0.311850 -0.021415 -0.082383 + +Polar angle tht: 2.7925; Azimuth angle phi: 2.7925 +Force: 1.938535 -0.789718 6.487426 +Torque: 0.278719 -0.021740 -0.074889 + +Polar angle tht: 2.7925; Azimuth angle phi: 2.8362 +Force: 1.969616 -0.694615 6.489369 +Torque: 0.245055 -0.022028 -0.066825 + +Polar angle tht: 2.7925; Azimuth angle phi: 2.8798 +Force: 1.996725 -0.598076 6.491052 +Torque: 0.210923 -0.022277 -0.058253 + +Polar angle tht: 2.7925; Azimuth angle phi: 2.9234 +Force: 2.019788 -0.500301 6.492475 +Torque: 0.176388 -0.022488 -0.049237 + +Polar angle tht: 2.7925; Azimuth angle phi: 2.9671 +Force: 2.038745 -0.401490 6.493639 +Torque: 0.141515 -0.022661 -0.039846 + +Polar angle tht: 2.7925; Azimuth angle phi: 3.0107 +Force: 2.053542 -0.301848 6.494544 +Torque: 0.106372 -0.022796 -0.030152 + +Polar angle tht: 2.7925; Azimuth angle phi: 3.0543 +Force: 2.064141 -0.201580 6.495190 +Torque: 0.071026 -0.022892 -0.020229 + +Polar angle tht: 2.7925; Azimuth angle phi: 3.0980 +Force: 2.070512 -0.100895 6.495577 +Torque: 0.035543 -0.022950 -0.010152 + +Polar angle tht: 2.7925; Azimuth angle phi: 3.1416 +Force: 2.072637 0.000000 6.495706 +Torque: -0.000007 -0.022969 0.000003 + +Polar angle tht: 2.7925; Azimuth angle phi: 3.1852 +Force: 2.070512 0.100895 6.495577 +Torque: -0.035557 -0.022950 0.010158 + +Polar angle tht: 2.7925; Azimuth angle phi: 3.2289 +Force: 2.064141 0.201580 6.495190 +Torque: -0.071039 -0.022892 0.020235 + +Polar angle tht: 2.7925; Azimuth angle phi: 3.2725 +Force: 2.053542 0.301848 6.494544 +Torque: -0.106386 -0.022796 0.030158 + +Polar angle tht: 2.7925; Azimuth angle phi: 3.3161 +Force: 2.038745 0.401490 6.493639 +Torque: -0.141529 -0.022661 0.039852 + +Polar angle tht: 2.7925; Azimuth angle phi: 3.3598 +Force: 2.019788 0.500301 6.492475 +Torque: -0.176401 -0.022488 0.049243 + +Polar angle tht: 2.7925; Azimuth angle phi: 3.4034 +Force: 1.996725 0.598076 6.491052 +Torque: -0.210937 -0.022277 0.058259 + +Polar angle tht: 2.7925; Azimuth angle phi: 3.4470 +Force: 1.969616 0.694615 6.489369 +Torque: -0.245069 -0.022028 0.066831 + +Polar angle tht: 2.7925; Azimuth angle phi: 3.4907 +Force: 1.938535 0.789718 6.487426 +Torque: -0.278732 -0.021740 0.074895 + +Polar angle tht: 2.7925; Azimuth angle phi: 3.5343 +Force: 1.903565 0.883192 6.485223 +Torque: -0.311863 -0.021415 0.082389 + +Polar angle tht: 2.7925; Azimuth angle phi: 3.5779 +Force: 1.864801 0.974846 6.482759 +Torque: -0.344398 -0.021051 0.089256 + +Polar angle tht: 2.7925; Azimuth angle phi: 3.6216 +Force: 1.822345 1.064494 6.480034 +Torque: -0.376275 -0.020650 0.095443 + +Polar angle tht: 2.7925; Azimuth angle phi: 3.6652 +Force: 1.776310 1.151954 6.477047 +Torque: -0.407433 -0.020212 0.100905 + +Polar angle tht: 2.7925; Azimuth angle phi: 3.7088 +Force: 1.726818 1.237051 6.473800 +Torque: -0.437812 -0.019736 0.105598 + +Polar angle tht: 2.7925; Azimuth angle phi: 3.7525 +Force: 1.673998 1.319616 6.470292 +Torque: -0.467355 -0.019224 0.109488 + +Polar angle tht: 2.7925; Azimuth angle phi: 3.7961 +Force: 1.617987 1.399483 6.466524 +Torque: -0.496005 -0.018675 0.112544 + +Polar angle tht: 2.7925; Azimuth angle phi: 3.8397 +Force: 1.558930 1.476497 6.462497 +Torque: -0.523707 -0.018090 0.114744 + +Polar angle tht: 2.7925; Azimuth angle phi: 3.8834 +Force: 1.496980 1.550507 6.458211 +Torque: -0.550410 -0.017469 0.116070 + +Polar angle tht: 2.7925; Azimuth angle phi: 3.9270 +Force: 1.432292 1.621369 6.453668 +Torque: -0.576061 -0.016813 0.116514 + +Polar angle tht: 2.7925; Azimuth angle phi: 3.9706 +Force: 1.365032 1.688949 6.448871 +Torque: -0.600613 -0.016122 0.116070 + +Polar angle tht: 2.7925; Azimuth angle phi: 4.0143 +Force: 1.295365 1.753118 6.443822 +Torque: -0.624017 -0.015398 0.114743 + +Polar angle tht: 2.7925; Azimuth angle phi: 4.0579 +Force: 1.223466 1.813756 6.438523 +Torque: -0.646231 -0.014640 0.112543 + +Polar angle tht: 2.7925; Azimuth angle phi: 4.1015 +Force: 1.149509 1.870751 6.432979 +Torque: -0.667211 -0.013849 0.109487 + +Polar angle tht: 2.7925; Azimuth angle phi: 4.1452 +Force: 1.073674 1.924001 6.427193 +Torque: -0.686918 -0.013027 0.105597 + +Polar angle tht: 2.7925; Azimuth angle phi: 4.1888 +Force: 0.996142 1.973411 6.421171 +Torque: -0.705314 -0.012174 0.100903 + +Polar angle tht: 2.7925; Azimuth angle phi: 4.2324 +Force: 0.917096 2.018893 6.414917 +Torque: -0.722365 -0.011292 0.095442 + +Polar angle tht: 2.7925; Azimuth angle phi: 4.2761 +Force: 0.836720 2.060372 6.408439 +Torque: -0.738038 -0.010380 0.089254 + +Polar angle tht: 2.7925; Azimuth angle phi: 4.3197 +Force: 0.755199 2.097778 6.401743 +Torque: -0.752304 -0.009442 0.082387 + +Polar angle tht: 2.7925; Azimuth angle phi: 4.3633 +Force: 0.672718 2.131051 6.394837 +Torque: -0.765135 -0.008477 0.074893 + +Polar angle tht: 2.7925; Azimuth angle phi: 4.4070 +Force: 0.589460 2.160142 6.387730 +Torque: -0.776507 -0.007487 0.066829 + +Polar angle tht: 2.7925; Azimuth angle phi: 4.4506 +Force: 0.505609 2.185008 6.380432 +Torque: -0.786400 -0.006474 0.058257 + +Polar angle tht: 2.7925; Azimuth angle phi: 4.4942 +Force: 0.421346 2.205617 6.372951 +Torque: -0.794793 -0.005439 0.049241 + +Polar angle tht: 2.7925; Azimuth angle phi: 4.5379 +Force: 0.336849 2.221944 6.365301 +Torque: -0.801673 -0.004384 0.039850 + +Polar angle tht: 2.7925; Azimuth angle phi: 4.5815 +Force: 0.252295 2.233974 6.357492 +Torque: -0.807025 -0.003311 0.030156 + +Polar angle tht: 2.7925; Azimuth angle phi: 4.6251 +Force: 0.167856 2.241701 6.349538 +Torque: -0.810840 -0.002221 0.020232 + +Polar angle tht: 2.7925; Azimuth angle phi: 4.6688 +Force: 0.083703 2.245126 6.341452 +Torque: -0.813112 -0.001117 0.010155 + +Polar angle tht: 2.7925; Azimuth angle phi: 4.7124 +Force: 0.000000 2.244261 6.333249 +Torque: -0.813835 0.000000 -0.000000 + +Polar angle tht: 2.7925; Azimuth angle phi: 4.7560 +Force: -0.083703 2.245126 6.341452 +Torque: -0.813112 0.001117 -0.010155 + +Polar angle tht: 2.7925; Azimuth angle phi: 4.7997 +Force: -0.167856 2.241701 6.349538 +Torque: -0.810840 0.002221 -0.020232 + +Polar angle tht: 2.7925; Azimuth angle phi: 4.8433 +Force: -0.252295 2.233974 6.357492 +Torque: -0.807025 0.003311 -0.030156 + +Polar angle tht: 2.7925; Azimuth angle phi: 4.8869 +Force: -0.336849 2.221944 6.365301 +Torque: -0.801673 0.004384 -0.039850 + +Polar angle tht: 2.7925; Azimuth angle phi: 4.9306 +Force: -0.421346 2.205617 6.372951 +Torque: -0.794793 0.005439 -0.049241 + +Polar angle tht: 2.7925; Azimuth angle phi: 4.9742 +Force: -0.505609 2.185008 6.380432 +Torque: -0.786400 0.006474 -0.058257 + +Polar angle tht: 2.7925; Azimuth angle phi: 5.0178 +Force: -0.589460 2.160142 6.387730 +Torque: -0.776507 0.007487 -0.066829 + +Polar angle tht: 2.7925; Azimuth angle phi: 5.0615 +Force: -0.672718 2.131051 6.394837 +Torque: -0.765135 0.008477 -0.074893 + +Polar angle tht: 2.7925; Azimuth angle phi: 5.1051 +Force: -0.755199 2.097778 6.401743 +Torque: -0.752304 0.009442 -0.082387 + +Polar angle tht: 2.7925; Azimuth angle phi: 5.1487 +Force: -0.836720 2.060372 6.408439 +Torque: -0.738038 0.010380 -0.089254 + +Polar angle tht: 2.7925; Azimuth angle phi: 5.1924 +Force: -0.917096 2.018893 6.414917 +Torque: -0.722365 0.011292 -0.095442 + +Polar angle tht: 2.7925; Azimuth angle phi: 5.2360 +Force: -0.996142 1.973411 6.421171 +Torque: -0.705314 0.012174 -0.100903 + +Polar angle tht: 2.7925; Azimuth angle phi: 5.2796 +Force: -1.073674 1.924001 6.427193 +Torque: -0.686918 0.013027 -0.105597 + +Polar angle tht: 2.7925; Azimuth angle phi: 5.3233 +Force: -1.149509 1.870751 6.432979 +Torque: -0.667211 0.013849 -0.109487 + +Polar angle tht: 2.7925; Azimuth angle phi: 5.3669 +Force: -1.223466 1.813756 6.438523 +Torque: -0.646231 0.014640 -0.112543 + +Polar angle tht: 2.7925; Azimuth angle phi: 5.4105 +Force: -1.295365 1.753118 6.443822 +Torque: -0.624017 0.015398 -0.114743 + +Polar angle tht: 2.7925; Azimuth angle phi: 5.4542 +Force: -1.365032 1.688949 6.448871 +Torque: -0.600613 0.016122 -0.116070 + +Polar angle tht: 2.7925; Azimuth angle phi: 5.4978 +Force: -1.432292 1.621369 6.453668 +Torque: -0.576061 0.016813 -0.116514 + +Polar angle tht: 2.7925; Azimuth angle phi: 5.5414 +Force: -1.496980 1.550507 6.458211 +Torque: -0.550410 0.017469 -0.116070 + +Polar angle tht: 2.7925; Azimuth angle phi: 5.5851 +Force: -1.558930 1.476497 6.462497 +Torque: -0.523707 0.018090 -0.114744 + +Polar angle tht: 2.7925; Azimuth angle phi: 5.6287 +Force: -1.617987 1.399483 6.466524 +Torque: -0.496005 0.018675 -0.112544 + +Polar angle tht: 2.7925; Azimuth angle phi: 5.6723 +Force: -1.673998 1.319616 6.470292 +Torque: -0.467355 0.019224 -0.109488 + +Polar angle tht: 2.7925; Azimuth angle phi: 5.7160 +Force: -1.726818 1.237051 6.473800 +Torque: -0.437812 0.019736 -0.105598 + +Polar angle tht: 2.7925; Azimuth angle phi: 5.7596 +Force: -1.776310 1.151954 6.477047 +Torque: -0.407433 0.020212 -0.100905 + +Polar angle tht: 2.7925; Azimuth angle phi: 5.8032 +Force: -1.822345 1.064494 6.480034 +Torque: -0.376275 0.020650 -0.095443 + +Polar angle tht: 2.7925; Azimuth angle phi: 5.8469 +Force: -1.864801 0.974846 6.482759 +Torque: -0.344398 0.021051 -0.089256 + +Polar angle tht: 2.7925; Azimuth angle phi: 5.8905 +Force: -1.903565 0.883192 6.485223 +Torque: -0.311863 0.021415 -0.082389 + +Polar angle tht: 2.7925; Azimuth angle phi: 5.9341 +Force: -1.938535 0.789718 6.487426 +Torque: -0.278732 0.021740 -0.074895 + +Polar angle tht: 2.7925; Azimuth angle phi: 5.9778 +Force: -1.969616 0.694615 6.489369 +Torque: -0.245069 0.022028 -0.066831 + +Polar angle tht: 2.7925; Azimuth angle phi: 6.0214 +Force: -1.996725 0.598076 6.491052 +Torque: -0.210937 0.022277 -0.058259 + +Polar angle tht: 2.7925; Azimuth angle phi: 6.0650 +Force: -2.019788 0.500301 6.492475 +Torque: -0.176401 0.022488 -0.049243 + +Polar angle tht: 2.7925; Azimuth angle phi: 6.1087 +Force: -2.038745 0.401490 6.493639 +Torque: -0.141529 0.022661 -0.039852 + +Polar angle tht: 2.7925; Azimuth angle phi: 6.1523 +Force: -2.053542 0.301848 6.494544 +Torque: -0.106386 0.022796 -0.030158 + +Polar angle tht: 2.7925; Azimuth angle phi: 6.1959 +Force: -2.064141 0.201580 6.495190 +Torque: -0.071039 0.022892 -0.020235 + +Polar angle tht: 2.7925; Azimuth angle phi: 6.2396 +Force: -2.070512 0.100895 6.495577 +Torque: -0.035557 0.022950 -0.010158 + +Polar angle tht: 2.7925; Azimuth angle phi: 6.2832 +Force: -2.072637 0.000000 6.495706 +Torque: -0.000007 0.022969 -0.000003 + +Polar angle tht: 2.8362; Azimuth angle phi: 0.0000 +Force: -1.829530 0.000000 6.651658 +Torque: -0.000007 0.020838 -0.000003 + +Polar angle tht: 2.8362; Azimuth angle phi: 0.0436 +Force: -1.827670 -0.089534 6.651536 +Torque: 0.031638 0.020820 0.007847 + +Polar angle tht: 2.8362; Azimuth angle phi: 0.0873 +Force: -1.822097 -0.178883 6.651172 +Torque: 0.063222 0.020767 0.015637 + +Polar angle tht: 2.8362; Azimuth angle phi: 0.1309 +Force: -1.812824 -0.267866 6.650566 +Torque: 0.094686 0.020678 0.023307 + +Polar angle tht: 2.8362; Azimuth angle phi: 0.1745 +Force: -1.799876 -0.356300 6.649716 +Torque: 0.125968 0.020553 0.030801 + +Polar angle tht: 2.8362; Azimuth angle phi: 0.2182 +Force: -1.783288 -0.444004 6.648625 +Torque: 0.157010 0.020394 0.038060 + +Polar angle tht: 2.8362; Azimuth angle phi: 0.2618 +Force: -1.763101 -0.530798 6.647290 +Torque: 0.187752 0.020198 0.045029 + +Polar angle tht: 2.8362; Azimuth angle phi: 0.3054 +Force: -1.739370 -0.616506 6.645714 +Torque: 0.218135 0.019968 0.051656 + +Polar angle tht: 2.8362; Azimuth angle phi: 0.3491 +Force: -1.712155 -0.700953 6.643895 +Torque: 0.248101 0.019702 0.057889 + +Polar angle tht: 2.8362; Azimuth angle phi: 0.3927 +Force: -1.681529 -0.783968 6.641835 +Torque: 0.277594 0.019402 0.063682 + +Polar angle tht: 2.8362; Azimuth angle phi: 0.4363 +Force: -1.647568 -0.865383 6.639534 +Torque: 0.306556 0.019067 0.068990 + +Polar angle tht: 2.8362; Azimuth angle phi: 0.4800 +Force: -1.610362 -0.945035 6.636991 +Torque: 0.334933 0.018697 0.073773 + +Polar angle tht: 2.8362; Azimuth angle phi: 0.5236 +Force: -1.570006 -1.022764 6.634209 +Torque: 0.362670 0.018294 0.077995 + +Polar angle tht: 2.8362; Azimuth angle phi: 0.5672 +Force: -1.526601 -1.098413 6.631188 +Torque: 0.389714 0.017856 0.081623 + +Polar angle tht: 2.8362; Azimuth angle phi: 0.6109 +Force: -1.480260 -1.171835 6.627929 +Torque: 0.416014 0.017386 0.084630 + +Polar angle tht: 2.8362; Azimuth angle phi: 0.6545 +Force: -1.431097 -1.242883 6.624434 +Torque: 0.441520 0.016882 0.086992 + +Polar angle tht: 2.8362; Azimuth angle phi: 0.6981 +Force: -1.379237 -1.311418 6.620704 +Torque: 0.466182 0.016345 0.088693 + +Polar angle tht: 2.8362; Azimuth angle phi: 0.7418 +Force: -1.324808 -1.377307 6.616741 +Torque: 0.489955 0.015777 0.089719 + +Polar angle tht: 2.8362; Azimuth angle phi: 0.7854 +Force: -1.267945 -1.440423 6.612549 +Torque: 0.512792 0.015177 0.090062 + +Polar angle tht: 2.8362; Azimuth angle phi: 0.8290 +Force: -1.208786 -1.500646 6.608129 +Torque: 0.534651 0.014546 0.089719 + +Polar angle tht: 2.8362; Azimuth angle phi: 0.8727 +Force: -1.147475 -1.557860 6.603485 +Torque: 0.555489 0.013884 0.088693 + +Polar angle tht: 2.8362; Azimuth angle phi: 0.9163 +Force: -1.084160 -1.611959 6.598621 +Torque: 0.575268 0.013193 0.086993 + +Polar angle tht: 2.8362; Azimuth angle phi: 0.9599 +Force: -1.018991 -1.662844 6.593541 +Torque: 0.593948 0.012474 0.084630 + +Polar angle tht: 2.8362; Azimuth angle phi: 1.0036 +Force: -0.952122 -1.710420 6.588249 +Torque: 0.611496 0.011727 0.081624 + +Polar angle tht: 2.8362; Azimuth angle phi: 1.0472 +Force: -0.883708 -1.754602 6.582751 +Torque: 0.627877 0.010952 0.077996 + +Polar angle tht: 2.8362; Azimuth angle phi: 1.0908 +Force: -0.813908 -1.795313 6.577054 +Torque: 0.643061 0.010152 0.073774 + +Polar angle tht: 2.8362; Azimuth angle phi: 1.1345 +Force: -0.742880 -1.832482 6.571163 +Torque: 0.657019 0.009327 0.068991 + +Polar angle tht: 2.8362; Azimuth angle phi: 1.1781 +Force: -0.670784 -1.866046 6.565085 +Torque: 0.669724 0.008478 0.063683 + +Polar angle tht: 2.8362; Azimuth angle phi: 1.2217 +Force: -0.597780 -1.895951 6.558829 +Torque: 0.681152 0.007607 0.057891 + +Polar angle tht: 2.8362; Azimuth angle phi: 1.2654 +Force: -0.524028 -1.922149 6.552402 +Torque: 0.691282 0.006715 0.051657 + +Polar angle tht: 2.8362; Azimuth angle phi: 1.3090 +Force: -0.449687 -1.944601 6.545814 +Torque: 0.700094 0.005802 0.045031 + +Polar angle tht: 2.8362; Azimuth angle phi: 1.3526 +Force: -0.374915 -1.963276 6.539075 +Torque: 0.707572 0.004872 0.038062 + +Polar angle tht: 2.8362; Azimuth angle phi: 1.3963 +Force: -0.299869 -1.978149 6.532195 +Torque: 0.713703 0.003925 0.030803 + +Polar angle tht: 2.8362; Azimuth angle phi: 1.4399 +Force: -0.224703 -1.989204 6.525185 +Torque: 0.718474 0.002962 0.023310 + +Polar angle tht: 2.8362; Azimuth angle phi: 1.4835 +Force: -0.149571 -1.996434 6.518057 +Torque: 0.721876 0.001986 0.015639 + +Polar angle tht: 2.8362; Azimuth angle phi: 1.5272 +Force: -0.074621 -1.999837 6.510824 +Torque: 0.723905 0.000998 0.007849 + +Polar angle tht: 2.8362; Azimuth angle phi: 1.5708 +Force: 0.000000 -1.999420 6.503498 +Torque: 0.724554 0.000000 0.000000 + +Polar angle tht: 2.8362; Azimuth angle phi: 1.6144 +Force: 0.074621 -1.999837 6.510824 +Torque: 0.723905 -0.000998 -0.007849 + +Polar angle tht: 2.8362; Azimuth angle phi: 1.6581 +Force: 0.149571 -1.996434 6.518057 +Torque: 0.721876 -0.001986 -0.015639 + +Polar angle tht: 2.8362; Azimuth angle phi: 1.7017 +Force: 0.224703 -1.989204 6.525185 +Torque: 0.718474 -0.002962 -0.023310 + +Polar angle tht: 2.8362; Azimuth angle phi: 1.7453 +Force: 0.299869 -1.978149 6.532195 +Torque: 0.713703 -0.003925 -0.030803 + +Polar angle tht: 2.8362; Azimuth angle phi: 1.7890 +Force: 0.374915 -1.963276 6.539075 +Torque: 0.707572 -0.004872 -0.038062 + +Polar angle tht: 2.8362; Azimuth angle phi: 1.8326 +Force: 0.449687 -1.944601 6.545814 +Torque: 0.700094 -0.005802 -0.045031 + +Polar angle tht: 2.8362; Azimuth angle phi: 1.8762 +Force: 0.524028 -1.922149 6.552402 +Torque: 0.691282 -0.006715 -0.051657 + +Polar angle tht: 2.8362; Azimuth angle phi: 1.9199 +Force: 0.597780 -1.895951 6.558829 +Torque: 0.681152 -0.007607 -0.057891 + +Polar angle tht: 2.8362; Azimuth angle phi: 1.9635 +Force: 0.670784 -1.866046 6.565085 +Torque: 0.669724 -0.008478 -0.063683 + +Polar angle tht: 2.8362; Azimuth angle phi: 2.0071 +Force: 0.742880 -1.832482 6.571163 +Torque: 0.657019 -0.009327 -0.068991 + +Polar angle tht: 2.8362; Azimuth angle phi: 2.0508 +Force: 0.813908 -1.795313 6.577054 +Torque: 0.643061 -0.010152 -0.073774 + +Polar angle tht: 2.8362; Azimuth angle phi: 2.0944 +Force: 0.883708 -1.754602 6.582751 +Torque: 0.627877 -0.010952 -0.077996 + +Polar angle tht: 2.8362; Azimuth angle phi: 2.1380 +Force: 0.952122 -1.710420 6.588249 +Torque: 0.611496 -0.011727 -0.081624 + +Polar angle tht: 2.8362; Azimuth angle phi: 2.1817 +Force: 1.018991 -1.662844 6.593541 +Torque: 0.593948 -0.012474 -0.084630 + +Polar angle tht: 2.8362; Azimuth angle phi: 2.2253 +Force: 1.084160 -1.611959 6.598621 +Torque: 0.575268 -0.013193 -0.086993 + +Polar angle tht: 2.8362; Azimuth angle phi: 2.2689 +Force: 1.147475 -1.557860 6.603485 +Torque: 0.555489 -0.013884 -0.088693 + +Polar angle tht: 2.8362; Azimuth angle phi: 2.3126 +Force: 1.208786 -1.500646 6.608129 +Torque: 0.534651 -0.014546 -0.089719 + +Polar angle tht: 2.8362; Azimuth angle phi: 2.3562 +Force: 1.267945 -1.440423 6.612549 +Torque: 0.512792 -0.015177 -0.090062 + +Polar angle tht: 2.8362; Azimuth angle phi: 2.3998 +Force: 1.324808 -1.377307 6.616741 +Torque: 0.489955 -0.015777 -0.089719 + +Polar angle tht: 2.8362; Azimuth angle phi: 2.4435 +Force: 1.379237 -1.311418 6.620704 +Torque: 0.466182 -0.016345 -0.088693 + +Polar angle tht: 2.8362; Azimuth angle phi: 2.4871 +Force: 1.431097 -1.242883 6.624434 +Torque: 0.441520 -0.016882 -0.086992 + +Polar angle tht: 2.8362; Azimuth angle phi: 2.5307 +Force: 1.480260 -1.171835 6.627929 +Torque: 0.416014 -0.017386 -0.084630 + +Polar angle tht: 2.8362; Azimuth angle phi: 2.5744 +Force: 1.526601 -1.098413 6.631188 +Torque: 0.389714 -0.017856 -0.081623 + +Polar angle tht: 2.8362; Azimuth angle phi: 2.6180 +Force: 1.570006 -1.022764 6.634209 +Torque: 0.362670 -0.018294 -0.077995 + +Polar angle tht: 2.8362; Azimuth angle phi: 2.6616 +Force: 1.610362 -0.945035 6.636991 +Torque: 0.334933 -0.018697 -0.073773 + +Polar angle tht: 2.8362; Azimuth angle phi: 2.7053 +Force: 1.647568 -0.865383 6.639534 +Torque: 0.306556 -0.019067 -0.068990 + +Polar angle tht: 2.8362; Azimuth angle phi: 2.7489 +Force: 1.681529 -0.783968 6.641835 +Torque: 0.277594 -0.019402 -0.063682 + +Polar angle tht: 2.8362; Azimuth angle phi: 2.7925 +Force: 1.712155 -0.700953 6.643895 +Torque: 0.248101 -0.019702 -0.057889 + +Polar angle tht: 2.8362; Azimuth angle phi: 2.8362 +Force: 1.739370 -0.616506 6.645714 +Torque: 0.218135 -0.019968 -0.051656 + +Polar angle tht: 2.8362; Azimuth angle phi: 2.8798 +Force: 1.763101 -0.530798 6.647290 +Torque: 0.187752 -0.020198 -0.045029 + +Polar angle tht: 2.8362; Azimuth angle phi: 2.9234 +Force: 1.783288 -0.444004 6.648625 +Torque: 0.157010 -0.020394 -0.038060 + +Polar angle tht: 2.8362; Azimuth angle phi: 2.9671 +Force: 1.799876 -0.356300 6.649716 +Torque: 0.125968 -0.020553 -0.030801 + +Polar angle tht: 2.8362; Azimuth angle phi: 3.0107 +Force: 1.812824 -0.267866 6.650566 +Torque: 0.094686 -0.020678 -0.023307 + +Polar angle tht: 2.8362; Azimuth angle phi: 3.0543 +Force: 1.822097 -0.178883 6.651172 +Torque: 0.063222 -0.020767 -0.015637 + +Polar angle tht: 2.8362; Azimuth angle phi: 3.0980 +Force: 1.827670 -0.089534 6.651536 +Torque: 0.031638 -0.020820 -0.007847 + +Polar angle tht: 2.8362; Azimuth angle phi: 3.1416 +Force: 1.829530 0.000000 6.651658 +Torque: -0.000007 -0.020838 0.000003 + +Polar angle tht: 2.8362; Azimuth angle phi: 3.1852 +Force: 1.827670 0.089534 6.651536 +Torque: -0.031652 -0.020820 0.007852 + +Polar angle tht: 2.8362; Azimuth angle phi: 3.2289 +Force: 1.822097 0.178883 6.651172 +Torque: -0.063236 -0.020767 0.015642 + +Polar angle tht: 2.8362; Azimuth angle phi: 3.2725 +Force: 1.812824 0.267866 6.650566 +Torque: -0.094700 -0.020678 0.023313 + +Polar angle tht: 2.8362; Azimuth angle phi: 3.3161 +Force: 1.799876 0.356300 6.649716 +Torque: -0.125982 -0.020553 0.030806 + +Polar angle tht: 2.8362; Azimuth angle phi: 3.3598 +Force: 1.783288 0.444004 6.648625 +Torque: -0.157024 -0.020394 0.038065 + +Polar angle tht: 2.8362; Azimuth angle phi: 3.4034 +Force: 1.763101 0.530798 6.647290 +Torque: -0.187766 -0.020198 0.045034 + +Polar angle tht: 2.8362; Azimuth angle phi: 3.4470 +Force: 1.739370 0.616506 6.645714 +Torque: -0.218149 -0.019968 0.051661 + +Polar angle tht: 2.8362; Azimuth angle phi: 3.4907 +Force: 1.712155 0.700953 6.643895 +Torque: -0.248115 -0.019702 0.057894 + +Polar angle tht: 2.8362; Azimuth angle phi: 3.5343 +Force: 1.681529 0.783968 6.641835 +Torque: -0.277608 -0.019402 0.063687 + +Polar angle tht: 2.8362; Azimuth angle phi: 3.5779 +Force: 1.647568 0.865383 6.639534 +Torque: -0.306570 -0.019067 0.068995 + +Polar angle tht: 2.8362; Azimuth angle phi: 3.6216 +Force: 1.610362 0.945035 6.636991 +Torque: -0.334947 -0.018697 0.073778 + +Polar angle tht: 2.8362; Azimuth angle phi: 3.6652 +Force: 1.570006 1.022764 6.634209 +Torque: -0.362684 -0.018294 0.078000 + +Polar angle tht: 2.8362; Azimuth angle phi: 3.7088 +Force: 1.526601 1.098413 6.631188 +Torque: -0.389728 -0.017856 0.081628 + +Polar angle tht: 2.8362; Azimuth angle phi: 3.7525 +Force: 1.480260 1.171835 6.627929 +Torque: -0.416028 -0.017386 0.084634 + +Polar angle tht: 2.8362; Azimuth angle phi: 3.7961 +Force: 1.431097 1.242883 6.624434 +Torque: -0.441534 -0.016882 0.086997 + +Polar angle tht: 2.8362; Azimuth angle phi: 3.8397 +Force: 1.379237 1.311418 6.620704 +Torque: -0.466196 -0.016345 0.088697 + +Polar angle tht: 2.8362; Azimuth angle phi: 3.8834 +Force: 1.324808 1.377307 6.616741 +Torque: -0.489969 -0.015777 0.089723 + +Polar angle tht: 2.8362; Azimuth angle phi: 3.9270 +Force: 1.267945 1.440423 6.612549 +Torque: -0.512807 -0.015177 0.090065 + +Polar angle tht: 2.8362; Azimuth angle phi: 3.9706 +Force: 1.208786 1.500646 6.608129 +Torque: -0.534665 -0.014546 0.089723 + +Polar angle tht: 2.8362; Azimuth angle phi: 4.0143 +Force: 1.147475 1.557860 6.603485 +Torque: -0.555504 -0.013884 0.088697 + +Polar angle tht: 2.8362; Azimuth angle phi: 4.0579 +Force: 1.084160 1.611959 6.598621 +Torque: -0.575282 -0.013193 0.086996 + +Polar angle tht: 2.8362; Azimuth angle phi: 4.1015 +Force: 1.018991 1.662844 6.593541 +Torque: -0.593963 -0.012474 0.084634 + +Polar angle tht: 2.8362; Azimuth angle phi: 4.1452 +Force: 0.952122 1.710420 6.588249 +Torque: -0.611510 -0.011727 0.081627 + +Polar angle tht: 2.8362; Azimuth angle phi: 4.1888 +Force: 0.883708 1.754602 6.582751 +Torque: -0.627892 -0.010952 0.077999 + +Polar angle tht: 2.8362; Azimuth angle phi: 4.2324 +Force: 0.813908 1.795313 6.577054 +Torque: -0.643075 -0.010152 0.073777 + +Polar angle tht: 2.8362; Azimuth angle phi: 4.2761 +Force: 0.742880 1.832482 6.571163 +Torque: -0.657033 -0.009327 0.068994 + +Polar angle tht: 2.8362; Azimuth angle phi: 4.3197 +Force: 0.670784 1.866046 6.565085 +Torque: -0.669738 -0.008478 0.063686 + +Polar angle tht: 2.8362; Azimuth angle phi: 4.3633 +Force: 0.597780 1.895951 6.558829 +Torque: -0.681166 -0.007607 0.057893 + +Polar angle tht: 2.8362; Azimuth angle phi: 4.4070 +Force: 0.524028 1.922149 6.552402 +Torque: -0.691296 -0.006715 0.051659 + +Polar angle tht: 2.8362; Azimuth angle phi: 4.4506 +Force: 0.449687 1.944601 6.545814 +Torque: -0.700108 -0.005802 0.045032 + +Polar angle tht: 2.8362; Azimuth angle phi: 4.4942 +Force: 0.374915 1.963276 6.539075 +Torque: -0.707587 -0.004872 0.038063 + +Polar angle tht: 2.8362; Azimuth angle phi: 4.5379 +Force: 0.299869 1.978149 6.532195 +Torque: -0.713717 -0.003925 0.030804 + +Polar angle tht: 2.8362; Azimuth angle phi: 4.5815 +Force: 0.224703 1.989204 6.525185 +Torque: -0.718488 -0.002962 0.023311 + +Polar angle tht: 2.8362; Azimuth angle phi: 4.6251 +Force: 0.149571 1.996434 6.518057 +Torque: -0.721891 -0.001986 0.015640 + +Polar angle tht: 2.8362; Azimuth angle phi: 4.6688 +Force: 0.074621 1.999837 6.510824 +Torque: -0.723919 -0.000998 0.007850 + +Polar angle tht: 2.8362; Azimuth angle phi: 4.7124 +Force: 0.000000 1.999420 6.503498 +Torque: -0.724569 0.000000 -0.000000 + +Polar angle tht: 2.8362; Azimuth angle phi: 4.7560 +Force: -0.074621 1.999837 6.510824 +Torque: -0.723919 0.000998 -0.007850 + +Polar angle tht: 2.8362; Azimuth angle phi: 4.7997 +Force: -0.149571 1.996434 6.518057 +Torque: -0.721891 0.001986 -0.015640 + +Polar angle tht: 2.8362; Azimuth angle phi: 4.8433 +Force: -0.224703 1.989204 6.525185 +Torque: -0.718488 0.002962 -0.023311 + +Polar angle tht: 2.8362; Azimuth angle phi: 4.8869 +Force: -0.299869 1.978149 6.532195 +Torque: -0.713717 0.003925 -0.030804 + +Polar angle tht: 2.8362; Azimuth angle phi: 4.9306 +Force: -0.374915 1.963276 6.539075 +Torque: -0.707587 0.004872 -0.038063 + +Polar angle tht: 2.8362; Azimuth angle phi: 4.9742 +Force: -0.449687 1.944601 6.545814 +Torque: -0.700108 0.005802 -0.045032 + +Polar angle tht: 2.8362; Azimuth angle phi: 5.0178 +Force: -0.524028 1.922149 6.552402 +Torque: -0.691296 0.006715 -0.051659 + +Polar angle tht: 2.8362; Azimuth angle phi: 5.0615 +Force: -0.597780 1.895951 6.558829 +Torque: -0.681166 0.007607 -0.057893 + +Polar angle tht: 2.8362; Azimuth angle phi: 5.1051 +Force: -0.670784 1.866046 6.565085 +Torque: -0.669738 0.008478 -0.063686 + +Polar angle tht: 2.8362; Azimuth angle phi: 5.1487 +Force: -0.742880 1.832482 6.571163 +Torque: -0.657033 0.009327 -0.068994 + +Polar angle tht: 2.8362; Azimuth angle phi: 5.1924 +Force: -0.813908 1.795313 6.577054 +Torque: -0.643075 0.010152 -0.073777 + +Polar angle tht: 2.8362; Azimuth angle phi: 5.2360 +Force: -0.883708 1.754602 6.582751 +Torque: -0.627892 0.010952 -0.077999 + +Polar angle tht: 2.8362; Azimuth angle phi: 5.2796 +Force: -0.952122 1.710420 6.588249 +Torque: -0.611510 0.011727 -0.081627 + +Polar angle tht: 2.8362; Azimuth angle phi: 5.3233 +Force: -1.018991 1.662844 6.593541 +Torque: -0.593963 0.012474 -0.084634 + +Polar angle tht: 2.8362; Azimuth angle phi: 5.3669 +Force: -1.084160 1.611959 6.598621 +Torque: -0.575282 0.013193 -0.086996 + +Polar angle tht: 2.8362; Azimuth angle phi: 5.4105 +Force: -1.147475 1.557860 6.603485 +Torque: -0.555504 0.013884 -0.088697 + +Polar angle tht: 2.8362; Azimuth angle phi: 5.4542 +Force: -1.208786 1.500646 6.608129 +Torque: -0.534665 0.014546 -0.089723 + +Polar angle tht: 2.8362; Azimuth angle phi: 5.4978 +Force: -1.267945 1.440423 6.612549 +Torque: -0.512807 0.015177 -0.090065 + +Polar angle tht: 2.8362; Azimuth angle phi: 5.5414 +Force: -1.324808 1.377307 6.616741 +Torque: -0.489969 0.015777 -0.089723 + +Polar angle tht: 2.8362; Azimuth angle phi: 5.5851 +Force: -1.379237 1.311418 6.620704 +Torque: -0.466196 0.016345 -0.088697 + +Polar angle tht: 2.8362; Azimuth angle phi: 5.6287 +Force: -1.431097 1.242883 6.624434 +Torque: -0.441534 0.016882 -0.086997 + +Polar angle tht: 2.8362; Azimuth angle phi: 5.6723 +Force: -1.480260 1.171835 6.627929 +Torque: -0.416028 0.017386 -0.084634 + +Polar angle tht: 2.8362; Azimuth angle phi: 5.7160 +Force: -1.526601 1.098413 6.631188 +Torque: -0.389728 0.017856 -0.081628 + +Polar angle tht: 2.8362; Azimuth angle phi: 5.7596 +Force: -1.570006 1.022764 6.634209 +Torque: -0.362684 0.018294 -0.078000 + +Polar angle tht: 2.8362; Azimuth angle phi: 5.8032 +Force: -1.610362 0.945035 6.636991 +Torque: -0.334947 0.018697 -0.073778 + +Polar angle tht: 2.8362; Azimuth angle phi: 5.8469 +Force: -1.647568 0.865383 6.639534 +Torque: -0.306570 0.019067 -0.068995 + +Polar angle tht: 2.8362; Azimuth angle phi: 5.8905 +Force: -1.681529 0.783968 6.641835 +Torque: -0.277608 0.019402 -0.063687 + +Polar angle tht: 2.8362; Azimuth angle phi: 5.9341 +Force: -1.712155 0.700953 6.643895 +Torque: -0.248115 0.019702 -0.057894 + +Polar angle tht: 2.8362; Azimuth angle phi: 5.9778 +Force: -1.739370 0.616506 6.645714 +Torque: -0.218149 0.019968 -0.051661 + +Polar angle tht: 2.8362; Azimuth angle phi: 6.0214 +Force: -1.763101 0.530798 6.647290 +Torque: -0.187766 0.020198 -0.045034 + +Polar angle tht: 2.8362; Azimuth angle phi: 6.0650 +Force: -1.783288 0.444004 6.648625 +Torque: -0.157024 0.020394 -0.038065 + +Polar angle tht: 2.8362; Azimuth angle phi: 6.1087 +Force: -1.799876 0.356300 6.649716 +Torque: -0.125982 0.020553 -0.030806 + +Polar angle tht: 2.8362; Azimuth angle phi: 6.1523 +Force: -1.812824 0.267866 6.650566 +Torque: -0.094700 0.020678 -0.023313 + +Polar angle tht: 2.8362; Azimuth angle phi: 6.1959 +Force: -1.822097 0.178883 6.651172 +Torque: -0.063236 0.020767 -0.015642 + +Polar angle tht: 2.8362; Azimuth angle phi: 6.2396 +Force: -1.827670 0.089534 6.651536 +Torque: -0.031652 0.020820 -0.007852 + +Polar angle tht: 2.8362; Azimuth angle phi: 6.2832 +Force: -1.829530 0.000000 6.651658 +Torque: -0.000007 0.020838 -0.000003 + +Polar angle tht: 2.8798; Azimuth angle phi: 0.0000 +Force: -1.578018 0.000000 6.785467 +Torque: -0.000007 0.018454 -0.000002 + +Polar angle tht: 2.8798; Azimuth angle phi: 0.0436 +Force: -1.576428 -0.077642 6.785356 +Torque: 0.027520 0.018438 0.005813 + +Polar angle tht: 2.8798; Azimuth angle phi: 0.0873 +Force: -1.571664 -0.155126 6.785023 +Torque: 0.054995 0.018390 0.011583 + +Polar angle tht: 2.8798; Azimuth angle phi: 0.1309 +Force: -1.563737 -0.232296 6.784469 +Torque: 0.082365 0.018310 0.017266 + +Polar angle tht: 2.8798; Azimuth angle phi: 0.1745 +Force: -1.552667 -0.308994 6.783693 +Torque: 0.109578 0.018197 0.022817 + +Polar angle tht: 2.8798; Azimuth angle phi: 0.2182 +Force: -1.538483 -0.385065 6.782696 +Torque: 0.136581 0.018053 0.028195 + +Polar angle tht: 2.8798; Azimuth angle phi: 0.2618 +Force: -1.521219 -0.460356 6.781478 +Torque: 0.163324 0.017877 0.033358 + +Polar angle tht: 2.8798; Azimuth angle phi: 0.3054 +Force: -1.500920 -0.534715 6.780041 +Torque: 0.189754 0.017670 0.038267 + +Polar angle tht: 2.8798; Azimuth angle phi: 0.3491 +Force: -1.477636 -0.607991 6.778383 +Torque: 0.215823 0.017431 0.042885 + +Polar angle tht: 2.8798; Azimuth angle phi: 0.3927 +Force: -1.451426 -0.680037 6.776508 +Torque: 0.241479 0.017160 0.047176 + +Polar angle tht: 2.8798; Azimuth angle phi: 0.4363 +Force: -1.422355 -0.750709 6.774414 +Torque: 0.266674 0.016859 0.051108 + +Polar angle tht: 2.8798; Azimuth angle phi: 0.4800 +Force: -1.390495 -0.819866 6.772104 +Torque: 0.291360 0.016527 0.054652 + +Polar angle tht: 2.8798; Azimuth angle phi: 0.5236 +Force: -1.355926 -0.887370 6.769579 +Torque: 0.315490 0.016165 0.057779 + +Polar angle tht: 2.8798; Azimuth angle phi: 0.5672 +Force: -1.318731 -0.953088 6.766841 +Torque: 0.339017 0.015773 0.060467 + +Polar angle tht: 2.8798; Azimuth angle phi: 0.6109 +Force: -1.279003 -1.016889 6.763891 +Torque: 0.361898 0.015351 0.062695 + +Polar angle tht: 2.8798; Azimuth angle phi: 0.6545 +Force: -1.236838 -1.078648 6.760731 +Torque: 0.384088 0.014900 0.064445 + +Polar angle tht: 2.8798; Azimuth angle phi: 0.6981 +Force: -1.192338 -1.138246 6.757364 +Torque: 0.405544 0.014420 0.065705 + +Polar angle tht: 2.8798; Azimuth angle phi: 0.7418 +Force: -1.145611 -1.195566 6.753793 +Torque: 0.426227 0.013912 0.066465 + +Polar angle tht: 2.8798; Azimuth angle phi: 0.7854 +Force: -1.096767 -1.250499 6.750020 +Torque: 0.446097 0.013376 0.066719 + +Polar angle tht: 2.8798; Azimuth angle phi: 0.8290 +Force: -1.045924 -1.302938 6.746049 +Torque: 0.465115 0.012814 0.066465 + +Polar angle tht: 2.8798; Azimuth angle phi: 0.8727 +Force: -0.993199 -1.352785 6.741884 +Torque: 0.483246 0.012225 0.065705 + +Polar angle tht: 2.8798; Azimuth angle phi: 0.9163 +Force: -0.938718 -1.399946 6.737528 +Torque: 0.500456 0.011610 0.064445 + +Polar angle tht: 2.8798; Azimuth angle phi: 0.9599 +Force: -0.882605 -1.444334 6.732987 +Torque: 0.516711 0.010971 0.062695 + +Polar angle tht: 2.8798; Azimuth angle phi: 1.0036 +Force: -0.824989 -1.485866 6.728265 +Torque: 0.531980 0.010308 0.060468 + +Polar angle tht: 2.8798; Azimuth angle phi: 1.0472 +Force: -0.766002 -1.524468 6.723368 +Torque: 0.546235 0.009622 0.057780 + +Polar angle tht: 2.8798; Azimuth angle phi: 1.0908 +Force: -0.705775 -1.560070 6.718301 +Torque: 0.559448 0.008914 0.054653 + +Polar angle tht: 2.8798; Azimuth angle phi: 1.1345 +Force: -0.644443 -1.592611 6.713072 +Torque: 0.571595 0.008185 0.051110 + +Polar angle tht: 2.8798; Azimuth angle phi: 1.1781 +Force: -0.582141 -1.622034 6.707687 +Torque: 0.582653 0.007435 0.047177 + +Polar angle tht: 2.8798; Azimuth angle phi: 1.2217 +Force: -0.519004 -1.648289 6.702153 +Torque: 0.592600 0.006667 0.042886 + +Polar angle tht: 2.8798; Azimuth angle phi: 1.2654 +Force: -0.455167 -1.671335 6.696479 +Torque: 0.601417 0.005882 0.038268 + +Polar angle tht: 2.8798; Azimuth angle phi: 1.3090 +Force: -0.390767 -1.691135 6.690673 +Torque: 0.609089 0.005079 0.033359 + +Polar angle tht: 2.8798; Azimuth angle phi: 1.3526 +Force: -0.325938 -1.707659 6.684744 +Torque: 0.615600 0.004262 0.028197 + +Polar angle tht: 2.8798; Azimuth angle phi: 1.3963 +Force: -0.260814 -1.720885 6.678701 +Torque: 0.620939 0.003431 0.022819 + +Polar angle tht: 2.8798; Azimuth angle phi: 1.4399 +Force: -0.195528 -1.730797 6.672555 +Torque: 0.625095 0.002588 0.017268 + +Polar angle tht: 2.8798; Azimuth angle phi: 1.4835 +Force: -0.130212 -1.737384 6.666316 +Torque: 0.628060 0.001734 0.011586 + +Polar angle tht: 2.8798; Azimuth angle phi: 1.5272 +Force: -0.064993 -1.740646 6.659994 +Torque: 0.629830 0.000871 0.005815 + +Polar angle tht: 2.8798; Azimuth angle phi: 1.5708 +Force: 0.000000 -1.740583 6.653603 +Torque: 0.630400 0.000000 0.000000 + +Polar angle tht: 2.8798; Azimuth angle phi: 1.6144 +Force: 0.064993 -1.740646 6.659994 +Torque: 0.629830 -0.000871 -0.005815 + +Polar angle tht: 2.8798; Azimuth angle phi: 1.6581 +Force: 0.130212 -1.737384 6.666316 +Torque: 0.628060 -0.001734 -0.011586 + +Polar angle tht: 2.8798; Azimuth angle phi: 1.7017 +Force: 0.195528 -1.730797 6.672555 +Torque: 0.625095 -0.002588 -0.017268 + +Polar angle tht: 2.8798; Azimuth angle phi: 1.7453 +Force: 0.260814 -1.720885 6.678701 +Torque: 0.620939 -0.003431 -0.022819 + +Polar angle tht: 2.8798; Azimuth angle phi: 1.7890 +Force: 0.325938 -1.707659 6.684744 +Torque: 0.615600 -0.004262 -0.028197 + +Polar angle tht: 2.8798; Azimuth angle phi: 1.8326 +Force: 0.390767 -1.691135 6.690673 +Torque: 0.609089 -0.005079 -0.033359 + +Polar angle tht: 2.8798; Azimuth angle phi: 1.8762 +Force: 0.455167 -1.671335 6.696479 +Torque: 0.601417 -0.005882 -0.038268 + +Polar angle tht: 2.8798; Azimuth angle phi: 1.9199 +Force: 0.519004 -1.648289 6.702153 +Torque: 0.592600 -0.006667 -0.042886 + +Polar angle tht: 2.8798; Azimuth angle phi: 1.9635 +Force: 0.582141 -1.622034 6.707687 +Torque: 0.582653 -0.007435 -0.047177 + +Polar angle tht: 2.8798; Azimuth angle phi: 2.0071 +Force: 0.644443 -1.592611 6.713072 +Torque: 0.571595 -0.008185 -0.051110 + +Polar angle tht: 2.8798; Azimuth angle phi: 2.0508 +Force: 0.705775 -1.560070 6.718301 +Torque: 0.559448 -0.008914 -0.054653 + +Polar angle tht: 2.8798; Azimuth angle phi: 2.0944 +Force: 0.766002 -1.524468 6.723368 +Torque: 0.546235 -0.009622 -0.057780 + +Polar angle tht: 2.8798; Azimuth angle phi: 2.1380 +Force: 0.824989 -1.485866 6.728265 +Torque: 0.531980 -0.010308 -0.060468 + +Polar angle tht: 2.8798; Azimuth angle phi: 2.1817 +Force: 0.882605 -1.444334 6.732987 +Torque: 0.516711 -0.010971 -0.062695 + +Polar angle tht: 2.8798; Azimuth angle phi: 2.2253 +Force: 0.938718 -1.399946 6.737528 +Torque: 0.500456 -0.011610 -0.064445 + +Polar angle tht: 2.8798; Azimuth angle phi: 2.2689 +Force: 0.993199 -1.352785 6.741884 +Torque: 0.483246 -0.012225 -0.065705 + +Polar angle tht: 2.8798; Azimuth angle phi: 2.3126 +Force: 1.045924 -1.302938 6.746049 +Torque: 0.465115 -0.012814 -0.066465 + +Polar angle tht: 2.8798; Azimuth angle phi: 2.3562 +Force: 1.096767 -1.250499 6.750020 +Torque: 0.446097 -0.013376 -0.066719 + +Polar angle tht: 2.8798; Azimuth angle phi: 2.3998 +Force: 1.145611 -1.195566 6.753793 +Torque: 0.426227 -0.013912 -0.066465 + +Polar angle tht: 2.8798; Azimuth angle phi: 2.4435 +Force: 1.192338 -1.138246 6.757364 +Torque: 0.405544 -0.014420 -0.065705 + +Polar angle tht: 2.8798; Azimuth angle phi: 2.4871 +Force: 1.236838 -1.078648 6.760731 +Torque: 0.384088 -0.014900 -0.064445 + +Polar angle tht: 2.8798; Azimuth angle phi: 2.5307 +Force: 1.279003 -1.016889 6.763891 +Torque: 0.361898 -0.015351 -0.062695 + +Polar angle tht: 2.8798; Azimuth angle phi: 2.5744 +Force: 1.318731 -0.953088 6.766841 +Torque: 0.339017 -0.015773 -0.060467 + +Polar angle tht: 2.8798; Azimuth angle phi: 2.6180 +Force: 1.355926 -0.887370 6.769579 +Torque: 0.315490 -0.016165 -0.057779 + +Polar angle tht: 2.8798; Azimuth angle phi: 2.6616 +Force: 1.390495 -0.819866 6.772104 +Torque: 0.291360 -0.016527 -0.054652 + +Polar angle tht: 2.8798; Azimuth angle phi: 2.7053 +Force: 1.422355 -0.750709 6.774414 +Torque: 0.266674 -0.016859 -0.051108 + +Polar angle tht: 2.8798; Azimuth angle phi: 2.7489 +Force: 1.451426 -0.680037 6.776508 +Torque: 0.241479 -0.017160 -0.047176 + +Polar angle tht: 2.8798; Azimuth angle phi: 2.7925 +Force: 1.477636 -0.607991 6.778383 +Torque: 0.215823 -0.017431 -0.042885 + +Polar angle tht: 2.8798; Azimuth angle phi: 2.8362 +Force: 1.500920 -0.534715 6.780041 +Torque: 0.189754 -0.017670 -0.038267 + +Polar angle tht: 2.8798; Azimuth angle phi: 2.8798 +Force: 1.521219 -0.460356 6.781478 +Torque: 0.163324 -0.017877 -0.033358 + +Polar angle tht: 2.8798; Azimuth angle phi: 2.9234 +Force: 1.538483 -0.385065 6.782696 +Torque: 0.136581 -0.018053 -0.028195 + +Polar angle tht: 2.8798; Azimuth angle phi: 2.9671 +Force: 1.552667 -0.308994 6.783693 +Torque: 0.109578 -0.018197 -0.022817 + +Polar angle tht: 2.8798; Azimuth angle phi: 3.0107 +Force: 1.563737 -0.232296 6.784469 +Torque: 0.082365 -0.018310 -0.017266 + +Polar angle tht: 2.8798; Azimuth angle phi: 3.0543 +Force: 1.571664 -0.155126 6.785023 +Torque: 0.054995 -0.018390 -0.011583 + +Polar angle tht: 2.8798; Azimuth angle phi: 3.0980 +Force: 1.576428 -0.077642 6.785356 +Torque: 0.027520 -0.018438 -0.005813 + +Polar angle tht: 2.8798; Azimuth angle phi: 3.1416 +Force: 1.578018 0.000000 6.785467 +Torque: -0.000007 -0.018454 0.000002 + +Polar angle tht: 2.8798; Azimuth angle phi: 3.1852 +Force: 1.576428 0.077642 6.785356 +Torque: -0.027535 -0.018438 0.005817 + +Polar angle tht: 2.8798; Azimuth angle phi: 3.2289 +Force: 1.571664 0.155126 6.785023 +Torque: -0.055010 -0.018390 0.011588 + +Polar angle tht: 2.8798; Azimuth angle phi: 3.2725 +Force: 1.563737 0.232296 6.784469 +Torque: -0.082380 -0.018310 0.017271 + +Polar angle tht: 2.8798; Azimuth angle phi: 3.3161 +Force: 1.552667 0.308994 6.783693 +Torque: -0.109592 -0.018197 0.022822 + +Polar angle tht: 2.8798; Azimuth angle phi: 3.3598 +Force: 1.538483 0.385065 6.782696 +Torque: -0.136595 -0.018053 0.028200 + +Polar angle tht: 2.8798; Azimuth angle phi: 3.4034 +Force: 1.521219 0.460356 6.781478 +Torque: -0.163338 -0.017877 0.033362 + +Polar angle tht: 2.8798; Azimuth angle phi: 3.4470 +Force: 1.500920 0.534715 6.780041 +Torque: -0.189769 -0.017670 0.038271 + +Polar angle tht: 2.8798; Azimuth angle phi: 3.4907 +Force: 1.477636 0.607991 6.778383 +Torque: -0.215837 -0.017431 0.042889 + +Polar angle tht: 2.8798; Azimuth angle phi: 3.5343 +Force: 1.451426 0.680037 6.776508 +Torque: -0.241493 -0.017160 0.047181 + +Polar angle tht: 2.8798; Azimuth angle phi: 3.5779 +Force: 1.422355 0.750709 6.774414 +Torque: -0.266688 -0.016859 0.051113 + +Polar angle tht: 2.8798; Azimuth angle phi: 3.6216 +Force: 1.390495 0.819866 6.772104 +Torque: -0.291374 -0.016527 0.054656 + +Polar angle tht: 2.8798; Azimuth angle phi: 3.6652 +Force: 1.355926 0.887370 6.769579 +Torque: -0.315504 -0.016165 0.057784 + +Polar angle tht: 2.8798; Azimuth angle phi: 3.7088 +Force: 1.318731 0.953088 6.766841 +Torque: -0.339032 -0.015773 0.060471 + +Polar angle tht: 2.8798; Azimuth angle phi: 3.7525 +Force: 1.279003 1.016889 6.763891 +Torque: -0.361912 -0.015351 0.062699 + +Polar angle tht: 2.8798; Azimuth angle phi: 3.7961 +Force: 1.236838 1.078648 6.760731 +Torque: -0.384102 -0.014900 0.064449 + +Polar angle tht: 2.8798; Azimuth angle phi: 3.8397 +Force: 1.192338 1.138246 6.757364 +Torque: -0.405559 -0.014420 0.065708 + +Polar angle tht: 2.8798; Azimuth angle phi: 3.8834 +Force: 1.145611 1.195566 6.753793 +Torque: -0.426242 -0.013912 0.066468 + +Polar angle tht: 2.8798; Azimuth angle phi: 3.9270 +Force: 1.096767 1.250499 6.750020 +Torque: -0.446111 -0.013376 0.066722 + +Polar angle tht: 2.8798; Azimuth angle phi: 3.9706 +Force: 1.045924 1.302938 6.746049 +Torque: -0.465130 -0.012814 0.066468 + +Polar angle tht: 2.8798; Azimuth angle phi: 4.0143 +Force: 0.993199 1.352785 6.741884 +Torque: -0.483261 -0.012225 0.065708 + +Polar angle tht: 2.8798; Azimuth angle phi: 4.0579 +Force: 0.938718 1.399946 6.737528 +Torque: -0.500470 -0.011610 0.064448 + +Polar angle tht: 2.8798; Azimuth angle phi: 4.1015 +Force: 0.882605 1.444334 6.732987 +Torque: -0.516725 -0.010971 0.062698 + +Polar angle tht: 2.8798; Azimuth angle phi: 4.1452 +Force: 0.824989 1.485866 6.728265 +Torque: -0.531995 -0.010308 0.060470 + +Polar angle tht: 2.8798; Azimuth angle phi: 4.1888 +Force: 0.766002 1.524468 6.723368 +Torque: -0.546250 -0.009622 0.057783 + +Polar angle tht: 2.8798; Azimuth angle phi: 4.2324 +Force: 0.705775 1.560070 6.718301 +Torque: -0.559463 -0.008914 0.054655 + +Polar angle tht: 2.8798; Azimuth angle phi: 4.2761 +Force: 0.644443 1.592611 6.713072 +Torque: -0.571610 -0.008185 0.051112 + +Polar angle tht: 2.8798; Azimuth angle phi: 4.3197 +Force: 0.582141 1.622034 6.707687 +Torque: -0.582667 -0.007435 0.047179 + +Polar angle tht: 2.8798; Azimuth angle phi: 4.3633 +Force: 0.519004 1.648289 6.702153 +Torque: -0.592614 -0.006667 0.042888 + +Polar angle tht: 2.8798; Azimuth angle phi: 4.4070 +Force: 0.455167 1.671335 6.696479 +Torque: -0.601432 -0.005882 0.038270 + +Polar angle tht: 2.8798; Azimuth angle phi: 4.4506 +Force: 0.390767 1.691135 6.690673 +Torque: -0.609104 -0.005079 0.033361 + +Polar angle tht: 2.8798; Azimuth angle phi: 4.4942 +Force: 0.325938 1.707659 6.684744 +Torque: -0.615615 -0.004262 0.028198 + +Polar angle tht: 2.8798; Azimuth angle phi: 4.5379 +Force: 0.260814 1.720885 6.678701 +Torque: -0.620954 -0.003431 0.022820 + +Polar angle tht: 2.8798; Azimuth angle phi: 4.5815 +Force: 0.195528 1.730797 6.672555 +Torque: -0.625109 -0.002588 0.017269 + +Polar angle tht: 2.8798; Azimuth angle phi: 4.6251 +Force: 0.130212 1.737384 6.666316 +Torque: -0.628075 -0.001734 0.011586 + +Polar angle tht: 2.8798; Azimuth angle phi: 4.6688 +Force: 0.064993 1.740646 6.659994 +Torque: -0.629845 -0.000871 0.005815 + +Polar angle tht: 2.8798; Azimuth angle phi: 4.7124 +Force: 0.000000 1.740583 6.653603 +Torque: -0.630415 0.000000 -0.000000 + +Polar angle tht: 2.8798; Azimuth angle phi: 4.7560 +Force: -0.064993 1.740646 6.659994 +Torque: -0.629845 0.000871 -0.005815 + +Polar angle tht: 2.8798; Azimuth angle phi: 4.7997 +Force: -0.130212 1.737384 6.666316 +Torque: -0.628075 0.001734 -0.011586 + +Polar angle tht: 2.8798; Azimuth angle phi: 4.8433 +Force: -0.195528 1.730797 6.672555 +Torque: -0.625109 0.002588 -0.017269 + +Polar angle tht: 2.8798; Azimuth angle phi: 4.8869 +Force: -0.260814 1.720885 6.678701 +Torque: -0.620954 0.003431 -0.022820 + +Polar angle tht: 2.8798; Azimuth angle phi: 4.9306 +Force: -0.325938 1.707659 6.684744 +Torque: -0.615615 0.004262 -0.028198 + +Polar angle tht: 2.8798; Azimuth angle phi: 4.9742 +Force: -0.390767 1.691135 6.690673 +Torque: -0.609104 0.005079 -0.033361 + +Polar angle tht: 2.8798; Azimuth angle phi: 5.0178 +Force: -0.455167 1.671335 6.696479 +Torque: -0.601432 0.005882 -0.038270 + +Polar angle tht: 2.8798; Azimuth angle phi: 5.0615 +Force: -0.519004 1.648289 6.702153 +Torque: -0.592614 0.006667 -0.042888 + +Polar angle tht: 2.8798; Azimuth angle phi: 5.1051 +Force: -0.582141 1.622034 6.707687 +Torque: -0.582667 0.007435 -0.047179 + +Polar angle tht: 2.8798; Azimuth angle phi: 5.1487 +Force: -0.644443 1.592611 6.713072 +Torque: -0.571610 0.008185 -0.051112 + +Polar angle tht: 2.8798; Azimuth angle phi: 5.1924 +Force: -0.705775 1.560070 6.718301 +Torque: -0.559463 0.008914 -0.054655 + +Polar angle tht: 2.8798; Azimuth angle phi: 5.2360 +Force: -0.766002 1.524468 6.723368 +Torque: -0.546250 0.009622 -0.057783 + +Polar angle tht: 2.8798; Azimuth angle phi: 5.2796 +Force: -0.824989 1.485866 6.728265 +Torque: -0.531995 0.010308 -0.060470 + +Polar angle tht: 2.8798; Azimuth angle phi: 5.3233 +Force: -0.882605 1.444334 6.732987 +Torque: -0.516725 0.010971 -0.062698 + +Polar angle tht: 2.8798; Azimuth angle phi: 5.3669 +Force: -0.938718 1.399946 6.737528 +Torque: -0.500470 0.011610 -0.064448 + +Polar angle tht: 2.8798; Azimuth angle phi: 5.4105 +Force: -0.993199 1.352785 6.741884 +Torque: -0.483261 0.012225 -0.065708 + +Polar angle tht: 2.8798; Azimuth angle phi: 5.4542 +Force: -1.045924 1.302938 6.746049 +Torque: -0.465130 0.012814 -0.066468 + +Polar angle tht: 2.8798; Azimuth angle phi: 5.4978 +Force: -1.096767 1.250499 6.750020 +Torque: -0.446111 0.013376 -0.066722 + +Polar angle tht: 2.8798; Azimuth angle phi: 5.5414 +Force: -1.145611 1.195566 6.753793 +Torque: -0.426242 0.013912 -0.066468 + +Polar angle tht: 2.8798; Azimuth angle phi: 5.5851 +Force: -1.192338 1.138246 6.757364 +Torque: -0.405559 0.014420 -0.065708 + +Polar angle tht: 2.8798; Azimuth angle phi: 5.6287 +Force: -1.236838 1.078648 6.760731 +Torque: -0.384102 0.014900 -0.064449 + +Polar angle tht: 2.8798; Azimuth angle phi: 5.6723 +Force: -1.279003 1.016889 6.763891 +Torque: -0.361912 0.015351 -0.062699 + +Polar angle tht: 2.8798; Azimuth angle phi: 5.7160 +Force: -1.318731 0.953088 6.766841 +Torque: -0.339032 0.015773 -0.060471 + +Polar angle tht: 2.8798; Azimuth angle phi: 5.7596 +Force: -1.355926 0.887370 6.769579 +Torque: -0.315504 0.016165 -0.057784 + +Polar angle tht: 2.8798; Azimuth angle phi: 5.8032 +Force: -1.390495 0.819866 6.772104 +Torque: -0.291374 0.016527 -0.054656 + +Polar angle tht: 2.8798; Azimuth angle phi: 5.8469 +Force: -1.422355 0.750709 6.774414 +Torque: -0.266688 0.016859 -0.051113 + +Polar angle tht: 2.8798; Azimuth angle phi: 5.8905 +Force: -1.451426 0.680037 6.776508 +Torque: -0.241493 0.017160 -0.047181 + +Polar angle tht: 2.8798; Azimuth angle phi: 5.9341 +Force: -1.477636 0.607991 6.778383 +Torque: -0.215837 0.017431 -0.042889 + +Polar angle tht: 2.8798; Azimuth angle phi: 5.9778 +Force: -1.500920 0.534715 6.780041 +Torque: -0.189769 0.017670 -0.038271 + +Polar angle tht: 2.8798; Azimuth angle phi: 6.0214 +Force: -1.521219 0.460356 6.781478 +Torque: -0.163338 0.017877 -0.033362 + +Polar angle tht: 2.8798; Azimuth angle phi: 6.0650 +Force: -1.538483 0.385065 6.782696 +Torque: -0.136595 0.018053 -0.028200 + +Polar angle tht: 2.8798; Azimuth angle phi: 6.1087 +Force: -1.552667 0.308994 6.783693 +Torque: -0.109592 0.018197 -0.022822 + +Polar angle tht: 2.8798; Azimuth angle phi: 6.1523 +Force: -1.563737 0.232296 6.784469 +Torque: -0.082380 0.018310 -0.017271 + +Polar angle tht: 2.8798; Azimuth angle phi: 6.1959 +Force: -1.571664 0.155126 6.785023 +Torque: -0.055010 0.018390 -0.011588 + +Polar angle tht: 2.8798; Azimuth angle phi: 6.2396 +Force: -1.576428 0.077642 6.785356 +Torque: -0.027535 0.018438 -0.005817 + +Polar angle tht: 2.8798; Azimuth angle phi: 6.2832 +Force: -1.578018 0.000000 6.785467 +Torque: -0.000007 0.018454 -0.000002 + +Polar angle tht: 2.9234; Azimuth angle phi: 0.0000 +Force: -1.319975 0.000000 6.896181 +Torque: -0.000007 0.015835 -0.000002 + +Polar angle tht: 2.9234; Azimuth angle phi: 0.0436 +Force: -1.318658 -0.065303 6.896083 +Torque: 0.023219 0.015821 0.004065 + +Polar angle tht: 2.9234; Azimuth angle phi: 0.0873 +Force: -1.314708 -0.130475 6.895789 +Torque: 0.046400 0.015779 0.008100 + +Polar angle tht: 2.9234; Azimuth angle phi: 0.1309 +Force: -1.308137 -0.195384 6.895299 +Torque: 0.069493 0.015709 0.012074 + +Polar angle tht: 2.9234; Azimuth angle phi: 0.1745 +Force: -1.298959 -0.259902 6.894614 +Torque: 0.092454 0.015611 0.015956 + +Polar angle tht: 2.9234; Azimuth angle phi: 0.2182 +Force: -1.287197 -0.323897 6.893734 +Torque: 0.115238 0.015486 0.019717 + +Polar angle tht: 2.9234; Azimuth angle phi: 0.2618 +Force: -1.272880 -0.387243 6.892660 +Torque: 0.137802 0.015332 0.023328 + +Polar angle tht: 2.9234; Azimuth angle phi: 0.3054 +Force: -1.256042 -0.449813 6.891392 +Torque: 0.160103 0.015151 0.026761 + +Polar angle tht: 2.9234; Azimuth angle phi: 0.3491 +Force: -1.236724 -0.511481 6.889932 +Torque: 0.182098 0.014943 0.029990 + +Polar angle tht: 2.9234; Azimuth angle phi: 0.3927 +Force: -1.214972 -0.572125 6.888280 +Torque: 0.203746 0.014708 0.032991 + +Polar angle tht: 2.9234; Azimuth angle phi: 0.4363 +Force: -1.190839 -0.631624 6.886439 +Torque: 0.225005 0.014446 0.035741 + +Polar angle tht: 2.9234; Azimuth angle phi: 0.4800 +Force: -1.164382 -0.689860 6.884409 +Torque: 0.245835 0.014157 0.038219 + +Polar angle tht: 2.9234; Azimuth angle phi: 0.5236 +Force: -1.135665 -0.746719 6.882193 +Torque: 0.266195 0.013842 0.040406 + +Polar angle tht: 2.9234; Azimuth angle phi: 0.5672 +Force: -1.104755 -0.802088 6.879792 +Torque: 0.286048 0.013501 0.042286 + +Polar angle tht: 2.9234; Azimuth angle phi: 0.6109 +Force: -1.071726 -0.855859 6.877208 +Torque: 0.305355 0.013135 0.043844 + +Polar angle tht: 2.9234; Azimuth angle phi: 0.6545 +Force: -1.036656 -0.907927 6.874444 +Torque: 0.324080 0.012744 0.045068 + +Polar angle tht: 2.9234; Azimuth angle phi: 0.6981 +Force: -0.999625 -0.958191 6.871503 +Torque: 0.342186 0.012329 0.045949 + +Polar angle tht: 2.9234; Azimuth angle phi: 0.7418 +Force: -0.960722 -1.006553 6.868388 +Torque: 0.359639 0.011889 0.046480 + +Polar angle tht: 2.9234; Azimuth angle phi: 0.7854 +Force: -0.920034 -1.052921 6.865101 +Torque: 0.376407 0.011426 0.046658 + +Polar angle tht: 2.9234; Azimuth angle phi: 0.8290 +Force: -0.877657 -1.097205 6.861647 +Torque: 0.392457 0.010940 0.046480 + +Polar angle tht: 2.9234; Azimuth angle phi: 0.8727 +Force: -0.833686 -1.139323 6.858030 +Torque: 0.407758 0.010433 0.045949 + +Polar angle tht: 2.9234; Azimuth angle phi: 0.9163 +Force: -0.788222 -1.179194 6.854253 +Torque: 0.422282 0.009903 0.045068 + +Polar angle tht: 2.9234; Azimuth angle phi: 0.9599 +Force: -0.741366 -1.216745 6.850322 +Torque: 0.436000 0.009353 0.043844 + +Polar angle tht: 2.9234; Azimuth angle phi: 1.0036 +Force: -0.693222 -1.251906 6.846240 +Torque: 0.448887 0.008783 0.042287 + +Polar angle tht: 2.9234; Azimuth angle phi: 1.0472 +Force: -0.643898 -1.284612 6.842015 +Torque: 0.460919 0.008194 0.040407 + +Polar angle tht: 2.9234; Azimuth angle phi: 1.0908 +Force: -0.593501 -1.314805 6.837650 +Torque: 0.472072 0.007587 0.038220 + +Polar angle tht: 2.9234; Azimuth angle phi: 1.1345 +Force: -0.542141 -1.342430 6.833153 +Torque: 0.482325 0.006962 0.035742 + +Polar angle tht: 2.9234; Azimuth angle phi: 1.1781 +Force: -0.489929 -1.367440 6.828529 +Torque: 0.491660 0.006321 0.032992 + +Polar angle tht: 2.9234; Azimuth angle phi: 1.2217 +Force: -0.436975 -1.389791 6.823786 +Torque: 0.500057 0.005665 0.029991 + +Polar angle tht: 2.9234; Azimuth angle phi: 1.2654 +Force: -0.383391 -1.409446 6.818930 +Torque: 0.507501 0.004994 0.026762 + +Polar angle tht: 2.9234; Azimuth angle phi: 1.3090 +Force: -0.329289 -1.426373 6.813970 +Torque: 0.513979 0.004310 0.023329 + +Polar angle tht: 2.9234; Azimuth angle phi: 1.3526 +Force: -0.274780 -1.440545 6.808914 +Torque: 0.519477 0.003615 0.019719 + +Polar angle tht: 2.9234; Azimuth angle phi: 1.3963 +Force: -0.219976 -1.451942 6.803769 +Torque: 0.523987 0.002908 0.015958 + +Polar angle tht: 2.9234; Azimuth angle phi: 1.4399 +Force: -0.164987 -1.460548 6.798544 +Torque: 0.527498 0.002192 0.012076 + +Polar angle tht: 2.9234; Azimuth angle phi: 1.4835 +Force: -0.109923 -1.466354 6.793250 +Torque: 0.530005 0.001468 0.008102 + +Polar angle tht: 2.9234; Azimuth angle phi: 1.5272 +Force: -0.054892 -1.469354 6.787894 +Torque: 0.531502 0.000737 0.004067 + +Polar angle tht: 2.9234; Azimuth angle phi: 1.5708 +Force: 0.000000 -1.469551 6.782488 +Torque: 0.531988 0.000000 0.000000 + +Polar angle tht: 2.9234; Azimuth angle phi: 1.6144 +Force: 0.054892 -1.469354 6.787894 +Torque: 0.531502 -0.000737 -0.004067 + +Polar angle tht: 2.9234; Azimuth angle phi: 1.6581 +Force: 0.109923 -1.466354 6.793250 +Torque: 0.530005 -0.001468 -0.008102 + +Polar angle tht: 2.9234; Azimuth angle phi: 1.7017 +Force: 0.164987 -1.460548 6.798544 +Torque: 0.527498 -0.002192 -0.012076 + +Polar angle tht: 2.9234; Azimuth angle phi: 1.7453 +Force: 0.219976 -1.451942 6.803769 +Torque: 0.523987 -0.002908 -0.015958 + +Polar angle tht: 2.9234; Azimuth angle phi: 1.7890 +Force: 0.274780 -1.440545 6.808914 +Torque: 0.519477 -0.003615 -0.019719 + +Polar angle tht: 2.9234; Azimuth angle phi: 1.8326 +Force: 0.329289 -1.426373 6.813970 +Torque: 0.513979 -0.004310 -0.023329 + +Polar angle tht: 2.9234; Azimuth angle phi: 1.8762 +Force: 0.383391 -1.409446 6.818930 +Torque: 0.507501 -0.004994 -0.026762 + +Polar angle tht: 2.9234; Azimuth angle phi: 1.9199 +Force: 0.436975 -1.389791 6.823786 +Torque: 0.500057 -0.005665 -0.029991 + +Polar angle tht: 2.9234; Azimuth angle phi: 1.9635 +Force: 0.489929 -1.367440 6.828529 +Torque: 0.491660 -0.006321 -0.032992 + +Polar angle tht: 2.9234; Azimuth angle phi: 2.0071 +Force: 0.542141 -1.342430 6.833153 +Torque: 0.482325 -0.006962 -0.035742 + +Polar angle tht: 2.9234; Azimuth angle phi: 2.0508 +Force: 0.593501 -1.314805 6.837650 +Torque: 0.472072 -0.007587 -0.038220 + +Polar angle tht: 2.9234; Azimuth angle phi: 2.0944 +Force: 0.643898 -1.284612 6.842015 +Torque: 0.460919 -0.008194 -0.040407 + +Polar angle tht: 2.9234; Azimuth angle phi: 2.1380 +Force: 0.693222 -1.251906 6.846240 +Torque: 0.448887 -0.008783 -0.042287 + +Polar angle tht: 2.9234; Azimuth angle phi: 2.1817 +Force: 0.741366 -1.216745 6.850322 +Torque: 0.436000 -0.009353 -0.043844 + +Polar angle tht: 2.9234; Azimuth angle phi: 2.2253 +Force: 0.788222 -1.179194 6.854253 +Torque: 0.422282 -0.009903 -0.045068 + +Polar angle tht: 2.9234; Azimuth angle phi: 2.2689 +Force: 0.833686 -1.139323 6.858030 +Torque: 0.407758 -0.010433 -0.045949 + +Polar angle tht: 2.9234; Azimuth angle phi: 2.3126 +Force: 0.877657 -1.097205 6.861647 +Torque: 0.392457 -0.010940 -0.046480 + +Polar angle tht: 2.9234; Azimuth angle phi: 2.3562 +Force: 0.920034 -1.052921 6.865101 +Torque: 0.376407 -0.011426 -0.046658 + +Polar angle tht: 2.9234; Azimuth angle phi: 2.3998 +Force: 0.960722 -1.006553 6.868388 +Torque: 0.359639 -0.011889 -0.046480 + +Polar angle tht: 2.9234; Azimuth angle phi: 2.4435 +Force: 0.999625 -0.958191 6.871503 +Torque: 0.342186 -0.012329 -0.045949 + +Polar angle tht: 2.9234; Azimuth angle phi: 2.4871 +Force: 1.036656 -0.907927 6.874444 +Torque: 0.324080 -0.012744 -0.045068 + +Polar angle tht: 2.9234; Azimuth angle phi: 2.5307 +Force: 1.071726 -0.855859 6.877208 +Torque: 0.305355 -0.013135 -0.043844 + +Polar angle tht: 2.9234; Azimuth angle phi: 2.5744 +Force: 1.104755 -0.802088 6.879792 +Torque: 0.286048 -0.013501 -0.042286 + +Polar angle tht: 2.9234; Azimuth angle phi: 2.6180 +Force: 1.135665 -0.746719 6.882193 +Torque: 0.266195 -0.013842 -0.040406 + +Polar angle tht: 2.9234; Azimuth angle phi: 2.6616 +Force: 1.164382 -0.689860 6.884409 +Torque: 0.245835 -0.014157 -0.038219 + +Polar angle tht: 2.9234; Azimuth angle phi: 2.7053 +Force: 1.190839 -0.631624 6.886439 +Torque: 0.225005 -0.014446 -0.035741 + +Polar angle tht: 2.9234; Azimuth angle phi: 2.7489 +Force: 1.214972 -0.572125 6.888280 +Torque: 0.203746 -0.014708 -0.032991 + +Polar angle tht: 2.9234; Azimuth angle phi: 2.7925 +Force: 1.236724 -0.511481 6.889932 +Torque: 0.182098 -0.014943 -0.029990 + +Polar angle tht: 2.9234; Azimuth angle phi: 2.8362 +Force: 1.256042 -0.449813 6.891392 +Torque: 0.160103 -0.015151 -0.026761 + +Polar angle tht: 2.9234; Azimuth angle phi: 2.8798 +Force: 1.272880 -0.387243 6.892660 +Torque: 0.137802 -0.015332 -0.023328 + +Polar angle tht: 2.9234; Azimuth angle phi: 2.9234 +Force: 1.287197 -0.323897 6.893734 +Torque: 0.115238 -0.015486 -0.019717 + +Polar angle tht: 2.9234; Azimuth angle phi: 2.9671 +Force: 1.298959 -0.259902 6.894614 +Torque: 0.092454 -0.015611 -0.015956 + +Polar angle tht: 2.9234; Azimuth angle phi: 3.0107 +Force: 1.308137 -0.195384 6.895299 +Torque: 0.069493 -0.015709 -0.012074 + +Polar angle tht: 2.9234; Azimuth angle phi: 3.0543 +Force: 1.314708 -0.130475 6.895789 +Torque: 0.046400 -0.015779 -0.008100 + +Polar angle tht: 2.9234; Azimuth angle phi: 3.0980 +Force: 1.318658 -0.065303 6.896083 +Torque: 0.023219 -0.015821 -0.004065 + +Polar angle tht: 2.9234; Azimuth angle phi: 3.1416 +Force: 1.319975 0.000000 6.896181 +Torque: -0.000007 -0.015835 0.000002 + +Polar angle tht: 2.9234; Azimuth angle phi: 3.1852 +Force: 1.318658 0.065303 6.896083 +Torque: -0.023233 -0.015821 0.004069 + +Polar angle tht: 2.9234; Azimuth angle phi: 3.2289 +Force: 1.314708 0.130475 6.895789 +Torque: -0.046415 -0.015779 0.008104 + +Polar angle tht: 2.9234; Azimuth angle phi: 3.2725 +Force: 1.308137 0.195384 6.895299 +Torque: -0.069508 -0.015709 0.012078 + +Polar angle tht: 2.9234; Azimuth angle phi: 3.3161 +Force: 1.298959 0.259902 6.894614 +Torque: -0.092468 -0.015611 0.015960 + +Polar angle tht: 2.9234; Azimuth angle phi: 3.3598 +Force: 1.287197 0.323897 6.893734 +Torque: -0.115252 -0.015486 0.019721 + +Polar angle tht: 2.9234; Azimuth angle phi: 3.4034 +Force: 1.272880 0.387243 6.892660 +Torque: -0.137816 -0.015332 0.023332 + +Polar angle tht: 2.9234; Azimuth angle phi: 3.4470 +Force: 1.256042 0.449813 6.891392 +Torque: -0.160117 -0.015151 0.026765 + +Polar angle tht: 2.9234; Azimuth angle phi: 3.4907 +Force: 1.236724 0.511481 6.889932 +Torque: -0.182113 -0.014943 0.029994 + +Polar angle tht: 2.9234; Azimuth angle phi: 3.5343 +Force: 1.214972 0.572125 6.888280 +Torque: -0.203761 -0.014708 0.032995 + +Polar angle tht: 2.9234; Azimuth angle phi: 3.5779 +Force: 1.190839 0.631624 6.886439 +Torque: -0.225020 -0.014446 0.035745 + +Polar angle tht: 2.9234; Azimuth angle phi: 3.6216 +Force: 1.164382 0.689860 6.884409 +Torque: -0.245849 -0.014157 0.038223 + +Polar angle tht: 2.9234; Azimuth angle phi: 3.6652 +Force: 1.135665 0.746719 6.882193 +Torque: -0.266210 -0.013842 0.040410 + +Polar angle tht: 2.9234; Azimuth angle phi: 3.7088 +Force: 1.104755 0.802088 6.879792 +Torque: -0.286063 -0.013501 0.042289 + +Polar angle tht: 2.9234; Azimuth angle phi: 3.7525 +Force: 1.071726 0.855859 6.877208 +Torque: -0.305370 -0.013135 0.043847 + +Polar angle tht: 2.9234; Azimuth angle phi: 3.7961 +Force: 1.036656 0.907927 6.874444 +Torque: -0.324094 -0.012744 0.045071 + +Polar angle tht: 2.9234; Azimuth angle phi: 3.8397 +Force: 0.999625 0.958191 6.871503 +Torque: -0.342201 -0.012329 0.045952 + +Polar angle tht: 2.9234; Azimuth angle phi: 3.8834 +Force: 0.960722 1.006553 6.868388 +Torque: -0.359654 -0.011889 0.046483 + +Polar angle tht: 2.9234; Azimuth angle phi: 3.9270 +Force: 0.920034 1.052921 6.865101 +Torque: -0.376422 -0.011426 0.046661 + +Polar angle tht: 2.9234; Azimuth angle phi: 3.9706 +Force: 0.877657 1.097205 6.861647 +Torque: -0.392471 -0.010940 0.046483 + +Polar angle tht: 2.9234; Azimuth angle phi: 4.0143 +Force: 0.833686 1.139323 6.858030 +Torque: -0.407773 -0.010433 0.045952 + +Polar angle tht: 2.9234; Azimuth angle phi: 4.0579 +Force: 0.788222 1.179194 6.854253 +Torque: -0.422296 -0.009903 0.045071 + +Polar angle tht: 2.9234; Azimuth angle phi: 4.1015 +Force: 0.741366 1.216745 6.850322 +Torque: -0.436015 -0.009353 0.043847 + +Polar angle tht: 2.9234; Azimuth angle phi: 4.1452 +Force: 0.693222 1.251906 6.846240 +Torque: -0.448902 -0.008783 0.042289 + +Polar angle tht: 2.9234; Azimuth angle phi: 4.1888 +Force: 0.643898 1.284612 6.842015 +Torque: -0.460934 -0.008194 0.040409 + +Polar angle tht: 2.9234; Azimuth angle phi: 4.2324 +Force: 0.593501 1.314805 6.837650 +Torque: -0.472087 -0.007587 0.038222 + +Polar angle tht: 2.9234; Azimuth angle phi: 4.2761 +Force: 0.542141 1.342430 6.833153 +Torque: -0.482340 -0.006962 0.035744 + +Polar angle tht: 2.9234; Azimuth angle phi: 4.3197 +Force: 0.489929 1.367440 6.828529 +Torque: -0.491674 -0.006321 0.032994 + +Polar angle tht: 2.9234; Azimuth angle phi: 4.3633 +Force: 0.436975 1.389791 6.823786 +Torque: -0.500072 -0.005665 0.029993 + +Polar angle tht: 2.9234; Azimuth angle phi: 4.4070 +Force: 0.383391 1.409446 6.818930 +Torque: -0.507516 -0.004994 0.026763 + +Polar angle tht: 2.9234; Azimuth angle phi: 4.4506 +Force: 0.329289 1.426373 6.813970 +Torque: -0.513994 -0.004310 0.023330 + +Polar angle tht: 2.9234; Azimuth angle phi: 4.4942 +Force: 0.274780 1.440545 6.808914 +Torque: -0.519492 -0.003615 0.019720 + +Polar angle tht: 2.9234; Azimuth angle phi: 4.5379 +Force: 0.219976 1.451942 6.803769 +Torque: -0.524002 -0.002908 0.015959 + +Polar angle tht: 2.9234; Azimuth angle phi: 4.5815 +Force: 0.164987 1.460548 6.798544 +Torque: -0.527513 -0.002192 0.012077 + +Polar angle tht: 2.9234; Azimuth angle phi: 4.6251 +Force: 0.109923 1.466354 6.793250 +Torque: -0.530019 -0.001468 0.008102 + +Polar angle tht: 2.9234; Azimuth angle phi: 4.6688 +Force: 0.054892 1.469354 6.787894 +Torque: -0.531517 -0.000737 0.004067 + +Polar angle tht: 2.9234; Azimuth angle phi: 4.7124 +Force: 0.000000 1.469551 6.782488 +Torque: -0.532003 0.000000 -0.000000 + +Polar angle tht: 2.9234; Azimuth angle phi: 4.7560 +Force: -0.054892 1.469354 6.787894 +Torque: -0.531517 0.000737 -0.004067 + +Polar angle tht: 2.9234; Azimuth angle phi: 4.7997 +Force: -0.109923 1.466354 6.793250 +Torque: -0.530019 0.001468 -0.008102 + +Polar angle tht: 2.9234; Azimuth angle phi: 4.8433 +Force: -0.164987 1.460548 6.798544 +Torque: -0.527513 0.002192 -0.012077 + +Polar angle tht: 2.9234; Azimuth angle phi: 4.8869 +Force: -0.219976 1.451942 6.803769 +Torque: -0.524002 0.002908 -0.015959 + +Polar angle tht: 2.9234; Azimuth angle phi: 4.9306 +Force: -0.274780 1.440545 6.808914 +Torque: -0.519492 0.003615 -0.019720 + +Polar angle tht: 2.9234; Azimuth angle phi: 4.9742 +Force: -0.329289 1.426373 6.813970 +Torque: -0.513994 0.004310 -0.023330 + +Polar angle tht: 2.9234; Azimuth angle phi: 5.0178 +Force: -0.383391 1.409446 6.818930 +Torque: -0.507516 0.004994 -0.026763 + +Polar angle tht: 2.9234; Azimuth angle phi: 5.0615 +Force: -0.436975 1.389791 6.823786 +Torque: -0.500072 0.005665 -0.029993 + +Polar angle tht: 2.9234; Azimuth angle phi: 5.1051 +Force: -0.489929 1.367440 6.828529 +Torque: -0.491674 0.006321 -0.032994 + +Polar angle tht: 2.9234; Azimuth angle phi: 5.1487 +Force: -0.542141 1.342430 6.833153 +Torque: -0.482340 0.006962 -0.035744 + +Polar angle tht: 2.9234; Azimuth angle phi: 5.1924 +Force: -0.593501 1.314805 6.837650 +Torque: -0.472087 0.007587 -0.038222 + +Polar angle tht: 2.9234; Azimuth angle phi: 5.2360 +Force: -0.643898 1.284612 6.842015 +Torque: -0.460934 0.008194 -0.040409 + +Polar angle tht: 2.9234; Azimuth angle phi: 5.2796 +Force: -0.693222 1.251906 6.846240 +Torque: -0.448902 0.008783 -0.042289 + +Polar angle tht: 2.9234; Azimuth angle phi: 5.3233 +Force: -0.741366 1.216745 6.850322 +Torque: -0.436015 0.009353 -0.043847 + +Polar angle tht: 2.9234; Azimuth angle phi: 5.3669 +Force: -0.788222 1.179194 6.854253 +Torque: -0.422296 0.009903 -0.045071 + +Polar angle tht: 2.9234; Azimuth angle phi: 5.4105 +Force: -0.833686 1.139323 6.858030 +Torque: -0.407773 0.010433 -0.045952 + +Polar angle tht: 2.9234; Azimuth angle phi: 5.4542 +Force: -0.877657 1.097205 6.861647 +Torque: -0.392471 0.010940 -0.046483 + +Polar angle tht: 2.9234; Azimuth angle phi: 5.4978 +Force: -0.920034 1.052921 6.865101 +Torque: -0.376422 0.011426 -0.046661 + +Polar angle tht: 2.9234; Azimuth angle phi: 5.5414 +Force: -0.960722 1.006553 6.868388 +Torque: -0.359654 0.011889 -0.046483 + +Polar angle tht: 2.9234; Azimuth angle phi: 5.5851 +Force: -0.999625 0.958191 6.871503 +Torque: -0.342201 0.012329 -0.045952 + +Polar angle tht: 2.9234; Azimuth angle phi: 5.6287 +Force: -1.036656 0.907927 6.874444 +Torque: -0.324094 0.012744 -0.045071 + +Polar angle tht: 2.9234; Azimuth angle phi: 5.6723 +Force: -1.071726 0.855859 6.877208 +Torque: -0.305370 0.013135 -0.043847 + +Polar angle tht: 2.9234; Azimuth angle phi: 5.7160 +Force: -1.104755 0.802088 6.879792 +Torque: -0.286063 0.013501 -0.042289 + +Polar angle tht: 2.9234; Azimuth angle phi: 5.7596 +Force: -1.135665 0.746719 6.882193 +Torque: -0.266210 0.013842 -0.040410 + +Polar angle tht: 2.9234; Azimuth angle phi: 5.8032 +Force: -1.164382 0.689860 6.884409 +Torque: -0.245849 0.014157 -0.038223 + +Polar angle tht: 2.9234; Azimuth angle phi: 5.8469 +Force: -1.190839 0.631624 6.886439 +Torque: -0.225020 0.014446 -0.035745 + +Polar angle tht: 2.9234; Azimuth angle phi: 5.8905 +Force: -1.214972 0.572125 6.888280 +Torque: -0.203761 0.014708 -0.032995 + +Polar angle tht: 2.9234; Azimuth angle phi: 5.9341 +Force: -1.236724 0.511481 6.889932 +Torque: -0.182113 0.014943 -0.029994 + +Polar angle tht: 2.9234; Azimuth angle phi: 5.9778 +Force: -1.256042 0.449813 6.891392 +Torque: -0.160117 0.015151 -0.026765 + +Polar angle tht: 2.9234; Azimuth angle phi: 6.0214 +Force: -1.272880 0.387243 6.892660 +Torque: -0.137816 0.015332 -0.023332 + +Polar angle tht: 2.9234; Azimuth angle phi: 6.0650 +Force: -1.287197 0.323897 6.893734 +Torque: -0.115252 0.015486 -0.019721 + +Polar angle tht: 2.9234; Azimuth angle phi: 6.1087 +Force: -1.298959 0.259902 6.894614 +Torque: -0.092468 0.015611 -0.015960 + +Polar angle tht: 2.9234; Azimuth angle phi: 6.1523 +Force: -1.308137 0.195384 6.895299 +Torque: -0.069508 0.015709 -0.012078 + +Polar angle tht: 2.9234; Azimuth angle phi: 6.1959 +Force: -1.314708 0.130475 6.895789 +Torque: -0.046415 0.015779 -0.008104 + +Polar angle tht: 2.9234; Azimuth angle phi: 6.2396 +Force: -1.318658 0.065303 6.896083 +Torque: -0.023233 0.015821 -0.004069 + +Polar angle tht: 2.9234; Azimuth angle phi: 6.2832 +Force: -1.319975 0.000000 6.896181 +Torque: -0.000007 0.015835 -0.000002 + +Polar angle tht: 2.9671; Azimuth angle phi: 0.0000 +Force: -1.057325 0.000000 6.983012 +Torque: -0.000007 0.013003 -0.000002 + +Polar angle tht: 2.9671; Azimuth angle phi: 0.0436 +Force: -1.056279 -0.052603 6.982929 +Torque: 0.018761 0.012991 0.002616 + +Polar angle tht: 2.9671; Azimuth angle phi: 0.0873 +Force: -1.053144 -0.105101 6.982681 +Torque: 0.037495 0.012956 0.005214 + +Polar angle tht: 2.9671; Azimuth angle phi: 0.1309 +Force: -1.047928 -0.157391 6.982268 +Torque: 0.056156 0.012898 0.007772 + +Polar angle tht: 2.9671; Azimuth angle phi: 0.1745 +Force: -1.040642 -0.209367 6.981691 +Torque: 0.074711 0.012816 0.010270 + +Polar angle tht: 2.9671; Azimuth angle phi: 0.2182 +Force: -1.031303 -0.260928 6.980949 +Torque: 0.093123 0.012711 0.012691 + +Polar angle tht: 2.9671; Azimuth angle phi: 0.2618 +Force: -1.019934 -0.311971 6.980044 +Torque: 0.111357 0.012583 0.015015 + +Polar angle tht: 2.9671; Azimuth angle phi: 0.3054 +Force: -1.006560 -0.362394 6.978976 +Torque: 0.129379 0.012432 0.017225 + +Polar angle tht: 2.9671; Azimuth angle phi: 0.3491 +Force: -0.991213 -0.412099 6.977747 +Torque: 0.147154 0.012259 0.019304 + +Polar angle tht: 2.9671; Azimuth angle phi: 0.3927 +Force: -0.973927 -0.460987 6.976358 +Torque: 0.164648 0.012063 0.021235 + +Polar angle tht: 2.9671; Azimuth angle phi: 0.4363 +Force: -0.954744 -0.508961 6.974811 +Torque: 0.181829 0.011845 0.023005 + +Polar angle tht: 2.9671; Azimuth angle phi: 0.4800 +Force: -0.933707 -0.555928 6.973107 +Torque: 0.198662 0.011605 0.024601 + +Polar angle tht: 2.9671; Azimuth angle phi: 0.5236 +Force: -0.910864 -0.601794 6.971248 +Torque: 0.215117 0.011343 0.026008 + +Polar angle tht: 2.9671; Azimuth angle phi: 0.5672 +Force: -0.886267 -0.646472 6.969236 +Torque: 0.231161 0.011060 0.027218 + +Polar angle tht: 2.9671; Azimuth angle phi: 0.6109 +Force: -0.859973 -0.689873 6.967073 +Torque: 0.246765 0.010757 0.028221 + +Polar angle tht: 2.9671; Azimuth angle phi: 0.6545 +Force: -0.832041 -0.731913 6.964763 +Torque: 0.261898 0.010432 0.029009 + +Polar angle tht: 2.9671; Azimuth angle phi: 0.6981 +Force: -0.802533 -0.772511 6.962307 +Torque: 0.276532 0.010088 0.029576 + +Polar angle tht: 2.9671; Azimuth angle phi: 0.7418 +Force: -0.771518 -0.811589 6.959709 +Torque: 0.290638 0.009724 0.029918 + +Polar angle tht: 2.9671; Azimuth angle phi: 0.7854 +Force: -0.739062 -0.849071 6.956972 +Torque: 0.304190 0.009342 0.030032 + +Polar angle tht: 2.9671; Azimuth angle phi: 0.8290 +Force: -0.705239 -0.884886 6.954100 +Torque: 0.317163 0.008940 0.029918 + +Polar angle tht: 2.9671; Azimuth angle phi: 0.8727 +Force: -0.670123 -0.918966 6.951095 +Torque: 0.329530 0.008521 0.029576 + +Polar angle tht: 2.9671; Azimuth angle phi: 0.9163 +Force: -0.633792 -0.951248 6.947963 +Torque: 0.341270 0.008085 0.029009 + +Polar angle tht: 2.9671; Azimuth angle phi: 0.9599 +Force: -0.596324 -0.981669 6.944707 +Torque: 0.352359 0.007632 0.028221 + +Polar angle tht: 2.9671; Azimuth angle phi: 1.0036 +Force: -0.557801 -1.010174 6.941333 +Torque: 0.362776 0.007163 0.027219 + +Polar angle tht: 2.9671; Azimuth angle phi: 1.0472 +Force: -0.518306 -1.036711 6.937844 +Torque: 0.372502 0.006679 0.026009 + +Polar angle tht: 2.9671; Azimuth angle phi: 1.0908 +Force: -0.477922 -1.061230 6.934247 +Torque: 0.381519 0.006181 0.024601 + +Polar angle tht: 2.9671; Azimuth angle phi: 1.1345 +Force: -0.436736 -1.083687 6.930546 +Torque: 0.389808 0.005669 0.023006 + +Polar angle tht: 2.9671; Azimuth angle phi: 1.1781 +Force: -0.394834 -1.104043 6.926747 +Torque: 0.397355 0.005144 0.021236 + +Polar angle tht: 2.9671; Azimuth angle phi: 1.2217 +Force: -0.352304 -1.122262 6.922856 +Torque: 0.404144 0.004607 0.019305 + +Polar angle tht: 2.9671; Azimuth angle phi: 1.2654 +Force: -0.309233 -1.138311 6.918879 +Torque: 0.410164 0.004060 0.017226 + +Polar angle tht: 2.9671; Azimuth angle phi: 1.3090 +Force: -0.265709 -1.152165 6.914824 +Torque: 0.415402 0.003502 0.015016 + +Polar angle tht: 2.9671; Azimuth angle phi: 1.3526 +Force: -0.221821 -1.163800 6.910695 +Torque: 0.419850 0.002935 0.012692 + +Polar angle tht: 2.9671; Azimuth angle phi: 1.3963 +Force: -0.177658 -1.173198 6.906502 +Torque: 0.423497 0.002360 0.010272 + +Polar angle tht: 2.9671; Azimuth angle phi: 1.4399 +Force: -0.133307 -1.180346 6.902251 +Torque: 0.426338 0.001778 0.007773 + +Polar angle tht: 2.9671; Azimuth angle phi: 1.4835 +Force: -0.088856 -1.185234 6.897949 +Torque: 0.428368 0.001190 0.005215 + +Polar angle tht: 2.9671; Azimuth angle phi: 1.5272 +Force: -0.044392 -1.187856 6.893605 +Torque: 0.429581 0.000597 0.002618 + +Polar angle tht: 2.9671; Azimuth angle phi: 1.5708 +Force: 0.000000 -1.188214 6.889226 +Torque: 0.429977 0.000000 0.000000 + +Polar angle tht: 2.9671; Azimuth angle phi: 1.6144 +Force: 0.044392 -1.187856 6.893605 +Torque: 0.429581 -0.000597 -0.002618 + +Polar angle tht: 2.9671; Azimuth angle phi: 1.6581 +Force: 0.088856 -1.185234 6.897949 +Torque: 0.428368 -0.001190 -0.005215 + +Polar angle tht: 2.9671; Azimuth angle phi: 1.7017 +Force: 0.133307 -1.180346 6.902251 +Torque: 0.426338 -0.001778 -0.007773 + +Polar angle tht: 2.9671; Azimuth angle phi: 1.7453 +Force: 0.177658 -1.173198 6.906502 +Torque: 0.423497 -0.002360 -0.010272 + +Polar angle tht: 2.9671; Azimuth angle phi: 1.7890 +Force: 0.221821 -1.163800 6.910695 +Torque: 0.419850 -0.002935 -0.012692 + +Polar angle tht: 2.9671; Azimuth angle phi: 1.8326 +Force: 0.265709 -1.152165 6.914824 +Torque: 0.415402 -0.003502 -0.015016 + +Polar angle tht: 2.9671; Azimuth angle phi: 1.8762 +Force: 0.309233 -1.138311 6.918879 +Torque: 0.410164 -0.004060 -0.017226 + +Polar angle tht: 2.9671; Azimuth angle phi: 1.9199 +Force: 0.352304 -1.122262 6.922856 +Torque: 0.404144 -0.004607 -0.019305 + +Polar angle tht: 2.9671; Azimuth angle phi: 1.9635 +Force: 0.394834 -1.104043 6.926747 +Torque: 0.397355 -0.005144 -0.021236 + +Polar angle tht: 2.9671; Azimuth angle phi: 2.0071 +Force: 0.436736 -1.083687 6.930546 +Torque: 0.389808 -0.005669 -0.023006 + +Polar angle tht: 2.9671; Azimuth angle phi: 2.0508 +Force: 0.477922 -1.061230 6.934247 +Torque: 0.381519 -0.006181 -0.024601 + +Polar angle tht: 2.9671; Azimuth angle phi: 2.0944 +Force: 0.518306 -1.036711 6.937844 +Torque: 0.372502 -0.006679 -0.026009 + +Polar angle tht: 2.9671; Azimuth angle phi: 2.1380 +Force: 0.557801 -1.010174 6.941333 +Torque: 0.362776 -0.007163 -0.027219 + +Polar angle tht: 2.9671; Azimuth angle phi: 2.1817 +Force: 0.596324 -0.981669 6.944707 +Torque: 0.352359 -0.007632 -0.028221 + +Polar angle tht: 2.9671; Azimuth angle phi: 2.2253 +Force: 0.633792 -0.951248 6.947963 +Torque: 0.341270 -0.008085 -0.029009 + +Polar angle tht: 2.9671; Azimuth angle phi: 2.2689 +Force: 0.670123 -0.918966 6.951095 +Torque: 0.329530 -0.008521 -0.029576 + +Polar angle tht: 2.9671; Azimuth angle phi: 2.3126 +Force: 0.705239 -0.884886 6.954100 +Torque: 0.317163 -0.008940 -0.029918 + +Polar angle tht: 2.9671; Azimuth angle phi: 2.3562 +Force: 0.739062 -0.849071 6.956972 +Torque: 0.304190 -0.009342 -0.030032 + +Polar angle tht: 2.9671; Azimuth angle phi: 2.3998 +Force: 0.771518 -0.811589 6.959709 +Torque: 0.290638 -0.009724 -0.029918 + +Polar angle tht: 2.9671; Azimuth angle phi: 2.4435 +Force: 0.802533 -0.772511 6.962307 +Torque: 0.276532 -0.010088 -0.029576 + +Polar angle tht: 2.9671; Azimuth angle phi: 2.4871 +Force: 0.832041 -0.731913 6.964763 +Torque: 0.261898 -0.010432 -0.029009 + +Polar angle tht: 2.9671; Azimuth angle phi: 2.5307 +Force: 0.859973 -0.689873 6.967073 +Torque: 0.246765 -0.010757 -0.028221 + +Polar angle tht: 2.9671; Azimuth angle phi: 2.5744 +Force: 0.886267 -0.646472 6.969236 +Torque: 0.231161 -0.011060 -0.027218 + +Polar angle tht: 2.9671; Azimuth angle phi: 2.6180 +Force: 0.910864 -0.601794 6.971248 +Torque: 0.215117 -0.011343 -0.026008 + +Polar angle tht: 2.9671; Azimuth angle phi: 2.6616 +Force: 0.933707 -0.555928 6.973107 +Torque: 0.198662 -0.011605 -0.024601 + +Polar angle tht: 2.9671; Azimuth angle phi: 2.7053 +Force: 0.954744 -0.508961 6.974811 +Torque: 0.181829 -0.011845 -0.023005 + +Polar angle tht: 2.9671; Azimuth angle phi: 2.7489 +Force: 0.973927 -0.460987 6.976358 +Torque: 0.164648 -0.012063 -0.021235 + +Polar angle tht: 2.9671; Azimuth angle phi: 2.7925 +Force: 0.991213 -0.412099 6.977747 +Torque: 0.147154 -0.012259 -0.019304 + +Polar angle tht: 2.9671; Azimuth angle phi: 2.8362 +Force: 1.006560 -0.362394 6.978976 +Torque: 0.129379 -0.012432 -0.017225 + +Polar angle tht: 2.9671; Azimuth angle phi: 2.8798 +Force: 1.019934 -0.311971 6.980044 +Torque: 0.111357 -0.012583 -0.015015 + +Polar angle tht: 2.9671; Azimuth angle phi: 2.9234 +Force: 1.031303 -0.260928 6.980949 +Torque: 0.093123 -0.012711 -0.012691 + +Polar angle tht: 2.9671; Azimuth angle phi: 2.9671 +Force: 1.040642 -0.209367 6.981691 +Torque: 0.074711 -0.012816 -0.010270 + +Polar angle tht: 2.9671; Azimuth angle phi: 3.0107 +Force: 1.047928 -0.157391 6.982268 +Torque: 0.056156 -0.012898 -0.007772 + +Polar angle tht: 2.9671; Azimuth angle phi: 3.0543 +Force: 1.053144 -0.105101 6.982681 +Torque: 0.037495 -0.012956 -0.005214 + +Polar angle tht: 2.9671; Azimuth angle phi: 3.0980 +Force: 1.056279 -0.052603 6.982929 +Torque: 0.018761 -0.012991 -0.002616 + +Polar angle tht: 2.9671; Azimuth angle phi: 3.1416 +Force: 1.057325 0.000000 6.983012 +Torque: -0.000007 -0.013003 0.000002 + +Polar angle tht: 2.9671; Azimuth angle phi: 3.1852 +Force: 1.056279 0.052603 6.982929 +Torque: -0.018776 -0.012991 0.002619 + +Polar angle tht: 2.9671; Azimuth angle phi: 3.2289 +Force: 1.053144 0.105101 6.982681 +Torque: -0.037510 -0.012956 0.005217 + +Polar angle tht: 2.9671; Azimuth angle phi: 3.2725 +Force: 1.047928 0.157391 6.982268 +Torque: -0.056171 -0.012898 0.007775 + +Polar angle tht: 2.9671; Azimuth angle phi: 3.3161 +Force: 1.040642 0.209367 6.981691 +Torque: -0.074726 -0.012816 0.010274 + +Polar angle tht: 2.9671; Azimuth angle phi: 3.3598 +Force: 1.031303 0.260928 6.980949 +Torque: -0.093138 -0.012711 0.012694 + +Polar angle tht: 2.9671; Azimuth angle phi: 3.4034 +Force: 1.019934 0.311971 6.980044 +Torque: -0.111372 -0.012583 0.015018 + +Polar angle tht: 2.9671; Azimuth angle phi: 3.4470 +Force: 1.006560 0.362394 6.978976 +Torque: -0.129394 -0.012432 0.017228 + +Polar angle tht: 2.9671; Azimuth angle phi: 3.4907 +Force: 0.991213 0.412099 6.977747 +Torque: -0.147169 -0.012259 0.019307 + +Polar angle tht: 2.9671; Azimuth angle phi: 3.5343 +Force: 0.973927 0.460987 6.976358 +Torque: -0.164663 -0.012063 0.021238 + +Polar angle tht: 2.9671; Azimuth angle phi: 3.5779 +Force: 0.954744 0.508961 6.974811 +Torque: -0.181844 -0.011845 0.023008 + +Polar angle tht: 2.9671; Azimuth angle phi: 3.6216 +Force: 0.933707 0.555928 6.973107 +Torque: -0.198677 -0.011605 0.024603 + +Polar angle tht: 2.9671; Azimuth angle phi: 3.6652 +Force: 0.910864 0.601794 6.971248 +Torque: -0.215132 -0.011343 0.026011 + +Polar angle tht: 2.9671; Azimuth angle phi: 3.7088 +Force: 0.886267 0.646472 6.969236 +Torque: -0.231176 -0.011060 0.027221 + +Polar angle tht: 2.9671; Azimuth angle phi: 3.7525 +Force: 0.859973 0.689873 6.967073 +Torque: -0.246780 -0.010757 0.028224 + +Polar angle tht: 2.9671; Azimuth angle phi: 3.7961 +Force: 0.832041 0.731913 6.964763 +Torque: -0.261913 -0.010432 0.029011 + +Polar angle tht: 2.9671; Azimuth angle phi: 3.8397 +Force: 0.802533 0.772511 6.962307 +Torque: -0.276547 -0.010088 0.029578 + +Polar angle tht: 2.9671; Azimuth angle phi: 3.8834 +Force: 0.771518 0.811589 6.959709 +Torque: -0.290653 -0.009724 0.029920 + +Polar angle tht: 2.9671; Azimuth angle phi: 3.9270 +Force: 0.739062 0.849071 6.956972 +Torque: -0.304205 -0.009342 0.030035 + +Polar angle tht: 2.9671; Azimuth angle phi: 3.9706 +Force: 0.705239 0.884886 6.954100 +Torque: -0.317178 -0.008940 0.029920 + +Polar angle tht: 2.9671; Azimuth angle phi: 4.0143 +Force: 0.670123 0.918966 6.951095 +Torque: -0.329545 -0.008521 0.029578 + +Polar angle tht: 2.9671; Azimuth angle phi: 4.0579 +Force: 0.633792 0.951248 6.947963 +Torque: -0.341285 -0.008085 0.029011 + +Polar angle tht: 2.9671; Azimuth angle phi: 4.1015 +Force: 0.596324 0.981669 6.944707 +Torque: -0.352374 -0.007632 0.028223 + +Polar angle tht: 2.9671; Azimuth angle phi: 4.1452 +Force: 0.557801 1.010174 6.941333 +Torque: -0.362791 -0.007163 0.027220 + +Polar angle tht: 2.9671; Azimuth angle phi: 4.1888 +Force: 0.518306 1.036711 6.937844 +Torque: -0.372517 -0.006679 0.026011 + +Polar angle tht: 2.9671; Azimuth angle phi: 4.2324 +Force: 0.477922 1.061230 6.934247 +Torque: -0.381534 -0.006181 0.024603 + +Polar angle tht: 2.9671; Azimuth angle phi: 4.2761 +Force: 0.436736 1.083687 6.930546 +Torque: -0.389823 -0.005669 0.023008 + +Polar angle tht: 2.9671; Azimuth angle phi: 4.3197 +Force: 0.394834 1.104043 6.926747 +Torque: -0.397370 -0.005144 0.021238 + +Polar angle tht: 2.9671; Azimuth angle phi: 4.3633 +Force: 0.352304 1.122262 6.922856 +Torque: -0.404159 -0.004607 0.019306 + +Polar angle tht: 2.9671; Azimuth angle phi: 4.4070 +Force: 0.309233 1.138311 6.918879 +Torque: -0.410179 -0.004060 0.017227 + +Polar angle tht: 2.9671; Azimuth angle phi: 4.4506 +Force: 0.265709 1.152165 6.914824 +Torque: -0.415417 -0.003502 0.015017 + +Polar angle tht: 2.9671; Azimuth angle phi: 4.4942 +Force: 0.221821 1.163800 6.910695 +Torque: -0.419865 -0.002935 0.012693 + +Polar angle tht: 2.9671; Azimuth angle phi: 4.5379 +Force: 0.177658 1.173198 6.906502 +Torque: -0.423512 -0.002360 0.010272 + +Polar angle tht: 2.9671; Azimuth angle phi: 4.5815 +Force: 0.133307 1.180346 6.902251 +Torque: -0.426353 -0.001778 0.007773 + +Polar angle tht: 2.9671; Azimuth angle phi: 4.6251 +Force: 0.088856 1.185234 6.897949 +Torque: -0.428383 -0.001190 0.005215 + +Polar angle tht: 2.9671; Azimuth angle phi: 4.6688 +Force: 0.044392 1.187856 6.893605 +Torque: -0.429597 -0.000597 0.002618 + +Polar angle tht: 2.9671; Azimuth angle phi: 4.7124 +Force: 0.000000 1.188214 6.889226 +Torque: -0.429993 0.000000 -0.000000 + +Polar angle tht: 2.9671; Azimuth angle phi: 4.7560 +Force: -0.044392 1.187856 6.893605 +Torque: -0.429597 0.000597 -0.002618 + +Polar angle tht: 2.9671; Azimuth angle phi: 4.7997 +Force: -0.088856 1.185234 6.897949 +Torque: -0.428383 0.001190 -0.005215 + +Polar angle tht: 2.9671; Azimuth angle phi: 4.8433 +Force: -0.133307 1.180346 6.902251 +Torque: -0.426353 0.001778 -0.007773 + +Polar angle tht: 2.9671; Azimuth angle phi: 4.8869 +Force: -0.177658 1.173198 6.906502 +Torque: -0.423512 0.002360 -0.010272 + +Polar angle tht: 2.9671; Azimuth angle phi: 4.9306 +Force: -0.221821 1.163800 6.910695 +Torque: -0.419865 0.002935 -0.012693 + +Polar angle tht: 2.9671; Azimuth angle phi: 4.9742 +Force: -0.265709 1.152165 6.914824 +Torque: -0.415417 0.003502 -0.015017 + +Polar angle tht: 2.9671; Azimuth angle phi: 5.0178 +Force: -0.309233 1.138311 6.918879 +Torque: -0.410179 0.004060 -0.017227 + +Polar angle tht: 2.9671; Azimuth angle phi: 5.0615 +Force: -0.352304 1.122262 6.922856 +Torque: -0.404159 0.004607 -0.019306 + +Polar angle tht: 2.9671; Azimuth angle phi: 5.1051 +Force: -0.394834 1.104043 6.926747 +Torque: -0.397370 0.005144 -0.021238 + +Polar angle tht: 2.9671; Azimuth angle phi: 5.1487 +Force: -0.436736 1.083687 6.930546 +Torque: -0.389823 0.005669 -0.023008 + +Polar angle tht: 2.9671; Azimuth angle phi: 5.1924 +Force: -0.477922 1.061230 6.934247 +Torque: -0.381534 0.006181 -0.024603 + +Polar angle tht: 2.9671; Azimuth angle phi: 5.2360 +Force: -0.518306 1.036711 6.937844 +Torque: -0.372517 0.006679 -0.026011 + +Polar angle tht: 2.9671; Azimuth angle phi: 5.2796 +Force: -0.557801 1.010174 6.941333 +Torque: -0.362791 0.007163 -0.027220 + +Polar angle tht: 2.9671; Azimuth angle phi: 5.3233 +Force: -0.596324 0.981669 6.944707 +Torque: -0.352374 0.007632 -0.028223 + +Polar angle tht: 2.9671; Azimuth angle phi: 5.3669 +Force: -0.633792 0.951248 6.947963 +Torque: -0.341285 0.008085 -0.029011 + +Polar angle tht: 2.9671; Azimuth angle phi: 5.4105 +Force: -0.670123 0.918966 6.951095 +Torque: -0.329545 0.008521 -0.029578 + +Polar angle tht: 2.9671; Azimuth angle phi: 5.4542 +Force: -0.705239 0.884886 6.954100 +Torque: -0.317178 0.008940 -0.029920 + +Polar angle tht: 2.9671; Azimuth angle phi: 5.4978 +Force: -0.739062 0.849071 6.956972 +Torque: -0.304205 0.009342 -0.030035 + +Polar angle tht: 2.9671; Azimuth angle phi: 5.5414 +Force: -0.771518 0.811589 6.959709 +Torque: -0.290653 0.009724 -0.029920 + +Polar angle tht: 2.9671; Azimuth angle phi: 5.5851 +Force: -0.802533 0.772511 6.962307 +Torque: -0.276547 0.010088 -0.029578 + +Polar angle tht: 2.9671; Azimuth angle phi: 5.6287 +Force: -0.832041 0.731913 6.964763 +Torque: -0.261913 0.010432 -0.029011 + +Polar angle tht: 2.9671; Azimuth angle phi: 5.6723 +Force: -0.859973 0.689873 6.967073 +Torque: -0.246780 0.010757 -0.028224 + +Polar angle tht: 2.9671; Azimuth angle phi: 5.7160 +Force: -0.886267 0.646472 6.969236 +Torque: -0.231176 0.011060 -0.027221 + +Polar angle tht: 2.9671; Azimuth angle phi: 5.7596 +Force: -0.910864 0.601794 6.971248 +Torque: -0.215132 0.011343 -0.026011 + +Polar angle tht: 2.9671; Azimuth angle phi: 5.8032 +Force: -0.933707 0.555928 6.973107 +Torque: -0.198677 0.011605 -0.024603 + +Polar angle tht: 2.9671; Azimuth angle phi: 5.8469 +Force: -0.954744 0.508961 6.974811 +Torque: -0.181844 0.011845 -0.023008 + +Polar angle tht: 2.9671; Azimuth angle phi: 5.8905 +Force: -0.973927 0.460987 6.976358 +Torque: -0.164663 0.012063 -0.021238 + +Polar angle tht: 2.9671; Azimuth angle phi: 5.9341 +Force: -0.991213 0.412099 6.977747 +Torque: -0.147169 0.012259 -0.019307 + +Polar angle tht: 2.9671; Azimuth angle phi: 5.9778 +Force: -1.006560 0.362394 6.978976 +Torque: -0.129394 0.012432 -0.017228 + +Polar angle tht: 2.9671; Azimuth angle phi: 6.0214 +Force: -1.019934 0.311971 6.980044 +Torque: -0.111372 0.012583 -0.015018 + +Polar angle tht: 2.9671; Azimuth angle phi: 6.0650 +Force: -1.031303 0.260928 6.980949 +Torque: -0.093138 0.012711 -0.012694 + +Polar angle tht: 2.9671; Azimuth angle phi: 6.1087 +Force: -1.040642 0.209367 6.981691 +Torque: -0.074726 0.012816 -0.010274 + +Polar angle tht: 2.9671; Azimuth angle phi: 6.1523 +Force: -1.047928 0.157391 6.982268 +Torque: -0.056171 0.012898 -0.007775 + +Polar angle tht: 2.9671; Azimuth angle phi: 6.1959 +Force: -1.053144 0.105101 6.982681 +Torque: -0.037510 0.012956 -0.005217 + +Polar angle tht: 2.9671; Azimuth angle phi: 6.2396 +Force: -1.056279 0.052603 6.982929 +Torque: -0.018776 0.012991 -0.002619 + +Polar angle tht: 2.9671; Azimuth angle phi: 6.2832 +Force: -1.057325 0.000000 6.983012 +Torque: -0.000007 0.013003 -0.000002 + +Polar angle tht: 3.0107; Azimuth angle phi: 0.0000 +Force: -0.792024 0.000000 7.045346 +Torque: -0.000008 0.009979 -0.000001 + +Polar angle tht: 3.0107; Azimuth angle phi: 0.0436 +Force: -0.791248 -0.039631 7.045281 +Torque: 0.014179 0.009970 0.001478 + +Polar angle tht: 3.0107; Azimuth angle phi: 0.0873 +Force: -0.788921 -0.079184 7.045085 +Torque: 0.028339 0.009942 0.002945 + +Polar angle tht: 3.0107; Azimuth angle phi: 0.1309 +Force: -0.785050 -0.118581 7.044760 +Torque: 0.042444 0.009897 0.004391 + +Polar angle tht: 3.0107; Azimuth angle phi: 0.1745 +Force: -0.779641 -0.157745 7.044306 +Torque: 0.056469 0.009833 0.005803 + +Polar angle tht: 3.0107; Azimuth angle phi: 0.2182 +Force: -0.772708 -0.196599 7.043722 +Torque: 0.070386 0.009751 0.007170 + +Polar angle tht: 3.0107; Azimuth angle phi: 0.2618 +Force: -0.764266 -0.235067 7.043011 +Torque: 0.084168 0.009652 0.008483 + +Polar angle tht: 3.0107; Azimuth angle phi: 0.3054 +Force: -0.754334 -0.273072 7.042172 +Torque: 0.097790 0.009535 0.009732 + +Polar angle tht: 3.0107; Azimuth angle phi: 0.3491 +Force: -0.742933 -0.310542 7.041207 +Torque: 0.111226 0.009400 0.010906 + +Polar angle tht: 3.0107; Azimuth angle phi: 0.3927 +Force: -0.730089 -0.347402 7.040117 +Torque: 0.124450 0.009247 0.011998 + +Polar angle tht: 3.0107; Azimuth angle phi: 0.4363 +Force: -0.715830 -0.383581 7.038903 +Torque: 0.137436 0.009078 0.012998 + +Polar angle tht: 3.0107; Azimuth angle phi: 0.4800 +Force: -0.700188 -0.419007 7.037568 +Torque: 0.150161 0.008891 0.013899 + +Polar angle tht: 3.0107; Azimuth angle phi: 0.5236 +Force: -0.683197 -0.453613 7.036112 +Torque: 0.162599 0.008688 0.014695 + +Polar angle tht: 3.0107; Azimuth angle phi: 0.5672 +Force: -0.664895 -0.487330 7.034539 +Torque: 0.174727 0.008469 0.015378 + +Polar angle tht: 3.0107; Azimuth angle phi: 0.6109 +Force: -0.645321 -0.520093 7.032849 +Torque: 0.186522 0.008234 0.015945 + +Polar angle tht: 3.0107; Azimuth angle phi: 0.6545 +Force: -0.624518 -0.551840 7.031045 +Torque: 0.197962 0.007982 0.016390 + +Polar angle tht: 3.0107; Azimuth angle phi: 0.6981 +Force: -0.602531 -0.582509 7.029131 +Torque: 0.209024 0.007716 0.016710 + +Polar angle tht: 3.0107; Azimuth angle phi: 0.7418 +Force: -0.579408 -0.612040 7.027107 +Torque: 0.219688 0.007435 0.016904 + +Polar angle tht: 3.0107; Azimuth angle phi: 0.7854 +Force: -0.555198 -0.640378 7.024979 +Torque: 0.229934 0.007139 0.016968 + +Polar angle tht: 3.0107; Azimuth angle phi: 0.8290 +Force: -0.529954 -0.667468 7.022747 +Torque: 0.239741 0.006830 0.016904 + +Polar angle tht: 3.0107; Azimuth angle phi: 0.8727 +Force: -0.503729 -0.693260 7.020416 +Torque: 0.249091 0.006506 0.016711 + +Polar angle tht: 3.0107; Azimuth angle phi: 0.9163 +Force: -0.476579 -0.717703 7.017990 +Torque: 0.257966 0.006170 0.016390 + +Polar angle tht: 3.0107; Azimuth angle phi: 0.9599 +Force: -0.448562 -0.740753 7.015471 +Torque: 0.266350 0.005822 0.015945 + +Polar angle tht: 3.0107; Azimuth angle phi: 1.0036 +Force: -0.419735 -0.762365 7.012864 +Torque: 0.274227 0.005461 0.015379 + +Polar angle tht: 3.0107; Azimuth angle phi: 1.0472 +Force: -0.390161 -0.782501 7.010173 +Torque: 0.281581 0.005090 0.014695 + +Polar angle tht: 3.0107; Azimuth angle phi: 1.0908 +Force: -0.359899 -0.801122 7.007402 +Torque: 0.288398 0.004708 0.013900 + +Polar angle tht: 3.0107; Azimuth angle phi: 1.1345 +Force: -0.329012 -0.818194 7.004556 +Torque: 0.294666 0.004315 0.012999 + +Polar angle tht: 3.0107; Azimuth angle phi: 1.1781 +Force: -0.297565 -0.833688 7.001638 +Torque: 0.300373 0.003914 0.011999 + +Polar angle tht: 3.0107; Azimuth angle phi: 1.2217 +Force: -0.265621 -0.847574 6.998655 +Torque: 0.305508 0.003503 0.010907 + +Polar angle tht: 3.0107; Azimuth angle phi: 1.2654 +Force: -0.233244 -0.859828 6.995610 +Torque: 0.310061 0.003085 0.009733 + +Polar angle tht: 3.0107; Azimuth angle phi: 1.3090 +Force: -0.200501 -0.870429 6.992510 +Torque: 0.314023 0.002660 0.008484 + +Polar angle tht: 3.0107; Azimuth angle phi: 1.3526 +Force: -0.167456 -0.879359 6.989360 +Torque: 0.317388 0.002228 0.007171 + +Polar angle tht: 3.0107; Azimuth angle phi: 1.3963 +Force: -0.134175 -0.886603 6.986164 +Torque: 0.320147 0.001790 0.005804 + +Polar angle tht: 3.0107; Azimuth angle phi: 1.4399 +Force: -0.100724 -0.892149 6.982930 +Torque: 0.322298 0.001348 0.004392 + +Polar angle tht: 3.0107; Azimuth angle phi: 1.4835 +Force: -0.067167 -0.895990 6.979662 +Torque: 0.323834 0.000902 0.002947 + +Polar angle tht: 3.0107; Azimuth angle phi: 1.5272 +Force: -0.033571 -0.898120 6.976367 +Torque: 0.324755 0.000452 0.001479 + +Polar angle tht: 3.0107; Azimuth angle phi: 1.5708 +Force: 0.000000 -0.898538 6.973051 +Torque: 0.325056 0.000000 0.000000 + +Polar angle tht: 3.0107; Azimuth angle phi: 1.6144 +Force: 0.033571 -0.898120 6.976367 +Torque: 0.324755 -0.000452 -0.001479 + +Polar angle tht: 3.0107; Azimuth angle phi: 1.6581 +Force: 0.067167 -0.895990 6.979662 +Torque: 0.323834 -0.000902 -0.002947 + +Polar angle tht: 3.0107; Azimuth angle phi: 1.7017 +Force: 0.100724 -0.892149 6.982930 +Torque: 0.322298 -0.001348 -0.004392 + +Polar angle tht: 3.0107; Azimuth angle phi: 1.7453 +Force: 0.134175 -0.886603 6.986164 +Torque: 0.320147 -0.001790 -0.005804 + +Polar angle tht: 3.0107; Azimuth angle phi: 1.7890 +Force: 0.167456 -0.879359 6.989360 +Torque: 0.317388 -0.002228 -0.007171 + +Polar angle tht: 3.0107; Azimuth angle phi: 1.8326 +Force: 0.200501 -0.870429 6.992510 +Torque: 0.314023 -0.002660 -0.008484 + +Polar angle tht: 3.0107; Azimuth angle phi: 1.8762 +Force: 0.233244 -0.859828 6.995610 +Torque: 0.310061 -0.003085 -0.009733 + +Polar angle tht: 3.0107; Azimuth angle phi: 1.9199 +Force: 0.265621 -0.847574 6.998655 +Torque: 0.305508 -0.003503 -0.010907 + +Polar angle tht: 3.0107; Azimuth angle phi: 1.9635 +Force: 0.297565 -0.833688 7.001638 +Torque: 0.300373 -0.003914 -0.011999 + +Polar angle tht: 3.0107; Azimuth angle phi: 2.0071 +Force: 0.329012 -0.818194 7.004556 +Torque: 0.294666 -0.004315 -0.012999 + +Polar angle tht: 3.0107; Azimuth angle phi: 2.0508 +Force: 0.359899 -0.801122 7.007402 +Torque: 0.288398 -0.004708 -0.013900 + +Polar angle tht: 3.0107; Azimuth angle phi: 2.0944 +Force: 0.390161 -0.782501 7.010173 +Torque: 0.281581 -0.005090 -0.014695 + +Polar angle tht: 3.0107; Azimuth angle phi: 2.1380 +Force: 0.419735 -0.762365 7.012864 +Torque: 0.274227 -0.005461 -0.015379 + +Polar angle tht: 3.0107; Azimuth angle phi: 2.1817 +Force: 0.448562 -0.740753 7.015471 +Torque: 0.266350 -0.005822 -0.015945 + +Polar angle tht: 3.0107; Azimuth angle phi: 2.2253 +Force: 0.476579 -0.717703 7.017990 +Torque: 0.257966 -0.006170 -0.016390 + +Polar angle tht: 3.0107; Azimuth angle phi: 2.2689 +Force: 0.503729 -0.693260 7.020416 +Torque: 0.249091 -0.006506 -0.016711 + +Polar angle tht: 3.0107; Azimuth angle phi: 2.3126 +Force: 0.529954 -0.667468 7.022747 +Torque: 0.239741 -0.006830 -0.016904 + +Polar angle tht: 3.0107; Azimuth angle phi: 2.3562 +Force: 0.555198 -0.640378 7.024979 +Torque: 0.229934 -0.007139 -0.016968 + +Polar angle tht: 3.0107; Azimuth angle phi: 2.3998 +Force: 0.579408 -0.612040 7.027107 +Torque: 0.219688 -0.007435 -0.016904 + +Polar angle tht: 3.0107; Azimuth angle phi: 2.4435 +Force: 0.602531 -0.582509 7.029131 +Torque: 0.209024 -0.007716 -0.016710 + +Polar angle tht: 3.0107; Azimuth angle phi: 2.4871 +Force: 0.624518 -0.551840 7.031045 +Torque: 0.197962 -0.007982 -0.016390 + +Polar angle tht: 3.0107; Azimuth angle phi: 2.5307 +Force: 0.645321 -0.520093 7.032849 +Torque: 0.186522 -0.008234 -0.015945 + +Polar angle tht: 3.0107; Azimuth angle phi: 2.5744 +Force: 0.664895 -0.487330 7.034539 +Torque: 0.174727 -0.008469 -0.015378 + +Polar angle tht: 3.0107; Azimuth angle phi: 2.6180 +Force: 0.683197 -0.453613 7.036112 +Torque: 0.162599 -0.008688 -0.014695 + +Polar angle tht: 3.0107; Azimuth angle phi: 2.6616 +Force: 0.700188 -0.419007 7.037568 +Torque: 0.150161 -0.008891 -0.013899 + +Polar angle tht: 3.0107; Azimuth angle phi: 2.7053 +Force: 0.715830 -0.383581 7.038903 +Torque: 0.137436 -0.009078 -0.012998 + +Polar angle tht: 3.0107; Azimuth angle phi: 2.7489 +Force: 0.730089 -0.347402 7.040117 +Torque: 0.124450 -0.009247 -0.011998 + +Polar angle tht: 3.0107; Azimuth angle phi: 2.7925 +Force: 0.742933 -0.310542 7.041207 +Torque: 0.111226 -0.009400 -0.010906 + +Polar angle tht: 3.0107; Azimuth angle phi: 2.8362 +Force: 0.754334 -0.273072 7.042172 +Torque: 0.097790 -0.009535 -0.009732 + +Polar angle tht: 3.0107; Azimuth angle phi: 2.8798 +Force: 0.764266 -0.235067 7.043011 +Torque: 0.084168 -0.009652 -0.008483 + +Polar angle tht: 3.0107; Azimuth angle phi: 2.9234 +Force: 0.772708 -0.196599 7.043722 +Torque: 0.070386 -0.009751 -0.007170 + +Polar angle tht: 3.0107; Azimuth angle phi: 2.9671 +Force: 0.779641 -0.157745 7.044306 +Torque: 0.056469 -0.009833 -0.005803 + +Polar angle tht: 3.0107; Azimuth angle phi: 3.0107 +Force: 0.785050 -0.118581 7.044760 +Torque: 0.042444 -0.009897 -0.004391 + +Polar angle tht: 3.0107; Azimuth angle phi: 3.0543 +Force: 0.788921 -0.079184 7.045085 +Torque: 0.028339 -0.009942 -0.002945 + +Polar angle tht: 3.0107; Azimuth angle phi: 3.0980 +Force: 0.791248 -0.039631 7.045281 +Torque: 0.014179 -0.009970 -0.001478 + +Polar angle tht: 3.0107; Azimuth angle phi: 3.1416 +Force: 0.792024 0.000000 7.045346 +Torque: -0.000008 -0.009979 0.000001 + +Polar angle tht: 3.0107; Azimuth angle phi: 3.1852 +Force: 0.791248 0.039631 7.045281 +Torque: -0.014194 -0.009970 0.001480 + +Polar angle tht: 3.0107; Azimuth angle phi: 3.2289 +Force: 0.788921 0.079184 7.045085 +Torque: -0.028354 -0.009942 0.002948 + +Polar angle tht: 3.0107; Azimuth angle phi: 3.2725 +Force: 0.785050 0.118581 7.044760 +Torque: -0.042459 -0.009897 0.004393 + +Polar angle tht: 3.0107; Azimuth angle phi: 3.3161 +Force: 0.779641 0.157745 7.044306 +Torque: -0.056484 -0.009833 0.005805 + +Polar angle tht: 3.0107; Azimuth angle phi: 3.3598 +Force: 0.772708 0.196599 7.043722 +Torque: -0.070401 -0.009751 0.007173 + +Polar angle tht: 3.0107; Azimuth angle phi: 3.4034 +Force: 0.764266 0.235067 7.043011 +Torque: -0.084183 -0.009652 0.008486 + +Polar angle tht: 3.0107; Azimuth angle phi: 3.4470 +Force: 0.754334 0.273072 7.042172 +Torque: -0.097806 -0.009535 0.009734 + +Polar angle tht: 3.0107; Azimuth angle phi: 3.4907 +Force: 0.742933 0.310542 7.041207 +Torque: -0.111241 -0.009400 0.010909 + +Polar angle tht: 3.0107; Azimuth angle phi: 3.5343 +Force: 0.730089 0.347402 7.040117 +Torque: -0.124465 -0.009247 0.012000 + +Polar angle tht: 3.0107; Azimuth angle phi: 3.5779 +Force: 0.715830 0.383581 7.038903 +Torque: -0.137452 -0.009078 0.013000 + +Polar angle tht: 3.0107; Azimuth angle phi: 3.6216 +Force: 0.700188 0.419007 7.037568 +Torque: -0.150176 -0.008891 0.013901 + +Polar angle tht: 3.0107; Azimuth angle phi: 3.6652 +Force: 0.683197 0.453613 7.036112 +Torque: -0.162614 -0.008688 0.014697 + +Polar angle tht: 3.0107; Azimuth angle phi: 3.7088 +Force: 0.664895 0.487330 7.034539 +Torque: -0.174742 -0.008469 0.015380 + +Polar angle tht: 3.0107; Azimuth angle phi: 3.7525 +Force: 0.645321 0.520093 7.032849 +Torque: -0.186538 -0.008234 0.015947 + +Polar angle tht: 3.0107; Azimuth angle phi: 3.7961 +Force: 0.624518 0.551840 7.031045 +Torque: -0.197977 -0.007982 0.016392 + +Polar angle tht: 3.0107; Azimuth angle phi: 3.8397 +Force: 0.602531 0.582509 7.029131 +Torque: -0.209040 -0.007716 0.016712 + +Polar angle tht: 3.0107; Azimuth angle phi: 3.8834 +Force: 0.579408 0.612040 7.027107 +Torque: -0.219704 -0.007435 0.016906 + +Polar angle tht: 3.0107; Azimuth angle phi: 3.9270 +Force: 0.555198 0.640378 7.024979 +Torque: -0.229949 -0.007139 0.016970 + +Polar angle tht: 3.0107; Azimuth angle phi: 3.9706 +Force: 0.529954 0.667468 7.022747 +Torque: -0.239756 -0.006830 0.016905 + +Polar angle tht: 3.0107; Azimuth angle phi: 4.0143 +Force: 0.503729 0.693260 7.020416 +Torque: -0.249106 -0.006506 0.016712 + +Polar angle tht: 3.0107; Azimuth angle phi: 4.0579 +Force: 0.476579 0.717703 7.017990 +Torque: -0.257982 -0.006170 0.016392 + +Polar angle tht: 3.0107; Azimuth angle phi: 4.1015 +Force: 0.448562 0.740753 7.015471 +Torque: -0.266365 -0.005822 0.015947 + +Polar angle tht: 3.0107; Azimuth angle phi: 4.1452 +Force: 0.419735 0.762365 7.012864 +Torque: -0.274242 -0.005461 0.015380 + +Polar angle tht: 3.0107; Azimuth angle phi: 4.1888 +Force: 0.390161 0.782501 7.010173 +Torque: -0.281596 -0.005090 0.014696 + +Polar angle tht: 3.0107; Azimuth angle phi: 4.2324 +Force: 0.359899 0.801122 7.007402 +Torque: -0.288414 -0.004708 0.013901 + +Polar angle tht: 3.0107; Azimuth angle phi: 4.2761 +Force: 0.329012 0.818194 7.004556 +Torque: -0.294682 -0.004315 0.013000 + +Polar angle tht: 3.0107; Azimuth angle phi: 4.3197 +Force: 0.297565 0.833688 7.001638 +Torque: -0.300389 -0.003914 0.011999 + +Polar angle tht: 3.0107; Azimuth angle phi: 4.3633 +Force: 0.265621 0.847574 6.998655 +Torque: -0.305523 -0.003503 0.010908 + +Polar angle tht: 3.0107; Azimuth angle phi: 4.4070 +Force: 0.233244 0.859828 6.995610 +Torque: -0.310076 -0.003085 0.009733 + +Polar angle tht: 3.0107; Azimuth angle phi: 4.4506 +Force: 0.200501 0.870429 6.992510 +Torque: -0.314039 -0.002660 0.008485 + +Polar angle tht: 3.0107; Azimuth angle phi: 4.4942 +Force: 0.167456 0.879359 6.989360 +Torque: -0.317403 -0.002228 0.007172 + +Polar angle tht: 3.0107; Azimuth angle phi: 4.5379 +Force: 0.134175 0.886603 6.986164 +Torque: -0.320163 -0.001790 0.005804 + +Polar angle tht: 3.0107; Azimuth angle phi: 4.5815 +Force: 0.100724 0.892149 6.982930 +Torque: -0.322313 -0.001348 0.004392 + +Polar angle tht: 3.0107; Azimuth angle phi: 4.6251 +Force: 0.067167 0.895990 6.979662 +Torque: -0.323850 -0.000902 0.002947 + +Polar angle tht: 3.0107; Azimuth angle phi: 4.6688 +Force: 0.033571 0.898120 6.976367 +Torque: -0.324770 -0.000452 0.001479 + +Polar angle tht: 3.0107; Azimuth angle phi: 4.7124 +Force: 0.000000 0.898538 6.973051 +Torque: -0.325072 0.000000 -0.000000 + +Polar angle tht: 3.0107; Azimuth angle phi: 4.7560 +Force: -0.033571 0.898120 6.976367 +Torque: -0.324770 0.000452 -0.001479 + +Polar angle tht: 3.0107; Azimuth angle phi: 4.7997 +Force: -0.067167 0.895990 6.979662 +Torque: -0.323850 0.000902 -0.002947 + +Polar angle tht: 3.0107; Azimuth angle phi: 4.8433 +Force: -0.100724 0.892149 6.982930 +Torque: -0.322313 0.001348 -0.004392 + +Polar angle tht: 3.0107; Azimuth angle phi: 4.8869 +Force: -0.134175 0.886603 6.986164 +Torque: -0.320163 0.001790 -0.005804 + +Polar angle tht: 3.0107; Azimuth angle phi: 4.9306 +Force: -0.167456 0.879359 6.989360 +Torque: -0.317403 0.002228 -0.007172 + +Polar angle tht: 3.0107; Azimuth angle phi: 4.9742 +Force: -0.200501 0.870429 6.992510 +Torque: -0.314039 0.002660 -0.008485 + +Polar angle tht: 3.0107; Azimuth angle phi: 5.0178 +Force: -0.233244 0.859828 6.995610 +Torque: -0.310076 0.003085 -0.009733 + +Polar angle tht: 3.0107; Azimuth angle phi: 5.0615 +Force: -0.265621 0.847574 6.998655 +Torque: -0.305523 0.003503 -0.010908 + +Polar angle tht: 3.0107; Azimuth angle phi: 5.1051 +Force: -0.297565 0.833688 7.001638 +Torque: -0.300389 0.003914 -0.011999 + +Polar angle tht: 3.0107; Azimuth angle phi: 5.1487 +Force: -0.329012 0.818194 7.004556 +Torque: -0.294682 0.004315 -0.013000 + +Polar angle tht: 3.0107; Azimuth angle phi: 5.1924 +Force: -0.359899 0.801122 7.007402 +Torque: -0.288414 0.004708 -0.013901 + +Polar angle tht: 3.0107; Azimuth angle phi: 5.2360 +Force: -0.390161 0.782501 7.010173 +Torque: -0.281596 0.005090 -0.014696 + +Polar angle tht: 3.0107; Azimuth angle phi: 5.2796 +Force: -0.419735 0.762365 7.012864 +Torque: -0.274242 0.005461 -0.015380 + +Polar angle tht: 3.0107; Azimuth angle phi: 5.3233 +Force: -0.448562 0.740753 7.015471 +Torque: -0.266365 0.005822 -0.015947 + +Polar angle tht: 3.0107; Azimuth angle phi: 5.3669 +Force: -0.476579 0.717703 7.017990 +Torque: -0.257982 0.006170 -0.016392 + +Polar angle tht: 3.0107; Azimuth angle phi: 5.4105 +Force: -0.503729 0.693260 7.020416 +Torque: -0.249106 0.006506 -0.016712 + +Polar angle tht: 3.0107; Azimuth angle phi: 5.4542 +Force: -0.529954 0.667468 7.022747 +Torque: -0.239756 0.006830 -0.016905 + +Polar angle tht: 3.0107; Azimuth angle phi: 5.4978 +Force: -0.555198 0.640378 7.024979 +Torque: -0.229949 0.007139 -0.016970 + +Polar angle tht: 3.0107; Azimuth angle phi: 5.5414 +Force: -0.579408 0.612040 7.027107 +Torque: -0.219704 0.007435 -0.016906 + +Polar angle tht: 3.0107; Azimuth angle phi: 5.5851 +Force: -0.602531 0.582509 7.029131 +Torque: -0.209040 0.007716 -0.016712 + +Polar angle tht: 3.0107; Azimuth angle phi: 5.6287 +Force: -0.624518 0.551840 7.031045 +Torque: -0.197977 0.007982 -0.016392 + +Polar angle tht: 3.0107; Azimuth angle phi: 5.6723 +Force: -0.645321 0.520093 7.032849 +Torque: -0.186538 0.008234 -0.015947 + +Polar angle tht: 3.0107; Azimuth angle phi: 5.7160 +Force: -0.664895 0.487330 7.034539 +Torque: -0.174742 0.008469 -0.015380 + +Polar angle tht: 3.0107; Azimuth angle phi: 5.7596 +Force: -0.683197 0.453613 7.036112 +Torque: -0.162614 0.008688 -0.014697 + +Polar angle tht: 3.0107; Azimuth angle phi: 5.8032 +Force: -0.700188 0.419007 7.037568 +Torque: -0.150176 0.008891 -0.013901 + +Polar angle tht: 3.0107; Azimuth angle phi: 5.8469 +Force: -0.715830 0.383581 7.038903 +Torque: -0.137452 0.009078 -0.013000 + +Polar angle tht: 3.0107; Azimuth angle phi: 5.8905 +Force: -0.730089 0.347402 7.040117 +Torque: -0.124465 0.009247 -0.012000 + +Polar angle tht: 3.0107; Azimuth angle phi: 5.9341 +Force: -0.742933 0.310542 7.041207 +Torque: -0.111241 0.009400 -0.010909 + +Polar angle tht: 3.0107; Azimuth angle phi: 5.9778 +Force: -0.754334 0.273072 7.042172 +Torque: -0.097806 0.009535 -0.009734 + +Polar angle tht: 3.0107; Azimuth angle phi: 6.0214 +Force: -0.764266 0.235067 7.043011 +Torque: -0.084183 0.009652 -0.008486 + +Polar angle tht: 3.0107; Azimuth angle phi: 6.0650 +Force: -0.772708 0.196599 7.043722 +Torque: -0.070401 0.009751 -0.007173 + +Polar angle tht: 3.0107; Azimuth angle phi: 6.1087 +Force: -0.779641 0.157745 7.044306 +Torque: -0.056484 0.009833 -0.005805 + +Polar angle tht: 3.0107; Azimuth angle phi: 6.1523 +Force: -0.785050 0.118581 7.044760 +Torque: -0.042459 0.009897 -0.004393 + +Polar angle tht: 3.0107; Azimuth angle phi: 6.1959 +Force: -0.788921 0.079184 7.045085 +Torque: -0.028354 0.009942 -0.002948 + +Polar angle tht: 3.0107; Azimuth angle phi: 6.2396 +Force: -0.791248 0.039631 7.045281 +Torque: -0.014194 0.009970 -0.001480 + +Polar angle tht: 3.0107; Azimuth angle phi: 6.2832 +Force: -0.792024 0.000000 7.045346 +Torque: -0.000008 0.009979 -0.000001 + +Polar angle tht: 3.0543; Azimuth angle phi: 0.0000 +Force: -0.526050 0.000000 7.082742 +Torque: -0.000008 0.006787 -0.000001 + +Polar angle tht: 3.0543; Azimuth angle phi: 0.0436 +Force: -0.525539 -0.026478 7.082697 +Torque: 0.009502 0.006780 0.000659 + +Polar angle tht: 3.0543; Azimuth angle phi: 0.0873 +Force: -0.524008 -0.052904 7.082561 +Torque: 0.018994 0.006761 0.001313 + +Polar angle tht: 3.0543; Azimuth angle phi: 0.1309 +Force: -0.521461 -0.079228 7.082334 +Torque: 0.028449 0.006730 0.001957 + +Polar angle tht: 3.0543; Azimuth angle phi: 0.1745 +Force: -0.517902 -0.105397 7.082018 +Torque: 0.037851 0.006686 0.002587 + +Polar angle tht: 3.0543; Azimuth angle phi: 0.2182 +Force: -0.513339 -0.131362 7.081612 +Torque: 0.047180 0.006630 0.003197 + +Polar angle tht: 3.0543; Azimuth angle phi: 0.2618 +Force: -0.507782 -0.157071 7.081117 +Torque: 0.056419 0.006561 0.003782 + +Polar angle tht: 3.0543; Azimuth angle phi: 0.3054 +Force: -0.501242 -0.182474 7.080533 +Torque: 0.065551 0.006480 0.004339 + +Polar angle tht: 3.0543; Azimuth angle phi: 0.3491 +Force: -0.493734 -0.207523 7.079863 +Torque: 0.074557 0.006387 0.004862 + +Polar angle tht: 3.0543; Azimuth angle phi: 0.3927 +Force: -0.485273 -0.232169 7.079105 +Torque: 0.083422 0.006283 0.005349 + +Polar angle tht: 3.0543; Azimuth angle phi: 0.4363 +Force: -0.475877 -0.256364 7.078263 +Torque: 0.092128 0.006166 0.005795 + +Polar angle tht: 3.0543; Azimuth angle phi: 0.4800 +Force: -0.465566 -0.280061 7.077337 +Torque: 0.100658 0.006038 0.006197 + +Polar angle tht: 3.0543; Azimuth angle phi: 0.5236 +Force: -0.454362 -0.303214 7.076328 +Torque: 0.108996 0.005898 0.006551 + +Polar angle tht: 3.0543; Azimuth angle phi: 0.5672 +Force: -0.442288 -0.325779 7.075238 +Torque: 0.117127 0.005747 0.006856 + +Polar angle tht: 3.0543; Azimuth angle phi: 0.6109 +Force: -0.429369 -0.347713 7.074069 +Torque: 0.125034 0.005586 0.007109 + +Polar angle tht: 3.0543; Azimuth angle phi: 0.6545 +Force: -0.415632 -0.368972 7.072823 +Torque: 0.132704 0.005414 0.007307 + +Polar angle tht: 3.0543; Azimuth angle phi: 0.6981 +Force: -0.401107 -0.389517 7.071501 +Torque: 0.140120 0.005231 0.007450 + +Polar angle tht: 3.0543; Azimuth angle phi: 0.7418 +Force: -0.385823 -0.409308 7.070105 +Torque: 0.147270 0.005038 0.007536 + +Polar angle tht: 3.0543; Azimuth angle phi: 0.7854 +Force: -0.369812 -0.428307 7.068639 +Torque: 0.154138 0.004836 0.007565 + +Polar angle tht: 3.0543; Azimuth angle phi: 0.8290 +Force: -0.353107 -0.446478 7.067103 +Torque: 0.160714 0.004624 0.007536 + +Polar angle tht: 3.0543; Azimuth angle phi: 0.8727 +Force: -0.335742 -0.463786 7.065502 +Torque: 0.166983 0.004403 0.007450 + +Polar angle tht: 3.0543; Azimuth angle phi: 0.9163 +Force: -0.317753 -0.480199 7.063836 +Torque: 0.172934 0.004174 0.007308 + +Polar angle tht: 3.0543; Azimuth angle phi: 0.9599 +Force: -0.299177 -0.495685 7.062110 +Torque: 0.178555 0.003936 0.007109 + +Polar angle tht: 3.0543; Azimuth angle phi: 1.0036 +Force: -0.280052 -0.510216 7.060325 +Torque: 0.183837 0.003691 0.006857 + +Polar angle tht: 3.0543; Azimuth angle phi: 1.0472 +Force: -0.260416 -0.523764 7.058486 +Torque: 0.188768 0.003438 0.006552 + +Polar angle tht: 3.0543; Azimuth angle phi: 1.0908 +Force: -0.240309 -0.536304 7.056594 +Torque: 0.193340 0.003178 0.006197 + +Polar angle tht: 3.0543; Azimuth angle phi: 1.1345 +Force: -0.219772 -0.547813 7.054654 +Torque: 0.197544 0.002912 0.005795 + +Polar angle tht: 3.0543; Azimuth angle phi: 1.1781 +Force: -0.198845 -0.558269 7.052669 +Torque: 0.201371 0.002639 0.005350 + +Polar angle tht: 3.0543; Azimuth angle phi: 1.2217 +Force: -0.177571 -0.567654 7.050641 +Torque: 0.204815 0.002361 0.004863 + +Polar angle tht: 3.0543; Azimuth angle phi: 1.2654 +Force: -0.155992 -0.575949 7.048575 +Torque: 0.207869 0.002078 0.004339 + +Polar angle tht: 3.0543; Azimuth angle phi: 1.3090 +Force: -0.134150 -0.583141 7.046475 +Torque: 0.210527 0.001791 0.003783 + +Polar angle tht: 3.0543; Azimuth angle phi: 1.3526 +Force: -0.112088 -0.589217 7.044343 +Torque: 0.212784 0.001499 0.003197 + +Polar angle tht: 3.0543; Azimuth angle phi: 1.3963 +Force: -0.089850 -0.594165 7.042185 +Torque: 0.214636 0.001204 0.002588 + +Polar angle tht: 3.0543; Azimuth angle phi: 1.4399 +Force: -0.067479 -0.597979 7.040003 +Torque: 0.216079 0.000906 0.001958 + +Polar angle tht: 3.0543; Azimuth angle phi: 1.4835 +Force: -0.045018 -0.600650 7.037803 +Torque: 0.217111 0.000606 0.001314 + +Polar angle tht: 3.0543; Azimuth angle phi: 1.5272 +Force: -0.022511 -0.602176 7.035587 +Torque: 0.217729 0.000304 0.000659 + +Polar angle tht: 3.0543; Azimuth angle phi: 1.5708 +Force: 0.000000 -0.602555 7.033360 +Torque: 0.217934 0.000000 0.000000 + +Polar angle tht: 3.0543; Azimuth angle phi: 1.6144 +Force: 0.022511 -0.602176 7.035587 +Torque: 0.217729 -0.000304 -0.000659 + +Polar angle tht: 3.0543; Azimuth angle phi: 1.6581 +Force: 0.045018 -0.600650 7.037803 +Torque: 0.217111 -0.000606 -0.001314 + +Polar angle tht: 3.0543; Azimuth angle phi: 1.7017 +Force: 0.067479 -0.597979 7.040003 +Torque: 0.216079 -0.000906 -0.001958 + +Polar angle tht: 3.0543; Azimuth angle phi: 1.7453 +Force: 0.089850 -0.594165 7.042185 +Torque: 0.214636 -0.001204 -0.002588 + +Polar angle tht: 3.0543; Azimuth angle phi: 1.7890 +Force: 0.112088 -0.589217 7.044343 +Torque: 0.212784 -0.001499 -0.003197 + +Polar angle tht: 3.0543; Azimuth angle phi: 1.8326 +Force: 0.134150 -0.583141 7.046475 +Torque: 0.210527 -0.001791 -0.003783 + +Polar angle tht: 3.0543; Azimuth angle phi: 1.8762 +Force: 0.155992 -0.575949 7.048575 +Torque: 0.207869 -0.002078 -0.004339 + +Polar angle tht: 3.0543; Azimuth angle phi: 1.9199 +Force: 0.177571 -0.567654 7.050641 +Torque: 0.204815 -0.002361 -0.004863 + +Polar angle tht: 3.0543; Azimuth angle phi: 1.9635 +Force: 0.198845 -0.558269 7.052669 +Torque: 0.201371 -0.002639 -0.005350 + +Polar angle tht: 3.0543; Azimuth angle phi: 2.0071 +Force: 0.219772 -0.547813 7.054654 +Torque: 0.197544 -0.002912 -0.005795 + +Polar angle tht: 3.0543; Azimuth angle phi: 2.0508 +Force: 0.240309 -0.536304 7.056594 +Torque: 0.193340 -0.003178 -0.006197 + +Polar angle tht: 3.0543; Azimuth angle phi: 2.0944 +Force: 0.260416 -0.523764 7.058486 +Torque: 0.188768 -0.003438 -0.006552 + +Polar angle tht: 3.0543; Azimuth angle phi: 2.1380 +Force: 0.280052 -0.510216 7.060325 +Torque: 0.183837 -0.003691 -0.006857 + +Polar angle tht: 3.0543; Azimuth angle phi: 2.1817 +Force: 0.299177 -0.495685 7.062110 +Torque: 0.178555 -0.003936 -0.007109 + +Polar angle tht: 3.0543; Azimuth angle phi: 2.2253 +Force: 0.317753 -0.480199 7.063836 +Torque: 0.172934 -0.004174 -0.007308 + +Polar angle tht: 3.0543; Azimuth angle phi: 2.2689 +Force: 0.335742 -0.463786 7.065502 +Torque: 0.166983 -0.004403 -0.007450 + +Polar angle tht: 3.0543; Azimuth angle phi: 2.3126 +Force: 0.353107 -0.446478 7.067103 +Torque: 0.160714 -0.004624 -0.007536 + +Polar angle tht: 3.0543; Azimuth angle phi: 2.3562 +Force: 0.369812 -0.428307 7.068639 +Torque: 0.154138 -0.004836 -0.007565 + +Polar angle tht: 3.0543; Azimuth angle phi: 2.3998 +Force: 0.385823 -0.409308 7.070105 +Torque: 0.147270 -0.005038 -0.007536 + +Polar angle tht: 3.0543; Azimuth angle phi: 2.4435 +Force: 0.401107 -0.389517 7.071501 +Torque: 0.140120 -0.005231 -0.007450 + +Polar angle tht: 3.0543; Azimuth angle phi: 2.4871 +Force: 0.415632 -0.368972 7.072823 +Torque: 0.132704 -0.005414 -0.007307 + +Polar angle tht: 3.0543; Azimuth angle phi: 2.5307 +Force: 0.429369 -0.347713 7.074069 +Torque: 0.125034 -0.005586 -0.007109 + +Polar angle tht: 3.0543; Azimuth angle phi: 2.5744 +Force: 0.442288 -0.325779 7.075238 +Torque: 0.117127 -0.005747 -0.006856 + +Polar angle tht: 3.0543; Azimuth angle phi: 2.6180 +Force: 0.454362 -0.303214 7.076328 +Torque: 0.108996 -0.005898 -0.006551 + +Polar angle tht: 3.0543; Azimuth angle phi: 2.6616 +Force: 0.465566 -0.280061 7.077337 +Torque: 0.100658 -0.006038 -0.006197 + +Polar angle tht: 3.0543; Azimuth angle phi: 2.7053 +Force: 0.475877 -0.256364 7.078263 +Torque: 0.092128 -0.006166 -0.005795 + +Polar angle tht: 3.0543; Azimuth angle phi: 2.7489 +Force: 0.485273 -0.232169 7.079105 +Torque: 0.083422 -0.006283 -0.005349 + +Polar angle tht: 3.0543; Azimuth angle phi: 2.7925 +Force: 0.493734 -0.207523 7.079863 +Torque: 0.074557 -0.006387 -0.004862 + +Polar angle tht: 3.0543; Azimuth angle phi: 2.8362 +Force: 0.501242 -0.182474 7.080533 +Torque: 0.065551 -0.006480 -0.004339 + +Polar angle tht: 3.0543; Azimuth angle phi: 2.8798 +Force: 0.507782 -0.157071 7.081117 +Torque: 0.056419 -0.006561 -0.003782 + +Polar angle tht: 3.0543; Azimuth angle phi: 2.9234 +Force: 0.513339 -0.131362 7.081612 +Torque: 0.047180 -0.006630 -0.003197 + +Polar angle tht: 3.0543; Azimuth angle phi: 2.9671 +Force: 0.517902 -0.105397 7.082018 +Torque: 0.037851 -0.006686 -0.002587 + +Polar angle tht: 3.0543; Azimuth angle phi: 3.0107 +Force: 0.521461 -0.079228 7.082334 +Torque: 0.028449 -0.006730 -0.001957 + +Polar angle tht: 3.0543; Azimuth angle phi: 3.0543 +Force: 0.524008 -0.052904 7.082561 +Torque: 0.018994 -0.006761 -0.001313 + +Polar angle tht: 3.0543; Azimuth angle phi: 3.0980 +Force: 0.525539 -0.026478 7.082697 +Torque: 0.009502 -0.006780 -0.000659 + +Polar angle tht: 3.0543; Azimuth angle phi: 3.1416 +Force: 0.526050 0.000000 7.082742 +Torque: -0.000008 -0.006787 0.000001 + +Polar angle tht: 3.0543; Azimuth angle phi: 3.1852 +Force: 0.525539 0.026478 7.082697 +Torque: -0.009517 -0.006780 0.000660 + +Polar angle tht: 3.0543; Azimuth angle phi: 3.2289 +Force: 0.524008 0.052904 7.082561 +Torque: -0.019009 -0.006761 0.001315 + +Polar angle tht: 3.0543; Azimuth angle phi: 3.2725 +Force: 0.521461 0.079228 7.082334 +Torque: -0.028465 -0.006730 0.001959 + +Polar angle tht: 3.0543; Azimuth angle phi: 3.3161 +Force: 0.517902 0.105397 7.082018 +Torque: -0.037866 -0.006686 0.002589 + +Polar angle tht: 3.0543; Azimuth angle phi: 3.3598 +Force: 0.513339 0.131362 7.081612 +Torque: -0.047195 -0.006630 0.003198 + +Polar angle tht: 3.0543; Azimuth angle phi: 3.4034 +Force: 0.507782 0.157071 7.081117 +Torque: -0.056434 -0.006561 0.003784 + +Polar angle tht: 3.0543; Azimuth angle phi: 3.4470 +Force: 0.501242 0.182474 7.080533 +Torque: -0.065566 -0.006480 0.004340 + +Polar angle tht: 3.0543; Azimuth angle phi: 3.4907 +Force: 0.493734 0.207523 7.079863 +Torque: -0.074573 -0.006387 0.004864 + +Polar angle tht: 3.0543; Azimuth angle phi: 3.5343 +Force: 0.485273 0.232169 7.079105 +Torque: -0.083437 -0.006283 0.005351 + +Polar angle tht: 3.0543; Azimuth angle phi: 3.5779 +Force: 0.475877 0.256364 7.078263 +Torque: -0.092143 -0.006166 0.005797 + +Polar angle tht: 3.0543; Azimuth angle phi: 3.6216 +Force: 0.465566 0.280061 7.077337 +Torque: -0.100673 -0.006038 0.006198 + +Polar angle tht: 3.0543; Azimuth angle phi: 3.6652 +Force: 0.454362 0.303214 7.076328 +Torque: -0.109012 -0.005898 0.006553 + +Polar angle tht: 3.0543; Azimuth angle phi: 3.7088 +Force: 0.442288 0.325779 7.075238 +Torque: -0.117142 -0.005747 0.006858 + +Polar angle tht: 3.0543; Azimuth angle phi: 3.7525 +Force: 0.429369 0.347713 7.074069 +Torque: -0.125050 -0.005586 0.007110 + +Polar angle tht: 3.0543; Azimuth angle phi: 3.7961 +Force: 0.415632 0.368972 7.072823 +Torque: -0.132719 -0.005414 0.007309 + +Polar angle tht: 3.0543; Azimuth angle phi: 3.8397 +Force: 0.401107 0.389517 7.071501 +Torque: -0.140135 -0.005231 0.007452 + +Polar angle tht: 3.0543; Azimuth angle phi: 3.8834 +Force: 0.385823 0.409308 7.070105 +Torque: -0.147285 -0.005038 0.007538 + +Polar angle tht: 3.0543; Azimuth angle phi: 3.9270 +Force: 0.369812 0.428307 7.068639 +Torque: -0.154154 -0.004836 0.007566 + +Polar angle tht: 3.0543; Azimuth angle phi: 3.9706 +Force: 0.353107 0.446478 7.067103 +Torque: -0.160729 -0.004624 0.007538 + +Polar angle tht: 3.0543; Azimuth angle phi: 4.0143 +Force: 0.335742 0.463786 7.065502 +Torque: -0.166998 -0.004403 0.007451 + +Polar angle tht: 3.0543; Azimuth angle phi: 4.0579 +Force: 0.317753 0.480199 7.063836 +Torque: -0.172949 -0.004174 0.007309 + +Polar angle tht: 3.0543; Azimuth angle phi: 4.1015 +Force: 0.299177 0.495685 7.062110 +Torque: -0.178571 -0.003936 0.007110 + +Polar angle tht: 3.0543; Azimuth angle phi: 4.1452 +Force: 0.280052 0.510216 7.060325 +Torque: -0.183852 -0.003691 0.006857 + +Polar angle tht: 3.0543; Azimuth angle phi: 4.1888 +Force: 0.260416 0.523764 7.058486 +Torque: -0.188784 -0.003438 0.006553 + +Polar angle tht: 3.0543; Azimuth angle phi: 4.2324 +Force: 0.240309 0.536304 7.056594 +Torque: -0.193355 -0.003178 0.006198 + +Polar angle tht: 3.0543; Azimuth angle phi: 4.2761 +Force: 0.219772 0.547813 7.054654 +Torque: -0.197559 -0.002912 0.005796 + +Polar angle tht: 3.0543; Azimuth angle phi: 4.3197 +Force: 0.198845 0.558269 7.052669 +Torque: -0.201386 -0.002639 0.005350 + +Polar angle tht: 3.0543; Azimuth angle phi: 4.3633 +Force: 0.177571 0.567654 7.050641 +Torque: -0.204830 -0.002361 0.004864 + +Polar angle tht: 3.0543; Azimuth angle phi: 4.4070 +Force: 0.155992 0.575949 7.048575 +Torque: -0.207884 -0.002078 0.004340 + +Polar angle tht: 3.0543; Azimuth angle phi: 4.4506 +Force: 0.134150 0.583141 7.046475 +Torque: -0.210542 -0.001791 0.003783 + +Polar angle tht: 3.0543; Azimuth angle phi: 4.4942 +Force: 0.112088 0.589217 7.044343 +Torque: -0.212799 -0.001499 0.003198 + +Polar angle tht: 3.0543; Azimuth angle phi: 4.5379 +Force: 0.089850 0.594165 7.042185 +Torque: -0.214651 -0.001204 0.002588 + +Polar angle tht: 3.0543; Azimuth angle phi: 4.5815 +Force: 0.067479 0.597979 7.040003 +Torque: -0.216094 -0.000906 0.001958 + +Polar angle tht: 3.0543; Azimuth angle phi: 4.6251 +Force: 0.045018 0.600650 7.037803 +Torque: -0.217126 -0.000606 0.001314 + +Polar angle tht: 3.0543; Azimuth angle phi: 4.6688 +Force: 0.022511 0.602176 7.035587 +Torque: -0.217745 -0.000304 0.000659 + +Polar angle tht: 3.0543; Azimuth angle phi: 4.7124 +Force: 0.000000 0.602555 7.033360 +Torque: -0.217949 0.000000 -0.000000 + +Polar angle tht: 3.0543; Azimuth angle phi: 4.7560 +Force: -0.022511 0.602176 7.035587 +Torque: -0.217745 0.000304 -0.000659 + +Polar angle tht: 3.0543; Azimuth angle phi: 4.7997 +Force: -0.045018 0.600650 7.037803 +Torque: -0.217126 0.000606 -0.001314 + +Polar angle tht: 3.0543; Azimuth angle phi: 4.8433 +Force: -0.067479 0.597979 7.040003 +Torque: -0.216094 0.000906 -0.001958 + +Polar angle tht: 3.0543; Azimuth angle phi: 4.8869 +Force: -0.089850 0.594165 7.042185 +Torque: -0.214651 0.001204 -0.002588 + +Polar angle tht: 3.0543; Azimuth angle phi: 4.9306 +Force: -0.112088 0.589217 7.044343 +Torque: -0.212799 0.001499 -0.003198 + +Polar angle tht: 3.0543; Azimuth angle phi: 4.9742 +Force: -0.134150 0.583141 7.046475 +Torque: -0.210542 0.001791 -0.003783 + +Polar angle tht: 3.0543; Azimuth angle phi: 5.0178 +Force: -0.155992 0.575949 7.048575 +Torque: -0.207884 0.002078 -0.004340 + +Polar angle tht: 3.0543; Azimuth angle phi: 5.0615 +Force: -0.177571 0.567654 7.050641 +Torque: -0.204830 0.002361 -0.004864 + +Polar angle tht: 3.0543; Azimuth angle phi: 5.1051 +Force: -0.198845 0.558269 7.052669 +Torque: -0.201386 0.002639 -0.005350 + +Polar angle tht: 3.0543; Azimuth angle phi: 5.1487 +Force: -0.219772 0.547813 7.054654 +Torque: -0.197559 0.002912 -0.005796 + +Polar angle tht: 3.0543; Azimuth angle phi: 5.1924 +Force: -0.240309 0.536304 7.056594 +Torque: -0.193355 0.003178 -0.006198 + +Polar angle tht: 3.0543; Azimuth angle phi: 5.2360 +Force: -0.260416 0.523764 7.058486 +Torque: -0.188784 0.003438 -0.006553 + +Polar angle tht: 3.0543; Azimuth angle phi: 5.2796 +Force: -0.280052 0.510216 7.060325 +Torque: -0.183852 0.003691 -0.006857 + +Polar angle tht: 3.0543; Azimuth angle phi: 5.3233 +Force: -0.299177 0.495685 7.062110 +Torque: -0.178571 0.003936 -0.007110 + +Polar angle tht: 3.0543; Azimuth angle phi: 5.3669 +Force: -0.317753 0.480199 7.063836 +Torque: -0.172949 0.004174 -0.007309 + +Polar angle tht: 3.0543; Azimuth angle phi: 5.4105 +Force: -0.335742 0.463786 7.065502 +Torque: -0.166998 0.004403 -0.007451 + +Polar angle tht: 3.0543; Azimuth angle phi: 5.4542 +Force: -0.353107 0.446478 7.067103 +Torque: -0.160729 0.004624 -0.007538 + +Polar angle tht: 3.0543; Azimuth angle phi: 5.4978 +Force: -0.369812 0.428307 7.068639 +Torque: -0.154154 0.004836 -0.007566 + +Polar angle tht: 3.0543; Azimuth angle phi: 5.5414 +Force: -0.385823 0.409308 7.070105 +Torque: -0.147285 0.005038 -0.007538 + +Polar angle tht: 3.0543; Azimuth angle phi: 5.5851 +Force: -0.401107 0.389517 7.071501 +Torque: -0.140135 0.005231 -0.007452 + +Polar angle tht: 3.0543; Azimuth angle phi: 5.6287 +Force: -0.415632 0.368972 7.072823 +Torque: -0.132719 0.005414 -0.007309 + +Polar angle tht: 3.0543; Azimuth angle phi: 5.6723 +Force: -0.429369 0.347713 7.074069 +Torque: -0.125050 0.005586 -0.007110 + +Polar angle tht: 3.0543; Azimuth angle phi: 5.7160 +Force: -0.442288 0.325779 7.075238 +Torque: -0.117142 0.005747 -0.006858 + +Polar angle tht: 3.0543; Azimuth angle phi: 5.7596 +Force: -0.454362 0.303214 7.076328 +Torque: -0.109012 0.005898 -0.006553 + +Polar angle tht: 3.0543; Azimuth angle phi: 5.8032 +Force: -0.465566 0.280061 7.077337 +Torque: -0.100673 0.006038 -0.006198 + +Polar angle tht: 3.0543; Azimuth angle phi: 5.8469 +Force: -0.475877 0.256364 7.078263 +Torque: -0.092143 0.006166 -0.005797 + +Polar angle tht: 3.0543; Azimuth angle phi: 5.8905 +Force: -0.485273 0.232169 7.079105 +Torque: -0.083437 0.006283 -0.005351 + +Polar angle tht: 3.0543; Azimuth angle phi: 5.9341 +Force: -0.493734 0.207523 7.079863 +Torque: -0.074573 0.006387 -0.004864 + +Polar angle tht: 3.0543; Azimuth angle phi: 5.9778 +Force: -0.501242 0.182474 7.080533 +Torque: -0.065566 0.006480 -0.004340 + +Polar angle tht: 3.0543; Azimuth angle phi: 6.0214 +Force: -0.507782 0.157071 7.081117 +Torque: -0.056434 0.006561 -0.003784 + +Polar angle tht: 3.0543; Azimuth angle phi: 6.0650 +Force: -0.513339 0.131362 7.081612 +Torque: -0.047195 0.006630 -0.003198 + +Polar angle tht: 3.0543; Azimuth angle phi: 6.1087 +Force: -0.517902 0.105397 7.082018 +Torque: -0.037866 0.006686 -0.002589 + +Polar angle tht: 3.0543; Azimuth angle phi: 6.1523 +Force: -0.521461 0.079228 7.082334 +Torque: -0.028465 0.006730 -0.001959 + +Polar angle tht: 3.0543; Azimuth angle phi: 6.1959 +Force: -0.524008 0.052904 7.082561 +Torque: -0.019009 0.006761 -0.001315 + +Polar angle tht: 3.0543; Azimuth angle phi: 6.2396 +Force: -0.525539 0.026478 7.082697 +Torque: -0.009517 0.006780 -0.000660 + +Polar angle tht: 3.0543; Azimuth angle phi: 6.2832 +Force: -0.526050 0.000000 7.082742 +Torque: -0.000008 0.006787 -0.000001 + +Polar angle tht: 3.0980; Azimuth angle phi: 0.0000 +Force: -0.261384 0.000000 7.094943 +Torque: -0.000008 0.003452 -0.000000 + +Polar angle tht: 3.0980; Azimuth angle phi: 0.0436 +Force: -0.261133 -0.013237 7.094919 +Torque: 0.004763 0.003448 0.000165 + +Polar angle tht: 3.0980; Azimuth angle phi: 0.0873 +Force: -0.260380 -0.026448 7.094848 +Torque: 0.009524 0.003439 0.000329 + +Polar angle tht: 3.0980; Azimuth angle phi: 0.1309 +Force: -0.259126 -0.039608 7.094731 +Torque: 0.014267 0.003423 0.000490 + +Polar angle tht: 3.0980; Azimuth angle phi: 0.1745 +Force: -0.257374 -0.052692 7.094566 +Torque: 0.018982 0.003400 0.000648 + +Polar angle tht: 3.0980; Azimuth angle phi: 0.2182 +Force: -0.255128 -0.065675 7.094355 +Torque: 0.023662 0.003371 0.000800 + +Polar angle tht: 3.0980; Azimuth angle phi: 0.2618 +Force: -0.252392 -0.078531 7.094098 +Torque: 0.028297 0.003336 0.000947 + +Polar angle tht: 3.0980; Azimuth angle phi: 0.3054 +Force: -0.249171 -0.091236 7.093795 +Torque: 0.032877 0.003294 0.001087 + +Polar angle tht: 3.0980; Azimuth angle phi: 0.3491 +Force: -0.245473 -0.103766 7.093446 +Torque: 0.037395 0.003246 0.001218 + +Polar angle tht: 3.0980; Azimuth angle phi: 0.3927 +Force: -0.241304 -0.116096 7.093053 +Torque: 0.041842 0.003192 0.001340 + +Polar angle tht: 3.0980; Azimuth angle phi: 0.4363 +Force: -0.236673 -0.128203 7.092617 +Torque: 0.046209 0.003132 0.001451 + +Polar angle tht: 3.0980; Azimuth angle phi: 0.4800 +Force: -0.231589 -0.140064 7.092136 +Torque: 0.050488 0.003066 0.001552 + +Polar angle tht: 3.0980; Azimuth angle phi: 0.5236 +Force: -0.226062 -0.151655 7.091614 +Torque: 0.054671 0.002994 0.001641 + +Polar angle tht: 3.0980; Azimuth angle phi: 0.5672 +Force: -0.220104 -0.162954 7.091050 +Torque: 0.058750 0.002917 0.001717 + +Polar angle tht: 3.0980; Azimuth angle phi: 0.6109 +Force: -0.213726 -0.173941 7.090446 +Torque: 0.062717 0.002834 0.001780 + +Polar angle tht: 3.0980; Azimuth angle phi: 0.6545 +Force: -0.206942 -0.184594 7.089802 +Torque: 0.066564 0.002746 0.001830 + +Polar angle tht: 3.0980; Azimuth angle phi: 0.6981 +Force: -0.199764 -0.194892 7.089120 +Torque: 0.070285 0.002652 0.001866 + +Polar angle tht: 3.0980; Azimuth angle phi: 0.7418 +Force: -0.192207 -0.204815 7.088401 +Torque: 0.073872 0.002554 0.001888 + +Polar angle tht: 3.0980; Azimuth angle phi: 0.7854 +Force: -0.184285 -0.214346 7.087645 +Torque: 0.077318 0.002450 0.001895 + +Polar angle tht: 3.0980; Azimuth angle phi: 0.8290 +Force: -0.176016 -0.223466 7.086856 +Torque: 0.080617 0.002342 0.001888 + +Polar angle tht: 3.0980; Azimuth angle phi: 0.8727 +Force: -0.167415 -0.232157 7.086033 +Torque: 0.083762 0.002229 0.001866 + +Polar angle tht: 3.0980; Azimuth angle phi: 0.9163 +Force: -0.158498 -0.240403 7.085178 +Torque: 0.086748 0.002112 0.001830 + +Polar angle tht: 3.0980; Azimuth angle phi: 0.9599 +Force: -0.149285 -0.248188 7.084294 +Torque: 0.089568 0.001991 0.001781 + +Polar angle tht: 3.0980; Azimuth angle phi: 1.0036 +Force: -0.139792 -0.255498 7.083381 +Torque: 0.092218 0.001866 0.001717 + +Polar angle tht: 3.0980; Azimuth angle phi: 1.0472 +Force: -0.130039 -0.262319 7.082440 +Torque: 0.094693 0.001737 0.001641 + +Polar angle tht: 3.0980; Azimuth angle phi: 1.0908 +Force: -0.120044 -0.268637 7.081475 +Torque: 0.096987 0.001605 0.001552 + +Polar angle tht: 3.0980; Azimuth angle phi: 1.1345 +Force: -0.109828 -0.274442 7.080486 +Torque: 0.099096 0.001470 0.001452 + +Polar angle tht: 3.0980; Azimuth angle phi: 1.1781 +Force: -0.099410 -0.279721 7.079475 +Torque: 0.101017 0.001332 0.001340 + +Polar angle tht: 3.0980; Azimuth angle phi: 1.2217 +Force: -0.088811 -0.284466 7.078445 +Torque: 0.102746 0.001191 0.001218 + +Polar angle tht: 3.0980; Azimuth angle phi: 1.2654 +Force: -0.078050 -0.288667 7.077396 +Torque: 0.104278 0.001047 0.001087 + +Polar angle tht: 3.0980; Azimuth angle phi: 1.3090 +Force: -0.067150 -0.292317 7.076332 +Torque: 0.105613 0.000902 0.000947 + +Polar angle tht: 3.0980; Azimuth angle phi: 1.3526 +Force: -0.056131 -0.295409 7.075253 +Torque: 0.106746 0.000755 0.000801 + +Polar angle tht: 3.0980; Azimuth angle phi: 1.3963 +Force: -0.045014 -0.297938 7.074163 +Torque: 0.107676 0.000606 0.000648 + +Polar angle tht: 3.0980; Azimuth angle phi: 1.4399 +Force: -0.033821 -0.299898 7.073062 +Torque: 0.108401 0.000456 0.000490 + +Polar angle tht: 3.0980; Azimuth angle phi: 1.4835 +Force: -0.022573 -0.301286 7.071953 +Torque: 0.108919 0.000304 0.000329 + +Polar angle tht: 3.0980; Azimuth angle phi: 1.5272 +Force: -0.011292 -0.302100 7.070839 +Torque: 0.109230 0.000152 0.000165 + +Polar angle tht: 3.0980; Azimuth angle phi: 1.5708 +Force: 0.000000 -0.302339 7.069720 +Torque: 0.109334 0.000000 0.000000 + +Polar angle tht: 3.0980; Azimuth angle phi: 1.6144 +Force: 0.011292 -0.302100 7.070839 +Torque: 0.109230 -0.000152 -0.000165 + +Polar angle tht: 3.0980; Azimuth angle phi: 1.6581 +Force: 0.022573 -0.301286 7.071953 +Torque: 0.108919 -0.000304 -0.000329 + +Polar angle tht: 3.0980; Azimuth angle phi: 1.7017 +Force: 0.033821 -0.299898 7.073062 +Torque: 0.108401 -0.000456 -0.000490 + +Polar angle tht: 3.0980; Azimuth angle phi: 1.7453 +Force: 0.045014 -0.297938 7.074163 +Torque: 0.107676 -0.000606 -0.000648 + +Polar angle tht: 3.0980; Azimuth angle phi: 1.7890 +Force: 0.056131 -0.295409 7.075253 +Torque: 0.106746 -0.000755 -0.000801 + +Polar angle tht: 3.0980; Azimuth angle phi: 1.8326 +Force: 0.067150 -0.292317 7.076332 +Torque: 0.105613 -0.000902 -0.000947 + +Polar angle tht: 3.0980; Azimuth angle phi: 1.8762 +Force: 0.078050 -0.288667 7.077396 +Torque: 0.104278 -0.001047 -0.001087 + +Polar angle tht: 3.0980; Azimuth angle phi: 1.9199 +Force: 0.088811 -0.284466 7.078445 +Torque: 0.102746 -0.001191 -0.001218 + +Polar angle tht: 3.0980; Azimuth angle phi: 1.9635 +Force: 0.099410 -0.279721 7.079475 +Torque: 0.101017 -0.001332 -0.001340 + +Polar angle tht: 3.0980; Azimuth angle phi: 2.0071 +Force: 0.109828 -0.274442 7.080486 +Torque: 0.099096 -0.001470 -0.001452 + +Polar angle tht: 3.0980; Azimuth angle phi: 2.0508 +Force: 0.120044 -0.268637 7.081475 +Torque: 0.096987 -0.001605 -0.001552 + +Polar angle tht: 3.0980; Azimuth angle phi: 2.0944 +Force: 0.130039 -0.262319 7.082440 +Torque: 0.094693 -0.001737 -0.001641 + +Polar angle tht: 3.0980; Azimuth angle phi: 2.1380 +Force: 0.139792 -0.255498 7.083381 +Torque: 0.092218 -0.001866 -0.001717 + +Polar angle tht: 3.0980; Azimuth angle phi: 2.1817 +Force: 0.149285 -0.248188 7.084294 +Torque: 0.089568 -0.001991 -0.001781 + +Polar angle tht: 3.0980; Azimuth angle phi: 2.2253 +Force: 0.158498 -0.240403 7.085178 +Torque: 0.086748 -0.002112 -0.001830 + +Polar angle tht: 3.0980; Azimuth angle phi: 2.2689 +Force: 0.167415 -0.232157 7.086033 +Torque: 0.083762 -0.002229 -0.001866 + +Polar angle tht: 3.0980; Azimuth angle phi: 2.3126 +Force: 0.176016 -0.223466 7.086856 +Torque: 0.080617 -0.002342 -0.001888 + +Polar angle tht: 3.0980; Azimuth angle phi: 2.3562 +Force: 0.184285 -0.214346 7.087645 +Torque: 0.077318 -0.002450 -0.001895 + +Polar angle tht: 3.0980; Azimuth angle phi: 2.3998 +Force: 0.192207 -0.204815 7.088401 +Torque: 0.073872 -0.002554 -0.001888 + +Polar angle tht: 3.0980; Azimuth angle phi: 2.4435 +Force: 0.199764 -0.194892 7.089120 +Torque: 0.070285 -0.002652 -0.001866 + +Polar angle tht: 3.0980; Azimuth angle phi: 2.4871 +Force: 0.206942 -0.184594 7.089802 +Torque: 0.066564 -0.002746 -0.001830 + +Polar angle tht: 3.0980; Azimuth angle phi: 2.5307 +Force: 0.213726 -0.173941 7.090446 +Torque: 0.062717 -0.002834 -0.001780 + +Polar angle tht: 3.0980; Azimuth angle phi: 2.5744 +Force: 0.220104 -0.162954 7.091050 +Torque: 0.058750 -0.002917 -0.001717 + +Polar angle tht: 3.0980; Azimuth angle phi: 2.6180 +Force: 0.226062 -0.151655 7.091614 +Torque: 0.054671 -0.002994 -0.001641 + +Polar angle tht: 3.0980; Azimuth angle phi: 2.6616 +Force: 0.231589 -0.140064 7.092136 +Torque: 0.050488 -0.003066 -0.001552 + +Polar angle tht: 3.0980; Azimuth angle phi: 2.7053 +Force: 0.236673 -0.128203 7.092617 +Torque: 0.046209 -0.003132 -0.001451 + +Polar angle tht: 3.0980; Azimuth angle phi: 2.7489 +Force: 0.241304 -0.116096 7.093053 +Torque: 0.041842 -0.003192 -0.001340 + +Polar angle tht: 3.0980; Azimuth angle phi: 2.7925 +Force: 0.245473 -0.103766 7.093446 +Torque: 0.037395 -0.003246 -0.001218 + +Polar angle tht: 3.0980; Azimuth angle phi: 2.8362 +Force: 0.249171 -0.091236 7.093795 +Torque: 0.032877 -0.003294 -0.001087 + +Polar angle tht: 3.0980; Azimuth angle phi: 2.8798 +Force: 0.252392 -0.078531 7.094098 +Torque: 0.028297 -0.003336 -0.000947 + +Polar angle tht: 3.0980; Azimuth angle phi: 2.9234 +Force: 0.255128 -0.065675 7.094355 +Torque: 0.023662 -0.003371 -0.000800 + +Polar angle tht: 3.0980; Azimuth angle phi: 2.9671 +Force: 0.257374 -0.052692 7.094566 +Torque: 0.018982 -0.003400 -0.000648 + +Polar angle tht: 3.0980; Azimuth angle phi: 3.0107 +Force: 0.259126 -0.039608 7.094731 +Torque: 0.014267 -0.003423 -0.000490 + +Polar angle tht: 3.0980; Azimuth angle phi: 3.0543 +Force: 0.260380 -0.026448 7.094848 +Torque: 0.009524 -0.003439 -0.000329 + +Polar angle tht: 3.0980; Azimuth angle phi: 3.0980 +Force: 0.261133 -0.013237 7.094919 +Torque: 0.004763 -0.003448 -0.000165 + +Polar angle tht: 3.0980; Azimuth angle phi: 3.1416 +Force: 0.261384 0.000000 7.094943 +Torque: -0.000008 -0.003452 0.000000 + +Polar angle tht: 3.0980; Azimuth angle phi: 3.1852 +Force: 0.261133 0.013237 7.094919 +Torque: -0.004778 -0.003448 0.000166 + +Polar angle tht: 3.0980; Azimuth angle phi: 3.2289 +Force: 0.260380 0.026448 7.094848 +Torque: -0.009539 -0.003439 0.000329 + +Polar angle tht: 3.0980; Azimuth angle phi: 3.2725 +Force: 0.259126 0.039608 7.094731 +Torque: -0.014282 -0.003423 0.000491 + +Polar angle tht: 3.0980; Azimuth angle phi: 3.3161 +Force: 0.257374 0.052692 7.094566 +Torque: -0.018998 -0.003400 0.000649 + +Polar angle tht: 3.0980; Azimuth angle phi: 3.3598 +Force: 0.255128 0.065675 7.094355 +Torque: -0.023678 -0.003371 0.000801 + +Polar angle tht: 3.0980; Azimuth angle phi: 3.4034 +Force: 0.252392 0.078531 7.094098 +Torque: -0.028312 -0.003336 0.000948 + +Polar angle tht: 3.0980; Azimuth angle phi: 3.4470 +Force: 0.249171 0.091236 7.093795 +Torque: -0.032893 -0.003294 0.001087 + +Polar angle tht: 3.0980; Azimuth angle phi: 3.4907 +Force: 0.245473 0.103766 7.093446 +Torque: -0.037411 -0.003246 0.001219 + +Polar angle tht: 3.0980; Azimuth angle phi: 3.5343 +Force: 0.241304 0.116096 7.093053 +Torque: -0.041858 -0.003192 0.001340 + +Polar angle tht: 3.0980; Azimuth angle phi: 3.5779 +Force: 0.236673 0.128203 7.092617 +Torque: -0.046225 -0.003132 0.001452 + +Polar angle tht: 3.0980; Azimuth angle phi: 3.6216 +Force: 0.231589 0.140064 7.092136 +Torque: -0.050504 -0.003066 0.001553 + +Polar angle tht: 3.0980; Azimuth angle phi: 3.6652 +Force: 0.226062 0.151655 7.091614 +Torque: -0.054687 -0.002994 0.001642 + +Polar angle tht: 3.0980; Azimuth angle phi: 3.7088 +Force: 0.220104 0.162954 7.091050 +Torque: -0.058765 -0.002917 0.001718 + +Polar angle tht: 3.0980; Azimuth angle phi: 3.7525 +Force: 0.213726 0.173941 7.090446 +Torque: -0.062732 -0.002834 0.001781 + +Polar angle tht: 3.0980; Azimuth angle phi: 3.7961 +Force: 0.206942 0.184594 7.089802 +Torque: -0.066580 -0.002746 0.001831 + +Polar angle tht: 3.0980; Azimuth angle phi: 3.8397 +Force: 0.199764 0.194892 7.089120 +Torque: -0.070300 -0.002652 0.001867 + +Polar angle tht: 3.0980; Azimuth angle phi: 3.8834 +Force: 0.192207 0.204815 7.088401 +Torque: -0.073887 -0.002554 0.001888 + +Polar angle tht: 3.0980; Azimuth angle phi: 3.9270 +Force: 0.184285 0.214346 7.087645 +Torque: -0.077333 -0.002450 0.001895 + +Polar angle tht: 3.0980; Azimuth angle phi: 3.9706 +Force: 0.176016 0.223466 7.086856 +Torque: -0.080632 -0.002342 0.001888 + +Polar angle tht: 3.0980; Azimuth angle phi: 4.0143 +Force: 0.167415 0.232157 7.086033 +Torque: -0.083777 -0.002229 0.001867 + +Polar angle tht: 3.0980; Azimuth angle phi: 4.0579 +Force: 0.158498 0.240403 7.085178 +Torque: -0.086763 -0.002112 0.001831 + +Polar angle tht: 3.0980; Azimuth angle phi: 4.1015 +Force: 0.149285 0.248188 7.084294 +Torque: -0.089584 -0.001991 0.001781 + +Polar angle tht: 3.0980; Azimuth angle phi: 4.1452 +Force: 0.139792 0.255498 7.083381 +Torque: -0.092234 -0.001866 0.001718 + +Polar angle tht: 3.0980; Azimuth angle phi: 4.1888 +Force: 0.130039 0.262319 7.082440 +Torque: -0.094708 -0.001737 0.001641 + +Polar angle tht: 3.0980; Azimuth angle phi: 4.2324 +Force: 0.120044 0.268637 7.081475 +Torque: -0.097002 -0.001605 0.001553 + +Polar angle tht: 3.0980; Azimuth angle phi: 4.2761 +Force: 0.109828 0.274442 7.080486 +Torque: -0.099112 -0.001470 0.001452 + +Polar angle tht: 3.0980; Azimuth angle phi: 4.3197 +Force: 0.099410 0.279721 7.079475 +Torque: -0.101033 -0.001332 0.001340 + +Polar angle tht: 3.0980; Azimuth angle phi: 4.3633 +Force: 0.088811 0.284466 7.078445 +Torque: -0.102761 -0.001191 0.001218 + +Polar angle tht: 3.0980; Azimuth angle phi: 4.4070 +Force: 0.078050 0.288667 7.077396 +Torque: -0.104294 -0.001047 0.001087 + +Polar angle tht: 3.0980; Azimuth angle phi: 4.4506 +Force: 0.067150 0.292317 7.076332 +Torque: -0.105628 -0.000902 0.000948 + +Polar angle tht: 3.0980; Azimuth angle phi: 4.4942 +Force: 0.056131 0.295409 7.075253 +Torque: -0.106761 -0.000755 0.000801 + +Polar angle tht: 3.0980; Azimuth angle phi: 4.5379 +Force: 0.045014 0.297938 7.074163 +Torque: -0.107691 -0.000606 0.000648 + +Polar angle tht: 3.0980; Azimuth angle phi: 4.5815 +Force: 0.033821 0.299898 7.073062 +Torque: -0.108416 -0.000456 0.000491 + +Polar angle tht: 3.0980; Azimuth angle phi: 4.6251 +Force: 0.022573 0.301286 7.071953 +Torque: -0.108935 -0.000304 0.000329 + +Polar angle tht: 3.0980; Azimuth angle phi: 4.6688 +Force: 0.011292 0.302100 7.070839 +Torque: -0.109246 -0.000152 0.000165 + +Polar angle tht: 3.0980; Azimuth angle phi: 4.7124 +Force: 0.000000 0.302339 7.069720 +Torque: -0.109349 0.000000 -0.000000 + +Polar angle tht: 3.0980; Azimuth angle phi: 4.7560 +Force: -0.011292 0.302100 7.070839 +Torque: -0.109246 0.000152 -0.000165 + +Polar angle tht: 3.0980; Azimuth angle phi: 4.7997 +Force: -0.022573 0.301286 7.071953 +Torque: -0.108935 0.000304 -0.000329 + +Polar angle tht: 3.0980; Azimuth angle phi: 4.8433 +Force: -0.033821 0.299898 7.073062 +Torque: -0.108416 0.000456 -0.000491 + +Polar angle tht: 3.0980; Azimuth angle phi: 4.8869 +Force: -0.045014 0.297938 7.074163 +Torque: -0.107691 0.000606 -0.000648 + +Polar angle tht: 3.0980; Azimuth angle phi: 4.9306 +Force: -0.056131 0.295409 7.075253 +Torque: -0.106761 0.000755 -0.000801 + +Polar angle tht: 3.0980; Azimuth angle phi: 4.9742 +Force: -0.067150 0.292317 7.076332 +Torque: -0.105628 0.000902 -0.000948 + +Polar angle tht: 3.0980; Azimuth angle phi: 5.0178 +Force: -0.078050 0.288667 7.077396 +Torque: -0.104294 0.001047 -0.001087 + +Polar angle tht: 3.0980; Azimuth angle phi: 5.0615 +Force: -0.088811 0.284466 7.078445 +Torque: -0.102761 0.001191 -0.001218 + +Polar angle tht: 3.0980; Azimuth angle phi: 5.1051 +Force: -0.099410 0.279721 7.079475 +Torque: -0.101033 0.001332 -0.001340 + +Polar angle tht: 3.0980; Azimuth angle phi: 5.1487 +Force: -0.109828 0.274442 7.080486 +Torque: -0.099112 0.001470 -0.001452 + +Polar angle tht: 3.0980; Azimuth angle phi: 5.1924 +Force: -0.120044 0.268637 7.081475 +Torque: -0.097002 0.001605 -0.001553 + +Polar angle tht: 3.0980; Azimuth angle phi: 5.2360 +Force: -0.130039 0.262319 7.082440 +Torque: -0.094708 0.001737 -0.001641 + +Polar angle tht: 3.0980; Azimuth angle phi: 5.2796 +Force: -0.139792 0.255498 7.083381 +Torque: -0.092234 0.001866 -0.001718 + +Polar angle tht: 3.0980; Azimuth angle phi: 5.3233 +Force: -0.149285 0.248188 7.084294 +Torque: -0.089584 0.001991 -0.001781 + +Polar angle tht: 3.0980; Azimuth angle phi: 5.3669 +Force: -0.158498 0.240403 7.085178 +Torque: -0.086763 0.002112 -0.001831 + +Polar angle tht: 3.0980; Azimuth angle phi: 5.4105 +Force: -0.167415 0.232157 7.086033 +Torque: -0.083777 0.002229 -0.001867 + +Polar angle tht: 3.0980; Azimuth angle phi: 5.4542 +Force: -0.176016 0.223466 7.086856 +Torque: -0.080632 0.002342 -0.001888 + +Polar angle tht: 3.0980; Azimuth angle phi: 5.4978 +Force: -0.184285 0.214346 7.087645 +Torque: -0.077333 0.002450 -0.001895 + +Polar angle tht: 3.0980; Azimuth angle phi: 5.5414 +Force: -0.192207 0.204815 7.088401 +Torque: -0.073887 0.002554 -0.001888 + +Polar angle tht: 3.0980; Azimuth angle phi: 5.5851 +Force: -0.199764 0.194892 7.089120 +Torque: -0.070300 0.002652 -0.001867 + +Polar angle tht: 3.0980; Azimuth angle phi: 5.6287 +Force: -0.206942 0.184594 7.089802 +Torque: -0.066580 0.002746 -0.001831 + +Polar angle tht: 3.0980; Azimuth angle phi: 5.6723 +Force: -0.213726 0.173941 7.090446 +Torque: -0.062732 0.002834 -0.001781 + +Polar angle tht: 3.0980; Azimuth angle phi: 5.7160 +Force: -0.220104 0.162954 7.091050 +Torque: -0.058765 0.002917 -0.001718 + +Polar angle tht: 3.0980; Azimuth angle phi: 5.7596 +Force: -0.226062 0.151655 7.091614 +Torque: -0.054687 0.002994 -0.001642 + +Polar angle tht: 3.0980; Azimuth angle phi: 5.8032 +Force: -0.231589 0.140064 7.092136 +Torque: -0.050504 0.003066 -0.001553 + +Polar angle tht: 3.0980; Azimuth angle phi: 5.8469 +Force: -0.236673 0.128203 7.092617 +Torque: -0.046225 0.003132 -0.001452 + +Polar angle tht: 3.0980; Azimuth angle phi: 5.8905 +Force: -0.241304 0.116096 7.093053 +Torque: -0.041858 0.003192 -0.001340 + +Polar angle tht: 3.0980; Azimuth angle phi: 5.9341 +Force: -0.245473 0.103766 7.093446 +Torque: -0.037411 0.003246 -0.001219 + +Polar angle tht: 3.0980; Azimuth angle phi: 5.9778 +Force: -0.249171 0.091236 7.093795 +Torque: -0.032893 0.003294 -0.001087 + +Polar angle tht: 3.0980; Azimuth angle phi: 6.0214 +Force: -0.252392 0.078531 7.094098 +Torque: -0.028312 0.003336 -0.000948 + +Polar angle tht: 3.0980; Azimuth angle phi: 6.0650 +Force: -0.255128 0.065675 7.094355 +Torque: -0.023678 0.003371 -0.000801 + +Polar angle tht: 3.0980; Azimuth angle phi: 6.1087 +Force: -0.257374 0.052692 7.094566 +Torque: -0.018998 0.003400 -0.000649 + +Polar angle tht: 3.0980; Azimuth angle phi: 6.1523 +Force: -0.259126 0.039608 7.094731 +Torque: -0.014282 0.003423 -0.000491 + +Polar angle tht: 3.0980; Azimuth angle phi: 6.1959 +Force: -0.260380 0.026448 7.094848 +Torque: -0.009539 0.003439 -0.000329 + +Polar angle tht: 3.0980; Azimuth angle phi: 6.2396 +Force: -0.261133 0.013237 7.094919 +Torque: -0.004778 0.003448 -0.000166 + +Polar angle tht: 3.0980; Azimuth angle phi: 6.2832 +Force: -0.261384 0.000000 7.094943 +Torque: -0.000008 0.003452 -0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 0.0000 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 0.0436 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 0.0873 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 0.1309 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 0.1745 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 0.2182 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 0.2618 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 0.3054 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 0.3491 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 0.3927 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 0.4363 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 0.4800 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 0.5236 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 0.5672 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 0.6109 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 0.6545 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 0.6981 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 0.7418 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 0.7854 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 0.8290 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 0.8727 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 0.9163 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 0.9599 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 1.0036 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 1.0472 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 1.0908 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 1.1345 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 1.1781 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 1.2217 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 1.2654 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 1.3090 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 1.3526 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 1.3963 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 1.4399 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 1.4835 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 1.5272 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 1.5708 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 1.6144 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 1.6581 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 1.7017 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 1.7453 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 1.7890 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 1.8326 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 1.8762 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 1.9199 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 1.9635 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 2.0071 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 2.0508 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 2.0944 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 2.1380 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 2.1817 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 2.2253 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 2.2689 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 2.3126 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 2.3562 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 2.3998 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 2.4435 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 2.4871 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 2.5307 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 2.5744 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 2.6180 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 2.6616 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 2.7053 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 2.7489 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 2.7925 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 2.8362 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 2.8798 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 2.9234 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 2.9671 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 3.0107 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 3.0543 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 3.0980 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 3.1416 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 3.1852 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 3.2289 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 3.2725 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 3.3161 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 3.3598 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 3.4034 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 3.4470 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 3.4907 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 3.5343 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 3.5779 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 3.6216 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 3.6652 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 3.7088 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 3.7525 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 3.7961 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 3.8397 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 3.8834 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 3.9270 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 3.9706 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 4.0143 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 4.0579 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 4.1015 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 4.1452 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 4.1888 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 4.2324 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 4.2761 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 4.3197 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 4.3633 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 4.4070 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 4.4506 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 4.4942 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 4.5379 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 4.5815 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 4.6251 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 4.6688 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 4.7124 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 4.7560 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 4.7997 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 4.8433 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 4.8869 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 4.9306 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 4.9742 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 5.0178 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 5.0615 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 5.1051 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 5.1487 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 5.1924 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 5.2360 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 5.2796 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 5.3233 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 5.3669 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 5.4105 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 5.4542 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 5.4978 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 5.5414 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 5.5851 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 5.6287 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 5.6723 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 5.7160 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 5.7596 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 5.8032 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 5.8469 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 5.8905 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 5.9341 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 5.9778 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 6.0214 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 6.0650 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 6.1087 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 6.1523 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 6.1959 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 6.2396 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + +Polar angle tht: 3.1416; Azimuth angle phi: 6.2832 +Force: 0.000000 0.000000 7.081869 +Torque: -0.000008 0.000000 0.000000 + diff --git a/simulations/Tutorial/xhps_integration/surface_tables/setup_summary.txt b/simulations/Tutorial/xhps_integration/surface_tables/setup_summary.txt new file mode 100644 index 0000000000000000000000000000000000000000..64fbae65c5e4754049ae6e794918b1a586cc57ae --- /dev/null +++ b/simulations/Tutorial/xhps_integration/surface_tables/setup_summary.txt @@ -0,0 +1,20 @@ +***************************************************************** +* SUMMARY OF SETUP FOR SURFACE FORCE AND TORQUE CALCULATION * +***************************************************************** + +----------------------- INPUT FILE NAMES ------------------------ + - Element file path: ../example/et.txt + - Node file path: ../example/nt.txt + - Optical file path: ../example/ct.txt + +------------------- SATELLITE CENTER OF MASS -------------------- + r_COM = [1.5615 0.9720 -0.3310] + +----------------------- REFERECE AREA ------------------------- + Calculate variable cross section (yes = 1, no = 0)? 1 + +----------------------- SATELLITE PLOTS ------------------------- + Save data for satellite plots (yes = 1, no = 0)? 0 + +----------------------- OUTPUT DIRECTORY ------------------------ + All results are stored in directory: ../example/ diff --git a/simulations/Tutorial/xhps_integration/surface_tables/torque_TX.txt b/simulations/Tutorial/xhps_integration/surface_tables/torque_TX.txt new file mode 100644 index 0000000000000000000000000000000000000000..79dcfd88d6bfe67fc195a85347687eec101b2d07 --- /dev/null +++ b/simulations/Tutorial/xhps_integration/surface_tables/torque_TX.txt @@ -0,0 +1,73 @@ +-0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 +-0.000000000000000 0.001223163109036 0.002443993073584 0.003660161226837 0.004869347848552 0.006069246616349 0.007257569030685 0.008432048804809 0.009590446211100 0.010730552375240 0.011850193509866 0.012947235079337 0.014019585887595 0.015065202081045 0.016082091058727 0.017068315282169 0.018021995977579 0.018941316723106 0.019824526914431 0.020669945101896 0.021475962192785 0.022241044512804 0.022963736720684 0.023642664570694 0.024276537517569 0.024864151159246 0.025404389512630 0.025896227118411 0.026338730970834 0.026731062269157 0.027072477987465 0.027362332260168 0.027600077580664 0.027785265811252 0.027917549002570 0.027996680021025 0.028022512983873 0.027996680021025 0.027917549002570 0.027785265811252 0.027600077580664 0.027362332260168 0.027072477987465 0.026731062269157 0.026338730970834 0.025896227118411 0.025404389512630 0.024864151159246 0.024276537517569 0.023642664570694 0.022963736720684 0.022241044512804 0.021475962192785 0.020669945101896 0.019824526914431 0.018941316723106 0.018021995977579 0.017068315282169 0.016082091058727 0.015065202081045 0.014019585887595 0.012947235079337 0.011850193509866 0.010730552375241 0.009590446211099 0.008432048804809 0.007257569030685 0.006069246616349 0.004869347848552 0.003660161226837 0.002443993073584 0.001223163109036 -0.000000000000000 -0.001223163109037 -0.002443993073585 -0.003660161226838 -0.004869347848553 -0.006069246616349 -0.007257569030685 -0.008432048804809 -0.009590446211102 -0.010730552375241 -0.011850193509866 -0.012947235079340 -0.014019585887594 -0.015065202081045 -0.016082091058728 -0.017068315282169 -0.018021995977583 -0.018941316723106 -0.019824526914435 -0.020669945101897 -0.021475962192789 -0.022241044512804 -0.022963736720685 -0.023642664570694 -0.024276537517570 -0.024864151159246 -0.025404389512631 -0.025896227118411 -0.026338730970834 -0.026731062269158 -0.027072477987465 -0.027362332260168 -0.027600077580664 -0.027785265811253 -0.027917549002570 -0.027996680021029 -0.028022512983873 -0.027996680021029 -0.027917549002570 -0.027785265811253 -0.027600077580664 -0.027362332260168 -0.027072477987465 -0.026731062269158 -0.026338730970834 -0.025896227118411 -0.025404389512631 -0.024864151159246 -0.024276537517570 -0.023642664570694 -0.022963736720685 -0.022241044512804 -0.021475962192789 -0.020669945101897 -0.019824526914435 -0.018941316723106 -0.018021995977583 -0.017068315282169 -0.016082091058728 -0.015065202081045 -0.014019585887594 -0.012947235079340 -0.011850193509866 -0.010730552375241 -0.009590446211102 -0.008432048804809 -0.007257569030685 -0.006069246616349 -0.004869347848553 -0.003660161226838 -0.002443993073585 -0.001223163109037 -0.000000000000000 +-0.000000000000000 0.002438693728733 0.004872726165794 0.007297445037903 0.009708216090294 0.012100432050326 0.014469521536460 0.016810957894555 0.019120267943682 0.021393040613776 0.023624935457802 0.025811691021311 0.027949133052649 0.030033182537464 0.032059863541524 0.034025310846298 0.035925777362317 0.037757641305709 0.039517413123984 0.041201742157552 0.042807423024278 0.044331401714736 0.045770781386711 0.047122827848010 0.048384974717380 0.049554828254130 0.050630171847518 0.051608970158035 0.052489372903229 0.053269718281539 0.053948536028289 0.054524550099088 0.054996680976057 0.055364047593712 0.055625968881756 0.055781964922746 0.055831757723469 0.055781964922746 0.055625968881756 0.055364047593712 0.054996680976057 0.054524550099088 0.053948536028289 0.053269718281539 0.052489372903229 0.051608970158035 0.050630171847518 0.049554828254130 0.048384974717380 0.047122827848010 0.045770781386711 0.044331401714739 0.042807423024278 0.041201742157552 0.039517413123984 0.037757641305709 0.035925777362317 0.034025310846299 0.032059863541523 0.030033182537463 0.027949133052649 0.025811691021311 0.023624935457802 0.021393040613776 0.019120267943682 0.016810957894554 0.014469521536460 0.012100432050326 0.009708216090294 0.007297445037903 0.004872726165794 0.002438693728733 -0.000000000000000 -0.002438693728733 -0.004872726165795 -0.007297445037903 -0.009708216090294 -0.012100432050326 -0.014469521536460 -0.016810957894556 -0.019120267943683 -0.021393040613776 -0.023624935457803 -0.025811691021311 -0.027949133052649 -0.030033182537466 -0.032059863541524 -0.034025310846299 -0.035925777362317 -0.037757641305709 -0.039517413123985 -0.041201742157552 -0.042807423024281 -0.044331401714741 -0.045770781386712 -0.047122827848010 -0.048384974717380 -0.049554828254130 -0.050630171847518 -0.051608970158035 -0.052489372903229 -0.053269718281539 -0.053948536028294 -0.054524550099088 -0.054996680976057 -0.055364047593712 -0.055625968881756 -0.055781964922746 -0.055831757723470 -0.055781964922746 -0.055625968881756 -0.055364047593712 -0.054996680976057 -0.054524550099088 -0.053948536028294 -0.053269718281539 -0.052489372903229 -0.051608970158035 -0.050630171847518 -0.049554828254130 -0.048384974717380 -0.047122827848010 -0.045770781386711 -0.044331401714741 -0.042807423024281 -0.041201742157552 -0.039517413123985 -0.037757641305709 -0.035925777362317 -0.034025310846299 -0.032059863541524 -0.030033182537466 -0.027949133052649 -0.025811691021311 -0.023624935457803 -0.021393040613776 -0.019120267943683 -0.016810957894556 -0.014469521536460 -0.012100432050326 -0.009708216090294 -0.007297445037903 -0.004872726165795 -0.002438693728733 -0.000000000000000 +-0.000000000000000 0.003637340937116 0.007267715151288 0.010884169507143 0.014479778016116 0.018047655339048 0.021580970204058 0.025072958711738 0.028516937500095 0.031906316741921 0.035234612947807 0.038495461548434 0.041682629230339 0.044790026000075 0.047811716952164 0.050741933717223 0.053575085567277 0.056305770156129 0.058928783873690 0.061439131793934 0.063832037197254 0.066102950648971 0.068247558616894 0.070261791611678 0.072141831835261 0.073884120323319 0.075485363569325 0.076942539618552 0.078252903621902 0.079413992840411 0.080423631092573 0.081279932638035 0.081981305491820 0.082526454165492 0.082914381831569 0.083144391909786 0.083216089074673 0.083144391909786 0.082914381831569 0.082526454165492 0.081981305491820 0.081279932638035 0.080423631092573 0.079413992840411 0.078252903621902 0.076942539618552 0.075485363569325 0.073884120323319 0.072141831835261 0.070261791611678 0.068247558616894 0.066102950648973 0.063832037197254 0.061439131793934 0.058928783873690 0.056305770156130 0.053575085567277 0.050741933717223 0.047811716952164 0.044790026000075 0.041682629230340 0.038495461548434 0.035234612947808 0.031906316741921 0.028516937500095 0.025072958711738 0.021580970204058 0.018047655339048 0.014479778016116 0.010884169507144 0.007267715151287 0.003637340937117 -0.000000000000000 -0.003637340937116 -0.007267715151288 -0.010884169507144 -0.014479778016117 -0.018047655339048 -0.021580970204057 -0.025072958711738 -0.028516937500095 -0.031906316741921 -0.035234612947810 -0.038495461548434 -0.041682629230339 -0.044790026000076 -0.047811716952165 -0.050741933717224 -0.053575085567277 -0.056305770156129 -0.058928783873690 -0.061439131793936 -0.063832037197254 -0.066102950648976 -0.068247558616894 -0.070261791611678 -0.072141831835261 -0.073884120323319 -0.075485363569325 -0.076942539618552 -0.078252903621902 -0.079413992840411 -0.080423631092573 -0.081279932638035 -0.081981305491820 -0.082526454165493 -0.082914381831569 -0.083144391909788 -0.083216089074673 -0.083144391909788 -0.082914381831569 -0.082526454165493 -0.081981305491820 -0.081279932638035 -0.080423631092573 -0.079413992840411 -0.078252903621902 -0.076942539618552 -0.075485363569325 -0.073884120323319 -0.072141831835261 -0.070261791611678 -0.068247558616894 -0.066102950648976 -0.063832037197254 -0.061439131793936 -0.058928783873690 -0.056305770156129 -0.053575085567277 -0.050741933717224 -0.047811716952165 -0.044790026000076 -0.041682629230339 -0.038495461548434 -0.035234612947811 -0.031906316741921 -0.028516937500095 -0.025072958711738 -0.021580970204057 -0.018047655339048 -0.014479778016117 -0.010884169507144 -0.007267715151288 -0.003637340937116 -0.000000000000000 +-0.000000000000000 0.004809982305167 0.009610732717752 0.014393037495625 0.019147719158617 0.023865654522258 0.028537792615108 0.033155172441412 0.037708940551158 0.042190368380257 0.046590869324072 0.050902015508322 0.055115554222249 0.059223423979700 0.063217770174962 0.067090960301133 0.070835598700079 0.074444540814145 0.077910906911260 0.081228095256252 0.084389794702850 0.087389996682113 0.090223006564671 0.092883454375793 0.095366304843767 0.097666866763746 0.099780801661106 0.101704131739558 0.103433247101627 0.104964912230016 0.106296271720818 0.107424855260481 0.108348581841687 0.109065763211422 0.109575106552149 0.109875716390942 0.109967095740758 0.109875716390942 0.109575106552149 0.109065763211422 0.108348581841687 0.107424855260481 0.106296271720818 0.104964912230016 0.103433247101627 0.101704131739558 0.099780801661106 0.097666866763745 0.095366304843767 0.092883454375793 0.090223006564671 0.087389996682113 0.084389794702850 0.081228095256252 0.077910906911260 0.074444540814145 0.070835598700079 0.067090960301133 0.063217770174959 0.059223423979698 0.055115554222249 0.050902015508322 0.046590869324072 0.042190368380259 0.037708940551157 0.033155172441411 0.028537792615108 0.023865654522258 0.019147719158618 0.014393037495625 0.009610732717752 0.004809982305167 -0.000000000000000 -0.004809982305168 -0.009610732717753 -0.014393037495626 -0.019147719158618 -0.023865654522257 -0.028537792615108 -0.033155172441412 -0.037708940551157 -0.042190368380259 -0.046590869324071 -0.050902015508322 -0.055115554222249 -0.059223423979700 -0.063217770174963 -0.067090960301133 -0.070835598700079 -0.074444540814145 -0.077910906911260 -0.081228095256252 -0.084389794702850 -0.087389996682113 -0.090223006564671 -0.092883454375793 -0.095366304843767 -0.097666866763746 -0.099780801661106 -0.101704131739558 -0.103433247101635 -0.104964912230016 -0.106296271720818 -0.107424855260481 -0.108348581841687 -0.109065763211422 -0.109575106552149 -0.109875716390943 -0.109967095740758 -0.109875716390943 -0.109575106552149 -0.109065763211422 -0.108348581841687 -0.107424855260481 -0.106296271720818 -0.104964912230016 -0.103433247101635 -0.101704131739558 -0.099780801661106 -0.097666866763746 -0.095366304843767 -0.092883454375793 -0.090223006564671 -0.087389996682113 -0.084389794702850 -0.081228095256252 -0.077910906911260 -0.074444540814145 -0.070835598700079 -0.067090960301133 -0.063217770174963 -0.059223423979700 -0.055115554222249 -0.050902015508322 -0.046590869324072 -0.042190368380259 -0.037708940551157 -0.033155172441412 -0.028537792615108 -0.023865654522257 -0.019147719158618 -0.014393037495626 -0.009610732717753 -0.004809982305168 -0.000000000000000 +-0.000000000000000 0.005947693324015 0.011883947086755 0.017797344399242 0.023676513667121 0.029510151113166 0.035287043150422 0.040996088556917 0.046626320403362 0.052166927686134 0.057607276618466 0.062936931534066 0.068145675358168 0.073223529602596 0.078160773842461 0.082947964633909 0.087575953833600 0.092035906282569 0.096319316818640 0.100418026583637 0.104324238593334 0.108030532540356 0.111529878802012 0.114815651627384 0.117881641479982 0.120722066514582 0.123331583168954 0.125705295853553 0.127838765724257 0.129728018525804 0.131369551495417 0.132760339318657 0.133897839131510 0.134779994564932 0.135405238830283 0.135772496846064 0.135881186408314 0.135772496846064 0.135405238830283 0.134779994564932 0.133897839131510 0.132760339318657 0.131369551495417 0.129728018525804 0.127838765724257 0.125705295853553 0.123331583168954 0.120722066514582 0.117881641479982 0.114815651627384 0.111529878802012 0.108030532540356 0.104324238593334 0.100418026583637 0.096319316818640 0.092035906282571 0.087575953833601 0.082947964633909 0.078160773842461 0.073223529602596 0.068145675358168 0.062936931534066 0.057607276618468 0.052166927686134 0.046626320403362 0.040996088556917 0.035287043150422 0.029510151113167 0.023676513667121 0.017797344399242 0.011883947086754 0.005947693324017 -0.000000000000000 -0.005947693324015 -0.011883947086755 -0.017797344399244 -0.023676513667122 -0.029510151113166 -0.035287043150421 -0.040996088556917 -0.046626320403362 -0.052166927686134 -0.057607276618467 -0.062936931534066 -0.068145675358165 -0.073223529602596 -0.078160773842461 -0.082947964633909 -0.087575953833601 -0.092035906282569 -0.096319316818638 -0.100418026583637 -0.104324238593334 -0.108030532540357 -0.111529878802012 -0.114815651627384 -0.117881641479982 -0.120722066514582 -0.123331583168954 -0.125705295853553 -0.127838765724257 -0.129728018525804 -0.131369551495417 -0.132760339318657 -0.133897839131510 -0.134779994564933 -0.135405238830283 -0.135772496846064 -0.135881186408314 -0.135772496846064 -0.135405238830283 -0.134779994564933 -0.133897839131510 -0.132760339318657 -0.131369551495417 -0.129728018525804 -0.127838765724257 -0.125705295853553 -0.123331583168954 -0.120722066514582 -0.117881641479982 -0.114815651627384 -0.111529878802012 -0.108030532540357 -0.104324238593334 -0.100418026583637 -0.096319316818638 -0.092035906282569 -0.087575953833601 -0.082947964633909 -0.078160773842461 -0.073223529602596 -0.068145675358165 -0.062936931534066 -0.057607276618470 -0.052166927686134 -0.046626320403362 -0.040996088556917 -0.035287043150421 -0.029510151113166 -0.023676513667122 -0.017797344399244 -0.011883947086755 -0.005947693324015 -0.000000000000000 +-0.000000000000000 0.007041815325839 0.014070057724341 0.021071181386880 0.028031694680860 0.034938187084476 0.041777355938114 0.048536032952138 0.055201210411579 0.061760067019221 0.068199993319602 0.074508616647821 0.080673825548447 0.086683793611462 0.092527002673921 0.098192265337852 0.103668746757168 0.108945985648221 0.114013914481149 0.118862878811496 0.123483655713951 0.127867471282735 0.132006017165762 0.135891466102326 0.139516486436971 0.142874255584606 0.145958472425283 0.148763368609318 0.151283718756575 0.153514849536416 0.155452647617712 0.157093566480787 0.158434632086355 0.159473447398580 0.160208195762631 0.160637643139012 0.160761139200004 0.160637643139012 0.160208195762631 0.159473447398580 0.158434632086355 0.157093566480787 0.155452647617712 0.153514849536416 0.151283718756575 0.148763368609318 0.145958472425283 0.142874255584606 0.139516486436971 0.135891466102326 0.132006017165762 0.127867471282735 0.123483655713952 0.118862878811496 0.114013914481149 0.108945985648222 0.103668746757168 0.098192265337853 0.092527002673921 0.086683793611461 0.080673825548446 0.074508616647822 0.068199993319602 0.061760067019222 0.055201210411578 0.048536032952136 0.041777355938115 0.034938187084477 0.028031694680860 0.021071181386881 0.014070057724341 0.007041815325839 -0.000000000000000 -0.007041815325838 -0.014070057724342 -0.021071181386883 -0.028031694680860 -0.034938187084476 -0.041777355938114 -0.048536032952137 -0.055201210411578 -0.061760067019222 -0.068199993319601 -0.074508616647820 -0.080673825548447 -0.086683793611464 -0.092527002673921 -0.098192265337852 -0.103668746757168 -0.108945985648222 -0.114013914481149 -0.118862878811496 -0.123483655713952 -0.127867471282736 -0.132006017165762 -0.135891466102326 -0.139516486436971 -0.142874255584606 -0.145958472425283 -0.148763368609318 -0.151283718756576 -0.153514849536416 -0.155452647617712 -0.157093566480787 -0.158434632086356 -0.159473447398580 -0.160208195762631 -0.160637643139012 -0.160761139200004 -0.160637643139012 -0.160208195762631 -0.159473447398580 -0.158434632086356 -0.157093566480787 -0.155452647617712 -0.153514849536416 -0.151283718756576 -0.148763368609318 -0.145958472425283 -0.142874255584606 -0.139516486436971 -0.135891466102326 -0.132006017165762 -0.127867471282736 -0.123483655713952 -0.118862878811496 -0.114013914481149 -0.108945985648222 -0.103668746757168 -0.098192265337852 -0.092527002673921 -0.086683793611464 -0.080673825548447 -0.074508616647820 -0.068199993319603 -0.061760067019222 -0.055201210411578 -0.048536032952137 -0.041777355938114 -0.034938187084476 -0.028031694680860 -0.021071181386883 -0.014070057724342 -0.007041815325838 -0.000000000000000 +-0.000000000000000 0.008084021381553 0.016152427008553 0.024189632582269 0.032180116642586 0.040108451804908 0.047959335778913 0.055717622097486 0.063368350485178 0.070896776796698 0.078288402457319 0.085529003338698 0.092604658005425 0.099501775269683 0.106207120993361 0.112707844079853 0.118991501599543 0.125046082996547 0.130860033326269 0.136422275477078 0.141722231331651 0.146749841827551 0.151495585879129 0.155950498126561 0.160106185481141 0.163954842439142 0.167489265140345 0.170702864150352 0.173589675949552 0.176144373115013 0.178362273184416 0.180239346195406 0.181772220896092 0.182958189626072 0.183795211870511 0.184281916492505 0.184417602652133 0.184281916492505 0.183795211870511 0.182958189626071 0.181772220896092 0.180239346195406 0.178362273184416 0.176144373115013 0.173589675949552 0.170702864150352 0.167489265140345 0.163954842439141 0.160106185481141 0.155950498126561 0.151495585879129 0.146749841827551 0.141722231331651 0.136422275477078 0.130860033326269 0.125046082996549 0.118991501599545 0.112707844079853 0.106207120993360 0.099501775269682 0.092604658005425 0.085529003338699 0.078288402457319 0.070896776796698 0.063368350485176 0.055717622097486 0.047959335778914 0.040108451804908 0.032180116642586 0.024189632582270 0.016152427008552 0.008084021381553 -0.000000000000000 -0.008084021381552 -0.016152427008552 -0.024189632582271 -0.032180116642588 -0.040108451804908 -0.047959335778912 -0.055717622097486 -0.063368350485178 -0.070896776796698 -0.078288402457318 -0.085529003338698 -0.092604658005425 -0.099501775269685 -0.106207120993361 -0.112707844079854 -0.118991501599542 -0.125046082996548 -0.130860033326269 -0.136422275477078 -0.141722231331651 -0.146749841827551 -0.151495585879129 -0.155950498126561 -0.160106185481141 -0.163954842439142 -0.167489265140345 -0.170702864150355 -0.173589675949553 -0.176144373115013 -0.178362273184416 -0.180239346195406 -0.181772220896092 -0.182958189626076 -0.183795211870510 -0.184281916492507 -0.184417602652136 -0.184281916492506 -0.183795211870510 -0.182958189626076 -0.181772220896092 -0.180239346195406 -0.178362273184416 -0.176144373115013 -0.173589675949553 -0.170702864150355 -0.167489265140345 -0.163954842439142 -0.160106185481141 -0.155950498126561 -0.151495585879129 -0.146749841827551 -0.141722231331651 -0.136422275477078 -0.130860033326269 -0.125046082996548 -0.118991501599545 -0.112707844079854 -0.106207120993361 -0.099501775269685 -0.092604658005425 -0.085529003338698 -0.078288402457321 -0.070896776796698 -0.063368350485178 -0.055717622097486 -0.047959335778912 -0.040108451804908 -0.032180116642588 -0.024189632582271 -0.016152427008552 -0.008084021381552 -0.000000000000000 +-0.000000000000000 0.009066379673774 0.018115206851765 0.027128964688839 0.036090207556288 0.044981596438049 0.053785934073448 0.062486199763202 0.071065583756746 0.079507521140262 0.087795725146535 0.095914219809692 0.103847371890094 0.111579921997109 0.119097014840108 0.126384228540930 0.133427602944243 0.140213666865211 0.146729464217649 0.152962578969096 0.158901158873222 0.164533937933463 0.169850257556088 0.174840086354391 0.179494038570353 0.183803391083428 0.187760098980947 0.191356809668147 0.194586875500278 0.197444364923069 0.199924072111743 0.202021525103072 0.203732992418249 0.205055488178579 0.205986775719115 0.206525369709494 0.206670536793709 0.206525369709494 0.205986775719116 0.205055488178579 0.203732992418248 0.202021525103071 0.199924072111743 0.197444364923069 0.194586875500278 0.191356809668147 0.187760098980947 0.183803391083428 0.179494038570353 0.174840086354391 0.169850257556088 0.164533937933463 0.158901158873223 0.152962578969095 0.146729464217649 0.140213666865211 0.133427602944244 0.126384228540930 0.119097014840106 0.111579921997108 0.103847371890094 0.095914219809692 0.087795725146536 0.079507521140263 0.071065583756746 0.062486199763201 0.053785934073448 0.044981596438050 0.036090207556288 0.027128964688840 0.018115206851763 0.009066379673775 -0.000000000000000 -0.009066379673774 -0.018115206851765 -0.027128964688841 -0.036090207556288 -0.044981596438049 -0.053785934073448 -0.062486199763201 -0.071065583756747 -0.079507521140264 -0.087795725146536 -0.095914219809691 -0.103847371890093 -0.111579921997109 -0.119097014840108 -0.126384228540933 -0.133427602944245 -0.140213666865211 -0.146729464217648 -0.152962578969096 -0.158901158873223 -0.164533937933463 -0.169850257556090 -0.174840086354393 -0.179494038570358 -0.183803391083428 -0.187760098980946 -0.191356809668147 -0.194586875500278 -0.197444364923069 -0.199924072111743 -0.202021525103072 -0.203732992418248 -0.205055488178579 -0.205986775719115 -0.206525369709496 -0.206670536793709 -0.206525369709496 -0.205986775719115 -0.205055488178579 -0.203732992418248 -0.202021525103072 -0.199924072111743 -0.197444364923069 -0.194586875500278 -0.191356809668147 -0.187760098980947 -0.183803391083428 -0.179494038570358 -0.174840086354393 -0.169850257556088 -0.164533937933463 -0.158901158873223 -0.152962578969096 -0.146729464217648 -0.140213666865211 -0.133427602944245 -0.126384228540933 -0.119097014840108 -0.111579921997109 -0.103847371890093 -0.095914219809691 -0.087795725146536 -0.079507521140264 -0.071065583756747 -0.062486199763201 -0.053785934073448 -0.044981596438049 -0.036090207556288 -0.027128964688841 -0.018115206851765 -0.009066379673774 -0.000000000000000 +-0.000000000000000 0.009981413862734 0.019943459314212 0.029866807614439 0.039732209269126 0.049520533410756 0.059212806890503 0.068790252986271 0.078234329633376 0.087526767086150 0.096649604920907 0.105585228292687 0.114316403361230 0.122826311804175 0.131098584338834 0.139117333177312 0.146867183343275 0.154333302782548 0.161501431203951 0.168357907590665 0.174889696327141 0.181084411890785 0.186930342062312 0.192416469613570 0.197532492435902 0.202268842077392 0.206616700661664 0.210568016166106 0.214115516041689 0.217252719161642 0.219973946090506 0.222274327669845 0.224149811921256 0.225597169271383 0.226613996107913 0.227198716680048 0.227350583359167 0.227198716680048 0.226613996107913 0.225597169271383 0.224149811921256 0.222274327669845 0.219973946090506 0.217252719161642 0.214115516041689 0.210568016166106 0.206616700661668 0.202268842077392 0.197532492435901 0.192416469613573 0.186930342062312 0.181084411890785 0.174889696327141 0.168357907590661 0.161501431203951 0.154333302782548 0.146867183343275 0.139117333177313 0.131098584338830 0.122826311804175 0.114316403361230 0.105585228292688 0.096649604920907 0.087526767086152 0.078234329633373 0.068790252986269 0.059212806890503 0.049520533410757 0.039732209269128 0.029866807614441 0.019943459314209 0.009981413862736 -0.000000000000000 -0.009981413862733 -0.019943459314211 -0.029866807614442 -0.039732209269130 -0.049520533410757 -0.059212806890502 -0.068790252986271 -0.078234329633376 -0.087526767086152 -0.096649604920905 -0.105585228292685 -0.114316403361230 -0.122826311804175 -0.131098584338834 -0.139117333177315 -0.146867183343273 -0.154333302782548 -0.161501431203949 -0.168357907590665 -0.174889696327144 -0.181084411890786 -0.186930342062316 -0.192416469613570 -0.197532492435902 -0.202268842077392 -0.206616700661670 -0.210568016166107 -0.214115516041688 -0.217252719161642 -0.219973946090506 -0.222274327669846 -0.224149811921256 -0.225597169271383 -0.226613996107913 -0.227198716680050 -0.227350583359168 -0.227198716680050 -0.226613996107913 -0.225597169271383 -0.224149811921256 -0.222274327669846 -0.219973946090506 -0.217252719161642 -0.214115516041688 -0.210568016166107 -0.206616700661671 -0.202268842077392 -0.197532492435902 -0.192416469613570 -0.186930342062314 -0.181084411890785 -0.174889696327144 -0.168357907590665 -0.161501431203949 -0.154333302782548 -0.146867183343275 -0.139117333177315 -0.131098584338834 -0.122826311804175 -0.114316403361230 -0.105585228292685 -0.096649604920909 -0.087526767086152 -0.078234329633374 -0.068790252986271 -0.059212806890502 -0.049520533410757 -0.039732209269130 -0.029866807614442 -0.019943459314210 -0.009981413862733 -0.000000000000000 +-0.000000000000000 0.010822159985742 0.021623270290726 0.032382324721255 0.043078403948980 0.053690718671979 0.064198652451100 0.074581804115177 0.084820029630329 0.094893483330560 0.104782658409227 0.114468426573620 0.123932076767983 0.133155352873686 0.142120490298922 0.150810251374263 0.159207959474762 0.167297531793555 0.175063510696868 0.182491093595026 0.189566161269267 0.196275304599239 0.202605849641486 0.208545881014581 0.214084263551964 0.219210662189226 0.223915560057812 0.228190274762762 0.232026972827560 0.235418682294366 0.238359303473261 0.240843617839254 0.242867295080718 0.244426898307945 0.245519887434696 0.246144620750835 0.246300354707266 0.246144620750835 0.245519887434696 0.244426898307945 0.242867295080718 0.240843617839254 0.238359303473261 0.235418682294369 0.232026972827561 0.228190274762762 0.223915560057812 0.219210662189225 0.214084263551964 0.208545881014581 0.202605849641486 0.196275304599240 0.189566161269270 0.182491093595026 0.175063510696870 0.167297531793557 0.159207959474764 0.150810251374263 0.142120490298920 0.133155352873684 0.123932076767983 0.114468426573620 0.104782658409229 0.094893483330561 0.084820029630328 0.074581804115176 0.064198652451100 0.053690718671979 0.043078403948981 0.032382324721256 0.021623270290724 0.010822159985743 -0.000000000000000 -0.010822159985742 -0.021623270290726 -0.032382324721257 -0.043078403948983 -0.053690718671979 -0.064198652451100 -0.074581804115177 -0.084820029630329 -0.094893483330561 -0.104782658409227 -0.114468426573620 -0.123932076767981 -0.133155352873687 -0.142120490298921 -0.150810251374266 -0.159207959474764 -0.167297531793555 -0.175063510696868 -0.182491093595026 -0.189566161269271 -0.196275304599240 -0.202605849641489 -0.208545881014581 -0.214084263551964 -0.219210662189226 -0.223915560057813 -0.228190274762762 -0.232026972827560 -0.235418682294362 -0.238359303473261 -0.240843617839254 -0.242867295080721 -0.244426898307945 -0.245519887434696 -0.246144620750835 -0.246300354707266 -0.246144620750835 -0.245519887434696 -0.244426898307945 -0.242867295080721 -0.240843617839254 -0.238359303473261 -0.235418682294366 -0.232026972827560 -0.228190274762762 -0.223915560057813 -0.219210662189226 -0.214084263551964 -0.208545881014581 -0.202605849641486 -0.196275304599240 -0.189566161269271 -0.182491093595026 -0.175063510696868 -0.167297531793555 -0.159207959474765 -0.150810251374266 -0.142120490298921 -0.133155352873687 -0.123932076767981 -0.114468426573620 -0.104782658409229 -0.094893483330561 -0.084820029630329 -0.074581804115177 -0.064198652451100 -0.053690718671979 -0.043078403948983 -0.032382324721257 -0.021623270290726 -0.010822159985742 -0.000000000000000 +-0.000000000000000 0.011582219457145 0.023141855405479 0.034656371405190 0.046103325033838 0.057460414593856 0.068705525459993 0.079816775948793 0.090772562594085 0.101551604714728 0.112132988163585 0.122496208149746 0.132621211029613 0.142488434966262 0.152078849360799 0.161373992963921 0.170356010580786 0.179007688287444 0.187312487082450 0.195254574902836 0.202818856939484 0.209991004192814 0.216757480215808 0.223105565997453 0.229023382946095 0.234499913938129 0.239525022404031 0.244089469429570 0.248184928856514 0.251804000372903 0.254940220588964 0.257588072100629 0.259742990547834 0.261401369680629 0.262560564450784 0.263218892151987 0.263375631635808 0.263218892151990 0.262560564450784 0.261401369680629 0.259742990547835 0.257588072100629 0.254940220588964 0.251804000372903 0.248184928856515 0.244089469429570 0.239525022404031 0.234499913938128 0.229023382946094 0.223105565997453 0.216757480215808 0.209991004192814 0.202818856939484 0.195254574902836 0.187312487082451 0.179007688287445 0.170356010580786 0.161373992963922 0.152078849360799 0.142488434966262 0.132621211029613 0.122496208149747 0.112132988163585 0.101551604714728 0.090772562594082 0.079816775948792 0.068705525459995 0.057460414593856 0.046103325033839 0.034656371405191 0.023141855405477 0.011582219457146 -0.000000000000000 -0.011582219457145 -0.023141855405478 -0.034656371405192 -0.046103325033840 -0.057460414593856 -0.068705525459992 -0.079816775948793 -0.090772562594085 -0.101551604714729 -0.112132988163584 -0.122496208149746 -0.132621211029613 -0.142488434966262 -0.152078849360799 -0.161373992963924 -0.170356010580786 -0.179007688287444 -0.187312487082450 -0.195254574902837 -0.202818856939485 -0.209991004192816 -0.216757480215808 -0.223105565997452 -0.229023382946095 -0.234499913938129 -0.239525022404031 -0.244089469429571 -0.248184928856514 -0.251804000372902 -0.254940220588964 -0.257588072100629 -0.259742990547835 -0.261401369680629 -0.262560564450784 -0.263218892151988 -0.263375631635811 -0.263218892151988 -0.262560564450784 -0.261401369680629 -0.259742990547835 -0.257588072100629 -0.254940220588964 -0.251804000372902 -0.248184928856514 -0.244089469429571 -0.239525022404031 -0.234499913938129 -0.229023382946095 -0.223105565997452 -0.216757480215803 -0.209991004192816 -0.202818856939485 -0.195254574902837 -0.187312487082450 -0.179007688287444 -0.170356010580786 -0.161373992963924 -0.152078849360799 -0.142488434966262 -0.132621211029613 -0.122496208149746 -0.112132988163587 -0.101551604714729 -0.090772562594085 -0.079816775948793 -0.068705525459992 -0.057460414593856 -0.046103325033840 -0.034656371405192 -0.023141855405478 -0.011582219457145 -0.000000000000000 +-0.000000000000000 0.012255807765431 0.024487657308801 0.036671640797874 0.048783951047750 0.060800931514215 0.072699125892258 0.084455327190502 0.096046626154546 0.107450458914636 0.118644653736296 0.129607476755968 0.140317676587750 0.150754527691708 0.160897872398992 0.170728161494226 0.180226493261043 0.189374650902503 0.198155138254269 0.206551213714542 0.214546922321544 0.222127125915835 0.229277531331599 0.235984716568093 0.242236154899223 0.248020236886394 0.253326290266625 0.258144597694927 0.262466412326738 0.266283971232934 0.269590506646527 0.272380255046487 0.274648464090288 0.276391397412809 0.277606337314639 0.278291585368449 0.278446460977058 0.278291585368450 0.277606337314640 0.276391397412809 0.274648464090288 0.272380255046487 0.269590506646526 0.266283971232934 0.262466412326739 0.258144597694927 0.253326290266625 0.248020236886390 0.242236154899224 0.235984716568093 0.229277531331599 0.222127125915836 0.214546922321544 0.206551213714540 0.198155138254269 0.189374650902506 0.180226493261043 0.170728161494226 0.160897872398991 0.150754527691706 0.140317676587752 0.129607476755969 0.118644653736296 0.107450458914636 0.096046626154545 0.084455327190501 0.072699125892258 0.060800931514216 0.048783951047751 0.036671640797875 0.024487657308799 0.012255807765431 -0.000000000000000 -0.012255807765430 -0.024487657308801 -0.036671640797876 -0.048783951047752 -0.060800931514215 -0.072699125892257 -0.084455327190502 -0.096046626154546 -0.107450458914638 -0.118644653736295 -0.129607476755966 -0.140317676587749 -0.150754527691706 -0.160897872398992 -0.170728161494229 -0.180226493261043 -0.189374650902503 -0.198155138254267 -0.206551213714540 -0.214546922321545 -0.222127125915837 -0.229277531331601 -0.235984716568092 -0.242236154899224 -0.248020236886395 -0.253326290266626 -0.258144597694928 -0.262466412326738 -0.266283971232933 -0.269590506646526 -0.272380255046487 -0.274648464090291 -0.276391397412808 -0.277606337314638 -0.278291585368449 -0.278446460977058 -0.278291585368449 -0.277606337314638 -0.276391397412808 -0.274648464090291 -0.272380255046487 -0.269590506646526 -0.266283971232933 -0.262466412326738 -0.258144597694928 -0.253326290266626 -0.248020236886395 -0.242236154899224 -0.235984716568093 -0.229277531331599 -0.222127125915837 -0.214546922321545 -0.206551213714540 -0.198155138254267 -0.189374650902503 -0.180226493261045 -0.170728161494229 -0.160897872398992 -0.150754527691706 -0.140317676587749 -0.129607476755966 -0.118644653736297 -0.107450458914638 -0.096046626154546 -0.084455327190502 -0.072699125892257 -0.060800931514215 -0.048783951047752 -0.036671640797876 -0.024487657308801 -0.012255807765430 -0.000000000000000 +-0.000000000000000 0.012837798496848 0.025650433635589 0.038412795482374 0.051099880808142 0.063686846082236 0.076149060037202 0.088462155664522 0.100602081503453 0.112545152087995 0.124268097420501 0.135748111344288 0.146962898692246 0.157890721093176 0.168510441323102 0.178801566094466 0.188744287182384 0.198319520793499 0.207508945089933 0.216295035787684 0.224661099756293 0.232591306553994 0.240070717840075 0.247085314614006 0.253622022238710 0.259668733212593 0.265214327663702 0.270248691546023 0.274762732525629 0.278748393552956 0.282198664122949 0.285107589232822 0.287470276054256 0.289282898342229 0.290542698609847 0.291247988103690 0.291398144619696 0.291247988103689 0.290542698609847 0.289282898342229 0.287470276054256 0.285107589232819 0.282198664122950 0.278748393552956 0.274762732525630 0.270248691546024 0.265214327663702 0.259668733212593 0.253622022238710 0.247085314614007 0.240070717840075 0.232591306553994 0.224661099756295 0.216295035787682 0.207508945089935 0.198319520793501 0.188744287182385 0.178801566094466 0.168510441323101 0.157890721093174 0.146962898692246 0.135748111344290 0.124268097420502 0.112545152087995 0.100602081503451 0.088462155664520 0.076149060037203 0.063686846082237 0.051099880808143 0.038412795482375 0.025650433635587 0.012837798496849 -0.000000000000000 -0.012837798496847 -0.025650433635589 -0.038412795482376 -0.051099880808144 -0.063686846082235 -0.076149060037202 -0.088462155664522 -0.100602081503451 -0.112545152087998 -0.124268097420501 -0.135748111344287 -0.146962898692245 -0.157890721093175 -0.168510441323104 -0.178801566094469 -0.188744287182382 -0.198319520793497 -0.207508945089934 -0.216295035787684 -0.224661099756295 -0.232591306553996 -0.240070717840075 -0.247085314614004 -0.253622022238710 -0.259668733212593 -0.265214327663704 -0.270248691546024 -0.274762732525629 -0.278748393552956 -0.282198664122950 -0.285107589232819 -0.287470276054256 -0.289282898342229 -0.290542698609846 -0.291247988103690 -0.291398144619696 -0.291247988103690 -0.290542698609846 -0.289282898342229 -0.287470276054256 -0.285107589232819 -0.282198664122950 -0.278748393552956 -0.274762732525629 -0.270248691546024 -0.265214327663704 -0.259668733212593 -0.253622022238710 -0.247085314614004 -0.240070717840075 -0.232591306553996 -0.224661099756295 -0.216295035787684 -0.207508945089934 -0.198319520793497 -0.188744287182385 -0.178801566094469 -0.168510441323104 -0.157890721093175 -0.146962898692245 -0.135748111344287 -0.124268097420503 -0.112545152087998 -0.100602081503451 -0.088462155664522 -0.076149060037202 -0.063686846082235 -0.051099880808144 -0.038412795482376 -0.025650433635589 -0.012837798496847 -0.000000000000000 +-0.000000000000000 0.013323762350515 0.026621334955894 0.039866584220204 0.053033488691143 0.066096194745490 0.079029071812857 0.091806766986775 0.104404258874938 0.116796910543501 0.128960521414235 0.140871377977674 0.152506303190384 0.163842704429933 0.174858619887024 0.185532763280774 0.195844566789875 0.205774222099495 0.215302719471444 0.224411884752808 0.233084414246343 0.241303907374190 0.249054897074778 0.256322877881368 0.263094331639098 0.269356750826100 0.275098659452530 0.280309631519956 0.284980307031719 0.289102405552950 0.292668737326861 0.295673211961528 0.298110844708640 0.299977760362703 0.301271194815846 0.301989494309605 0.302132112430755 0.301989494309604 0.301271194815846 0.299977760362703 0.298110844708643 0.295673211961529 0.292668737326861 0.289102405552950 0.284980307031719 0.280309631519956 0.275098659452530 0.269356750826100 0.263094331639098 0.256322877881369 0.249054897074779 0.241303907374192 0.233084414246343 0.224411884752808 0.215302719471444 0.205774222099497 0.195844566789875 0.185532763280774 0.174858619887022 0.163842704429933 0.152506303190387 0.140871377977675 0.128960521414236 0.116796910543502 0.104404258874936 0.091806766986772 0.079029071812858 0.066096194745492 0.053033488691143 0.039866584220206 0.026621334955892 0.013323762350516 -0.000000000000000 -0.013323762350514 -0.026621334955893 -0.039866584220207 -0.053033488691145 -0.066096194745490 -0.079029071812856 -0.091806766986774 -0.104404258874938 -0.116796910543504 -0.128960521414235 -0.140871377977674 -0.152506303190385 -0.163842704429933 -0.174858619887024 -0.185532763280776 -0.195844566789874 -0.205774222099494 -0.215302719471444 -0.224411884752808 -0.233084414246344 -0.241303907374192 -0.249054897074779 -0.256322877881368 -0.263094331639098 -0.269356750826100 -0.275098659452532 -0.280309631519958 -0.284980307031719 -0.289102405552951 -0.292668737326861 -0.295673211961529 -0.298110844708647 -0.299977760362703 -0.301271194815846 -0.301989494309605 -0.302132112430755 -0.301989494309605 -0.301271194815846 -0.299977760362703 -0.298110844708647 -0.295673211961529 -0.292668737326861 -0.289102405552951 -0.284980307031719 -0.280309631519958 -0.275098659452532 -0.269356750826100 -0.263094331639098 -0.256322877881368 -0.249054897074779 -0.241303907374192 -0.233084414246344 -0.224411884752808 -0.215302719471444 -0.205774222099494 -0.195844566789875 -0.185532763280776 -0.174858619887024 -0.163842704429933 -0.152506303190385 -0.140871377977674 -0.128960521414238 -0.116796910543504 -0.104404258874938 -0.091806766986774 -0.079029071812856 -0.066096194745490 -0.053033488691145 -0.039866584220207 -0.026621334955893 -0.013323762350514 -0.000000000000000 +-0.000000000000000 0.013710000848073 0.027392972124421 0.041021942801248 0.054570058773216 0.068010640905847 0.081317242590609 0.094463706645567 0.107424221403391 0.120173375832022 0.132686213537543 0.144938285503530 0.156905701426743 0.168565179514882 0.179894094618749 0.190870524578154 0.201473294668442 0.211682020042279 0.221477146069744 0.230839986488203 0.239752759282290 0.248198620223371 0.256161694006960 0.263627102935882 0.270580993106342 0.277010558063120 0.282904059899822 0.288250847788612 0.293041373933518 0.297267206949610 0.300921042679137 0.303996712463927 0.306489188901066 0.308394589116525 0.309710175598392 0.310434354638061 0.310566672433867 0.310434354638061 0.309710175598392 0.308394589116525 0.306489188901066 0.303996712463927 0.300921042679137 0.297267206949610 0.293041373933518 0.288250847788613 0.282904059899822 0.277010558063119 0.270580993106339 0.263627102935882 0.256161694006960 0.248198620223372 0.239752759282291 0.230839986488199 0.221477146069744 0.211682020042280 0.201473294668442 0.190870524578154 0.179894094618747 0.168565179514882 0.156905701426745 0.144938285503530 0.132686213537543 0.120173375832023 0.107424221403388 0.094463706645565 0.081317242590610 0.068010640905848 0.054570058773217 0.041021942801249 0.027392972124419 0.013710000848074 -0.000000000000000 -0.013710000848072 -0.027392972124420 -0.041021942801250 -0.054570058773218 -0.068010640905847 -0.081317242590609 -0.094463706645566 -0.107424221403389 -0.120173375832024 -0.132686213537542 -0.144938285503530 -0.156905701426743 -0.168565179514882 -0.179894094618748 -0.190870524578156 -0.201473294668442 -0.211682020042277 -0.221477146069743 -0.230839986488201 -0.239752759282292 -0.248198620223372 -0.256161694006960 -0.263627102935882 -0.270580993106342 -0.277010558063119 -0.282904059899823 -0.288250847788612 -0.293041373933517 -0.297267206949610 -0.300921042679137 -0.303996712463927 -0.306489188901067 -0.308394589116525 -0.309710175598391 -0.310434354638061 -0.310566672433867 -0.310434354638061 -0.309710175598391 -0.308394589116525 -0.306489188901067 -0.303996712463927 -0.300921042679137 -0.297267206949610 -0.293041373933517 -0.288250847788612 -0.282904059899823 -0.277010558063120 -0.270580993106342 -0.263627102935882 -0.256161694006960 -0.248198620223372 -0.239752759282292 -0.230839986488201 -0.221477146069743 -0.211682020042277 -0.201473294668444 -0.190870524578156 -0.179894094618748 -0.168565179514882 -0.156905701426743 -0.144938285503530 -0.132686213537545 -0.120173375832024 -0.107424221403389 -0.094463706645566 -0.081317242590608 -0.068010640905847 -0.054570058773218 -0.041021942801250 -0.027392972124420 -0.013710000848072 -0.000000000000000 +-0.000000000000000 0.013993574481338 0.027959472516392 0.041870078249079 0.055697896828234 0.069415614472052 0.082996158009206 0.096412753725791 0.109638985350463 0.122648851013948 0.135416819023732 0.147917882299923 0.160127611324312 0.172022205461119 0.183578542515067 0.194774226400105 0.205587632800211 0.215997952712284 0.225985233770203 0.235530419258266 0.244615384731953 0.253222972173617 0.261337021620750 0.268942400214497 0.276025028626090 0.282571904829091 0.288571125195158 0.294011902901128 0.298884583644485 0.303180658674287 0.306892775153177 0.310014743875323 0.312541544373221 0.314469327454654 0.315795415218146 0.316518298602828 0.316637632534464 0.316518298602828 0.315795415218147 0.314469327454653 0.312541544373222 0.310014743875323 0.306892775153177 0.303180658674287 0.298884583644485 0.294011902901128 0.288571125195159 0.282571904829090 0.276025028626089 0.268942400214497 0.261337021620753 0.253222972173617 0.244615384731956 0.235530419258265 0.225985233770203 0.215997952712285 0.205587632800213 0.194774226400110 0.183578542515066 0.172022205461114 0.160127611324314 0.147917882299923 0.135416819023734 0.122648851013948 0.109638985350461 0.096412753725789 0.082996158009207 0.069415614472053 0.055697896828236 0.041870078249080 0.027959472516389 0.013993574481339 -0.000000000000000 -0.013993574481337 -0.027959472516391 -0.041870078249082 -0.055697896828237 -0.069415614472052 -0.082996158009205 -0.096412753725790 -0.109638985350462 -0.122648851013950 -0.135416819023732 -0.147917882299921 -0.160127611324310 -0.172022205461118 -0.183578542515067 -0.194774226400110 -0.205587632800210 -0.215997952712284 -0.225985233770202 -0.235530419258265 -0.244615384731957 -0.253222972173618 -0.261337021620753 -0.268942400214497 -0.276025028626090 -0.282571904829091 -0.288571125195159 -0.294011902901128 -0.298884583644485 -0.303180658674287 -0.306892775153177 -0.310014743875324 -0.312541544373228 -0.314469327454653 -0.315795415218147 -0.316518298602828 -0.316637632534464 -0.316518298602828 -0.315795415218147 -0.314469327454653 -0.312541544373228 -0.310014743875324 -0.306892775153177 -0.303180658674287 -0.298884583644485 -0.294011902901128 -0.288571125195161 -0.282571904829091 -0.276025028626089 -0.268942400214497 -0.261337021620749 -0.253222972173618 -0.244615384731957 -0.235530419258265 -0.225985233770202 -0.215997952712284 -0.205587632800214 -0.194774226400110 -0.183578542515067 -0.172022205461118 -0.160127611324310 -0.147917882299921 -0.135416819023734 -0.122648851013950 -0.109638985350462 -0.096412753725790 -0.082996158009205 -0.069415614472052 -0.055697896828237 -0.041870078249082 -0.027959472516391 -0.013993574481337 -0.000000000000000 +-0.000000000000000 0.014172325083735 0.028316524721759 0.042404535740822 0.056408419327589 0.070300422746921 0.084053040508556 0.097639074802301 0.111031695025208 0.124204496228411 0.137131556316267 0.149787491836100 0.162147512203324 0.174187472213778 0.185883922702758 0.197214159218650 0.208156268587693 0.218689173255859 0.228792673303359 0.238447486037464 0.247635283079529 0.256338724872793 0.264541492548069 0.272228317095447 0.279385005800848 0.285998465917066 0.292056725549788 0.292993258947774 0.287790884604456 0.283144984898192 0.279066741162913 0.275566144218958 0.272651958401167 0.270331688887519 0.268611552512150 0.267496452231543 0.266989955397093 0.267496452231544 0.268611552512150 0.270331688887520 0.272651958401165 0.275566144218959 0.279066741162915 0.283144984898193 0.287790884604455 0.292993258947774 0.292056725549788 0.285998465917066 0.279385005800845 0.272228317095449 0.264541492548069 0.256338724872793 0.247635283079529 0.238447486037461 0.228792673303360 0.218689173255859 0.208156268587693 0.197214159218651 0.185883922702756 0.174187472213775 0.162147512203326 0.149787491836100 0.137131556316268 0.124204496228412 0.111031695025206 0.097639074802300 0.084053040508557 0.070300422746922 0.056408419327590 0.042404535740822 0.028316524721757 0.014172325083736 -0.000000000000000 -0.014172325083734 -0.028316524721758 -0.042404535740824 -0.056408419327591 -0.070300422746920 -0.084053040508555 -0.097639074802301 -0.111031695025207 -0.124204496228413 -0.137131556316267 -0.149787491836099 -0.162147512203324 -0.174187472213776 -0.185883922702758 -0.197214159218651 -0.208156268587692 -0.218689173255857 -0.228792673303358 -0.238447486037464 -0.247635283079532 -0.256338724872793 -0.264541492548069 -0.272228317095445 -0.279385005800847 -0.285998465917066 -0.292056725549789 -0.292993131161169 -0.287790473458904 -0.283144322884049 -0.279065861089756 -0.275565079171746 -0.272650741696893 -0.270330354032359 -0.268610133158980 -0.267494982137809 -0.266988468382882 -0.267494982137809 -0.268610133158980 -0.270330354032358 -0.272650741696893 -0.275565079171746 -0.279065861089756 -0.283144322884047 -0.287790473458904 -0.292993131161169 -0.292056725549789 -0.285998465917066 -0.279385005800847 -0.272228317095445 -0.264541492548069 -0.256338724872793 -0.247635283079532 -0.238447486037464 -0.228792673303358 -0.218689173255857 -0.208156268587694 -0.197214159218651 -0.185883922702758 -0.174187472213776 -0.162147512203324 -0.149787491836099 -0.137131556316269 -0.124204496228412 -0.111031695025207 -0.097639074802301 -0.084053040508555 -0.070300422746920 -0.056408419327591 -0.042404535740824 -0.028316524721758 -0.014172325083734 -0.000000000000000 +-0.000000000000000 0.014244892255246 0.028461411357648 0.042621247732248 0.056696218766036 0.070658331805218 0.084479846574676 0.098133336831231 0.111591751066064 0.124828472076008 0.137817375228967 0.150532885254589 0.162950031398447 0.175044500785451 0.186792689846564 0.198171753671755 0.209159653161556 0.219735199859662 0.229878098359185 0.239568986186227 0.248789471075125 0.257522165561520 0.265750718830239 0.271334346293550 0.264090059007882 0.257339892352959 0.251099536425503 0.245383672367981 0.240205923095335 0.235578806491278 0.231513691322330 0.228020756107622 0.225108951170979 0.222785964089075 0.221058188734481 0.219930698096983 0.219407221049011 0.219930698096983 0.221058188734481 0.222785964089076 0.225108951170979 0.228020756107621 0.231513691322327 0.235578806491279 0.240205923095336 0.245383672367982 0.251099536425503 0.257339892352963 0.264090059007882 0.271334346293548 0.265750718830240 0.257522165561521 0.248789471075125 0.239568986186223 0.229878098359185 0.219735199859663 0.209159653161559 0.198171753671755 0.186792689846563 0.175044500785446 0.162950031398447 0.150532885254589 0.137817375228968 0.124828472076011 0.111591751066057 0.098133336831231 0.084479846574677 0.070658331805218 0.056696218766037 0.042621247732249 0.028461411357646 0.014244892255248 -0.000000000000000 -0.014244892255245 -0.028461411357647 -0.042621247732250 -0.056696218766040 -0.070658331805218 -0.084479846574675 -0.098133336831231 -0.111591751066061 -0.124828472076012 -0.137817375228967 -0.150532885254589 -0.162950031398446 -0.175044500785449 -0.186792689846563 -0.198171753671755 -0.209159653161555 -0.219735199859662 -0.229878098359185 -0.239568986186227 -0.248789471075125 -0.257522165561521 -0.265750718830240 -0.271334286741183 -0.264089596283358 -0.257339056868536 -0.251098359062743 -0.245382184433240 -0.240204156276123 -0.235576792813540 -0.231511463108492 -0.228018345935437 -0.225106391833011 -0.222783288552851 -0.221055430103030 -0.219927889569878 -0.219404395883607 -0.219927889569878 -0.221055430103030 -0.222783288552852 -0.225106391833011 -0.228018345935437 -0.231511463108492 -0.235576792813540 -0.240204156276124 -0.245382184433240 -0.251098359062743 -0.257339056868536 -0.264089596283358 -0.271334286741183 -0.265750718830239 -0.257522165561521 -0.248789471075125 -0.239568986186227 -0.229878098359185 -0.219735199859662 -0.209159653161563 -0.198171753671755 -0.186792689846563 -0.175044500785449 -0.162950031398446 -0.150532885254589 -0.137817375228968 -0.124828472076012 -0.111591751066061 -0.098133336831231 -0.084479846574675 -0.070658331805218 -0.056696218766040 -0.042621247732250 -0.028461411357647 -0.014244892255245 -0.000000000000000 +-0.000000000000000 0.014210723715880 0.028393029749274 0.042518564914250 0.056559104816070 0.070486617742900 0.084273327955687 0.097891778180098 0.111314891108380 0.124516029723764 0.137469056265794 0.150148389661395 0.162529061254026 0.174586768671221 0.186297927679800 0.197639721887431 0.208590150159343 0.219128071629635 0.229233248197621 0.238886384411239 0.248069164651181 0.241937547583490 0.233896700506453 0.226304248106271 0.219177744467503 0.212533862006946 0.206388336092796 0.200755911587158 0.195650291592679 0.191084088677135 0.187068778841702 0.183614658487962 0.180730804626996 0.178425038559805 0.176703893243224 0.175572584538418 0.175034986521025 0.175572584538418 0.176703893243224 0.178425038559806 0.180730804626995 0.183614658487961 0.187068778841702 0.191084088677135 0.195650291592677 0.200755911587157 0.206388336092793 0.212533862006946 0.219177744467507 0.226304248106270 0.233896700506453 0.241937547583488 0.248069164651182 0.238886384411235 0.229233248197622 0.219128071629635 0.208590150159345 0.197639721887431 0.186297927679797 0.174586768671219 0.162529061254026 0.150148389661397 0.137469056265795 0.124516029723765 0.111314891108377 0.097891778180096 0.084273327955688 0.070486617742901 0.056559104816071 0.042518564914251 0.028393029749272 0.014210723715881 -0.000000000000000 -0.014210723715879 -0.028393029749273 -0.042518564914253 -0.056559104816073 -0.070486617742900 -0.084273327955686 -0.097891778180098 -0.111314891108379 -0.124516029723766 -0.137469056265793 -0.150148389661395 -0.162529061254025 -0.174586768671220 -0.186297927679799 -0.197639721887431 -0.208590150159343 -0.219128071629635 -0.229233248197620 -0.238886384411238 -0.248069164651182 -0.241937133590990 -0.233895835265931 -0.226302960400585 -0.219176063597566 -0.212531817747391 -0.206385958648789 -0.200753231552407 -0.195647339908556 -0.191080896592880 -0.187065377875647 -0.183611080389658 -0.180727081340160 -0.178421202186030 -0.176699976006237 -0.175568618748840 -0.175031004541485 -0.175568618748840 -0.176699976006237 -0.178421202186029 -0.180727081340160 -0.183611080389658 -0.187065377875648 -0.191080896592880 -0.195647339908556 -0.200753231552408 -0.206385958648790 -0.212531817747391 -0.219176063597566 -0.226302960400583 -0.233895835265932 -0.241937133590990 -0.248069164651182 -0.238886384411238 -0.229233248197620 -0.219128071629635 -0.208590150159348 -0.197639721887431 -0.186297927679799 -0.174586768671220 -0.162529061254025 -0.150148389661395 -0.137469056265796 -0.124516029723766 -0.111314891108379 -0.097891778180098 -0.084273327955686 -0.070486617742900 -0.056559104816073 -0.042518564914253 -0.028393029749273 -0.014210723715879 -0.000000000000000 +-0.000000000000000 0.014070079508852 0.028111900321966 0.042097268765075 0.055998120997643 0.069786587407665 0.083435056382982 0.096916237256093 0.110203222223613 0.123269547046645 0.136089250344383 0.148636931300150 0.160887805607051 0.172817759488859 0.184403401641292 0.195622112948800 0.206452093842770 0.216872409178197 0.225500263929225 0.216492939925897 0.207861079917983 0.199624294418461 0.191801523147066 0.184410974162838 0.177470063959891 0.170995358832599 0.165002517815660 0.159506237501999 0.154520199036596 0.150057017577696 0.146128194507980 0.142744072667629 0.139913794868599 0.137645265934999 0.135945118498024 0.134818682756926 0.134269960396827 0.134818682756925 0.135945118498024 0.137645265935001 0.139913794868599 0.142744072667630 0.146128194507979 0.150057017577697 0.154520199036595 0.159506237501996 0.165002517815658 0.170995358832601 0.177470063959896 0.184410974162839 0.191801523147066 0.199624294418459 0.207861079917982 0.216492939925899 0.225500263929223 0.216872409178198 0.206452093842771 0.195622112948801 0.184403401641290 0.172817759488858 0.160887805607052 0.148636931300152 0.136089250344383 0.123269547046645 0.110203222223611 0.096916237256091 0.083435056382984 0.069786587407665 0.055998120997644 0.042097268765076 0.028111900321964 0.014070079508853 -0.000000000000000 -0.014070079508852 -0.028111900321965 -0.042097268765077 -0.055998120997645 -0.069786587407664 -0.083435056382981 -0.096916237256092 -0.110203222223612 -0.123269547046647 -0.136089250344382 -0.148636931300149 -0.160887805607050 -0.172817759488859 -0.184403401641291 -0.195622112948802 -0.206452093842770 -0.216872409178196 -0.225500225878498 -0.216492385593807 -0.207860035597565 -0.199622787004007 -0.191799580087987 -0.184408623418948 -0.177467333958179 -0.170992278425419 -0.164999116240424 -0.159502544342228 -0.154516244184368 -0.150052831197357 -0.146123807001067 -0.142739514638906 -0.139909097093047 -0.137640459325669 -0.135940234074612 -0.134813751614861 -0.134265013676859 -0.134813751614861 -0.135940234074612 -0.137640459325670 -0.139909097093047 -0.142739514638905 -0.146123807001067 -0.150052831197358 -0.154516244184368 -0.159502544342228 -0.164999116240424 -0.170992278425419 -0.177467333958178 -0.184408623418948 -0.191799580087988 -0.199622787004007 -0.207860035597565 -0.216492385593807 -0.225500225878498 -0.216872409178196 -0.206452093842772 -0.195622112948802 -0.184403401641291 -0.172817759488859 -0.160887805607050 -0.148636931300149 -0.136089250344385 -0.123269547046647 -0.110203222223612 -0.096916237256092 -0.083435056382981 -0.069786587407664 -0.055998120997645 -0.042097268765077 -0.028111900321965 -0.014070079508851 -0.000000000000000 +-0.000000000000000 0.013824030021502 0.027620162640417 0.041360565602802 0.055017536736343 0.068563568453053 0.081971411609392 0.095214138514696 0.108265204883218 0.121098510530468 0.133688458620941 0.146010013281623 0.158038755404012 0.169750936466405 0.181123530218142 0.192134282078155 0.202761756111397 0.194532984746146 0.185544180660526 0.176891420311516 0.168594471612945 0.160672538273107 0.153144197287273 0.146027336959950 0.139339095777380 0.133095802452738 0.127312917466121 0.122004976419011 0.117185535518125 0.112867119496792 0.109061172272910 0.105778010631492 0.103026781206712 0.100815421023253 0.099150621839747 0.098037798518911 0.097481061627858 0.098037798518911 0.099150621839747 0.100815421023252 0.103026781206713 0.105778010631491 0.109061172272913 0.112867119496792 0.117185535518125 0.122004976419010 0.127312917466124 0.133095802452740 0.139339095777382 0.146027336959950 0.153144197287270 0.160672538273105 0.168594471612942 0.176891420311515 0.185544180660526 0.194532984746144 0.202761756111398 0.192134282078155 0.181123530218139 0.169750936466403 0.158038755404015 0.146010013281625 0.133688458620942 0.121098510530469 0.108265204883216 0.095214138514694 0.081971411609392 0.068563568453053 0.055017536736344 0.041360565602803 0.027620162640415 0.013824030021503 -0.000000000000000 -0.013824030021501 -0.027620162640416 -0.041360565602804 -0.055017536736345 -0.068563568453052 -0.081971411609390 -0.095214138514695 -0.108265204883217 -0.121098510530470 -0.133688458620940 -0.146010013281621 -0.158038755404011 -0.169750936466404 -0.181123530218142 -0.192134282078156 -0.202761756111397 -0.194532472290367 -0.185543149951473 -0.176889896163858 -0.168592479422398 -0.160670103970793 -0.153141347295804 -0.146024098151232 -0.139335495432141 -0.133091868221844 -0.127308677333564 -0.122000458666585 -0.117180768691721 -0.112862132374146 -0.109055993832814 -0.105772670024242 -0.103021307725720 -0.100809844077631 -0.099144970927731 -0.098032103201916 -0.097475351505023 -0.098032103201916 -0.099144970927731 -0.100809844077631 -0.103021307725720 -0.105772670024242 -0.109055993832813 -0.112862132374147 -0.117180768691721 -0.122000458666585 -0.127308677333564 -0.133091868221844 -0.139335495432141 -0.146024098151231 -0.153141347295806 -0.160670103970794 -0.168592479422398 -0.176889896163858 -0.185543149951473 -0.194532472290367 -0.202761756111399 -0.192134282078156 -0.181123530218142 -0.169750936466404 -0.158038755404011 -0.146010013281621 -0.133688458620943 -0.121098510530470 -0.108265204883217 -0.095214138514695 -0.081971411609390 -0.068563568453052 -0.055017536736345 -0.041360565602804 -0.027620162640416 -0.013824030021501 -0.000000000000000 +-0.000000000000000 0.013474447838996 0.026921559125302 0.040314062183331 0.053624814870492 0.066826868791787 0.079893532855414 0.092798435955083 0.105515588569364 0.118019443074029 0.130284952570123 0.142287628038112 0.154003593637260 0.165409639978856 0.176483275212320 0.175480739338636 0.166389921655632 0.157572558802383 0.149048629646470 0.140837727443583 0.132958996912163 0.125431071040574 0.118272007950755 0.111499228149030 0.105129452499532 0.099178641257904 0.093661934503247 0.088593594303595 0.083986948946105 0.079854339555700 0.076207069417064 0.073055356303462 0.070408288101937 0.068273782009272 0.066658547555126 0.065568053689591 0.065006500150922 0.065568053689591 0.066658547555125 0.068273782009272 0.070408288101937 0.073055356303463 0.076207069417064 0.079854339555699 0.083986948946105 0.088593594303594 0.093661934503246 0.099178641257906 0.105129452499529 0.111499228149028 0.118272007950755 0.125431071040573 0.132958996912162 0.140837727443586 0.149048629646468 0.157572558802381 0.166389921655632 0.175480739338634 0.176483275212318 0.165409639978853 0.154003593637261 0.142287628038113 0.130284952570125 0.118019443074030 0.105515588569362 0.092798435955082 0.079893532855415 0.066826868791788 0.053624814870493 0.040314062183332 0.026921559125300 0.013474447838997 -0.000000000000000 -0.013474447838995 -0.026921559125301 -0.040314062183333 -0.053624814870494 -0.066826868791786 -0.079893532855413 -0.092798435955083 -0.105515588569364 -0.118019443074031 -0.130284952570122 -0.142287628038111 -0.154003593637259 -0.165409639978853 -0.176483275212320 -0.175480414376047 -0.166389061465513 -0.157571185998068 -0.149046767438061 -0.140835399590856 -0.132956227679341 -0.125427885153036 -0.118268430553782 -0.111495284768550 -0.105125169004948 -0.099174043826945 -0.093657049588805 -0.088588448602512 -0.083981569369786 -0.079848753202451 -0.076201303546096 -0.073049438310289 -0.070402245495121 -0.068267642388285 -0.066652338589152 -0.065561803097072 -0.065000235679643 -0.065561803097072 -0.066652338589152 -0.068267642388284 -0.070402245495121 -0.073049438310289 -0.076201303546096 -0.079848753202451 -0.083981569369787 -0.088588448602512 -0.093657049588805 -0.099174043826945 -0.105125169004948 -0.111495284768550 -0.118268430553778 -0.125427885153036 -0.132956227679341 -0.140835399590856 -0.149046767438061 -0.157571185998068 -0.166389061465512 -0.175480414376047 -0.176483275212320 -0.165409639978853 -0.154003593637259 -0.142287628038111 -0.130284952570126 -0.118019443074031 -0.105515588569363 -0.092798435955083 -0.079893532855413 -0.066826868791786 -0.053624814870494 -0.040314062183333 -0.026921559125301 -0.013474447838995 -0.000000000000000 +-0.000000000000000 0.013023993492827 0.026021406571201 0.038965723029579 0.051830554854438 0.064589705756939 0.077217234033025 0.089687514532376 0.101975299522462 0.114055778239863 0.125904634928070 0.137498105168958 0.148813030324335 0.158678293819545 0.149752701704633 0.141036764381439 0.132550017090672 0.124311792093034 0.116341157688331 0.108656856145561 0.101277240858266 0.094220213051543 0.087503158376992 0.081142883739530 0.075155554705234 0.069556633842220 0.064360820347006 0.059581991306814 0.055233144943570 0.051326346178680 0.047872674848110 0.044882176885714 0.042363818778627 0.040325445582738 0.038773742767493 0.037714202139674 0.037151092073302 0.037714202139674 0.038773742767492 0.040325445582738 0.042363818778627 0.044882176885716 0.047872674848114 0.051326346178679 0.055233144943573 0.059581991306814 0.064360820347006 0.069556633842219 0.075155554705235 0.081142883739529 0.087503158376991 0.094220213051544 0.101277240858268 0.108656856145563 0.116341157688330 0.124311792093033 0.132550017090672 0.141036764381440 0.149752701704633 0.158678293819545 0.148813030324335 0.137498105168959 0.125904634928071 0.114055778239864 0.101975299522460 0.089687514532374 0.077217234033026 0.064589705756940 0.051830554854439 0.038965723029580 0.026021406571199 0.013023993492828 -0.000000000000000 -0.013023993492826 -0.026021406571200 -0.038965723029581 -0.051830554854440 -0.064589705756938 -0.077217234033024 -0.089687514532375 -0.101975299522461 -0.114055778239865 -0.125904634928069 -0.137498105168957 -0.148813030324334 -0.158678262009609 -0.149752129462727 -0.141035672066408 -0.132548425664847 -0.124309723073179 -0.116338633098550 -0.108653898472282 -0.101273873007448 -0.094216458308149 -0.087499040366804 -0.081138426393329 -0.075150782225337 -0.069551570671347 -0.064355491139436 -0.059576420901725 -0.055227358340495 -0.051320368514893 -0.047866531377891 -0.044875892961206 -0.042357419832211 -0.040318957110669 -0.038767190314571 -0.037707611284779 -0.037144488415520 -0.037707611284779 -0.038767190314572 -0.040318957110669 -0.042357419832211 -0.044875892961206 -0.047866531377891 -0.051320368514893 -0.055227358340495 -0.059576420901726 -0.064355491139436 -0.069551570671347 -0.075150782225337 -0.081138426393330 -0.087499040366801 -0.094216458308149 -0.101273873007448 -0.108653898472282 -0.116338633098551 -0.124309723073179 -0.132548425664847 -0.141035672066408 -0.149752129462728 -0.158678262009609 -0.148813030324334 -0.137498105168957 -0.125904634928071 -0.114055778239865 -0.101975299522461 -0.089687514532375 -0.077217234033024 -0.064589705756938 -0.051830554854440 -0.038965723029581 -0.026021406571200 -0.013023993492826 -0.000000000000000 +-0.000000000000000 0.012476095212562 0.024926555682576 0.037325809816656 0.049648412090307 0.061869105510039 0.073962883392257 0.085905050237026 0.097671281479843 0.109237681910685 0.120580842556945 0.131677895835188 0.134928171205412 0.126585301350724 0.118407957265643 0.110414539471241 0.102623367984593 0.095052623821564 0.087720288892102 0.080644084596468 0.073841409446110 0.067329276045932 0.061124247785497 0.055242375594913 0.049699135127367 0.044509364733160 0.039687204591434 0.035246037363553 0.031198430727986 0.027556082149551 0.024329766226420 0.021529284946342 0.019163421169303 0.017239895637157 0.015765327792049 0.014745200664482 0.014183830069300 0.014745200664481 0.015765327792049 0.017239895637157 0.019163421169303 0.021529284946342 0.024329766226421 0.027556082149551 0.031198430727986 0.035246037363553 0.039687204591433 0.044509364733160 0.049699135127369 0.055242375594914 0.061124247785496 0.067329276045932 0.073841409446110 0.080644084596468 0.087720288892102 0.095052623821563 0.102623367984592 0.110414539471242 0.118407957265645 0.126585301350725 0.134928171205412 0.131677895835189 0.120580842556946 0.109237681910686 0.097671281479841 0.085905050237024 0.073962883392258 0.061869105510040 0.049648412090308 0.037325809816657 0.024926555682575 0.012476095212563 -0.000000000000000 -0.012476095212561 -0.024926555682576 -0.037325809816658 -0.049648412090309 -0.061869105510038 -0.073962883392256 -0.085905050237025 -0.097671281479842 -0.109237681910687 -0.120580842556945 -0.131677895835187 -0.134927962580577 -0.126584577116843 -0.118406736142606 -0.110412840730019 -0.102621211397805 -0.095050029616194 -0.087717277704519 -0.080640677429891 -0.073837627630632 -0.067325141201173 -0.061119781785908 -0.055237600537798 -0.049694073303551 -0.044504038600335 -0.039681636750033 -0.035240250535112 -0.031192447735855 -0.027549925901813 -0.024323459700828 -0.021522851177127 -0.019156883235605 -0.017233276652875 -0.015758650896876 -0.014738489015867 -0.014177106835059 -0.014738489015868 -0.015758650896876 -0.017233276652875 -0.019156883235605 -0.021522851177127 -0.024323459700828 -0.027549925901813 -0.031192447735855 -0.035240250535112 -0.039681636750033 -0.044504038600335 -0.049694073303551 -0.055237600537796 -0.061119781785909 -0.067325141201173 -0.073837627630633 -0.080640677429891 -0.087717277704519 -0.095050029616194 -0.102621211397804 -0.110412840730019 -0.118406736142606 -0.126584577116843 -0.134927962580577 -0.131677895835187 -0.120580842556947 -0.109237681910687 -0.097671281479842 -0.085905050237025 -0.073962883392256 -0.061869105510038 -0.049648412090309 -0.037325809816658 -0.024926555682576 -0.012476095212561 -0.000000000000000 +-0.000000000000000 0.011834922834942 0.023645338935780 0.035406803274319 0.047094994002147 0.058685773461710 0.070155248506516 0.081479829906236 0.092636290617650 0.103601822708805 0.114354092731286 0.113484160802324 0.105887136068733 0.098411847701945 0.091075193389081 0.083894112384501 0.076885530634712 0.070066303776078 0.063453158302430 0.057062631218138 0.050911008508459 0.045014262773015 0.039387990379814 0.034047348506319 0.029006992440664 0.024281013519926 0.019882878083603 0.015825367819004 0.012120521870923 0.008779581081355 0.005812934715196 0.003230070016049 0.001039524921534 -0.000751155749531 -0.002135460344829 -0.003107946389484 -0.003664272311890 -0.003107946389484 -0.002135460344829 -0.000751155749531 0.001039524921534 0.003230070016048 0.005812934715194 0.008779581081355 0.012120521870923 0.015825367819004 0.019882878083605 0.024281013519925 0.029006992440663 0.034047348506318 0.039387990379813 0.045014262773016 0.050911008508459 0.057062631218140 0.063453158302430 0.070066303776078 0.076885530634711 0.083894112384501 0.091075193389082 0.098411847701946 0.105887136068733 0.113484160802323 0.114354092731287 0.103601822708806 0.092636290617648 0.081479829906234 0.070155248506517 0.058685773461711 0.047094994002148 0.035406803274320 0.023645338935778 0.011834922834943 -0.000000000000000 -0.011834922834941 -0.023645338935779 -0.035406803274321 -0.047094994002149 -0.058685773461709 -0.070155248506516 -0.081479829906235 -0.092636290617649 -0.103601822708807 -0.114354092731286 -0.113483849508481 -0.105886341968725 -0.098410587883449 -0.091073485428685 -0.083891974297714 -0.076882980828305 -0.070063361002910 -0.063449841618974 -0.057058959944784 -0.050907002192753 -0.045009941155846 -0.039383373364625 -0.034042456131350 -0.029001844854179 -0.024275630958383 -0.019877280852692 -0.015819576277413 -0.012114556416740 -0.008773462140868 -0.005806682733983 -0.003223705452092 -0.001033068240137 0.000757684079263 0.002142039852193 0.003114556603374 0.003670892761266 0.003114556603374 0.002142039852193 0.000757684079263 -0.001033068240137 -0.003223705452092 -0.005806682733983 -0.008773462140869 -0.012114556416740 -0.015819576277413 -0.019877280852692 -0.024275630958383 -0.029001844854179 -0.034042456131350 -0.039383373364627 -0.045009941155846 -0.050907002192753 -0.057058959944784 -0.063449841618974 -0.070063361002910 -0.076882980828303 -0.083891974297714 -0.091073485428685 -0.098410587883449 -0.105886341968725 -0.113483849508481 -0.114354092731288 -0.103601822708807 -0.092636290617649 -0.081479829906235 -0.070155248506516 -0.058685773461709 -0.047094994002149 -0.035406803274321 -0.023645338935779 -0.011834922834941 -0.000000000000000 +-0.000000000000000 0.011105356068913 0.022187507163875 0.033223308201084 0.044189733643407 0.055063936690988 0.065823307776398 0.076445532138744 0.086908646256555 0.097191092925777 0.094241237763684 0.087549081121212 0.080936180516343 0.074417569282915 0.068008441368587 0.061724101213707 0.055579910992843 0.049591235499178 0.043773384973624 0.038141556199961 0.032710772204667 0.027495820914947 0.022511193140972 0.017771020258109 0.013289011972130 0.009078394554778 0.005151849938732 0.001521456059766 -0.001801371169938 -0.004805933880338 -0.007482305886241 -0.009821383598901 -0.011814933865817 -0.013455638415544 -0.014737134603939 -0.015654052180091 -0.016202045814483 -0.015654052180091 -0.014737134603939 -0.013455638415544 -0.011814933865817 -0.009821383598901 -0.007482305886240 -0.004805933880339 -0.001801371169938 0.001521456059766 0.005151849938731 0.009078394554783 0.013289011972129 0.017771020258108 0.022511193140971 0.027495820914946 0.032710772204667 0.038141556199960 0.043773384973623 0.049591235499178 0.055579910992842 0.061724101213705 0.068008441368587 0.074417569282916 0.080936180516342 0.087549081121211 0.094241237763683 0.097191092925778 0.086908646256554 0.076445532138742 0.065823307776398 0.055063936690989 0.044189733643407 0.033223308201085 0.022187507163874 0.011105356068914 -0.000000000000000 -0.011105356068912 -0.022187507163875 -0.033223308201085 -0.044189733643408 -0.055063936690988 -0.065823307776397 -0.076445532138743 -0.086908646256554 -0.097191092925779 -0.094240884539733 -0.087548285665782 -0.080934958327466 -0.074415936276245 -0.068006413826693 -0.061721695737823 -0.055577144457308 -0.049588125008738 -0.043769947823789 -0.038137809840528 -0.032706734206493 -0.027491508940074 -0.022506624916084 -0.017766213551357 -0.013283984573274 -0.009073164258581 -0.005146434531485 -0.001515873308872 0.001807103523570 0.004811798127175 0.007488284350571 0.009827458639037 0.011821087872323 0.013461853807757 0.014743393825063 0.015660337691191 0.016208340087668 0.015660337691190 0.014743393825063 0.013461853807757 0.011821087872323 0.009827458639037 0.007488284350571 0.004811798127175 0.001807103523570 -0.001515873308872 -0.005146434531485 -0.009073164258580 -0.013283984573274 -0.017766213551357 -0.022506624916084 -0.027491508940074 -0.032706734206494 -0.038137809840527 -0.043769947823789 -0.049588125008738 -0.055577144457306 -0.061721695737823 -0.068006413826693 -0.074415936276245 -0.080934958327466 -0.087548285665782 -0.094240884539732 -0.097191092925779 -0.086908646256554 -0.076445532138743 -0.065823307776397 -0.055063936690988 -0.044189733643408 -0.033223308201085 -0.022187507163875 -0.011105356068912 -0.000000000000000 +-0.000000000000000 0.010292947358087 0.020564155346909 0.030791942312887 0.040954741799658 0.051031159562623 0.061000029886552 0.070840470980352 0.080531939228591 0.077085193627938 0.071449984599870 0.065853809791107 0.060309490126152 0.054830120573859 0.049429025881559 0.044119713182090 0.038915821731585 0.033831070060579 0.028879200843599 0.024073923813053 0.019428857061439 0.014957467091712 0.010673007988905 0.006588460096635 0.002716468589903 -0.000930717659387 -0.004341306525787 -0.007504021984911 -0.010408161985372 -0.013043654450927 -0.015401111034870 -0.017471878261342 -0.019248085702897 -0.020722690861391 -0.021889520439103 -0.022743307709530 -0.023279725721866 -0.022743307709532 -0.021889520439103 -0.020722690861392 -0.019248085702897 -0.017471878261342 -0.015401111034869 -0.013043654450927 -0.010408161985372 -0.007504021984910 -0.004341306525787 -0.000930717659387 0.002716468589905 0.006588460096633 0.010673007988904 0.014957467091711 0.019428857061439 0.024073923813055 0.028879200843599 0.033831070060579 0.038915821731585 0.044119713182089 0.049429025881560 0.054830120573860 0.060309490126151 0.065853809791107 0.071449984599870 0.077085193627938 0.080531939228589 0.070840470980350 0.061000029886553 0.051031159562623 0.040954741799659 0.030791942312888 0.020564155346907 0.010292947358088 -0.000000000000000 -0.010292947358087 -0.020564155346908 -0.030791942312888 -0.040954741799660 -0.051031159562622 -0.061000029886551 -0.070840470980351 -0.080531939228590 -0.077084845806594 -0.071449242560124 -0.065852687518227 -0.060308001943393 -0.054828281090867 -0.049426849945344 -0.044117215830840 -0.038913018151527 -0.033827975546091 -0.028875830760727 -0.024070293566570 -0.019424982065511 -0.014953362744266 -0.010668689649679 -0.006583943068918 -0.002711768105916 0.000935586449559 0.004346328561815 0.007509182300565 0.010413445709735 0.013049046806708 0.015406597334029 0.017477443898307 0.019253716145616 0.020728371640550 0.021895237135800 0.022749045941754 0.023285471130079 0.022749045941755 0.021895237135800 0.020728371640550 0.019253716145616 0.017477443898307 0.015406597334029 0.013049046806708 0.010413445709735 0.007509182300565 0.004346328561815 0.000935586449559 -0.002711768105916 -0.006583943068918 -0.010668689649680 -0.014953362744266 -0.019424982065511 -0.024070293566570 -0.028875830760727 -0.033827975546091 -0.038913018151526 -0.044117215830840 -0.049426849945344 -0.054828281090867 -0.060308001943393 -0.065852687518227 -0.071449242560124 -0.077084845806594 -0.080531939228590 -0.070840470980351 -0.061000029886551 -0.051031159562622 -0.040954741799660 -0.030791942312888 -0.020564155346908 -0.010292947358087 -0.000000000000000 +-0.000000000000000 0.009403879623301 0.018787638172414 0.028131209772237 0.037414638712175 0.046618133945618 0.055722122894098 0.064707304330904 0.061898277054559 0.057462395922304 0.053028496658168 0.048606859894430 0.044208145615546 0.039843355794560 0.035523793443686 0.031261018309304 0.027066799469094 0.022953065114903 0.018931849828566 0.015015239679521 0.011215315492221 0.007544094648008 0.004013471800154 0.000635158891974 -0.002579375123575 -0.005618964458999 -0.008472806155721 -0.011130518829971 -0.013582200098714 -0.015818482289649 -0.017830586048723 -0.019610371470791 -0.021150386394219 -0.022443911517792 -0.023485002018709 -0.024268525372986 -0.024790195104633 -0.024268525372986 -0.023485002018709 -0.022443911517793 -0.021150386394219 -0.019610371470791 -0.017830586048722 -0.015818482289651 -0.013582200098714 -0.011130518829972 -0.008472806155721 -0.005618964458998 -0.002579375123575 0.000635158891973 0.004013471800153 0.007544094648009 0.011215315492221 0.015015239679519 0.018931849828565 0.022953065114903 0.027066799469093 0.031261018309304 0.035523793443688 0.039843355794560 0.044208145615546 0.048606859894429 0.053028496658167 0.057462395922304 0.061898277054559 0.064707304330903 0.055722122894098 0.046618133945619 0.037414638712175 0.028131209772237 0.018787638172413 0.009403879623302 -0.000000000000000 -0.009403879623301 -0.018787638172414 -0.028131209772238 -0.037414638712176 -0.046618133945618 -0.055722122894097 -0.064707304330904 -0.061897968882427 -0.057461748529716 -0.053027522626821 -0.048605572056877 -0.044206557002562 -0.039841479585162 -0.035521642918102 -0.031258606805141 -0.027064140340947 -0.022950171697565 -0.018928735404030 -0.015011917447865 -0.011211798546490 -0.007540395953111 -0.004009604175798 -0.000631134999639 0.002583542789745 0.005623263577423 0.008477224578894 0.011135044582409 0.013586821371542 0.015823187432047 0.017835363556482 0.019615209972264 0.021155274633947 0.022448838338167 0.023489956339959 0.024273496171883 0.024795171392248 0.024273496171883 0.023489956339959 0.022448838338167 0.021155274633947 0.019615209972264 0.017835363556482 0.015823187432048 0.013586821371542 0.011135044582409 0.008477224578894 0.005623263577423 0.002583542789745 -0.000631134999640 -0.004009604175800 -0.007540395953111 -0.011211798546490 -0.015011917447865 -0.018928735404030 -0.022950171697565 -0.027064140340946 -0.031258606805141 -0.035521642918102 -0.039841479585162 -0.044206557002562 -0.048605572056877 -0.053027522626820 -0.057461748529716 -0.061897968882427 -0.064707304330904 -0.055722122894097 -0.046618133945618 -0.037414638712176 -0.028131209772238 -0.018787638172414 -0.009403879623301 -0.000000000000000 +-0.000000000000000 0.008444919206850 0.016871476008780 0.025261360360362 0.033596366703025 0.041858445629578 0.050029754858134 0.048564685742114 0.045458196688219 0.042320661263265 0.039159518510118 0.035982681641875 0.032798508550450 0.029615768311769 0.026443603885177 0.023291491234908 0.020169195130067 0.017086721906391 0.014054269497747 0.011082175067801 0.008180860592386 0.005360776760523 0.002632345576858 0.000005902060204 -0.002508364558115 -0.004900469726394 -0.007160692142442 -0.009279631588676 -0.011248265622960 -0.013058004722042 -0.014700745483619 -0.016168921505339 -0.017455551574016 -0.018554284816234 -0.019459442481889 -0.020166056055132 -0.020669901412433 -0.020166056055132 -0.019459442481889 -0.018554284816235 -0.017455551574017 -0.016168921505338 -0.014700745483619 -0.013058004722041 -0.011248265622960 -0.009279631588676 -0.007160692142441 -0.004900469726393 -0.002508364558116 0.000005902060205 0.002632345576859 0.005360776760523 0.008180860592387 0.011082175067801 0.014054269497746 0.017086721906392 0.020169195130066 0.023291491234907 0.026443603885177 0.029615768311769 0.032798508550450 0.035982681641875 0.039159518510117 0.042320661263265 0.045458196688219 0.048564685742114 0.050029754858134 0.041858445629579 0.033596366703025 0.025261360360362 0.016871476008779 0.008444919206851 -0.000000000000000 -0.008444919206849 -0.016871476008779 -0.025261360360363 -0.033596366703026 -0.041858445629578 -0.050029754858133 -0.048564439006650 -0.045457672148451 -0.042319870236351 -0.039158472470384 -0.035981392167011 -0.032796987270406 -0.029614026860689 -0.026441653856649 -0.023289344140788 -0.020166862363103 -0.017084214706837 -0.014051598924111 -0.011079351971861 -0.008177895598530 -0.005357680249464 -0.002629127673725 -0.000002572626970 0.002511795925944 0.004903993698938 0.007164299650605 0.009283313815476 0.011252013991255 0.013061810878888 0.014704601281542 0.016172818980804 0.017459482923444 0.018558242369874 0.019463418675943 0.020170043402481 0.020673892472368 0.020170043402481 0.019463418675943 0.018558242369874 0.017459482923444 0.016172818980804 0.014704601281542 0.013061810878888 0.011252013991255 0.009283313815476 0.007164299650605 0.004903993698938 0.002511795925944 -0.000002572626970 -0.002629127673726 -0.005357680249464 -0.008177895598530 -0.011079351971861 -0.014051598924111 -0.017084214706837 -0.020166862363102 -0.023289344140788 -0.026441653856649 -0.029614026860689 -0.032796987270406 -0.035981392167011 -0.039158472470384 -0.042319870236351 -0.045457672148451 -0.048564439006650 -0.050029754858133 -0.041858445629578 -0.033596366703026 -0.025261360360363 -0.016871476008779 -0.008444919206849 -0.000000000000000 +-0.000000000000000 0.007423364376539 0.014830252007081 0.022204235364149 0.029528985127734 0.036788318716566 0.036975784417573 0.035314006422610 0.033592959421304 0.031816972137465 0.029990929618098 0.028120252485397 0.026210871818342 0.024269199824372 0.022302096494223 0.020316832464295 0.018321048340506 0.016322710765290 0.014330065535034 0.012351588098602 0.010395931788434 0.008471874153982 0.006588261782713 0.004753954006496 0.002977765900793 0.001268410990631 -0.000365555919247 -0.001915795372387 -0.003374238931905 -0.004733143486241 -0.005985143789585 -0.007123302849256 -0.008141159787360 -0.009032774821885 -0.009792771032801 -0.010416372601931 -0.010899439240628 -0.010416372601931 -0.009792771032801 -0.009032774821885 -0.008141159787360 -0.007123302849255 -0.005985143789586 -0.004733143486242 -0.003374238931905 -0.001915795372387 -0.000365555919248 0.001268410990632 0.002977765900793 0.004753954006496 0.006588261782713 0.008471874153982 0.010395931788434 0.012351588098602 0.014330065535033 0.016322710765290 0.018321048340507 0.020316832464295 0.022302096494223 0.024269199824373 0.026210871818342 0.028120252485397 0.029990929618098 0.031816972137465 0.033592959421304 0.035314006422611 0.036975784417572 0.036788318716566 0.029528985127734 0.022204235364150 0.014830252007080 0.007423364376539 -0.000000000000000 -0.007423364376538 -0.014830252007081 -0.022204235364150 -0.029528985127735 -0.036788318716565 -0.036975609363126 -0.035313620727058 -0.033592373303263 -0.031816195873470 -0.029989973487515 -0.028119126718059 -0.026209586545275 -0.024267765031907 -0.022300521981799 -0.020315127806212 -0.018319222851834 -0.016320773472134 -0.014328025149305 -0.012349452997389 -0.010393709998054 -0.008469573338751 -0.006585889238404 -0.004751516658452 -0.002975270306609 -0.001265863347268 0.000368149764075 0.001918429904737 0.003376908952301 0.004735844086779 0.005987870327747 0.007126050918762 0.008143925186401 0.009035553519083 0.009795559131312 0.010419166302069 0.010902234801426 0.010419166302069 0.009795559131312 0.009035553519083 0.008143925186401 0.007126050918762 0.005987870327747 0.004735844086779 0.003376908952301 0.001918429904737 0.000368149764075 -0.001265863347268 -0.002975270306609 -0.004751516658452 -0.006585889238404 -0.008469573338751 -0.010393709998054 -0.012349452997389 -0.014328025149305 -0.016320773472134 -0.018319222851833 -0.020315127806212 -0.022300521981799 -0.024267765031907 -0.026209586545275 -0.028119126718059 -0.029989973487514 -0.031816195873470 -0.033592373303263 -0.035313620727058 -0.036975609363126 -0.036788318716565 -0.029528985127735 -0.022204235364150 -0.014830252007081 -0.007423364376538 -0.000000000000000 +-0.000000000000000 0.006346989781458 0.012679501114497 0.018983101350762 0.025243449216042 0.027034930576041 0.026916241592274 0.026715559392036 0.026433871644304 0.026072789893779 0.025634538309258 0.025121937753610 0.024538385294674 0.023887829311169 0.023174740381234 0.022404078173376 0.021581254590058 0.020712093442746 0.019802786963649 0.018859849483556 0.017890068626766 0.016900454393078 0.015898186512956 0.014890560475175 0.013884932636438 0.012888664829514 0.011909068890335 0.010953351525147 0.010028559936383 0.009141528620121 0.008298827739256 0.007506713464518 0.006771080660659 0.006097418277294 0.005490767783417 0.004955684961551 0.004496205351983 0.004955684961551 0.005490767783417 0.006097418277294 0.006771080660659 0.007506713464518 0.008298827739256 0.009141528620122 0.010028559936383 0.010953351525147 0.011909068890334 0.012888664829514 0.013884932636437 0.014890560475175 0.015898186512955 0.016900454393078 0.017890068626765 0.018859849483556 0.019802786963649 0.020712093442746 0.021581254590058 0.022404078173376 0.023174740381234 0.023887829311169 0.024538385294673 0.025121937753609 0.025634538309258 0.026072789893779 0.026433871644304 0.026715559392036 0.026916241592274 0.027034930576041 0.025243449216042 0.018983101350763 0.012679501114496 0.006346989781458 -0.000000000000000 -0.006346989781457 -0.012679501114496 -0.018983101350763 -0.025243449216043 -0.027034827086091 -0.026915999606008 -0.026715188219257 -0.026433380548952 -0.026072188037486 -0.025633834697621 -0.025121141185546 -0.024537504315222 -0.023886872168048 -0.023173714985459 -0.022402992064174 -0.021580114904317 -0.020710906889166 -0.019801559801745 -0.018858587507613 -0.017888777154812 -0.016899138260889 -0.015896850073076 -0.014889207600892 -0.013883566730615 -0.012887288838132 -0.011907685320574 -0.010951962467787 -0.010027167092272 -0.009140133330441 -0.008297431019256 -0.007505316040394 -0.006769683009196 -0.006096020667893 -0.005489370322105 -0.004954287636534 -0.004494808080328 -0.004954287636534 -0.005489370322105 -0.006096020667893 -0.006769683009196 -0.007505316040394 -0.008297431019256 -0.009140133330441 -0.010027167092273 -0.010951962467787 -0.011907685320574 -0.012887288838133 -0.013883566730615 -0.014889207600892 -0.015896850073076 -0.016899138260889 -0.017888777154813 -0.018858587507613 -0.019801559801745 -0.020710906889166 -0.021580114904318 -0.022402992064174 -0.023173714985459 -0.023886872168048 -0.024537504315222 -0.025121141185546 -0.025633834697621 -0.026072188037486 -0.026433380548952 -0.026715188219257 -0.026915999606008 -0.027034827086091 -0.025243449216043 -0.018983101350763 -0.012679501114496 -0.006346989781457 -0.000000000000000 +-0.000000000000000 0.005223987282209 0.010435591843978 0.015622473095018 0.018661798806308 0.020165714570064 0.021571001598758 0.022875118521878 0.024076199144544 0.025173051309757 0.026165150840464 0.027052630636323 0.027836265036514 0.028517449595438 0.029098176452509 0.029581005510152 0.029969031665359 0.030265848369498 0.030475507818218 0.030602478098160 0.030651597639482 0.030628027342811 0.030537200766000 0.030384772769852 0.030176567032693 0.029918522851217 0.029616641649385 0.029276933618252 0.028905364907470 0.028507805783796 0.028089980163435 0.027657416913303 0.027215403301634 0.026768940960690 0.026322704703983 0.025881004517341 0.025447751017732 0.025881004517341 0.026322704703983 0.026768940960690 0.027215403301634 0.027657416913304 0.028089980163435 0.028507805783796 0.028905364907470 0.029276933618252 0.029616641649385 0.029918522851217 0.030176567032693 0.030384772769852 0.030537200766000 0.030628027342811 0.030651597639482 0.030602478098160 0.030475507818218 0.030265848369498 0.029969031665359 0.029581005510152 0.029098176452509 0.028517449595438 0.027836265036514 0.027052630636323 0.026165150840464 0.025173051309757 0.024076199144543 0.022875118521878 0.021571001598758 0.020165714570064 0.018661798806309 0.015622473095019 0.010435591843977 0.005223987282209 -0.000000000000000 -0.005223987282209 -0.010435591843977 -0.015622473095019 -0.018661757824374 -0.020165611370039 -0.021570844791521 -0.022874916565209 -0.024075960285277 -0.025172783528601 -0.026164861799879 -0.027052327631851 -0.027835954951905 -0.028517138861898 -0.029097871012358 -0.029580710785136 -0.029968752529846 -0.030265589128723 -0.030475272191714 -0.030602269208480 -0.030651418006254 -0.030627878882142 -0.030537084795199 -0.030384690017402 -0.030176517653346 -0.029918506446076 -0.029616657290762 -0.029276979879086 -0.028905439895025 -0.028507907177353 -0.028090105255634 -0.027657562654785 -0.027215566348590 -0.026769117724914 -0.026322891405003 -0.025881197236173 -0.025447945751814 -0.025881197236173 -0.026322891405003 -0.026769117724915 -0.027215566348590 -0.027657562654785 -0.028090105255635 -0.028507907177353 -0.028905439895025 -0.029276979879086 -0.029616657290762 -0.029918506446076 -0.030176517653346 -0.030384690017402 -0.030537084795199 -0.030627878882142 -0.030651418006254 -0.030602269208480 -0.030475272191714 -0.030265589128723 -0.029968752529846 -0.029580710785136 -0.029097871012358 -0.028517138861898 -0.027835954951905 -0.027052327631851 -0.026164861799880 -0.025172783528601 -0.024075960285277 -0.022874916565208 -0.021570844791521 -0.020165611370039 -0.018661757824374 -0.015622473095019 -0.010435591843977 -0.005223987282209 -0.000000000000000 +-0.000000000000000 0.004062903605899 0.008115601699981 0.011796105870226 0.014981669765938 0.018058533836672 0.021020486427400 0.023862024774089 0.026578364447431 0.029165443706687 0.031619922791544 0.033939178217548 0.036121292177790 0.038165037189666 0.040069856160594 0.041835838080096 0.043463689577622 0.044954702615389 0.046310718613418 0.047534089329331 0.048627634838457 0.049594598979945 0.050438602651926 0.051163595353086 0.051773805379237 0.052273689091509 0.052667879677561 0.052961135828773 0.053158290754565 0.053264201949998 0.053283702124564 0.053221551688647 0.053082393179718 0.052870707992868 0.052590775760120 0.052246636700045 0.051842057233919 0.052246636700045 0.052590775760120 0.052870707992868 0.053082393179718 0.053221551688647 0.053283702124564 0.053264201949998 0.053158290754565 0.052961135828773 0.052667879677561 0.052273689091509 0.051773805379237 0.051163595353086 0.050438602651926 0.049594598979945 0.048627634838457 0.047534089329331 0.046310718613418 0.044954702615389 0.043463689577622 0.041835838080096 0.040069856160593 0.038165037189666 0.036121292177790 0.033939178217549 0.031619922791544 0.029165443706687 0.026578364447431 0.023862024774089 0.021020486427400 0.018058533836672 0.014981669765939 0.011796105870226 0.008115601699981 0.004062903605899 -0.000000000000000 -0.004062903605898 -0.008115601699981 -0.011796111027791 -0.014981692199011 -0.018058581683438 -0.021020567563354 -0.023862146752767 -0.026578534443716 -0.029165668463137 -0.031620208568125 -0.033939530745176 -0.036121716616013 -0.038165538088824 -0.040070437428727 -0.041836502954859 -0.043464440603406 -0.044955541625844 -0.046311646719467 -0.047535106912804 -0.048628741551363 -0.049595793749391 -0.050439883690645 -0.051164960175482 -0.051775250822829 -0.052275211343596 -0.052669474306909 -0.052962797822073 -0.053160014557380 -0.053265981511883 -0.053285530948007 -0.053223422881465 -0.053084299510479 -0.052872641948940 -0.052592729607883 -0.052248602546796 -0.051844027091022 -0.052248602546796 -0.052592729607883 -0.052872641948941 -0.053084299510479 -0.053223422881465 -0.053285530948008 -0.053265981511883 -0.053160014557380 -0.052962797822073 -0.052669474306909 -0.052275211343596 -0.051775250822829 -0.051164960175482 -0.050439883690645 -0.049595793749391 -0.048628741551363 -0.047535106912804 -0.046311646719467 -0.044955541625844 -0.043464440603407 -0.041836502954859 -0.040070437428727 -0.038165538088824 -0.036121716616013 -0.033939530745176 -0.031620208568126 -0.029165668463137 -0.026578534443717 -0.023862146752767 -0.021020567563354 -0.018058581683438 -0.014981692199011 -0.011796111027791 -0.008115601699981 -0.004062903605898 -0.000000000000000 +-0.000000000000000 0.002872575300385 0.006400651980880 0.011305166728635 0.016097826371703 0.020768657601224 0.025308411148632 0.029708582117337 0.033961425131283 0.038059964279470 0.041997997874029 0.045770098077656 0.049371605493780 0.052798618849568 0.056047979937456 0.059117254014949 0.062004705894956 0.064709271989398 0.067230528597214 0.069568656753881 0.071724403983037 0.073699043311436 0.075494329926392 0.077112455869620 0.078556003173093 0.079827895851034 0.080931351167381 0.081869830600054 0.082646990921886 0.083266635813555 0.083732668415855 0.084049045217658 0.084219731661744 0.084248659833497 0.084139688577666 0.083896566365584 0.083522897210318 0.083896566365584 0.084139688577666 0.084248659833497 0.084219731661743 0.084049045217659 0.083732668415855 0.083266635813555 0.082646990921887 0.081869830600054 0.080931351167382 0.079827895851034 0.078556003173093 0.077112455869620 0.075494329926392 0.073699043311436 0.071724403983037 0.069568656753880 0.067230528597214 0.064709271989398 0.062004705894956 0.059117254014949 0.056047979937456 0.052798618849568 0.049371605493780 0.045770098077657 0.041997997874029 0.038059964279470 0.033961425131282 0.029708582117336 0.025308411148633 0.020768657601225 0.016097826371704 0.011305166728636 0.006400651980879 0.002872575300385 -0.000000000000000 -0.002872575300385 -0.006400681397056 -0.011305295155149 -0.016098061712593 -0.020769007386988 -0.025308882475546 -0.029709181589239 -0.033962158804287 -0.038060837610032 -0.041999015670773 -0.045771264457345 -0.049372923841772 -0.052800091785081 -0.056049609283919 -0.059119040775686 -0.062006650234402 -0.064711373220023 -0.067232785172267 -0.069571066266034 -0.071726963168969 -0.073701748062339 -0.075497175304362 -0.077115436129825 -0.078559111791574 -0.079831125557971 -0.080934693985597 -0.081873277888488 -0.082650533423751 -0.083270263708835 -0.083736371377782 -0.084052812472780 -0.084223552053145 -0.084252521886743 -0.084143580568994 -0.083900476391865 -0.083526813260294 -0.083900476391865 -0.084143580568994 -0.084252521886743 -0.084223552053145 -0.084052812472780 -0.083736371377781 -0.083270263708834 -0.082650533423751 -0.081873277888488 -0.080934693985597 -0.079831125557971 -0.078559111791574 -0.077115436129825 -0.075497175304362 -0.073701748062339 -0.071726963168969 -0.069571066266034 -0.067232785172267 -0.064711373220023 -0.062006650234402 -0.059119040775686 -0.056049609283919 -0.052800091785081 -0.049372923841772 -0.045771264457345 -0.041999015670773 -0.038060837610032 -0.033962158804287 -0.029709181589239 -0.025308882475546 -0.020769007386988 -0.016098061712593 -0.011305295155149 -0.006400681397056 -0.002872575300385 -0.000000000000000 +-0.000000000000000 0.002463608675329 0.009101734389987 0.015631985072709 0.022040586484994 0.028314484403286 0.034441375976164 0.040409735884329 0.046208837232729 0.051828767143043 0.057260437053559 0.062495587772060 0.067526789365331 0.072347436005974 0.076951735933197 0.081334696718806 0.085492106062482 0.089420508371367 0.093117177407854 0.096580085315816 0.099807868359525 0.102799789730547 0.105555699796261 0.108075994178876 0.110361570065955 0.112413781162366 0.114234391699296 0.115825529918236 0.117189641446974 0.118329442980330 0.119247876670909 0.119948065624438 0.120433270880486 0.120706850242617 0.120772219302441 0.120632814979718 0.120292061875931 0.120632814979718 0.120772219302441 0.120706850242617 0.120433270880486 0.119948065624438 0.119247876670910 0.118329442980330 0.117189641446975 0.115825529918236 0.114234391699296 0.112413781162365 0.110361570065955 0.108075994178877 0.105555699796261 0.102799789730548 0.099807868359525 0.096580085315815 0.093117177407854 0.089420508371368 0.085492106062482 0.081334696718807 0.076951735933196 0.072347436005973 0.067526789365332 0.062495587772060 0.057260437053559 0.051828767143044 0.046208837232728 0.040409735884328 0.034441375976165 0.028314484403286 0.022040586484995 0.015631985072710 0.009101734389986 0.002463608675329 -0.000000000000000 -0.002463636890027 -0.009101944575513 -0.015632385145621 -0.022041183877304 -0.028315286000403 -0.034442388057170 -0.040410964065062 -0.046210286412134 -0.051830441453207 -0.057262339813842 -0.062497721447703 -0.067529155530873 -0.072350035313798 -0.076954568087487 -0.081337760455146 -0.085495399133289 -0.089424027537338 -0.093120918435511 -0.096584042981248 -0.099812036458327 -0.102804161093953 -0.105560266313406 -0.108080746825078 -0.110366498936861 -0.112418875513765 -0.114239639992383 -0.115830919870025 -0.117195160085568 -0.118335076704696 -0.119253611314770 -0.119953886523873 -0.120439162944804 -0.120712798028054 -0.120778207088162 -0.120638826845667 -0.120298081781994 -0.120638826845667 -0.120778207088162 -0.120712798028054 -0.120439162944804 -0.119953886523873 -0.119253611314770 -0.118335076704696 -0.117195160085567 -0.115830919870025 -0.114239639992383 -0.112418875513765 -0.110366498936861 -0.108080746825078 -0.105560266313406 -0.102804161093953 -0.099812036458327 -0.096584042981248 -0.093120918435511 -0.089424027537338 -0.085495399133290 -0.081337760455146 -0.076954568087487 -0.072350035313798 -0.067529155530873 -0.062497721447703 -0.057262339813843 -0.051830441453207 -0.046210286412134 -0.040410964065062 -0.034442388057170 -0.028315286000403 -0.022041183877304 -0.015632385145621 -0.009101944575513 -0.002463636890027 -0.000000000000000 +0.000000000000000 0.008363236484316 0.016629796071208 0.024782117663166 0.032803336756369 0.040677327787817 0.048388741351398 0.055923036162384 0.063266505688630 0.070406299405758 0.077330438672679 0.084027827262560 0.090488256622607 0.096702405973356 0.102661837394420 0.108358986078492 0.113787145968566 0.118940451024602 0.123813852395051 0.128403091795389 0.132704671420094 0.136715820736034 0.140434460523834 0.143859164549520 0.146989119261194 0.149824081914873 0.152364337539653 0.154610655155183 0.156564243653854 0.158226707756308 0.159600004441813 0.160686400244770 0.161488429795281 0.162008855965444 0.162250631963737 0.162216865698225 0.161910786704727 0.162216865698225 0.162250631963736 0.162008855965445 0.161488429795282 0.160686400244769 0.159600004441813 0.158226707756308 0.156564243653854 0.154610655155183 0.152364337539654 0.149824081914873 0.146989119261194 0.143859164549520 0.140434460523834 0.136715820736034 0.132704671420094 0.128403091795388 0.123813852395052 0.118940451024603 0.113787145968567 0.108358986078492 0.102661837394419 0.096702405973354 0.090488256622607 0.084027827262560 0.077330438672679 0.070406299405759 0.063266505688629 0.055923036162383 0.048388741351398 0.040677327787817 0.032803336756370 0.024782117663167 0.016629796071207 0.008363236484317 0.000000000000000 -0.008363501599573 -0.016630334481276 -0.024782936953003 -0.032804443852945 -0.040678728898923 -0.048390441907127 -0.055925040759742 -0.063268818039745 -0.070408922290098 -0.077333373893682 -0.084031075609065 -0.090491817835398 -0.096706278717147 -0.102666019235547 -0.108363473468540 -0.113791934234120 -0.118945534363287 -0.123819223877940 -0.128408743375860 -0.132710593949156 -0.136722003984062 -0.140440893208682 -0.143865834370856 -0.146996012940921 -0.149831185243397 -0.152371635427799 -0.154618131691414 -0.156571882166514 -0.158234490880502 -0.159607914190538 -0.160694418083865 -0.161496536721756 -0.162017032588696 -0.162258858589168 -0.162225122412744 -0.161919053463598 -0.162225122412744 -0.162258858589168 -0.162017032588696 -0.161496536721756 -0.160694418083865 -0.159607914190538 -0.158234490880502 -0.156571882166514 -0.154618131691414 -0.152371635427799 -0.149831185243398 -0.146996012940920 -0.143865834370856 -0.140440893208682 -0.136722003984062 -0.132710593949156 -0.128408743375860 -0.123819223877940 -0.118945534363287 -0.113791934234122 -0.108363473468540 -0.102666019235547 -0.096706278717147 -0.090491817835398 -0.084031075609065 -0.077333373893683 -0.070408922290098 -0.063268818039745 -0.055925040759742 -0.048390441907127 -0.040678728898923 -0.032804443852945 -0.024782936953003 -0.016630334481276 -0.008363501599573 0.000000000000000 +0.000000015984163 0.018693141586342 0.028178222393459 0.037544579151285 0.046773038932210 0.055845179752004 0.064743372144842 0.073450815462801 0.081951568809883 0.090230576559631 0.098273688444538 0.106067674244162 0.113600233137276 0.120859997820695 0.127836533533802 0.134520332162755 0.140902801631628 0.146976250819154 0.152733870269071 0.158169708989010 0.163278647657301 0.168056368578865 0.172499322750139 0.176604694408990 0.180370363458293 0.183794866161463 0.186877354514619 0.189617554703102 0.192015725049939 0.194072613860214 0.195789417558777 0.197167739508671 0.198209549884757 0.198917146961127 0.199293120151997 0.199340315124514 0.199061801277797 0.199340315124514 0.199293120151998 0.198917146961127 0.198209549884757 0.197167739508671 0.195789417558777 0.194072613860214 0.192015725049939 0.189617554703103 0.186877354514619 0.183794866161463 0.180370363458291 0.176604694408989 0.172499322750139 0.168056368578865 0.163278647657301 0.158169708989009 0.152733870269071 0.146976250819155 0.140902801631628 0.134520332162755 0.127836533533801 0.120859997820694 0.113600233137278 0.106067674244162 0.098273688444539 0.090230576559632 0.081951568809881 0.073450815462800 0.064743372144842 0.055845179752004 0.046773038932211 0.037544579151285 0.028178222393457 0.018693141586342 0.000000015984163 -0.018693173014833 -0.028178617895731 -0.037545345949948 -0.046774183420007 -0.055846707431728 -0.064745287572249 -0.073453122192972 -0.081954269347494 -0.090233672313555 -0.098277179687144 -0.106071560075741 -0.113604511455852 -0.120864665297570 -0.127841585595098 -0.134525762977148 -0.140908604104482 -0.146982416593189 -0.152740389731655 -0.158176571286134 -0.163285840714244 -0.168063879127493 -0.172507136362785 -0.176612795538750 -0.180378735485600 -0.183803491446678 -0.186886214456412 -0.189626629802327 -0.192024994978625 -0.194082057535345 -0.195799013220429 -0.197177464802072 -0.198219381945794 -0.198927062504838 -0.199303095563511 -0.199350326551915 -0.199071824726387 -0.199350326551915 -0.199303095563511 -0.198927062504839 -0.198219381945794 -0.197177464802072 -0.195799013220429 -0.194082057535345 -0.192024994978625 -0.189626629802327 -0.186886214456412 -0.183803491446678 -0.180378735485600 -0.176612795538750 -0.172507136362782 -0.168063879127493 -0.163285840714243 -0.158176571286134 -0.152740389731655 -0.146982416593189 -0.140908604104483 -0.134525762977148 -0.127841585595098 -0.120864665297570 -0.113604511455852 -0.106071560075741 -0.098277179687146 -0.090233672313555 -0.081954269347494 -0.073453122192972 -0.064745287572249 -0.055846707431728 -0.046774183420007 -0.037545345949948 -0.028178617895731 -0.018693173014833 0.000000015984163 +-0.000000000207870 0.024419268341701 0.044484903110464 0.055040045528706 0.065450961084194 0.075696981798614 0.085758245713343 0.095615737422986 0.105251323231283 0.114647780870386 0.123788823763471 0.132659119849310 0.141244305025707 0.149530991305963 0.157506769818893 0.165160208817802 0.172480846897125 0.179459181646885 0.186086654004480 0.192355628590331 0.198259370338478 0.203792017755086 0.208948553156850 0.213724770257381 0.218117239482640 0.222123271406360 0.225740878703032 0.228968737019385 0.231806145165427 0.234252985023001 0.236309681563439 0.237977163356400 0.239256823939518 0.240150484402874 0.240660357524149 0.240789013769238 0.240539349449782 0.240789013769238 0.240660357524149 0.240150484402873 0.239256823939517 0.237977163356399 0.236309681563439 0.234252985023001 0.231806145165427 0.228968737019384 0.225740878703032 0.222123271406359 0.218117239482640 0.213724770257382 0.208948553156851 0.203792017755087 0.198259370338479 0.192355628590330 0.186086654004480 0.179459181646885 0.172480846897125 0.165160208817802 0.157506769818892 0.149530991305962 0.141244305025708 0.132659119849311 0.123788823763471 0.114647780870387 0.105251323231282 0.095615737422985 0.085758245713344 0.075696981798615 0.065450961084195 0.055040045528707 0.044484903110462 0.024419268341702 -0.000000000207870 -0.024419277400351 -0.044485071322581 -0.055040674188541 -0.065452056025151 -0.075698547796485 -0.085760286430869 -0.095618255358172 -0.105254319669930 -0.114651255843241 -0.123792776008372 -0.132663546778726 -0.141249202699946 -0.149536354412383 -0.157512591657354 -0.165166481292573 -0.172487560515420 -0.179466325524174 -0.186094215876639 -0.192363594832690 -0.198267725991754 -0.203800746558159 -0.208957637586285 -0.213734191573541 -0.218126977782245 -0.222133305681211 -0.225751186904659 -0.228979296129315 -0.231816931270710 -0.234263973396600 -0.236320846749092 -0.237988479257480 -0.239268263911420 -0.240162021348454 -0.240671963991643 -0.240800662052159 -0.240551011688260 -0.240800662052159 -0.240671963991643 -0.240162021348454 -0.239268263911420 -0.237988479257480 -0.236320846749092 -0.234263973396600 -0.231816931270710 -0.228979296129315 -0.225751186904659 -0.222133305681210 -0.218126977782246 -0.213734191573541 -0.208957637586282 -0.203800746558158 -0.198267725991754 -0.192363594832690 -0.186094215876639 -0.179466325524174 -0.172487560515421 -0.165166481292573 -0.157512591657354 -0.149536354412383 -0.141249202699946 -0.132663546778726 -0.123792776008374 -0.114651255843241 -0.105254319669930 -0.095618255358172 -0.085760286430869 -0.075698547796485 -0.065452056025151 -0.055040674188541 -0.044485071322581 -0.024419277400351 -0.000000000207870 +-0.000000048270003 0.028321426005731 0.056586508665350 0.077173077631449 0.088732536663469 0.100119106244127 0.111310756721665 0.122286319634377 0.133025526974884 0.143509045017853 0.153718502682944 0.163636514443211 0.173246697827175 0.182533685599904 0.191483132744538 0.200081718400481 0.208317142947631 0.216178120457358 0.223654366760261 0.230736583407728 0.237416437828861 0.243686540006291 0.249540416013486 0.254972478772404 0.259977996403462 0.264553058549953 0.268694541065776 0.272400069459128 0.275667981485290 0.278497289278636 0.280887641408457 0.282839285233688 0.284353029919966 0.285430210467206 0.286072653078253 0.286282642178733 0.286062889375475 0.286282642178733 0.286072653078254 0.285430210467205 0.284353029919966 0.282839285233687 0.280887641408455 0.278497289278637 0.275667981485290 0.272400069459128 0.268694541065775 0.264553058549952 0.259977996403461 0.254972478772404 0.249540416013487 0.243686540006292 0.237416437828862 0.230736583407728 0.223654366760263 0.216178120457358 0.208317142947632 0.200081718400482 0.191483132744536 0.182533685599901 0.173246697827176 0.163636514443211 0.153718502682944 0.143509045017853 0.133025526974882 0.122286319634375 0.111310756721666 0.100119106244128 0.088732536663470 0.077173077631449 0.056586508665345 0.028321426005733 -0.000000048270003 -0.028321531106425 -0.056586639382962 -0.077173481929915 -0.088733493866205 -0.100120620383483 -0.111312830555522 -0.122288954596610 -0.133028723130327 -0.143512801022152 -0.153722815747686 -0.163641380306696 -0.173252110731116 -0.182539638272366 -0.191489616389357 -0.200088722693356 -0.208324656039067 -0.216186128982580 -0.223662855856170 -0.230745536736936 -0.237425837610788 -0.243696367055272 -0.249550649783772 -0.254983097409918 -0.259988976804117 -0.264564376424273 -0.268706171009553 -0.272411985029823 -0.275680155283745 -0.278509693035803 -0.280900246076622 -0.282852061081787 -0.284365946632495 -0.285443237246197 -0.286085758747820 -0.286295795291603 -0.286076058320970 -0.286295795291603 -0.286085758747820 -0.285443237246197 -0.284365946632495 -0.282852061081787 -0.280900246076623 -0.278509693035803 -0.275680155283745 -0.272411985029822 -0.268706171009553 -0.264564376424273 -0.259988976804117 -0.254983097409917 -0.249550649783770 -0.243696367055272 -0.237425837610789 -0.230745536736936 -0.223662855856170 -0.216186128982580 -0.208324656039069 -0.200088722693356 -0.191489616389357 -0.182539638272366 -0.173252110731115 -0.163641380306696 -0.153722815747688 -0.143512801022152 -0.133028723130327 -0.122288954596610 -0.111312830555522 -0.100120620383483 -0.088733493866205 -0.077173481929915 -0.056586639382962 -0.028321531106425 -0.000000048270003 +-0.000000127654286 0.032099787150398 0.064136150956721 0.096045560792669 0.116477674322635 0.128962569744873 0.141243109209718 0.153296049685540 0.165099063980899 0.176630778555476 0.187870805878547 0.198799771336761 0.209399334730619 0.219652206435778 0.229542158341157 0.239054029710192 0.248173728144665 0.256888225861482 0.265185551522053 0.273054777880715 0.280486005543133 0.287470343147563 0.293999884300856 0.300067681617569 0.305667718223612 0.310794877096255 0.315444908619370 0.319614396736695 0.323300724086727 0.326502036500435 0.329217207237509 0.331445801328228 0.333188040376573 0.334444768165730 0.335217417389991 0.335507977817400 0.335318966165218 0.335507977817401 0.335217417389990 0.334444768165730 0.333188040376573 0.331445801328229 0.329217207237509 0.326502036500435 0.323300724086728 0.319614396736696 0.315444908619370 0.310794877096253 0.305667718223611 0.300067681617569 0.293999884300857 0.287470343147563 0.280486005543134 0.273054777880713 0.265185551522055 0.256888225861482 0.248173728144666 0.239054029710192 0.229542158341156 0.219652206435777 0.209399334730620 0.198799771336762 0.187870805878548 0.176630778555477 0.165099063980897 0.153296049685538 0.141243109209719 0.128962569744873 0.116477674322636 0.096045560792672 0.064136150956716 0.032099787150400 -0.000000127654286 -0.032100050905425 -0.064136439986836 -0.096045891734151 -0.116478405008553 -0.128963940601303 -0.141245122084795 -0.153298704950130 -0.165102360486160 -0.176634713595552 -0.187875375158786 -0.198804968947820 -0.209405153128715 -0.219658636429408 -0.229549189084483 -0.239061648703325 -0.248181921240957 -0.256896977281996 -0.265194843877222 -0.273064592199238 -0.280496321308096 -0.287481138339684 -0.294011135448787 -0.300079363855034 -0.305679805353239 -0.310807341659816 -0.315457721974147 -0.319627529137657 -0.323314144774124 -0.326515713792455 -0.329231108627498 -0.331459893586065 -0.333202289653666 -0.334459140103134 -0.335231877229119 -0.335522490512737 -0.335333496498520 -0.335522490512738 -0.335231877229118 -0.334459140103133 -0.333202289653666 -0.331459893586065 -0.329231108627499 -0.326515713792455 -0.323314144774124 -0.319627529137656 -0.315457721974148 -0.310807341659816 -0.305679805353239 -0.300079363855034 -0.294011135448785 -0.287481138339684 -0.280496321308097 -0.273064592199238 -0.265194843877222 -0.256896977281996 -0.248181921240959 -0.239061648703325 -0.229549189084483 -0.219658636429409 -0.209405153128715 -0.198804968947820 -0.187875375158789 -0.176634713595552 -0.165102360486160 -0.153298704950130 -0.141245122084795 -0.128963940601303 -0.116478405008553 -0.096045891734151 -0.064136439986836 -0.032100050905425 -0.000000127654286 +-0.000000237575433 0.035724993171290 0.071379814040773 0.106893975772762 0.142197533246568 0.162044096939875 0.175363447703905 0.188444583005492 0.201263207819111 0.213795996499923 0.226020629001528 0.237915821667220 0.249461352625231 0.260638081854622 0.271427966023913 0.281814068238525 0.291780562865740 0.301312735636583 0.310396979252975 0.319020784755104 0.327172728928260 0.334842458050212 0.342020668299173 0.348699083158856 0.354870428170264 0.360528403390441 0.365667653925505 0.370283738909674 0.374373099302929 0.377933024878060 0.380961620762768 0.383457773894366 0.385421119733704 0.386852009571143 0.387751478740922 0.388121216041173 0.387963534635658 0.388121216041173 0.387751478740922 0.386852009571144 0.385421119733703 0.383457773894365 0.380961620762768 0.377933024878058 0.374373099302929 0.370283738909675 0.365667653925505 0.360528403390439 0.354870428170264 0.348699083158857 0.342020668299174 0.334842458050212 0.327172728928261 0.319020784755102 0.310396979252976 0.301312735636583 0.291780562865740 0.281814068238525 0.271427966023911 0.260638081854622 0.249461352625231 0.237915821667221 0.226020629001529 0.213795996499924 0.201263207819109 0.188444583005490 0.175363447703906 0.162044096939875 0.142197533246571 0.106893975772765 0.071379814040768 0.035724993171293 -0.000000237575433 -0.035725476623236 -0.071380322332786 -0.106894525254791 -0.142198139955061 -0.162045232532291 -0.175365304352277 -0.188447160027007 -0.201266502867903 -0.213800005532742 -0.226025346249128 -0.237921239611862 -0.249467461984527 -0.260644871572040 -0.271435423266127 -0.281822178399838 -0.291789309579664 -0.301322100794749 -0.310406943031367 -0.319031325647673 -0.327183823787859 -0.334854082136775 -0.342032795335059 -0.348711685391114 -0.354883476439671 -0.360541867207033 -0.365681501550299 -0.370297937442255 -0.374387614774533 -0.377947822349738 -0.380976664428188 -0.383473027186761 -0.385436545436531 -0.386867569931851 -0.387767135587319 -0.388136930899880 -0.387979268851981 -0.388136930899880 -0.387767135587319 -0.386867569931851 -0.385436545436531 -0.383473027186761 -0.380976664428188 -0.377947822349738 -0.374387614774533 -0.370297937442255 -0.365681501550298 -0.360541867207034 -0.354883476439671 -0.348711685391115 -0.342032795335057 -0.334854082136775 -0.327183823787860 -0.319031325647673 -0.310406943031367 -0.301322100794750 -0.291789309579666 -0.281822178399838 -0.271435423266127 -0.260644871572040 -0.249467461984528 -0.237921239611861 -0.226025346249130 -0.213800005532742 -0.201266502867902 -0.188447160027007 -0.175365304352277 -0.162045232532291 -0.142198139955061 -0.106894525254790 -0.071380322332786 -0.035725476623236 -0.000000237575433 +-0.000000377017142 0.039168680699820 0.078260823836723 0.117199310250733 0.155907725911334 0.194310147805328 0.213447248924431 0.227499199729451 0.241277142889373 0.254755903919332 0.267911329585899 0.280720322435080 0.293160869959711 0.305212068463318 0.316854141712342 0.328068454502067 0.338837521293728 0.349145010110529 0.358975741908903 0.368315685667545 0.377151949460848 0.385472767804981 0.393267485583705 0.400526538877362 0.407241433031790 0.413404718314331 0.419009963511663 0.424051727828558 0.428525531448051 0.432427825112022 0.435755959076455 0.438508151788136 0.440683458619241 0.442281740983071 0.443303636138428 0.443750527972013 0.443624519027420 0.443750527972013 0.443303636138428 0.442281740983072 0.440683458619242 0.438508151788136 0.435755959076454 0.432427825112021 0.428525531448050 0.424051727828557 0.419009963511665 0.413404718314330 0.407241433031789 0.400526538877363 0.393267485583704 0.385472767804982 0.377151949460849 0.368315685667543 0.358975741908904 0.349145010110529 0.338837521293729 0.328068454502068 0.316854141712339 0.305212068463315 0.293160869959712 0.280720322435082 0.267911329585900 0.254755903919333 0.241277142889372 0.227499199729449 0.213447248924433 0.194310147805331 0.155907725911336 0.117199310250736 0.078260823836716 0.039168680699823 -0.000000377017142 -0.039169442859772 -0.078261610311844 -0.117200137045479 -0.155908608723286 -0.194311101905743 -0.213448853606105 -0.227501598884719 -0.241280333001286 -0.254759879641715 -0.267916083717989 -0.280725845902462 -0.293167151801769 -0.305219095827504 -0.316861899855458 -0.328076926798729 -0.338846689252142 -0.349154853395708 -0.358986238373318 -0.368326811389228 -0.377163678788950 -0.385485073412619 -0.393280338528050 -0.400539908666733 -0.407255287699552 -0.413419024499347 -0.419024686544989 -0.424066831826023 -0.428540979408384 -0.432443579020086 -0.435771980011114 -0.438524400034345 -0.440699893783797 -0.442298322113545 -0.443320321844686 -0.443767276549800 -0.443641288583431 -0.443767276549800 -0.443320321844686 -0.442298322113546 -0.440699893783797 -0.438524400034345 -0.435771980011114 -0.432443579020085 -0.428540979408384 -0.424066831826023 -0.419024686544990 -0.413419024499347 -0.407255287699553 -0.400539908666733 -0.393280338528050 -0.385485073412619 -0.377163678788950 -0.368326811389228 -0.358986238373318 -0.349154853395708 -0.338846689252145 -0.328076926798729 -0.316861899855458 -0.305219095827504 -0.293167151801769 -0.280725845902463 -0.267916083717992 -0.254759879641715 -0.241280333001286 -0.227501598884718 -0.213448853606105 -0.194311101905743 -0.155908608723286 -0.117200137045479 -0.078261610311843 -0.039169442859771 -0.000000377017142 +-0.000000544740171 0.042403698937729 0.084724928807502 0.126880314454720 0.168787375882172 0.210364157523523 0.251529400865098 0.270196509628573 0.284869731662115 0.299231724587680 0.313256616101322 0.326919604823115 0.340196993079850 0.353066214429811 0.365505856011129 0.377495675827976 0.389016615120407 0.400050805993307 0.410581574508096 0.420593439466531 0.430072107139788 0.439004462217236 0.447378555268090 0.455183587025262 0.462409889814000 0.469048906458529 0.475093167007372 0.480536263622795 0.485372823981488 0.489598483532389 0.493209856953454 0.496204509142064 0.498580926064247 0.500338485775276 0.501477429909301 0.501998835918181 0.501904590320388 0.501998835918181 0.501477429909301 0.500338485775276 0.498580926064248 0.496204509142065 0.493209856953452 0.489598483532390 0.485372823981488 0.480536263622795 0.475093167007373 0.469048906458527 0.462409889813999 0.455183587025262 0.447378555268094 0.439004462217236 0.430072107139788 0.420593439466531 0.410581574508098 0.400050805993308 0.389016615120408 0.377495675827978 0.365505856011126 0.353066214429809 0.340196993079851 0.326919604823116 0.313256616101323 0.299231724587681 0.284869731662113 0.270196509628571 0.251529400865100 0.210364157523526 0.168787375882175 0.126880314454724 0.084724928807495 0.042403698937732 -0.000000544740171 -0.042404796339626 -0.084726049913787 -0.126881474867829 -0.168788590905370 -0.210365442044462 -0.251530769242528 -0.270198630971085 -0.284872712463741 -0.299235558243945 -0.313261294034174 -0.326925116465317 -0.340203325866016 -0.353073353794400 -0.365513785393569 -0.377504376685084 -0.389026066946207 -0.400060986346392 -0.410592459046473 -0.420605001990029 -0.430084319639927 -0.439017294934485 -0.447391976756363 -0.455197564223478 -0.462424388124487 -0.469063889831981 -0.475108598034084 -0.480552103629782 -0.485389033135192 -0.489615020946460 -0.493226680801193 -0.496221576773101 -0.498598194124866 -0.500355910331924 -0.501494966574683 -0.502016439979454 -0.501922216868765 -0.502016439979454 -0.501494966574683 -0.500355910331924 -0.498598194124865 -0.496221576773101 -0.493226680801193 -0.489615020946460 -0.485389033135193 -0.480552103629782 -0.475108598034083 -0.469063889831982 -0.462424388124488 -0.455197564223479 -0.447391976756360 -0.439017294934484 -0.430084319639927 -0.420605001990028 -0.410592459046473 -0.400060986346392 -0.389026066946210 -0.377504376685083 -0.365513785393569 -0.353073353794399 -0.340203325866015 -0.326925116465317 -0.313261294034177 -0.299235558243945 -0.284872712463741 -0.270198630971085 -0.251530769242528 -0.210365442044462 -0.168788590905370 -0.126881474867829 -0.084726049913787 -0.042404796339625 -0.000000544740171 +-0.000000739292110 0.045404318084692 0.090720716430923 0.135859990115007 0.180734044381846 0.225255339557949 0.269337073817853 0.312893364040940 0.331741514633829 0.346916759911564 0.361742664897091 0.376192848090639 0.390242045894767 0.403866143633361 0.417042201448747 0.429748475179922 0.441964432355605 0.453670763464900 0.464849388695875 0.475483460357644 0.485557361224821 0.495056699064229 0.503968297622114 0.512280184366176 0.519981575289913 0.527062857097267 0.533515567093360 0.539332371111877 0.544507039811660 0.549034423674396 0.552910427031382 0.556131981441208 0.558697018730877 0.560604444001401 0.561854108884587 0.562446785321338 0.562384140113121 0.562446785321338 0.561854108884587 0.560604444001402 0.558697018730876 0.556131981441206 0.552910427031383 0.549034423674398 0.544507039811658 0.539332371111878 0.533515567093362 0.527062857097266 0.519981575289911 0.512280184366176 0.503968297622115 0.495056699064231 0.485557361224822 0.475483460357641 0.464849388695877 0.453670763464899 0.441964432355605 0.429748475179923 0.417042201448743 0.403866143633356 0.390242045894767 0.376192848090640 0.361742664897092 0.346916759911566 0.331741514633827 0.312893364040934 0.269337073817858 0.225255339557953 0.180734044381849 0.135859990115011 0.090720716430917 0.045404318084695 -0.000000739292110 -0.045405804359208 -0.090722225717813 -0.135861537561213 -0.180735644843875 -0.225257007488830 -0.269338823157152 -0.312895208108647 -0.331744181649921 -0.346920342115480 -0.361747152398505 -0.376198228905041 -0.390248305938044 -0.403873266723430 -0.417050169314427 -0.429757267477157 -0.441974026691182 -0.453681135427716 -0.464860511895785 -0.475495306471867 -0.485569900051864 -0.495069898585187 -0.503982124069251 -0.512294602298564 -0.519996547675901 -0.527078345403530 -0.533531531380190 -0.539348770134368 -0.544523831126462 -0.549051563751515 -0.552927871370677 -0.556149684693051 -0.558714934820483 -0.560622526256308 -0.561872310164755 -0.562465058151246 -0.562402436815414 -0.562465058151246 -0.561872310164755 -0.560622526256308 -0.558714934820483 -0.556149684693051 -0.552927871370676 -0.549051563751515 -0.544523831126461 -0.539348770134368 -0.533531531380190 -0.527078345403531 -0.519996547675902 -0.512294602298563 -0.503982124069247 -0.495069898585187 -0.485569900051863 -0.475495306471866 -0.464860511895785 -0.453681135427717 -0.441974026691182 -0.429757267477157 -0.417050169314427 -0.403873266723430 -0.390248305938044 -0.376198228905041 -0.361747152398510 -0.346920342115480 -0.331744181649921 -0.312895208108647 -0.269338823157152 -0.225257007488830 -0.180735644843875 -0.135861537561213 -0.090722225717813 -0.045405804359208 -0.000000739292110 +-0.000000959018771 0.048146427269361 0.096200008699775 0.144066182787106 0.191651736371151 0.238864039014139 0.285611234919405 0.331802432887316 0.377347893831980 0.397478662578965 0.413030449043704 0.428194462614481 0.442944006017286 0.457253543699197 0.471098731097892 0.484456438954365 0.497304772790161 0.509623087698954 0.521391998628915 0.532593386357092 0.543210399379855 0.553227451963873 0.562630218620310 0.571405625280610 0.579541837465379 0.587028245748293 0.593855448824812 0.600015234500481 0.605500558915917 0.610305524325034 0.614425355740077 0.617856376751050 0.620595984818785 0.622642626329954 0.623995771689118 0.624655890707225 0.624624428528453 0.624655890707225 0.623995771689118 0.622642626329954 0.620595984818784 0.617856376751050 0.614425355740076 0.610305524325033 0.605500558915917 0.600015234500482 0.593855448824813 0.587028245748290 0.579541837465379 0.571405625280612 0.562630218620311 0.553227451963874 0.543210399379856 0.532593386357091 0.521391998628915 0.509623087698955 0.497304772790161 0.484456438954367 0.471098731097892 0.457253543699194 0.442944006017287 0.428194462614483 0.413030449043705 0.397478662578966 0.377347893831974 0.331802432887310 0.285611234919409 0.238864039014142 0.191651736371154 0.144066182787110 0.096200008699768 0.048146427269364 -0.000000959018771 -0.048148352740552 -0.096201956415355 -0.144068167388524 -0.191653772219111 -0.238866140079331 -0.285613414676198 -0.331804704211176 -0.377350268901492 -0.397481884143749 -0.413034631597423 -0.428199592842067 -0.442950068413912 -0.457260520575456 -0.471106602592263 -0.484465183053085 -0.497314365354616 -0.509633502500668 -0.521403207392091 -0.532605358808744 -0.543223103307437 -0.553240853280293 -0.562644281436181 -0.571420311983554 -0.579557108806130 -0.587044060933338 -0.593871765615270 -0.600032009316812 -0.605517746948177 -0.610323079648150 -0.614443231433783 -0.617874525023947 -0.620614357136059 -0.622661173544205 -0.624014444173782 -0.624674638492036 -0.624643201436326 -0.624674638492036 -0.624014444173782 -0.622661173544205 -0.620614357136059 -0.617874525023947 -0.614443231433782 -0.610323079648151 -0.605517746948177 -0.600032009316812 -0.593871765615270 -0.587044060933338 -0.579557108806131 -0.571420311983553 -0.562644281436179 -0.553240853280292 -0.543223103307438 -0.532605358808744 -0.521403207392092 -0.509633502500667 -0.497314365354619 -0.484465183053085 -0.471106602592263 -0.457260520575456 -0.442950068413912 -0.428199592842067 -0.413034631597426 -0.397481884143749 -0.377350268901492 -0.331804704211176 -0.285613414676198 -0.238866140079331 -0.191653772219111 -0.144068167388523 -0.096201956415355 -0.048148352740552 -0.000000959018771 +-0.000001202077103 0.050607720473448 0.101118233632854 0.151432138250234 0.201451640787177 0.251079554832661 0.300219501106841 0.348776105458632 0.396655194369647 0.443763987486107 0.466758261461664 0.482556664052076 0.497929128948001 0.512848839090476 0.527290179363949 0.541228764157506 0.554641460158686 0.567506404516204 0.579803018534018 0.591512017083086 0.602615413939486 0.613096523277450 0.622939957563614 0.632131622114457 0.640658706591356 0.648509673718596 0.655674245517121 0.662143387352270 0.667909290095930 0.672965350704111 0.677306151507338 0.680927438507127 0.683826098962966 0.686000138545124 0.687448658315483 0.688171831784412 0.688170882274914 0.688171831784414 0.687448658315484 0.686000138545120 0.683826098962964 0.680927438507127 0.677306151507340 0.672965350704112 0.667909290095932 0.662143387352271 0.655674245517123 0.648509673718596 0.640658706591353 0.632131622114458 0.622939957563615 0.613096523277452 0.602615413939487 0.591512017083083 0.579803018534017 0.567506404516205 0.554641460158686 0.541228764157507 0.527290179363948 0.512848839090474 0.497929128948002 0.482556664052078 0.466758261461666 0.443763987486111 0.396655194369641 0.348776105458625 0.300219501106844 0.251079554832665 0.201451640787181 0.151432138250238 0.101118233632846 0.050607720473451 -0.000001202077103 -0.050610131781224 -0.101120666346909 -0.151434606460369 -0.201454158313025 -0.251082135118531 -0.300222157119424 -0.348778849588281 -0.396658038336092 -0.443766942249272 -0.466762025137244 -0.482561424084812 -0.497934868521657 -0.512855539129518 -0.527297818549435 -0.541237318950432 -0.554650904830805 -0.567516711188457 -0.579814157222505 -0.591523955752587 -0.602628118564438 -0.613109957910270 -0.622954084410235 -0.632146401616810 -0.640674097516667 -0.648525633255093 -0.655690729375986 -0.662160349875307 -0.667926684368775 -0.672983128674353 -0.677324264107319 -0.680945835780725 -0.683844730196104 -0.686018952399267 -0.687467602963769 -0.688190855049685 -0.688189931769308 -0.688190855049685 -0.687467602963768 -0.686018952399267 -0.683844730196103 -0.680945835780725 -0.677324264107319 -0.672983128674353 -0.667926684368775 -0.662160349875307 -0.655690729375987 -0.648525633255093 -0.640674097516666 -0.632146401616810 -0.622954084410231 -0.613109957910271 -0.602628118564437 -0.591523955752587 -0.579814157222505 -0.567516711188457 -0.554650904830808 -0.541237318950432 -0.527297818549436 -0.512855539129519 -0.497934868521657 -0.482561424084812 -0.466762025137248 -0.443766942249272 -0.396658038336093 -0.348778849588281 -0.300222157119424 -0.251082135118531 -0.201454158313025 -0.151434606460369 -0.101120666346909 -0.050610131781224 -0.000001202077103 +-0.000001466449549 0.052767869029237 0.105434769960253 0.157897018732798 0.210052817339052 0.261800995864616 0.313041219443028 0.363674193170684 0.413601864486273 0.462727622527726 0.510956493990503 0.538892219142079 0.554804740435726 0.570254029016061 0.585213344335033 0.599657184001593 0.613561309696671 0.626902768529416 0.639659909982572 0.651812398618413 0.663341222737863 0.674228699205106 0.684458474667245 0.694015523413447 0.702886142131009 0.711057941825871 0.718519837182897 0.725262033646662 0.731276012506393 0.736554514268714 0.741091520599687 0.744882235113550 0.747923063277646 0.750211591694450 0.751746567009880 0.752527874683688 0.752556517841430 0.752527874683687 0.751746567009879 0.750211591694448 0.747923063277645 0.744882235113548 0.741091520599684 0.736554514268713 0.731276012506394 0.725262033646659 0.718519837182899 0.711057941825872 0.702886142131007 0.694015523413448 0.684458474667245 0.674228699205110 0.663341222737864 0.651812398618412 0.639659909982574 0.626902768529417 0.613561309696673 0.599657184001594 0.585213344335031 0.570254029016059 0.554804740435726 0.538892219142080 0.510956493990506 0.462727622527731 0.413601864486267 0.363674193170676 0.313041219443032 0.261800995864622 0.210052817339055 0.157897018732802 0.105434769960245 0.052767869029241 -0.000001466449549 -0.052770808780523 -0.105437730215964 -0.157900012989129 -0.210055858833408 -0.261804097474897 -0.313044393589629 -0.363677451721948 -0.413605218668180 -0.462731082838448 -0.510960070120482 -0.538896490432501 -0.554810032687203 -0.570260321899245 -0.585220615218202 -0.599665407977209 -0.613570459615413 -0.626912815041744 -0.639670821587804 -0.651824141721269 -0.663353761712438 -0.674241996466077 -0.684472490748211 -0.694030217052169 -0.702901470361357 -0.711073860076107 -0.718536299380095 -0.725278992326829 -0.731293418929956 -0.736572318540957 -0.741109671795685 -0.744900681407133 -0.747941752073926 -0.750230469765381 -0.751765580632327 -0.752546969779463 -0.752575640118744 -0.752546969779463 -0.751765580632327 -0.750230469765381 -0.747941752073925 -0.744900681407134 -0.741109671795685 -0.736572318540956 -0.731293418929956 -0.725278992326828 -0.718536299380095 -0.711073860076108 -0.702901470361357 -0.694030217052169 -0.684472490748210 -0.674241996466077 -0.663353761712437 -0.651824141721269 -0.639670821587803 -0.626912815041743 -0.613570459615415 -0.599665407977210 -0.585220615218203 -0.570260321899245 -0.554810032687203 -0.538896490432501 -0.510960070120491 -0.462731082838449 -0.413605218668180 -0.363677451721948 -0.313044393589629 -0.261804097474896 -0.210055858833408 -0.157900012989129 -0.105437730215964 -0.052770808780523 -0.000001466449549 +-0.000001749959716 0.054608679372505 0.109113262349261 0.163406375020537 0.217382824613528 0.270938063797404 0.323968403394924 0.376371223031555 0.428045179220160 0.478890410388190 0.528808738364968 0.577703865858604 0.613162175862028 0.629055668652875 0.644450109852098 0.659319029747748 0.673637228597698 0.687380800974767 0.700527155775935 0.713055032051633 0.724944510831708 0.736177023143687 0.746735354435456 0.756603645629474 0.765767391047718 0.774213433456976 0.781929956491715 0.788906474717215 0.795133821598744 0.800604135643115 0.805310844977260 0.809248650624480 0.812413508732604 0.814802612000035 0.816414370534886 0.817248392369980 0.817305463842218 0.817248392369980 0.816414370534889 0.814802612000036 0.812413508732604 0.809248650624478 0.805310844977260 0.800604135643114 0.795133821598745 0.788906474717210 0.781929956491716 0.774213433456975 0.765767391047717 0.756603645629478 0.746735354435458 0.736177023143688 0.724944510831711 0.713055032051632 0.700527155775936 0.687380800974767 0.673637228597699 0.659319029747748 0.644450109852097 0.629055668652872 0.613162175862029 0.577703865858608 0.528808738364970 0.478890410388197 0.428045179220150 0.376371223031548 0.323968403394928 0.270938063797408 0.217382824613533 0.163406375020542 0.109113262349253 0.054608679372509 -0.000001749959716 -0.054612185823734 -0.109116788346180 -0.163409933428295 -0.217386428050582 -0.270941724539508 -0.323972133281739 -0.376375033376487 -0.428049080724287 -0.478894413058824 -0.528812851439441 -0.577708097734052 -0.613166897917123 -0.629061425356325 -0.644456877414691 -0.659326782061271 -0.673645937271883 -0.687390435381685 -0.700537683101832 -0.713066417356129 -0.724956717114332 -0.736190011417525 -0.746749083807861 -0.756618073389544 -0.765782472760371 -0.774229123063277 -0.781946206415160 -0.788923235975724 -0.795151043921838 -0.800621767593966 -0.805328834079173 -0.809266943491303 -0.812432051202653 -0.814821349272973 -0.816433247311064 -0.817267352991695 -0.817324452436415 -0.817267352991695 -0.816433247311064 -0.814821349272972 -0.812432051202651 -0.809266943491303 -0.805328834079172 -0.800621767593966 -0.795151043921838 -0.788923235975724 -0.781946206415159 -0.774229123063278 -0.765782472760371 -0.756618073389544 -0.746749083807857 -0.736190011417524 -0.724956717114332 -0.713066417356130 -0.700537683101833 -0.687390435381685 -0.673645937271886 -0.659326782061272 -0.644456877414691 -0.629061425356325 -0.613166897917123 -0.577708097734052 -0.528812851439450 -0.478894413058824 -0.428049080724286 -0.376375033376487 -0.323972133281739 -0.270941724539508 -0.217386428050582 -0.163409933428295 -0.109116788346180 -0.054612185823734 -0.000001749959716 +-0.000002050289254 0.056114234844474 0.112121904760243 0.167912570836964 0.223378284687122 0.278411756943517 0.332906574483771 0.386757415579993 0.439860262468382 0.492112610842123 0.543413675781396 0.593664593646132 0.642768619470954 0.688827971084931 0.704570584387739 0.719780405579031 0.734431425858325 0.748498933430701 0.761959536366241 0.774791181355583 0.786973168521997 0.798486162468501 0.809312199754842 0.819434693013317 0.828838431924472 0.837509581283813 0.845435676398165 0.852605616055883 0.859009653318559 0.864639384382463 0.869487735757020 0.873548950003995 0.876818570275547 0.879293423881752 0.880971605108320 0.881852457494196 0.881936555765009 0.881852457494197 0.880971605108320 0.879293423881752 0.876818570275550 0.873548950003994 0.869487735757021 0.864639384382462 0.859009653318559 0.852605616055883 0.845435676398163 0.837509581283811 0.828838431924471 0.819434693013318 0.809312199754845 0.798486162468503 0.786973168521995 0.774791181355579 0.761959536366242 0.748498933430703 0.734431425858326 0.719780405579031 0.704570584387737 0.688827971084928 0.642768619470957 0.593664593646135 0.543413675781400 0.492112610842127 0.439860262468373 0.386757415579985 0.332906574483776 0.278411756943522 0.223378284687125 0.167912570836967 0.112121904760234 0.056114234844478 -0.000002050289254 -0.056118341617818 -0.112126030070957 -0.167916726886512 -0.223382483443002 -0.278416010048208 -0.332910893166144 -0.386761810569825 -0.439864743914704 -0.492117188235989 -0.543418357883608 -0.593669388420634 -0.642773534024175 -0.688833064863097 -0.704576715613777 -0.719787547121830 -0.734439548277071 -0.748508005021778 -0.761969523217441 -0.774802047407576 -0.786984875636972 -0.798498670505841 -0.809325466653680 -0.819448674881739 -0.828853083135180 -0.837524854575910 -0.845451522984788 -0.852621985737361 -0.859026494600696 -0.864656644599541 -0.869505361199172 -0.873566886048361 -0.876836761520912 -0.879311814285996 -0.880990138128384 -0.881871076227795 -0.881955203093821 -0.881871076227795 -0.880990138128383 -0.879311814285997 -0.876836761520910 -0.873566886048361 -0.869505361199171 -0.864656644599542 -0.859026494600696 -0.852621985737361 -0.845451522984790 -0.837524854575910 -0.828853083135180 -0.819448674881738 -0.809325466653674 -0.798498670505841 -0.786984875636973 -0.774802047407576 -0.761969523217441 -0.748508005021777 -0.734439548277072 -0.719787547121830 -0.704576715613777 -0.688833064863097 -0.642773534024174 -0.593669388420634 -0.543418357883619 -0.492117188235988 -0.439864743914704 -0.386761810569825 -0.332910893166144 -0.278416010048208 -0.223382483443002 -0.167916726886512 -0.112126030070957 -0.056118341617818 -0.000002050289254 +-0.000002364995806 0.057271020457243 0.114433689763288 0.171375156247312 0.227985379922446 0.284154989504634 0.339775502864056 0.394739545400217 0.448941065834684 0.502275548923990 0.554640224605303 0.605934273099016 0.656059025505966 0.704918159451162 0.752417889342181 0.780599452420911 0.795498707159267 0.809808732812518 0.823505483949755 0.836566255498784 0.848969700338053 0.860695843182349 0.871726090939482 0.882043239728769 0.891631478763928 0.900476391312673 0.908564952952918 0.915885527351052 0.922427859791142 0.928183068685206 0.933143635293857 0.937303391883854 0.940657508544106 0.943202478874930 0.944936104756651 0.945857480393365 0.945966975815402 0.945857480393366 0.944936104756649 0.943202478874931 0.940657508544106 0.937303391883854 0.933143635293856 0.928183068685205 0.922427859791144 0.915885527351053 0.908564952952918 0.900476391312672 0.891631478763925 0.882043239728770 0.871726090939483 0.860695843182349 0.848969700338053 0.836566255498783 0.823505483949755 0.809808732812520 0.795498707159268 0.780599452420911 0.752417889342175 0.704918159451153 0.656059025505970 0.605934273099019 0.554640224605307 0.502275548923994 0.448941065834674 0.394739545400208 0.339775502864062 0.284154989504640 0.227985379922451 0.171375156247316 0.114433689763279 0.057271020457247 -0.000002364995806 -0.057275756292722 -0.114438443085907 -0.171379938567265 -0.227990202529214 -0.284159863381091 -0.339780438602906 -0.394744553123343 -0.448946155116126 -0.502280728717093 -0.554645503174523 -0.605939657957104 -0.656064523356737 -0.704923776138483 -0.752423629805510 -0.780605846880235 -0.795506100894719 -0.809817093256631 -0.823514776315841 -0.836576442844264 -0.848980743634766 -0.860707701393745 -0.871738721104545 -0.882056597052416 -0.891645516713702 -0.900491061721398 -0.908580206127064 -0.915901312184469 -0.922444123883778 -0.928199758466426 -0.933160696149983 -0.937320768289439 -0.940675144196510 -0.943220316831706 -0.944954087575323 -0.945875550272938 -0.945985074739265 -0.945875550272938 -0.944954087575323 -0.943220316831707 -0.940675144196510 -0.937320768289438 -0.933160696149983 -0.928199758466424 -0.922444123883778 -0.915901312184470 -0.908580206127064 -0.900491061721399 -0.891645516713702 -0.882056597052418 -0.871738721104544 -0.860707701393745 -0.848980743634764 -0.836576442844263 -0.823514776315840 -0.809817093256631 -0.795506100894721 -0.780605846880235 -0.752423629805510 -0.704923776138483 -0.656064523356737 -0.605939657957104 -0.554645503174535 -0.502280728717094 -0.448946155116126 -0.394744553123343 -0.339780438602906 -0.284159863381091 -0.227990202529214 -0.171379938567265 -0.114438443085907 -0.057275756292722 -0.000002364995806 +-0.000002691531891 0.058068029666241 0.116026621904385 0.173761187223480 0.231160278140336 0.288113121563641 0.344509841153917 0.400241677616466 0.455201206423245 0.509282552467885 0.562381601167880 0.614396205539195 0.665226388781703 0.714774541927621 0.762945616121063 0.809647309113243 0.854790245576134 0.870858282405027 0.884710488771223 0.897923239112491 0.910474679100304 0.922344326350152 0.933513083458775 0.943963247741783 0.953678517855622 0.962643997497409 0.970846196383477 0.978273028713303 0.984913809328689 0.990759247779933 0.995801440510288 1.000033861367462 1.003451350647190 1.006050102867471 1.007827653464649 1.008782864592906 1.008915910198272 1.008782864592906 1.007827653464648 1.006050102867472 1.003451350647191 1.000033861367460 0.995801440510287 0.990759247779933 0.984913809328686 0.978273028713304 0.970846196383477 0.962643997497405 0.953678517855626 0.943963247741785 0.933513083458778 0.922344326350157 0.910474679100305 0.897923239112488 0.884710488771226 0.870858282405029 0.854790245576138 0.809647309113249 0.762945616121056 0.714774541927613 0.665226388781706 0.614396205539200 0.562381601167883 0.509282552467889 0.455201206423238 0.400241677616457 0.344509841153922 0.288113121563645 0.231160278140341 0.173761187223485 0.116026621904376 0.058068029666245 -0.000002691531891 -0.058073418211589 -0.116032026852724 -0.173766619371410 -0.231165748077422 -0.288118639591852 -0.344515417209245 -0.400247321193268 -0.455206926502000 -0.509288357446857 -0.562387498799158 -0.614402202869760 -0.665232492099751 -0.714780756714723 -0.762951947010446 -0.809653759854517 -0.854796819006765 -0.870865786880159 -0.884718935998018 -0.897932591508644 -0.910484897002229 -0.922355368091174 -0.933524905453909 -0.943975804578777 -0.953691762392126 -0.962657880963901 -0.970860668491772 -0.978288037770195 -0.984929302354483 -0.990775170631416 -0.995817738007726 -1.000050477425299 -1.003468228407899 -1.006067184838115 -1.007844881655738 -1.008800180659003 -1.008933255579854 -1.008800180659003 -1.007844881655737 -1.006067184838115 -1.003468228407899 -1.000050477425299 -0.995817738007725 -0.990775170631414 -0.984929302354483 -0.978288037770196 -0.970860668491772 -0.962657880963901 -0.953691762392126 -0.943975804578778 -0.933524905453906 -0.922355368091175 -0.910484897002229 -0.897932591508644 -0.884718935998018 -0.870865786880159 -0.854796819006775 -0.809653759854517 -0.762951947010446 -0.714780756714724 -0.665232492099751 -0.614402202869760 -0.562387498799170 -0.509288357446857 -0.455206926502000 -0.400247321193268 -0.344515417209245 -0.288118639591852 -0.231165748077422 -0.173766619371410 -0.116032026852724 -0.058073418211589 -0.000002691531891 +-0.000003027264586 0.058496852329660 0.116883893482375 0.175045488915583 0.232869482902250 0.290244395734133 0.347059646648970 0.403205774710769 0.458574657143894 0.513059724629369 0.566556173081528 0.618961171433868 0.670174064975741 0.720096573794812 0.768632985895687 0.815690344580946 0.861178629698644 0.905010932378224 0.945120531773240 0.958406145659449 0.971030218827106 0.982971899912301 0.994211717776755 1.004731593757633 1.014514850837168 1.023546219906770 1.031811843307600 1.039299275835161 1.045997483399101 1.051896839531259 1.056989119935030 1.061267495267423 1.064726522341515 1.067362133932091 1.069171627360204 1.070153652024170 1.070308196034948 1.070153652024170 1.069171627360203 1.067362133932091 1.064726522341515 1.061267495267422 1.056989119935031 1.051896839531259 1.045997483399103 1.039299275835162 1.031811843307602 1.023546219906768 1.014514850837167 1.004731593757633 0.994211717776761 0.982971899912302 0.971030218827106 0.958406145659444 0.945120531773240 0.905010932378230 0.861178629698647 0.815690344580955 0.768632985895681 0.720096573794806 0.670174064975746 0.618961171433874 0.566556173081533 0.513059724629372 0.458574657143887 0.403205774710762 0.347059646648973 0.290244395734139 0.232869482902254 0.175045488915589 0.116883893482365 0.058496852329665 -0.000003027264586 -0.058502911969520 -0.116889968415409 -0.175051589207903 -0.232875618426937 -0.290250576096129 -0.347065881112006 -0.403212072126823 -0.458581025885827 -0.513066172527229 -0.566562707362897 -0.618967798668936 -0.670180791027248 -0.720103403773452 -0.768639924121204 -0.815697394549267 -0.861185794055227 -0.905018212898020 -0.945127987712212 -0.958414511265018 -0.971039454061231 -0.982981962750076 -0.994222564291477 -1.004743178211958 -1.014527125780164 -1.023559136276566 -1.031825350539344 -1.039313321974030 -1.046012015217921 -1.051911802652477 -1.057004458956545 -1.061283153891946 -1.064742443509005 -1.067378259954807 -1.069187900059885 -1.070170012870999 -1.070324586287672 -1.070170012870999 -1.069187900059885 -1.067378259954807 -1.064742443509005 -1.061283153891946 -1.057004458956544 -1.051911802652477 -1.046012015217920 -1.039313321974030 -1.031825350539346 -1.023559136276566 -1.014527125780166 -1.004743178211959 -0.994222564291473 -0.982981962750075 -0.971039454061230 -0.958414511265018 -0.945127987712211 -0.905018212898020 -0.861185794055239 -0.815697394549267 -0.768639924121203 -0.720103403773452 -0.670180791027247 -0.618967798668936 -0.566562707362907 -0.513066172527228 -0.458581025885828 -0.403212072126823 -0.347065881112006 -0.290250576096129 -0.232875618426936 -0.175051589207903 -0.116889968415409 -0.058502911969519 -0.000003027264586 +-0.000003369495844 0.058551743177451 0.116994021382961 0.175210860602567 0.233090106205326 0.290520277104591 0.347390787897845 0.403592168990628 0.459016284212424 0.513556545439935 0.567108123752503 0.619568156654606 0.670835950912904 0.720813180567923 0.769404079695419 0.816515629507740 0.862057739402684 0.905943421584667 0.948088958902145 0.988414065564749 1.026842040423520 1.042124359344057 1.053366514630626 1.063891578401732 1.073682617020172 1.082724099399520 1.091001902924499 1.098503316829878 1.105217043210386 1.111133195836227 1.116243296949016 1.120540272211941 1.124018443985030 1.126673523091902 1.128502599238635 1.129504130238079 1.129677930184239 1.129504130238079 1.128502599238634 1.126673523091903 1.124018443985030 1.120540272211941 1.116243296949011 1.111133195836226 1.105217043210386 1.098503316829879 1.091001902924500 1.082724099399519 1.073682617020170 1.063891578401734 1.053366514630624 1.042124359344058 1.026842040423526 0.988414065564742 0.948088958902146 0.905943421584667 0.862057739402687 0.816515629507740 0.769404079695415 0.720813180567916 0.670835950912903 0.619568156654609 0.567108123752508 0.513556545439939 0.459016284212414 0.403592168990621 0.347390787897850 0.290520277104596 0.233090106205330 0.175210860602574 0.116994021382953 0.058551743177455 -0.000003369495844 -0.058558486903190 -0.117000779274840 -0.175217641984870 -0.233096920223533 -0.290527132655806 -0.347397693563104 -0.403599132969556 -0.459023314260844 -0.513563648810861 -0.567115307140872 -0.619575426146413 -0.670843311938842 -0.720820637862044 -0.769411637259123 -0.816523290579318 -0.862065506432646 -0.905951296217142 -0.948096941962336 -0.988422157052651 -1.026850239513954 -1.042133286295547 -1.053376223754203 -1.063902023930960 -1.073693751500708 -1.082735873790867 -1.091014266706848 -1.098516218115782 -1.105230428860905 -1.111147011581174 -1.116257487510957 -1.120554781433577 -1.124033214959460 -1.126688498295444 -1.128517720665719 -1.129519339537768 -1.129693168797913 -1.129519339537769 -1.128517720665719 -1.126688498295444 -1.124033214959460 -1.120554781433579 -1.116257487510957 -1.111147011581175 -1.105230428860905 -1.098516218115781 -1.091014266706849 -1.082735873790868 -1.073693751500708 -1.063902023930960 -1.053376223754199 -1.042133286295547 -1.026850239513953 -0.988422157052650 -0.948096941962337 -0.905951296217142 -0.862065506432652 -0.816523290579318 -0.769411637259123 -0.720820637862044 -0.670843311938842 -0.619575426146413 -0.567115307140885 -0.513563648810861 -0.459023314260845 -0.403599132969557 -0.347397693563103 -0.290527132655806 -0.233096920223533 -0.175217641984870 -0.117000779274840 -0.058558486903190 -0.000003369495844 +-0.000003715483297 0.058229670260294 0.116350943911433 0.174248220736673 0.231810061480905 0.288925693847864 0.345485232494717 0.401379897052304 0.456502227688749 0.510746297741401 0.564007922951031 0.616184866841916 0.667177041803426 0.716886705440907 0.765218651777848 0.812080396906125 0.857382358697408 0.901038030205623 0.942964146408593 0.983080843955662 1.021311813607687 1.057584445076144 1.091829963988656 1.120996390966651 1.130734268201239 1.139729381931724 1.147967450218688 1.155435593701237 1.162122338786602 1.168017618619163 1.173112771985776 1.177400540313771 1.180875062915550 1.183531870630355 1.185367878008301 1.186381374176227 1.186572012516469 1.186381374176228 1.185367878008301 1.183531870630355 1.180875062915550 1.177400540313768 1.173112771985777 1.168017618619166 1.162122338786600 1.155435593701237 1.147967450218690 1.139729381931725 1.130734268201240 1.120996390966650 1.091829963988657 1.057584445076151 1.021311813607689 0.983080843955656 0.942964146408595 0.901038030205626 0.857382358697411 0.812080396906128 0.765218651777845 0.716886705440901 0.667177041803430 0.616184866841919 0.564007922951039 0.510746297741406 0.456502227688738 0.401379897052298 0.345485232494720 0.288925693847867 0.231810061480910 0.174248220736677 0.116350943911425 0.058229670260298 -0.000003715483297 -0.058237105581416 -0.116358392263016 -0.174255690695486 -0.231817561459250 -0.288933232029571 -0.345492816772895 -0.401387534969228 -0.456509926378469 -0.510754063875463 -0.564015762687651 -0.616192785779182 -0.667185044936659 -0.716894797124642 -0.765226835692688 -0.812088676030761 -0.857390735285900 -0.901046505770281 -0.942972721708474 -0.983089518990756 -1.021320587618967 -1.057593316551279 -1.091838930673580 -1.121005537652814 -1.130744097964306 -1.139739846067759 -1.147978498575927 -1.155447174789819 -1.162134399892561 -1.168030105922325 -1.173125630681280 -1.177413714736703 -1.180888496668481 -1.183545506713178 -1.185381658950095 -1.186395242168679 -1.186585909548383 -1.186395242168679 -1.185381658950095 -1.183545506713178 -1.180888496668481 -1.177413714736704 -1.173125630681279 -1.168030105922325 -1.162134399892561 -1.155447174789819 -1.147978498575927 -1.139739846067759 -1.130744097964309 -1.121005537652813 -1.091838930673576 -1.057593316551279 -1.021320587618966 -0.983089518990755 -0.942972721708474 -0.901046505770281 -0.857390735285906 -0.812088676030762 -0.765226835692688 -0.716894797124642 -0.667185044936659 -0.616192785779183 -0.564015762687667 -0.510754063875463 -0.456509926378468 -0.401387534969229 -0.345492816772895 -0.288933232029571 -0.231817561459250 -0.174255690695485 -0.116358392263017 -0.058237105581416 -0.000003715483297 +-0.000004062461393 0.057530343000838 0.114954076869152 0.172156690950971 0.229028175391865 0.285459176620215 0.341341213845183 0.396566893632227 0.451030122086272 0.504626314179676 0.557252599770437 0.608808025865463 0.659193754695275 0.708313257177728 0.756072501362231 0.802380135459898 0.847147665080744 0.890289624314615 0.931723740310835 0.971371091028242 1.009156255847303 1.045007458754150 1.078856703827150 1.110639902777138 1.140296994311929 1.167772055119436 1.193013402282002 1.209661361808808 1.216278333840513 1.222114789675627 1.227161956888586 1.231412455561261 1.234860295377528 1.237500871037970 1.239330956125862 1.240348695549496 1.240553596678657 1.240348695549496 1.239330956125863 1.237500871037966 1.234860295377528 1.231412455561260 1.227161956888584 1.222114789675629 1.216278333840513 1.209661361808810 1.193013402282004 1.167772055119424 1.140296994311920 1.110639902777139 1.078856703827152 1.045007458754151 1.009156255847304 0.971371091028239 0.931723740310837 0.890289624314621 0.847147665080748 0.802380135459900 0.756072501362220 0.708313257177722 0.659193754695281 0.608808025865467 0.557252599770440 0.504626314179683 0.451030122086262 0.396566893632217 0.341341213845188 0.285459176620218 0.229028175391868 0.172156690950976 0.114954076869143 0.057530343000843 -0.000004062461393 -0.057538471898632 -0.114962217661726 -0.172164851467583 -0.229036363311632 -0.285467399413701 -0.341349478717570 -0.396575207468431 -0.451038491398576 -0.504634745058164 -0.557261097836590 -0.608816596229477 -0.659202401917096 -0.708321985232362 -0.756081313609498 -0.802389034618889 -0.847156653209050 -0.890298702792757 -0.931732909831682 -0.971380351591814 -1.009165606760718 -1.045016898636885 -1.078866230621599 -1.110649513764209 -1.140306686131821 -1.167781823797132 -1.193023243257565 -1.209671455284213 -1.216288899970939 -1.222125775432015 -1.227173308284765 -1.231424117775331 -1.234872212875858 -1.237512987701467 -1.239343215378124 -1.240361040486391 -1.240565970198994 -1.240361040486390 -1.239343215378125 -1.237512987701468 -1.234872212875858 -1.231424117775330 -1.227173308284766 -1.222125775432015 -1.216288899970940 -1.209671455284212 -1.193023243257565 -1.167781823797135 -1.140306686131822 -1.110649513764210 -1.078866230621588 -1.045016898636886 -1.009165606760718 -0.971380351591814 -0.931732909831682 -0.890298702792757 -0.847156653209057 -0.802389034618889 -0.756081313609498 -0.708321985232362 -0.659202401917096 -0.608816596229477 -0.557261097836602 -0.504634745058164 -0.451038491398577 -0.396575207468431 -0.341349478717570 -0.285467399413701 -0.229036363311632 -0.172164851467583 -0.114962217661726 -0.057538471898632 -0.000004062461393 +-0.000004407662696 0.056456219624246 0.112808328428109 0.168943618362258 0.224754217540220 0.280132895641955 0.334973275580136 0.389170043305900 0.442619155299178 0.495218043295092 0.546865815806070 0.597463456008119 0.646914015570348 0.695122804017936 0.741997573231598 0.787448696699753 0.831389343154716 0.873735644238893 0.914406855864316 0.953325512944652 0.990417577197870 1.025612577735397 1.058843744172568 1.090048132015287 1.119166740096896 1.146144619859994 1.170930976298297 1.193479260394071 1.213747252907625 1.231697139396101 1.247295576359299 1.260513748431229 1.271327416556151 1.279716957108474 1.285667391934877 1.289168409317993 1.290767446930433 1.289168409317993 1.285667391934877 1.279716957108474 1.271327416556151 1.260513748431227 1.247295576359295 1.231697139396107 1.213747252907627 1.193479260394072 1.170930976298296 1.146144619859991 1.119166740096888 1.090048132015293 1.058843744172569 1.025612577735398 0.990417577197871 0.953325512944645 0.914406855864317 0.873735644238899 0.831389343154718 0.787448696699763 0.741997573231591 0.695122804017932 0.646914015570350 0.597463456008121 0.546865815806075 0.495218043295096 0.442619155299173 0.389170043305891 0.334973275580137 0.280132895641959 0.224754217540224 0.168943618362262 0.112808328428101 0.056456219624251 -0.000004407662696 -0.056465038548011 -0.112817158119619 -0.168952465908943 -0.224763089893600 -0.280141799564752 -0.334982217594833 -0.389179029645075 -0.442628191858067 -0.495227135586733 -0.546874968919318 -0.597472674568971 -0.646923303706681 -0.695132165328144 -0.742007010757148 -0.787458212902100 -0.831398939896483 -0.873745322769799 -0.914416616811607 -0.953335356308318 -0.990427502350688 -1.025622583427644 -1.058853828541604 -1.090058292599659 -1.119176973855134 -1.146154923193721 -1.170941345079627 -1.193489689997020 -1.213757738243316 -1.231707674951503 -1.247306156239176 -1.260524366403004 -1.271338066097368 -1.279727631456375 -1.285678084137942 -1.289179112288796 -1.290998382757058 -1.289179112288796 -1.285678084137942 -1.279727631456374 -1.271338066097367 -1.260524366403003 -1.247306156239175 -1.231707674951501 -1.213757738243317 -1.193489689997022 -1.170941345079628 -1.146154923193721 -1.119176973855134 -1.090058292599660 -1.058853828541595 -1.025622583427646 -0.990427502350687 -0.953335356308317 -0.914416616811607 -0.873745322769800 -0.831398939896495 -0.787458212902100 -0.742007010757149 -0.695132165328144 -0.646923303706681 -0.597472674568971 -0.546874968919328 -0.495227135586734 -0.442628191858067 -0.389179029645076 -0.334982217594832 -0.280141799564752 -0.224763089893599 -0.168952465908943 -0.112817158119619 -0.056465038548011 -0.000004407662696 +-0.000004748339185 0.055012493901542 0.109924072670515 0.164624535969845 0.219008847819354 0.272972595128213 0.326412193220591 0.379225089572376 0.431309965321309 0.482566934119030 0.532897737900989 0.582205939158562 0.630397109307767 0.677379012759398 0.723061786307261 0.767358113464121 0.810183393388625 0.851455904060682 0.891096959378836 0.929031059868660 0.965186036708276 0.999493188794667 1.031887412591908 1.062307324521563 1.090695375673805 1.116997958637024 1.141165506263575 1.163152582208415 1.182917963097101 1.200424712200245 1.215640244510001 1.228536383135092 1.239089406949521 1.247280089449955 1.253093728795941 1.256520169025263 1.257553812456077 1.256520169025262 1.253093728795942 1.247280089449953 1.239089406949523 1.228536383135093 1.215640244510001 1.200424712200246 1.182917963097102 1.163152582208415 1.141165506263581 1.116997958637017 1.090695375673797 1.062307324521563 1.031887412591910 0.999493188794668 0.965186036708279 0.929031059868646 0.891096959378841 0.851455904060685 0.810183393388625 0.767358113464124 0.723061786307249 0.677379012759390 0.630397109307773 0.582205939158562 0.532897737900991 0.482566934119034 0.431309965321303 0.379225089572370 0.326412193220596 0.272972595128218 0.219008847819358 0.164624535969850 0.109924072670506 0.055012493901546 -0.000004748339185 -0.055021993807405 -0.109933582234307 -0.164634061548508 -0.219018395647920 -0.272982171272383 -0.326421803530589 -0.379234739638390 -0.431319660430963 -0.482576679217145 -0.532907537551915 -0.582215797511498 -0.630407030065154 -0.677388999148726 -0.723071841056530 -0.767368238781086 -0.810193590943937 -0.851466174975242 -0.891107304215238 -0.929041478626908 -0.965196528825800 -0.999503753150534 -1.031898047515453 -1.062318027805040 -1.090706144589219 -1.117008789956896 -1.141176396285457 -1.163163526783129 -1.182928957660262 -1.200435751807031 -1.215651323872820 -1.228547496663739 -1.239100548793780 -1.247291253544122 -1.253104908904955 -1.256531358792210 -1.257565005450523 -1.256531358792211 -1.253104908904954 -1.247291253544121 -1.239100548793779 -1.228547496663738 -1.215651323872822 -1.200435751807032 -1.182928957660262 -1.163163526783130 -1.141176396285461 -1.117008789956895 -1.090706144589222 -1.062318027805040 -1.031898047515450 -0.999503753150534 -0.965196528825798 -0.929041478626909 -0.891107304215238 -0.851466174975244 -0.810193590943942 -0.767368238781085 -0.723071841056529 -0.677388999148726 -0.630407030065154 -0.582215797511498 -0.532907537551926 -0.482576679217146 -0.431319660430963 -0.379234739638390 -0.326421803530588 -0.272982171272383 -0.219018395647920 -0.164634061548508 -0.109933582234307 -0.055021993807405 -0.000004748339185 +-0.000005081783401 0.053207061296304 0.106317081974027 0.159223061420597 0.211823481770224 0.264017425517317 0.315704773628190 0.366786401944635 0.417164375461267 0.466742140064247 0.515424711326072 0.563118859958747 0.609733293537297 0.655178834115102 0.699368591363743 0.742218130882180 0.783645637332628 0.823572072074195 0.861921324979975 0.898620360138068 0.933599355153088 0.966791833780730 0.998134791645147 1.027568814806076 1.055038190960363 1.080491013080745 1.103879275312746 1.125158960969621 1.144290122483247 1.161236953188474 1.175967850835934 1.188455472748749 1.198676782555345 1.206613088450218 1.212250072952649 1.215577814150305 1.216590798433847 1.215577814150305 1.212250072952648 1.206613088450219 1.198676782555345 1.188455472748749 1.175967850835933 1.161236953188474 1.144290122483248 1.125158960969623 1.103879275312745 1.080491013080739 1.055038190960361 1.027568814806077 0.998134791645155 0.966791833780732 0.933599355153090 0.898620360138063 0.861921324979974 0.823572072074202 0.783645637332636 0.742218130882180 0.699368591363736 0.655178834115091 0.609733293537303 0.563118859958751 0.515424711326079 0.466742140064253 0.417164375461259 0.366786401944628 0.315704773628195 0.264017425517320 0.211823481770227 0.159223061420601 0.106317081974019 0.053207061296308 -0.000005081783401 -0.053217227728297 -0.106327256979801 -0.159233250643495 -0.211833690745370 -0.264027659629503 -0.315715038070927 -0.366796701680585 -0.417174715184492 -0.466752524164497 -0.515435143855315 -0.563129344600421 -0.609743833578223 -0.655189432420470 -0.699379250355322 -0.742228852519891 -0.783656423099593 -0.823582922965490 -0.861932241495021 -0.898631342276884 -0.933610402416236 -0.966802945173135 -0.998145965683669 -1.027580049530804 -1.055049483949545 -1.080502361469171 -1.103890675813607 -1.125170409899493 -1.144301615790129 -1.161248486482615 -1.175979419423298 -1.188467071666673 -1.198688406610306 -1.206624732257448 -1.212261730976986 -1.215589480748413 -1.216602467897158 -1.215589480748414 -1.212261730976984 -1.206624732257447 -1.198688406610306 -1.188467071666671 -1.175979419423298 -1.161248486482617 -1.144301615790128 -1.125170409899493 -1.103890675813606 -1.080502361469170 -1.055049483949543 -1.027580049530804 -0.998145965683658 -0.966802945173135 -0.933610402416236 -0.898631342276885 -0.861932241495020 -0.823582922965489 -0.783656423099600 -0.742228852519892 -0.699379250355320 -0.655189432420470 -0.609743833578224 -0.563129344600420 -0.515435143855328 -0.466752524164497 -0.417174715184492 -0.366796701680584 -0.315715038070927 -0.264027659629503 -0.211833690745370 -0.159233250643495 -0.106327256979800 -0.053217227728297 -0.000005081783401 +-0.000005405349270 0.051050464761521 0.102008418735661 0.152770734878321 0.203240074923275 0.253319674720058 0.302913533703402 0.351926602744000 0.400264969984201 0.447836044267535 0.494548735777481 0.540313633508079 0.585043179197761 0.628651837366683 0.671056261108427 0.712175453297716 0.751930922888064 0.790246835985484 0.827050161398240 0.862270810376390 0.895841770269682 0.927699231847477 0.957782710040226 0.986035157878203 1.012403073419636 1.036836599477480 1.059289615970996 1.079719824745712 1.098088826723280 1.114362191259533 1.128509517607467 1.140504488399047 1.150324915077495 1.157952775229105 1.163374241780641 1.166579704045927 1.167563780621405 1.166579704045927 1.163374241780641 1.157952775229106 1.150324915077502 1.140504488399052 1.128509517607466 1.114362191259535 1.098088826723280 1.079719824745712 1.059289615970996 1.036836599477476 1.012403073419632 0.986035157878202 0.957782710040229 0.927699231847479 0.895841770269685 0.862270810376387 0.827050161398242 0.790246835985485 0.751930922888071 0.712175453297718 0.671056261108417 0.628651837366678 0.585043179197764 0.540313633508083 0.494548735777485 0.447836044267538 0.400264969984195 0.351926602743994 0.302913533703406 0.253319674720062 0.203240074923278 0.152770734878323 0.102008418735654 0.051050464761525 -0.000005405349270 -0.051061277974286 -0.102019239471976 -0.152781568090258 -0.203250925467942 -0.253330547322648 -0.302924432921251 -0.351937532931886 -0.400275935261183 -0.447847048485653 -0.494559782492370 -0.540324725951977 -0.585054320254870 -0.628663029551233 -0.671067506545530 -0.712186753707224 -0.751942279571421 -0.790258249815876 -0.827061632813920 -0.862282339377363 -0.895853356417695 -0.927710874269341 -0.957794407434484 -0.986046908525018 -1.012414875193898 -1.036848449864948 -1.059301512087466 -1.079731763358968 -1.098100804277659 -1.114374203903017 -1.128521561220982 -1.140516558627812 -1.150337007364210 -1.157964884848541 -1.163386363875692 -1.166591833664520 -1.167575912754230 -1.166591833664520 -1.163386363875692 -1.157964884848540 -1.150337007364208 -1.140516558627812 -1.128521561220981 -1.114374203903017 -1.098100804277658 -1.079731763358969 -1.059301512087468 -1.036848449864949 -1.012414875193898 -0.986046908525017 -0.957794407434474 -0.927710874269342 -0.895853356417695 -0.862282339377363 -0.827061632813920 -0.790258249815876 -0.751942279571433 -0.712186753707224 -0.671067506545531 -0.628663029551233 -0.585054320254870 -0.540324725951976 -0.494559782492379 -0.447847048485653 -0.400275935261183 -0.351937532931886 -0.302924432921251 -0.253330547322647 -0.203250925467942 -0.152781568090259 -0.102019239471976 -0.051061277974286 -0.000005405349270 +-0.000005716472450 0.048555820587940 0.097024287236018 0.145306797197920 0.193310827722741 0.240944400379601 0.288116260710434 0.334736056361677 0.380714513322092 0.425963609898931 0.470396748070657 0.513928921860864 0.556476882386341 0.597959299240262 0.638296917881204 0.677412712708802 0.715232035517907 0.751682759034525 0.786695415249608 0.820203328279295 0.852142741494008 0.882452938672952 0.911076358954690 0.937958705370074 0.963049046758610 0.986299912885348 1.007667382591068 1.027111164824955 1.044594672424885 1.060085088527355 1.073553425504970 1.084974576346383 1.094327358409676 1.101594549496933 1.106762916212822 1.109823234588269 1.110770302963353 1.109823234588270 1.106762916212822 1.101594549496932 1.094327358409676 1.084974576346373 1.073553425504971 1.060085088527355 1.044594672424886 1.027111164824958 1.007667382591069 0.986299912885346 0.963049046758606 0.937958705370075 0.911076358954695 0.882452938672955 0.852142741494012 0.820203328279287 0.786695415249609 0.751682759034528 0.715232035517910 0.677412712708803 0.638296917881199 0.597959299240259 0.556476882386346 0.513928921860865 0.470396748070657 0.425963609898935 0.380714513322085 0.334736056361673 0.288116260710439 0.240944400379604 0.193310827722745 0.145306797197923 0.097024287236011 0.048555820587943 -0.000005716472450 -0.048567255710102 -0.097035728873411 -0.145318249638932 -0.193322295173519 -0.240955886932053 -0.288127770311124 -0.334747592781741 -0.380726080128551 -0.425975210427565 -0.470408385400565 -0.513940598791100 -0.556488601414563 -0.597971062543731 -0.638308727300227 -0.677424569732720 -0.715243941273751 -0.751694714278455 -0.786707420361149 -0.820215383258434 -0.852154845961252 -0.882465091872127 -0.911088559758761 -0.937970952289690 -0.963061337953474 -0.986312246178198 -1.007679755484248 -1.027123574519415 -1.044607115841512 -1.060097562330371 -1.073565926127359 -1.084987100017003 -1.094339901181985 -1.101607107279011 -1.106775484798517 -1.109835809689202 -1.110782880241552 -1.109835809689202 -1.106775484798515 -1.101607107279012 -1.094339901181985 -1.084987100017003 -1.073565926127358 -1.060097562330370 -1.044607115841513 -1.027123574519415 -1.007679755484248 -0.986312246178198 -0.963061337953474 -0.937970952289691 -0.911088559758750 -0.882465091872126 -0.852154845961248 -0.820215383258435 -0.786707420361149 -0.751694714278455 -0.715243941273763 -0.677424569732721 -0.638308727300227 -0.597971062543731 -0.556488601414564 -0.513940598791100 -0.470408385400579 -0.425975210427565 -0.380726080128551 -0.334747592781741 -0.288127770311124 -0.240955886932053 -0.193322295173519 -0.145318249638933 -0.097035728873411 -0.048567255710102 -0.000005716472450 +-0.000006012690034 0.045738724856645 0.091395846748080 0.136877910057843 0.182097813232906 0.226968965883233 0.271405457506149 0.315322224794546 0.358635217181747 0.401261560280364 0.443119716877845 0.484129645157486 0.524212953820982 0.563293053796084 0.601295306221757 0.638147166412396 0.673778323512785 0.708120835565919 0.741109259727433 0.772680777371909 0.802775313848904 0.831335652659420 0.858307543836766 0.883639806329653 0.907284424199287 0.929196636456728 0.949335020381461 0.967661568176829 0.984141756833148 0.998744611084532 1.011442759360486 1.022212482648584 1.031033756200437 1.037890284026618 1.042769526144067 1.045662718551124 1.046564885923250 1.045662718551124 1.042769526144069 1.037890284026619 1.031033756200437 1.022212482648584 1.011442759360486 0.998744611084534 0.984141756833148 0.967661568176829 0.949335020381471 0.929196636456717 0.907284424199277 0.883639806329660 0.858307543836769 0.831335652659418 0.802775313848905 0.772680777371909 0.741109259727434 0.708120835565920 0.673778323512788 0.638147166412397 0.601295306221753 0.563293053796077 0.524212953820983 0.484129645157487 0.443119716877847 0.401261560280367 0.358635217181742 0.315322224794540 0.271405457506154 0.226968965883235 0.182097813232910 0.136877910057848 0.091395846748073 0.045738724856648 -0.000006012690034 -0.045750752093586 -0.091407879541517 -0.136889952065118 -0.182109868041216 -0.226981036982351 -0.271417548261890 -0.315334338423113 -0.358647356725264 -0.401273728583742 -0.443131916567082 -0.484141878619749 -0.524225223186389 -0.563305360921510 -0.601307652676699 -0.638159553467046 -0.673790752128313 -0.708133306387216 -0.741121773078176 -0.772693333252104 -0.802787911934871 -0.831348292306276 -0.858320224083320 -0.883652525905720 -0.907297181535362 -0.929209429695951 -0.949347847393726 -0.967674426574953 -0.984154643991126 -0.998757524157474 -1.011455695306217 -1.022225438250965 -1.031046728093624 -1.037903268720849 -1.042782520052116 -1.045675718015671 -1.046577887244675 -1.045675718015672 -1.042782520052116 -1.037903268720850 -1.031046728093626 -1.022225438250965 -1.011455695306218 -0.998757524157474 -0.984154643991128 -0.967674426574951 -0.949347847393724 -0.929209429695953 -0.907297181535364 -0.883652525905720 -0.858320224083311 -0.831348292306276 -0.802787911934871 -0.772693333252103 -0.741121773078176 -0.708133306387215 -0.673790752128318 -0.638159553467046 -0.601307652676698 -0.563305360921510 -0.524225223186388 -0.484141878619749 -0.443131916567092 -0.401273728583742 -0.358647356725263 -0.315334338423113 -0.271417548261890 -0.226981036982351 -0.182109868041215 -0.136889952065118 -0.091407879541517 -0.045750752093586 -0.000006012690034 +-0.000006291659486 0.042617141195895 0.085158987289088 0.127537820145076 0.169672530412163 0.211482483597979 0.252887676824346 0.293808894277642 0.334167861034754 0.373887394948726 0.412891556283017 0.451105794788800 0.488457093926311 0.524874111937951 0.560287319488852 0.594629133598913 0.627834047599324 0.659838756856177 0.690582280014168 0.720006075523859 0.748054153227236 0.774673180788234 0.799812584766500 0.823424646145654 0.845464590139604 0.865890670114098 0.884664245473384 0.901749853376018 0.917115274157206 0.930731590348890 0.942573239203077 0.952618058637372 0.960847326536021 0.967245793353724 0.971801707983024 0.974506836860235 0.975356476298398 0.974506836860235 0.971801707983025 0.967245793353731 0.960847326536020 0.952618058637367 0.942573239203076 0.930731590348889 0.917115274157206 0.901749853376020 0.884664245473383 0.865890670114092 0.845464590139601 0.823424646145654 0.799812584766502 0.774673180788237 0.748054153227236 0.720006075523852 0.690582280014169 0.659838756856178 0.627834047599325 0.594629133598915 0.560287319488847 0.524874111937941 0.488457093926317 0.451105794788803 0.412891556283018 0.373887394948725 0.334167861034748 0.293808894277636 0.252887676824350 0.211482483597982 0.169672530412167 0.127537820145079 0.085158987289081 0.042617141195898 -0.000006291659486 -0.042629726070356 -0.085171576818191 -0.127550417392555 -0.169685138382989 -0.211495105215516 -0.252900314908114 -0.293821551521835 -0.334180539987745 -0.373900097993671 -0.412904285619703 -0.451118552416941 -0.488469881630296 -0.524886931273268 -0.560300171770266 -0.594642019890452 -0.627846968706157 -0.659851713318513 -0.690595272103161 -0.720019103239507 -0.748067216298413 -0.774686278674709 -0.799825716663099 -0.823437810988327 -0.845477786613619 -0.865903896663955 -0.884677500314698 -0.901763134509085 -0.917128579382210 -0.930744917282692 -0.942586585297308 -0.952631421197825 -0.960860702743204 -0.967259180284265 -0.971815102631916 -0.974520236163771 -0.975369877157421 -0.974520236163770 -0.971815102631916 -0.967259180284262 -0.960860702743204 -0.952631421197826 -0.942586585297309 -0.930744917282692 -0.917128579382209 -0.901763134509083 -0.884677500314698 -0.865903896663955 -0.845477786613619 -0.823437810988330 -0.799825716663089 -0.774686278674710 -0.748067216298412 -0.720019103239506 -0.690595272103160 -0.659851713318513 -0.627846968706161 -0.594642019890452 -0.560300171770266 -0.524886931273268 -0.488469881630296 -0.451118552416941 -0.412904285619710 -0.373900097993672 -0.334180539987745 -0.293821551521834 -0.252900314908114 -0.211495105215516 -0.169685138382988 -0.127550417392555 -0.085171576818191 -0.042629726070356 -0.000006291659486 +-0.000006551176624 0.039211270684150 0.078354069697580 0.117346969911627 0.156115386305802 0.194585169506361 0.232682749608958 0.270335278814411 0.307470772586475 0.344018249043907 0.379907866303566 0.415071057496055 0.449440663181277 0.482951060897366 0.515538291583383 0.547140182623698 0.577696467269993 0.607148900205291 0.635441369023768 0.662520001409402 0.688333267806682 0.712832079387118 0.735969881125793 0.757702739813805 0.777989426843451 0.796791495615244 0.814073353427385 0.829802327720799 0.843948726565070 0.856485893283227 0.867390255125602 0.876641365916199 0.884221942607054 0.890117895688949 0.894318353419964 0.896815679844911 0.897605486592180 0.896815679844911 0.894318353419965 0.890117895688952 0.884221942607053 0.876641365916196 0.867390255125600 0.856485893283226 0.843948726565070 0.829802327720799 0.814073353427387 0.796791495615241 0.777989426843447 0.757702739813807 0.735969881125793 0.712832079387121 0.688333267806682 0.662520001409398 0.635441369023768 0.607148900205293 0.577696467269995 0.547140182623704 0.515538291583378 0.482951060897360 0.449440663181281 0.415071057496058 0.379907866303567 0.344018249043908 0.307470772586469 0.270335278814406 0.232682749608961 0.194585169506364 0.156115386305804 0.117346969911631 0.078354069697574 0.039211270684153 -0.000006551176624 -0.039224374312809 -0.078367177142773 -0.117360083685437 -0.156128508872127 -0.194598303262189 -0.232695896866129 -0.270348441782008 -0.307483953354011 -0.344031449565436 -0.379921088382782 -0.415084302772604 -0.449453933118254 -0.482964356770184 -0.515551614470066 -0.547153533396688 -0.577709846589479 -0.607162308514232 -0.635454806544479 -0.662533468141875 -0.688346763528606 -0.712845603655555 -0.735983433280526 -0.757716318982402 -0.778003031947887 -0.796805125380112 -0.814087006389582 -0.829816002240700 -0.843962420838953 -0.856499605357040 -0.867403982909841 -0.876655107201787 -0.884235695082151 -0.890131656956566 -0.894332121016191 -0.896829451257677 -0.897619259280352 -0.896829451257677 -0.894332121016191 -0.890131656956567 -0.884235695082151 -0.876655107201788 -0.867403982909842 -0.856499605357040 -0.843962420838956 -0.829816002240698 -0.814087006389583 -0.796805125380111 -0.778003031947888 -0.757716318982402 -0.735983433280522 -0.712845603655554 -0.688346763528605 -0.662533468141876 -0.635454806544479 -0.607162308514233 -0.577709846589489 -0.547153533396688 -0.515551614470066 -0.482964356770183 -0.449453933118254 -0.415084302772605 -0.379921088382789 -0.344031449565436 -0.307483953354011 -0.270348441782008 -0.232695896866129 -0.194598303262189 -0.156128508872127 -0.117360083685437 -0.078367177142772 -0.039224374312809 -0.000006551176624 +-0.000006789192562 0.035543404876828 0.071025631988630 0.106372057827255 0.141515111048236 0.176387614091467 0.210922913194297 0.245055007340611 0.278718675884740 0.311849604592090 0.344384509842263 0.376261260744612 0.407418998921292 0.437798255718243 0.467341066610609 0.495991082575645 0.523693678213279 0.550396056401939 0.576047349285322 0.600598715394238 0.624003432716319 0.646216987535819 0.667197158874992 0.686904098378707 0.705300405493808 0.722351197805249 0.738024176401726 0.752289686154199 0.765120770801653 0.776493222749808 0.786385627499361 0.794779402631775 0.801658831291958 0.807011090118558 0.810826271583662 0.813097400715302 0.813820446187091 0.813097400715302 0.810826271583662 0.807011090118558 0.801658831291957 0.794779402631775 0.786385627499360 0.776493222749808 0.765120770801653 0.752289686154200 0.738024176401726 0.722351197805246 0.705300405493805 0.686904098378707 0.667197158874993 0.646216987535819 0.624003432716323 0.600598715394233 0.576047349285327 0.550396056401940 0.523693678213281 0.495991082575646 0.467341066610607 0.437798255718237 0.407418998921294 0.376261260744615 0.344384509842266 0.311849604592092 0.278718675884734 0.245055007340609 0.210922913194298 0.176387614091470 0.141515111048239 0.106372057827257 0.071025631988624 0.035543404876830 -0.000006789192562 -0.035556984280717 -0.071039214441067 -0.106385645334830 -0.141528705579046 -0.176401217560162 -0.210936527447518 -0.245068634142916 -0.278732316905178 -0.311863261391509 -0.344398183861407 -0.376274953293186 -0.407432711167981 -0.437811988681813 -0.467354821152160 -0.496004859392059 -0.523707477831899 -0.550409879176580 -0.576061195393579 -0.600612584836100 -0.624017325314217 -0.646230902935924 -0.667211096549949 -0.686918057631644 -0.705314385463631 -0.722365197473183 -0.738038194599100 -0.752303721571299 -0.765134821997719 -0.776507288164012 -0.786399705462652 -0.794793491379589 -0.801672928977671 -0.807025194827507 -0.810840381347734 -0.813111513527922 -0.813834560018483 -0.813111513527922 -0.810840381347733 -0.807025194827507 -0.801672928977670 -0.794793491379589 -0.786399705462651 -0.776507288164012 -0.765134821997719 -0.752303721571299 -0.738038194599099 -0.722365197473184 -0.705314385463630 -0.686918057631646 -0.667211096549946 -0.646230902935923 -0.624017325314217 -0.600612584836100 -0.576061195393578 -0.550409879176580 -0.523707477831905 -0.496004859392060 -0.467354821152160 -0.437811988681813 -0.407432711167980 -0.376274953293185 -0.344398183861411 -0.311863261391509 -0.278732316905178 -0.245068634142916 -0.210936527447519 -0.176401217560162 -0.141528705579046 -0.106385645334829 -0.071039214441067 -0.035556984280717 -0.000006789192562 +-0.000007003829435 0.031637763062447 0.063222064196331 0.094685551436552 0.125968110075538 0.157009974956388 0.187751845890988 0.218135002141288 0.248101415733698 0.277593863379153 0.306556036774778 0.334932651066605 0.362669551257282 0.389713816347260 0.416013861003176 0.441519534552880 0.466182217112545 0.489954912657800 0.512792338857851 0.534651013498613 0.555489337328782 0.575267673170429 0.593948421144106 0.611496089867164 0.627877363492373 0.643061164463413 0.657018711872602 0.669723575316123 0.681151724151097 0.691281572068845 0.700094016908412 0.707572475644373 0.713702914492517 0.718473874087494 0.721876489696097 0.723904506439754 0.724554289510112 0.723904506439755 0.721876489696097 0.718473874087494 0.713702914492517 0.707572475644373 0.700094016908409 0.691281572068845 0.681151724151098 0.669723575316122 0.657018711872604 0.643061164463408 0.627877363492372 0.611496089867167 0.593948421144107 0.575267673170429 0.555489337328785 0.534651013498607 0.512792338857851 0.489954912657802 0.466182217112547 0.441519534552883 0.416013861003173 0.389713816347253 0.362669551257282 0.334932651066606 0.306556036774782 0.277593863379154 0.248101415733692 0.218135002141283 0.187751845890991 0.157009974956392 0.125968110075542 0.094685551436555 0.063222064196326 0.031637763062450 -0.000007003829435 -0.031651771508824 -0.063236074999240 -0.094699566147090 -0.125982130215047 -0.157024002004894 -0.187765881275944 -0.218149047226702 -0.248115471809749 -0.277607931652377 -0.306570118358872 -0.334946746973973 -0.362683662391317 -0.389727943495471 -0.416028004831197 -0.441533695599403 -0.466196395785203 -0.489969109230098 -0.512806553467056 -0.534665246144729 -0.555503587874550 -0.575281941342327 -0.593962706534499 -0.611510391937359 -0.627891681576744 -0.643075497774452 -0.657033059506922 -0.669737936261318 -0.681166097293457 -0.691295956201845 -0.700108410741867 -0.707586877814277 -0.713717323571431 -0.718488288595377 -0.721890908111600 -0.723918927211789 -0.724568711069654 -0.723918927211789 -0.721890908111600 -0.718488288595377 -0.713717323571431 -0.707586877814277 -0.700108410741867 -0.691295956201846 -0.681166097293458 -0.669737936261318 -0.657033059506922 -0.643075497774452 -0.627891681576744 -0.611510391937360 -0.593962706534499 -0.575281941342326 -0.555503587874549 -0.534665246144729 -0.512806553467056 -0.489969109230098 -0.466196395785207 -0.441533695599403 -0.416028004831197 -0.389727943495471 -0.362683662391317 -0.334946746973973 -0.306570118358878 -0.277607931652377 -0.248115471809749 -0.218149047226702 -0.187765881275944 -0.157024002004894 -0.125982130215047 -0.094699566147089 -0.063236074999239 -0.031651771508824 -0.000007003829435 +-0.000007193394821 0.027520314973597 0.054995254151911 0.082365156887034 0.109577758425989 0.136581097257416 0.163323615246903 0.189754256966120 0.215822568017712 0.241478792160088 0.266673967039066 0.291360018336216 0.315489852147753 0.339017445411288 0.361897934202511 0.384087699728415 0.405544451848932 0.426227309964123 0.446096881110183 0.465115335113365 0.483246476657554 0.500455814127844 0.516710625099496 0.531980018348991 0.546234992271078 0.559448489593718 0.571595448290415 0.582652848597534 0.592599756052427 0.601417360476348 0.609089010834418 0.615600245913805 0.620938820769094 0.625094728893016 0.628060220078854 0.629829813949664 0.630400309137635 0.629829813949664 0.628060220078856 0.625094728893016 0.620938820769094 0.615600245913805 0.609089010834418 0.601417360476349 0.592599756052427 0.582652848597534 0.571595448290415 0.559448489593718 0.546234992271076 0.531980018348994 0.516710625099495 0.500455814127844 0.483246476657555 0.465115335113363 0.446096881110184 0.426227309964125 0.405544451848934 0.384087699728417 0.361897934202509 0.339017445411286 0.315489852147755 0.291360018336218 0.266673967039066 0.241478792160090 0.215822568017705 0.189754256966114 0.163323615246905 0.136581097257418 0.109577758425991 0.082365156887037 0.054995254151907 0.027520314973599 -0.000007193394821 -0.027534702346634 -0.055009643270700 -0.082379548900646 -0.109592154461455 -0.136595498411160 -0.163338022576402 -0.189768671481847 -0.215836990675449 -0.241493223853661 -0.266688408593506 -0.291374470501532 -0.315504315593191 -0.339031920720243 -0.361912421868089 -0.384102200149695 -0.405558965327886 -0.426241836703369 -0.446111421211417 -0.465129888576581 -0.483261043381069 -0.500470393909033 -0.516725217636380 -0.531994623242498 -0.546249609028105 -0.559463117630868 -0.571610086938440 -0.582667497106430 -0.592614413597154 -0.601432026163079 -0.609103683707382 -0.615614924962528 -0.620953504936096 -0.625109417081880 -0.628074911162532 -0.629844506779087 -0.630415002550466 -0.629844506779087 -0.628074911162532 -0.625109417081880 -0.620953504936097 -0.615614924962528 -0.609103683707383 -0.601432026163079 -0.592614413597154 -0.582667497106430 -0.571610086938440 -0.559463117630867 -0.546249609028105 -0.531994623242498 -0.516725217636377 -0.500470393909034 -0.483261043381069 -0.465129888576581 -0.446111421211417 -0.426241836703368 -0.405558965327890 -0.384102200149696 -0.361912421868089 -0.339031920720243 -0.315504315593191 -0.291374470501533 -0.266688408593510 -0.241493223853661 -0.215836990675449 -0.189768671481847 -0.163338022576402 -0.136595498411160 -0.109592154461455 -0.082379548900646 -0.055009643270700 -0.027534702346634 -0.000007193394821 +-0.000007356394732 0.023218590288603 0.046400206866540 0.069493248925301 0.092453642446111 0.115237568578569 0.137801547908027 0.160102524050062 0.182097946406549 0.203745851919829 0.225004945663523 0.245834680111169 0.266195332926844 0.286048083124918 0.305355085449990 0.324079542831610 0.342185776772823 0.359639295535776 0.376406859992790 0.392456547015788 0.407757810282766 0.422281538385094 0.436000110125394 0.448887446901680 0.460919062079419 0.472072107259681 0.482325415357866 0.491659540414106 0.500056794063432 0.507501278600170 0.513978916578445 0.519477476897406 0.523986597326947 0.527497803436764 0.530004523898877 0.531502102140661 0.531987804332834 0.531502102140661 0.530004523898877 0.527497803436763 0.523986597326947 0.519477476897406 0.513978916578445 0.507501278600171 0.500056794063432 0.491659540414107 0.482325415357866 0.472072107259680 0.460919062079418 0.448887446901680 0.436000110125395 0.422281538385095 0.407757810282769 0.392456547015785 0.376406859992792 0.359639295535777 0.342185776772824 0.324079542831611 0.305355085449986 0.286048083124914 0.266195332926846 0.245834680111170 0.225004945663523 0.203745851919831 0.182097946406547 0.160102524050058 0.137801547908029 0.115237568578570 0.092453642446113 0.069493248925301 0.046400206866536 0.023218590288605 -0.000007356394732 -0.023233303486051 -0.046414921284841 -0.069507965368034 -0.092468361701441 -0.115252291413252 -0.137816275061591 -0.160117256229158 -0.182112684279586 -0.203760596111876 -0.225019696751553 -0.245849438619689 -0.266210099323865 -0.286062857818429 -0.305369868784840 -0.324094335086878 -0.342200578159695 -0.359654106195942 -0.376421679997368 -0.392471376364785 -0.407772648905062 -0.422296386138994 -0.436014966799709 -0.448902312217326 -0.460933935691557 -0.472086988760333 -0.482340304278998 -0.491674436231228 -0.500071696199558 -0.507516186430232 -0.513993829434038 -0.519492394071889 -0.524001518080781 -0.527512727003196 -0.530019449489745 -0.531517028952372 -0.532002731552536 -0.531517028952372 -0.530019449489744 -0.527512727003196 -0.524001518080779 -0.519492394071889 -0.513993829434038 -0.507516186430232 -0.500071696199558 -0.491674436231228 -0.482340304278998 -0.472086988760332 -0.460933935691557 -0.448902312217326 -0.436014966799704 -0.422296386138993 -0.407772648905062 -0.392471376364786 -0.376421679997367 -0.359654106195942 -0.342200578159696 -0.324094335086879 -0.305369868784840 -0.286062857818429 -0.266210099323866 -0.245849438619689 -0.225019696751555 -0.203760596111876 -0.182112684279586 -0.160117256229158 -0.137816275061591 -0.115252291413252 -0.092468361701441 -0.069507965368034 -0.046414921284841 -0.023233303486051 -0.000007356394732 +-0.000007491545082 0.018761476360117 0.037494640388405 0.056156265658707 0.074710754619176 0.093122715372981 0.111357029599611 0.129378919938147 0.147154016700187 0.164648423781555 0.181828783643609 0.198662341236928 0.215117006742530 0.231161417008165 0.246764995560074 0.261898011073608 0.276531634189433 0.290637992565365 0.304190224057867 0.317162527930925 0.329530213994248 0.341269749577178 0.352358804248891 0.362776292200545 0.372502412209486 0.381518685110882 0.389807988707027 0.397354590049998 0.404144175038503 0.410163875275285 0.415402292136937 0.419849518013546 0.423497154681159 0.426338328775972 0.428367704344458 0.429581492449827 0.429977457820529 0.429581492449827 0.428367704344458 0.426338328775971 0.423497154681159 0.419849518013543 0.415402292136937 0.410163875275284 0.404144175038504 0.397354590050001 0.389807988707027 0.381518685110882 0.372502412209485 0.362776292200547 0.352358804248893 0.341269749577178 0.329530213994249 0.317162527930923 0.304190224057871 0.290637992565366 0.276531634189435 0.261898011073611 0.246764995560070 0.231161417008162 0.215117006742531 0.198662341236930 0.181828783643611 0.164648423781555 0.147154016700184 0.129378919938144 0.111357029599613 0.093122715372982 0.074710754619178 0.056156265658709 0.037494640388402 0.018761476360118 -0.000007491545082 -0.018776459712890 -0.037509624527011 -0.056171251100393 -0.074725741871260 -0.093137704929006 -0.111372021935595 -0.129393915508942 -0.147169015936030 -0.164663427084792 -0.181843791385619 -0.198677353755323 -0.215132024338564 -0.231176439944447 -0.246780024058573 -0.261913045313963 -0.276546674307576 -0.290653038652501 -0.304205276159776 -0.317177586047600 -0.329545278079922 -0.341284819540640 -0.352373879954207 -0.362791373468071 -0.372517498817262 -0.381533776796299 -0.389823085168828 -0.397369690950577 -0.404159280006465 -0.410178983908299 -0.415417404004764 -0.419864632661325 -0.423512271632892 -0.426353447538102 -0.428382824409663 -0.429596613300862 -0.429992578934181 -0.429596613300862 -0.428382824409663 -0.426353447538102 -0.423512271632892 -0.419864632661326 -0.415417404004765 -0.410178983908299 -0.404159280006464 -0.397369690950578 -0.389823085168828 -0.381533776796299 -0.372517498817262 -0.362791373468071 -0.352373879954204 -0.341284819540639 -0.329545278079921 -0.317177586047600 -0.304205276159776 -0.290653038652501 -0.276546674307579 -0.261913045313963 -0.246780024058573 -0.231176439944447 -0.215132024338564 -0.198677353755323 -0.181843791385625 -0.164663427084792 -0.147169015936030 -0.129393915508942 -0.111372021935595 -0.093137704929006 -0.074725741871260 -0.056171251100392 -0.037509624527011 -0.018776459712889 -0.000007491545082 +-0.000007597781544 0.014179005696211 0.028338561182241 0.042444072647448 0.056468647589005 0.070385548540321 0.084168244278554 0.097790460629750 0.111226230772664 0.124449944943258 0.137436399443199 0.150160844857073 0.162599033384716 0.174727265196885 0.186522433724507 0.197962069793941 0.209024384523184 0.219688310896265 0.229933543936079 0.239740579398599 0.249090750914459 0.257966265507148 0.266350237420284 0.274226720189903 0.281580736901251 0.288398308573268 0.294666480617610 0.300373347323031 0.305508074319887 0.310060918983441 0.314023248738867 0.317387557234880 0.320147478357257 0.322297798057607 0.323834463977102 0.324754592849057 0.325056475668869 0.324754592849057 0.323834463977102 0.322297798057607 0.320147478357257 0.317387557234878 0.314023248738867 0.310060918983442 0.305508074319888 0.300373347323031 0.294666480617612 0.288398308573268 0.281580736901249 0.274226720189902 0.266350237420283 0.257966265507148 0.249090750914461 0.239740579398596 0.229933543936081 0.219688310896265 0.209024384523184 0.197962069793943 0.186522433724503 0.174727265196884 0.162599033384719 0.150160844857074 0.137436399443201 0.124449944943260 0.111226230772663 0.097790460629748 0.084168244278554 0.070385548540322 0.056468647589006 0.042444072647450 0.028338561182239 0.014179005696212 -0.000007597781544 -0.014194201407676 -0.028353757337708 -0.042459269539166 -0.056483845503614 -0.070400747756676 -0.084183445065607 -0.097805663244499 -0.111241435458197 -0.124465151926902 -0.137451608934787 -0.150176057047356 -0.162614248443909 -0.174742483273365 -0.186537654943683 -0.197977294257318 -0.209039612307557 -0.219703542053165 -0.229948778491378 -0.239755817352295 -0.249105992240690 -0.257981510154377 -0.266365485311707 -0.274241971224024 -0.281595990952658 -0.288413565493582 -0.294681740236624 -0.300388609449990 -0.305523338744957 -0.310076185479293 -0.314038517062412 -0.317402827129121 -0.320162749553251 -0.322313070276493 -0.323849736932229 -0.324769866248192 -0.325071749216378 -0.324769866248192 -0.323849736932229 -0.322313070276493 -0.320162749553251 -0.317402827129122 -0.314038517062412 -0.310076185479293 -0.305523338744957 -0.300388609449990 -0.294681740236624 -0.288413565493581 -0.281595990952658 -0.274241971224024 -0.266365485311707 -0.257981510154377 -0.249105992240689 -0.239755817352295 -0.229948778491378 -0.219703542053165 -0.209039612307557 -0.197977294257318 -0.186537654943683 -0.174742483273365 -0.162614248443909 -0.150176057047356 -0.137451608934791 -0.124465151926902 -0.111241435458197 -0.097805663244499 -0.084183445065607 -0.070400747756676 -0.056483845503614 -0.042459269539167 -0.028353757337708 -0.014194201407676 -0.000007597781544 +-0.000007674267717 0.009502134797459 0.018993822235059 0.028449301124939 0.037850553761978 0.047179666095828 0.056418861970087 0.065550537094636 0.074557292685441 0.083421968706831 0.092127676652004 0.100657831798515 0.108996184876504 0.117126853088658 0.125034350422161 0.132703617194357 0.140120048775367 0.147269523432536 0.154138429243433 0.160713690025859 0.166982790235430 0.172933798783245 0.178555391728360 0.183836873802041 0.188768198723024 0.193339988265482 0.197543550043778 0.201370893980744 0.204814747428607 0.207868568914606 0.210526560485740 0.212783678630055 0.214635643754527 0.216078948202432 0.217110862795946 0.217729441892513 0.217933526946414 0.217729441892513 0.217110862795946 0.216078948202432 0.214635643754527 0.212783678630053 0.210526560485740 0.207868568914606 0.204814747428609 0.201370893980744 0.197543550043778 0.193339988265481 0.188768198723024 0.183836873802042 0.178555391728360 0.172933798783245 0.166982790235430 0.160713690025859 0.154138429243433 0.147269523432537 0.140120048775368 0.132703617194358 0.125034350422160 0.117126853088657 0.108996184876506 0.100657831798516 0.092127676652005 0.083421968706830 0.074557292685441 0.065550537094635 0.056418861970088 0.047179666095829 0.037850553761979 0.028449301124939 0.018993822235057 0.009502134797460 -0.000007674267717 -0.009517483399048 -0.019009171034610 -0.028464650252754 -0.037865903345858 -0.047195016260100 -0.056434212834669 -0.065565888774110 -0.074572645288192 -0.083437322334213 -0.092143031397574 -0.100673187747321 -0.109011542104436 -0.117142211661871 -0.125049710396570 -0.132718978615220 -0.140135411676922 -0.147284887837763 -0.154153795163861 -0.160729057461489 -0.166998159174732 -0.172949169203241 -0.178570763594806 -0.183852247069685 -0.188783573335950 -0.193355364157532 -0.197558927139066 -0.201386272194218 -0.204830126666713 -0.207883949075992 -0.210541941462017 -0.212799060306639 -0.214651026011507 -0.216094330915475 -0.217126245837255 -0.217744825131779 -0.217948910251836 -0.217744825131779 -0.217126245837255 -0.216094330915475 -0.214651026011507 -0.212799060306639 -0.210541941462018 -0.207883949075992 -0.204830126666713 -0.201386272194218 -0.197558927139066 -0.193355364157532 -0.188783573335950 -0.183852247069685 -0.178570763594805 -0.172949169203241 -0.166998159174732 -0.160729057461489 -0.154153795163861 -0.147284887837763 -0.140135411676924 -0.132718978615220 -0.125049710396570 -0.117142211661870 -0.109011542104436 -0.100673187747321 -0.092143031397575 -0.083437322334213 -0.074572645288191 -0.065565888774110 -0.056434212834669 -0.047195016260101 -0.037865903345858 -0.028464650252754 -0.019009171034610 -0.009517483399048 -0.000007674267717 +-0.000007720401544 0.004762516019056 0.009523667222993 0.014266665340904 0.018982477131492 0.023662121212391 0.028296685191492 0.032877342665856 0.037395370055594 0.041842163240430 0.046209253967046 0.050488325995733 0.054671230955457 0.058750003876915 0.062716878373884 0.066564301443799 0.070284947859267 0.073871734122990 0.077317831959503 0.080616681317919 0.083762002860946 0.086747809916365 0.089568419868232 0.092218464966170 0.094692902532218 0.096987024545894 0.099096466589358 0.101017216135728 0.102745620164974 0.104278392093007 0.105612618001017 0.106745762153359 0.107675671793728 0.108400581210731 0.108919115065335 0.109230290974150 0.109333521343869 0.109230290974151 0.108919115065335 0.108400581210731 0.107675671793728 0.106745762153359 0.105612618001017 0.104278392093007 0.102745620164974 0.101017216135728 0.099096466589358 0.096987024545893 0.094692902532217 0.092218464966171 0.089568419868232 0.086747809916365 0.083762002860946 0.080616681317918 0.077317831959504 0.073871734122990 0.070284947859268 0.066564301443800 0.062716878373882 0.058750003876914 0.054671230955457 0.050488325995733 0.046209253967046 0.041842163240431 0.037395370055593 0.032877342665855 0.028296685191493 0.023662121212392 0.018982477131493 0.014266665340904 0.009523667222992 0.004762516019056 -0.000007720401544 -0.004777956838714 -0.009539108092237 -0.014282106292370 -0.018997918197192 -0.023677562423466 -0.028312126577977 -0.032892784256452 -0.037410811877449 -0.041857605318933 -0.046224696325627 -0.050503768655697 -0.054686673935812 -0.058765447194231 -0.062732322042167 -0.066579745474386 -0.070300392260731 -0.073887178901090 -0.077333277117125 -0.080632126855064 -0.083777448774725 -0.086763256201023 -0.089583866515193 -0.092233911964099 -0.094708349867106 -0.097002472201174 -0.099111914546020 -0.101032664372471 -0.102761068658362 -0.104293840817654 -0.105628066929776 -0.106761211257529 -0.107691121043274 -0.108416030574510 -0.108934564511336 -0.109245740469736 -0.109348970856025 -0.109245740469736 -0.108934564511337 -0.108416030574510 -0.107691121043274 -0.106761211257529 -0.105628066929776 -0.104293840817654 -0.102761068658362 -0.101032664372471 -0.099111914546020 -0.097002472201174 -0.094708349867106 -0.092233911964099 -0.089583866515192 -0.086763256201023 -0.083777448774725 -0.080632126855064 -0.077333277117125 -0.073887178901090 -0.070300392260733 -0.066579745474386 -0.062732322042167 -0.058765447194231 -0.054686673935812 -0.050503768655697 -0.046224696325628 -0.041857605318933 -0.037410811877449 -0.032892784256452 -0.028312126577977 -0.023677562423466 -0.018997918197192 -0.014282106292370 -0.009539108092237 -0.004777956838714 -0.000007720401544 +-0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 -0.000007735819934 \ No newline at end of file diff --git a/simulations/Tutorial/xhps_integration/surface_tables/torque_TY.txt b/simulations/Tutorial/xhps_integration/surface_tables/torque_TY.txt new file mode 100644 index 0000000000000000000000000000000000000000..bcce7af9d6ecf4105d164b47127ff2143af0128a --- /dev/null +++ b/simulations/Tutorial/xhps_integration/surface_tables/torque_TY.txt @@ -0,0 +1,73 @@ +-0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 -0.000000000000000 +0.011869826843318 0.011858572077074 0.011824828715050 0.011768659531282 0.011690169028665 0.011589503258378 0.011466849567691 0.011322436275641 0.011156532277675 0.010969446579664 0.010761527761280 0.010533163370006 0.010284779246129 0.010016838779457 0.009729842099086 0.009424325196745 0.009100858985063 0.008760048291970 0.008402530792257 0.008028975878178 0.007640083470108 0.007236582769142 0.006819230953375 0.006388811819571 0.005946134372253 0.005492031362265 0.005027357777059 0.004552989284858 0.004069820635233 0.003578764018626 0.003080747387342 0.002576712740950 0.002067614378810 0.001554417122744 0.001038094513043 0.000519626980791 -0.000000000000001 -0.000519626980794 -0.001038094513044 -0.001554417122748 -0.002067614378814 -0.002576712740956 -0.003080747387343 -0.003578764018626 -0.004069820635235 -0.004552989284859 -0.005027357777059 -0.005492031362266 -0.005946134372259 -0.006388811819583 -0.006819230953386 -0.007236582769147 -0.007640083470109 -0.008028975878190 -0.008402530792258 -0.008760048291971 -0.009100858985076 -0.009424325196746 -0.009729842099087 -0.010016838779459 -0.010284779246129 -0.010533163370016 -0.010761527761283 -0.010969446579667 -0.011156532277675 -0.011322436275643 -0.011466849567698 -0.011589503258380 -0.011690169028666 -0.011768659531282 -0.011824828715054 -0.011858572077074 -0.011869826843318 -0.011858572077074 -0.011824828715054 -0.011768659531282 -0.011690169028666 -0.011589503258380 -0.011466849567699 -0.011322436275643 -0.011156532277675 -0.010969446579667 -0.010761527761283 -0.010533163370017 -0.010284779246129 -0.010016838779459 -0.009729842099087 -0.009424325196746 -0.009100858985076 -0.008760048291971 -0.008402530792258 -0.008028975878190 -0.007640083470109 -0.007236582769147 -0.006819230953386 -0.006388811819583 -0.005946134372259 -0.005492031362266 -0.005027357777059 -0.004552989284859 -0.004069820635235 -0.003578764018626 -0.003080747387342 -0.002576712740956 -0.002067614378814 -0.001554417122748 -0.001038094513044 -0.000519626980793 -0.000000000000001 0.000519626980791 0.001038094513044 0.001554417122743 0.002067614378810 0.002576712740950 0.003080747387342 0.003578764018626 0.004069820635233 0.004552989284858 0.005027357777059 0.005492031362265 0.005946134372253 0.006388811819571 0.006819230953375 0.007236582769142 0.007640083470108 0.008028975878178 0.008402530792257 0.008760048291971 0.009100858985063 0.009424325196744 0.009729842099086 0.010016838779457 0.010284779246129 0.010533163370006 0.010761527761280 0.010969446579664 0.011156532277675 0.011322436275641 0.011466849567691 0.011589503258378 0.011690169028665 0.011768659531282 0.011824828715050 0.011858572077074 0.011869826843318 +0.023558822463511 0.023536570075011 0.023469853322425 0.023358793382436 0.023203592008885 0.023004531222590 0.022761972876253 0.022476358095727 0.022148206597133 0.021778115879790 0.021366760295628 0.020914889994889 0.020423329748360 0.019892977646848 0.019324803677861 0.018719848180367 0.018079220178035 0.017404095592009 0.016695715333855 0.015955383280020 0.015184464129020 0.014384381142824 0.013556613774194 0.012702695181862 0.011824209635916 0.010922789815669 0.010000114002890 0.009057903173500 0.008097917990808 0.007121955704402 0.006131846958269 0.005129452512798 0.004116659885052 0.003095379912587 0.002067543245980 0.001035096775778 -0.000000000000001 -0.001035096775780 -0.002067543245983 -0.003095379912587 -0.004116659885055 -0.005129452512799 -0.006131846958273 -0.007121955704411 -0.008097917990808 -0.009057903173501 -0.010000114002890 -0.010922789815670 -0.011824209635916 -0.012702695181864 -0.013556613774195 -0.014384381142824 -0.015184464129020 -0.015955383280023 -0.016695715333858 -0.017404095592009 -0.018079220178035 -0.018719848180369 -0.019324803677873 -0.019892977646850 -0.020423329748361 -0.020914889994890 -0.021366760295632 -0.021778115879790 -0.022148206597137 -0.022476358095727 -0.022761972876253 -0.023004531222590 -0.023203592008886 -0.023358793382437 -0.023469853322426 -0.023536570075011 -0.023558822463511 -0.023536570075011 -0.023469853322426 -0.023358793382437 -0.023203592008886 -0.023004531222590 -0.022761972876253 -0.022476358095727 -0.022148206597137 -0.021778115879790 -0.021366760295631 -0.020914889994890 -0.020423329748362 -0.019892977646850 -0.019324803677873 -0.018719848180369 -0.018079220178035 -0.017404095592010 -0.016695715333859 -0.015955383280023 -0.015184464129020 -0.014384381142824 -0.013556613774195 -0.012702695181864 -0.011824209635916 -0.010922789815669 -0.010000114002890 -0.009057903173501 -0.008097917990809 -0.007121955704410 -0.006131846958272 -0.005129452512799 -0.004116659885055 -0.003095379912587 -0.002067543245983 -0.001035096775780 -0.000000000000001 0.001035096775779 0.002067543245981 0.003095379912587 0.004116659885052 0.005129452512798 0.006131846958269 0.007121955704402 0.008097917990809 0.009057903173500 0.010000114002890 0.010922789815669 0.011824209635916 0.012702695181862 0.013556613774194 0.014384381142824 0.015184464129019 0.015955383280020 0.016695715333851 0.017404095592009 0.018079220178035 0.018719848180366 0.019324803677861 0.019892977646849 0.020423329748360 0.020914889994889 0.021366760295628 0.021778115879790 0.022148206597133 0.022476358095727 0.022761972876248 0.023004531222590 0.023203592008885 0.023358793382436 0.023469853322425 0.023536570075011 0.023558822463511 +0.034977300860904 0.034944392383409 0.034845725229962 0.034681474159869 0.034451930179710 0.034157500153940 0.033798706259223 0.033376185282294 0.032890687759093 0.032343076955158 0.031734327686024 0.031065524975946 0.030337862553925 0.029552641185554 0.028711266838821 0.027815248683622 0.026866196922031 0.025865820449787 0.024815924346188 0.023718407193475 0.022575258223241 0.021388554290490 0.020160456675251 0.018893207711811 0.017589127246469 0.016250608925172 0.014880116312302 0.013480178843501 0.012053387614768 0.010602391011532 0.009129890181684 0.007638634357524 0.006131416031310 0.004611065991353 0.003080448224748 0.001542454694643 -0.000000000000001 -0.001542454694646 -0.003080448224749 -0.004611065991357 -0.006131416031311 -0.007638634357533 -0.009129890181685 -0.010602391011534 -0.012053387614769 -0.013480178843501 -0.014880116312304 -0.016250608925172 -0.017589127246470 -0.018893207711811 -0.020160456675258 -0.021388554290490 -0.022575258223241 -0.023718407193475 -0.024815924346189 -0.025865820449788 -0.026866196922034 -0.027815248683622 -0.028711266838827 -0.029552641185556 -0.030337862553932 -0.031065524975951 -0.031734327686031 -0.032343076955159 -0.032890687759095 -0.033376185282296 -0.033798706259225 -0.034157500153942 -0.034451930179712 -0.034681474159871 -0.034845725229962 -0.034944392383410 -0.034977300860913 -0.034944392383410 -0.034845725229962 -0.034681474159871 -0.034451930179712 -0.034157500153942 -0.033798706259225 -0.033376185282300 -0.032890687759095 -0.032343076955160 -0.031734327686029 -0.031065524975948 -0.030337862553936 -0.029552641185556 -0.028711266838826 -0.027815248683621 -0.026866196922034 -0.025865820449789 -0.024815924346189 -0.023718407193475 -0.022575258223242 -0.021388554290490 -0.020160456675257 -0.018893207711811 -0.017589127246470 -0.016250608925172 -0.014880116312304 -0.013480178843501 -0.012053387614768 -0.010602391011534 -0.009129890181685 -0.007638634357533 -0.006131416031310 -0.004611065991356 -0.003080448224750 -0.001542454694646 -0.000000000000001 0.001542454694643 0.003080448224749 0.004611065991352 0.006131416031310 0.007638634357527 0.009129890181684 0.010602391011532 0.012053387614768 0.013480178843500 0.014880116312301 0.016250608925172 0.017589127246469 0.018893207711810 0.020160456675250 0.021388554290490 0.022575258223241 0.023718407193475 0.024815924346188 0.025865820449788 0.026866196922031 0.027815248683620 0.028711266838820 0.029552641185554 0.030337862553927 0.031065524975946 0.031734327686024 0.032343076955160 0.032890687759094 0.033376185282295 0.033798706259223 0.034157500153941 0.034451930179710 0.034681474159869 0.034845725229962 0.034944392383409 0.034977300860904 +0.046037637600802 0.045994496354852 0.045865147014797 0.045649812691324 0.045348864959026 0.044962823441025 0.044492355224829 0.043938274108431 0.043301539673343 0.042583256182175 0.041784671296910 0.040907174614476 0.039952296015089 0.038921703819265 0.037817202748675 0.036640731686162 0.035394361229924 0.034080291037493 0.032700846954174 0.031258477921754 0.029755752663298 0.028195356139724 0.026580085774990 0.024912847446777 0.023196651240247 0.021434606963270 0.019629919422103 0.017785883457486 0.015905878741867 0.013993364339631 0.012051873033042 0.010085005417790 0.008096423773129 0.006089845712849 0.004069037624264 0.002037807903967 -0.000000000000001 -0.002037807903969 -0.004069037624268 -0.006089845712849 -0.008096423773136 -0.010085005417791 -0.012051873033043 -0.013993364339632 -0.015905878741867 -0.017785883457488 -0.019629919422105 -0.021434606963271 -0.023196651240249 -0.024912847446780 -0.026580085774990 -0.028195356139718 -0.029755752663299 -0.031258477921756 -0.032700846954175 -0.034080291037507 -0.035394361229928 -0.036640731686162 -0.037817202748675 -0.038921703819266 -0.039952296015090 -0.040907174614477 -0.041784671296912 -0.042583256182175 -0.043301539673343 -0.043938274108433 -0.044492355224830 -0.044962823441026 -0.045348864959035 -0.045649812691324 -0.045865147014815 -0.045994496354857 -0.046037637600803 -0.045994496354857 -0.045865147014815 -0.045649812691324 -0.045348864959035 -0.044962823441026 -0.044492355224830 -0.043938274108433 -0.043301539673343 -0.042583256182175 -0.041784671296912 -0.040907174614477 -0.039952296015090 -0.038921703819266 -0.037817202748675 -0.036640731686162 -0.035394361229928 -0.034080291037507 -0.032700846954175 -0.031258477921756 -0.029755752663299 -0.028195356139718 -0.026580085774983 -0.024912847446778 -0.023196651240248 -0.021434606963271 -0.019629919422105 -0.017785883457488 -0.015905878741868 -0.013993364339632 -0.012051873033043 -0.010085005417791 -0.008096423773135 -0.006089845712847 -0.004069037624267 -0.002037807903969 -0.000000000000001 0.002037807903966 0.004069037624263 0.006089845712847 0.008096423773132 0.010085005417791 0.012051873033043 0.013993364339631 0.015905878741866 0.017785883457487 0.019629919422103 0.021434606963270 0.023196651240247 0.024912847446776 0.026580085774990 0.028195356139717 0.029755752663298 0.031258477921754 0.032700846954174 0.034080291037493 0.035394361229925 0.036640731686162 0.037817202748675 0.038921703819266 0.039952296015089 0.040907174614476 0.041784671296904 0.042583256182175 0.043301539673343 0.043938274108431 0.044492355224829 0.044962823441025 0.045348864959026 0.045649812691324 0.045865147014797 0.045994496354853 0.046037637600802 +0.056654938064248 0.056602065932056 0.056443538180787 0.056179620668932 0.055810756235248 0.055337564309215 0.054760840361229 0.054081555189774 0.053300854040171 0.052420055549428 0.051440650510770 0.050364300450277 0.049192836007756 0.047928255112961 0.046572720948341 0.045128559688387 0.043598258005889 0.041984460335351 0.040289965883040 0.038517725374473 0.036670837529257 0.034752545254082 0.032766231545559 0.030715415094474 0.028603745584722 0.026434998679976 0.024213070693922 0.021941972939014 0.019625825751855 0.017268852193504 0.014875371425067 0.012449791760633 0.009996603400600 0.007520370851146 0.005025725036644 0.002517355114065 -0.000000000000001 -0.002517355114068 -0.005025725036644 -0.007520370851146 -0.009996603400599 -0.012449791760634 -0.014875371425074 -0.017268852193505 -0.019625825751857 -0.021941972939031 -0.024213070693922 -0.026434998679977 -0.028603745584723 -0.030715415094474 -0.032766231545565 -0.034752545254081 -0.036670837529257 -0.038517725374474 -0.040289965883040 -0.041984460335354 -0.043598258005889 -0.045128559688387 -0.046572720948342 -0.047928255112961 -0.049192836007757 -0.050364300450278 -0.051440650510772 -0.052420055549429 -0.053300854040172 -0.054081555189774 -0.054760840361229 -0.055337564309215 -0.055810756235249 -0.056179620668932 -0.056443538180788 -0.056602065932056 -0.056654938064262 -0.056602065932056 -0.056443538180788 -0.056179620668932 -0.055810756235243 -0.055337564309215 -0.054760840361229 -0.054081555189774 -0.053300854040172 -0.052420055549428 -0.051440650510770 -0.050364300450278 -0.049192836007756 -0.047928255112961 -0.046572720948341 -0.045128559688387 -0.043598258005889 -0.041984460335354 -0.040289965883041 -0.038517725374473 -0.036670837529257 -0.034752545254082 -0.032766231545565 -0.030715415094474 -0.028603745584723 -0.026434998679977 -0.024213070693922 -0.021941972939031 -0.019625825751855 -0.017268852193506 -0.014875371425076 -0.012449791760634 -0.009996603400599 -0.007520370851146 -0.005025725036645 -0.002517355114067 -0.000000000000001 0.002517355114065 0.005025725036645 0.007520370851146 0.009996603400598 0.012449791760634 0.014875371425065 0.017268852193504 0.019625825751855 0.021941972939018 0.024213070693922 0.026434998679974 0.028603745584722 0.030715415094474 0.032766231545553 0.034752545254081 0.036670837529257 0.038517725374473 0.040289965883041 0.041984460335351 0.043598258005889 0.045128559688387 0.046572720948341 0.047928255112959 0.049192836007756 0.050364300450277 0.051440650510770 0.052420055549428 0.053300854040172 0.054081555189774 0.054760840361229 0.055337564309215 0.055810756235242 0.056179620668932 0.056443538180787 0.056602065932056 0.056654938064248 +0.066747684915469 0.066685658516084 0.066499680229631 0.066190052729730 0.065757280266598 0.065202068355087 0.064525323332041 0.063728151776660 0.062811859786598 0.061777952100181 0.060628131054779 0.059364295368731 0.057988538734594 0.056503148208643 0.054910602382460 0.053213569320442 0.051414904246733 0.049517646965758 0.047525018998421 0.045440420418219 0.043267426369840 0.041009783254881 0.038671404568472 0.036256366372714 0.033768902392891 0.031213398724371 0.028594388138996 0.025916543981708 0.023184673649756 0.020403711648859 0.017578712222736 0.014714841554596 0.011817369541645 0.008891661145944 0.005943167327587 0.002977415568792 -0.000000000000001 -0.002977415568793 -0.005943167327589 -0.008891661145945 -0.011817369541648 -0.014714841554599 -0.017578712222740 -0.020403711648862 -0.023184673649755 -0.025916543981712 -0.028594388138996 -0.031213398724372 -0.033768902392895 -0.036256366372715 -0.038671404568472 -0.041009783254881 -0.043267426369841 -0.045440420418222 -0.047525018998422 -0.049517646965758 -0.051414904246737 -0.053213569320442 -0.054910602382462 -0.056503148208645 -0.057988538734597 -0.059364295368733 -0.060628131054779 -0.061777952100180 -0.062811859786598 -0.063728151776662 -0.064525323332041 -0.065202068355095 -0.065757280266598 -0.066190052729731 -0.066499680229631 -0.066685658516102 -0.066747684915469 -0.066685658516102 -0.066499680229631 -0.066190052729731 -0.065757280266598 -0.065202068355095 -0.064525323332041 -0.063728151776661 -0.062811859786598 -0.061777952100180 -0.060628131054780 -0.059364295368733 -0.057988538734594 -0.056503148208645 -0.054910602382460 -0.053213569320443 -0.051414904246737 -0.049517646965759 -0.047525018998421 -0.045440420418219 -0.043267426369841 -0.041009783254882 -0.038671404568472 -0.036256366372715 -0.033768902392895 -0.031213398724372 -0.028594388138995 -0.025916543981713 -0.023184673649765 -0.020403711648863 -0.017578712222739 -0.014714841554598 -0.011817369541647 -0.008891661145945 -0.005943167327588 -0.002977415568794 -0.000000000000001 0.002977415568792 0.005943167327585 0.008891661145943 0.011817369541645 0.014714841554596 0.017578712222735 0.020403711648859 0.023184673649761 0.025916543981709 0.028594388138995 0.031213398724371 0.033768902392892 0.036256366372714 0.038671404568472 0.041009783254880 0.043267426369840 0.045440420418219 0.047525018998421 0.049517646965757 0.051414904246737 0.053213569320442 0.054910602382460 0.056503148208643 0.057988538734592 0.059364295368731 0.060628131054779 0.061777952100180 0.062811859786598 0.063728151776660 0.064525323332041 0.065202068355087 0.065757280266598 0.066190052729730 0.066499680229631 0.066685658516084 0.066747684915469 +0.076238359856128 0.076167826150383 0.075956336135623 0.075604223083964 0.075112042330411 0.074480571090318 0.073710808195170 0.072803973737932 0.071761508616445 0.070585073962107 0.069276550437940 0.067838037389072 0.066271851825907 0.064580527219850 0.062766812089187 0.060833668351711 0.058784269420338 0.056621998016546 0.054350443676763 0.051973399926207 0.049494861095220 0.046919018753191 0.044250257736620 0.041493151747690 0.038652458502311 0.035733114407298 0.032740228748228 0.029679077372153 0.026555095850871 0.023373872113583 0.020141138540274 0.016862763509965 0.013544742401351 0.010193188046325 0.006814320640413 0.003414457117522 -0.000000000000001 -0.003414457117526 -0.006814320640417 -0.010193188046327 -0.013544742401353 -0.016862763509966 -0.020141138540275 -0.023373872113586 -0.026555095850872 -0.029679077372155 -0.032740228748224 -0.035733114407300 -0.038652458502311 -0.041493151747692 -0.044250257736619 -0.046919018753198 -0.049494861095221 -0.051973399926208 -0.054350443676769 -0.056621998016548 -0.058784269420338 -0.060833668351716 -0.062766812089189 -0.064580527219852 -0.066271851825909 -0.067838037389074 -0.069276550437940 -0.070585073962107 -0.071761508616454 -0.072803973737939 -0.073710808195175 -0.074480571090320 -0.075112042330414 -0.075604223083973 -0.075956336135623 -0.076167826150383 -0.076238359856147 -0.076167826150383 -0.075956336135623 -0.075604223083973 -0.075112042330414 -0.074480571090320 -0.073710808195170 -0.072803973737939 -0.071761508616454 -0.070585073962107 -0.069276550437940 -0.067838037389072 -0.066271851825909 -0.064580527219852 -0.062766812089189 -0.060833668351716 -0.058784269420338 -0.056621998016547 -0.054350443676765 -0.051973399926208 -0.049494861095221 -0.046919018753198 -0.044250257736619 -0.041493151747693 -0.038652458502311 -0.035733114407299 -0.032740228748224 -0.029679077372154 -0.026555095850872 -0.023373872113587 -0.020141138540275 -0.016862763509966 -0.013544742401353 -0.010193188046327 -0.006814320640419 -0.003414457117525 -0.000000000000001 0.003414457117522 0.006814320640415 0.010193188046325 0.013544742401350 0.016862763509964 0.020141138540275 0.023373872113583 0.026555095850870 0.029679077372154 0.032740228748223 0.035733114407297 0.038652458502311 0.041493151747690 0.044250257736621 0.046919018753191 0.049494861095221 0.051973399926207 0.054350443676764 0.056621998016546 0.058784269420338 0.060833668351716 0.062766812089187 0.064580527219850 0.066271851825907 0.067838037389072 0.069276550437940 0.070585073962107 0.071761508616445 0.072803973737932 0.073710808195170 0.074480571090318 0.075112042330411 0.075604223083964 0.075956336135623 0.076167826150383 0.076238359856128 +0.085054034930685 0.084975706289716 0.084740839505487 0.084349791995338 0.083803159457327 0.083101775867824 0.082246713466117 0.081239282714033 0.080081032215520 0.078773748577746 0.077319456193013 0.075720416917118 0.073979129618408 0.072098329568811 0.070080987646316 0.067930309317248 0.065649733364519 0.063242930327905 0.060713800621076 0.058066472290364 0.055305298379929 0.052434853868523 0.049459932144238 0.046385540984183 0.043216898007928 0.039959425575710 0.036618745104002 0.033200670774175 0.029711202612576 0.026156518923749 0.022542968061682 0.018877059528042 0.015165454390052 0.011414955014796 0.007632494121259 0.003825123155627 -0.000000000000001 -0.003825123155629 -0.007632494121259 -0.011414955014796 -0.015165454390053 -0.018877059528044 -0.022542968061684 -0.026156518923750 -0.029711202612584 -0.033200670774177 -0.036618745104003 -0.039959425575711 -0.043216898007929 -0.046385540984178 -0.049459932144242 -0.052434853868524 -0.055305298379930 -0.058066472290361 -0.060713800621075 -0.063242930327911 -0.065649733364521 -0.067930309317257 -0.070080987646317 -0.072098329568812 -0.073979129618412 -0.075720416917118 -0.077319456193014 -0.078773748577746 -0.080081032215516 -0.081239282714033 -0.082246713466123 -0.083101775867825 -0.083803159457327 -0.084349791995338 -0.084740839505492 -0.084975706289716 -0.085054034930686 -0.084975706289716 -0.084740839505492 -0.084349791995338 -0.083803159457327 -0.083101775867825 -0.082246713466123 -0.081239282714033 -0.080081032215516 -0.078773748577746 -0.077319456193014 -0.075720416917118 -0.073979129618412 -0.072098329568812 -0.070080987646317 -0.067930309317257 -0.065649733364531 -0.063242930327909 -0.060713800621076 -0.058066472290361 -0.055305298379927 -0.052434853868523 -0.049459932144242 -0.046385540984185 -0.043216898007929 -0.039959425575711 -0.036618745104003 -0.033200670774177 -0.029711202612581 -0.026156518923754 -0.022542968061684 -0.018877059528046 -0.015165454390053 -0.011414955014796 -0.007632494121262 -0.003825123155629 -0.000000000000001 0.003825123155627 0.007632494121260 0.011414955014795 0.015165454390050 0.018877059528040 0.022542968061680 0.026156518923752 0.029711202612576 0.033200670774175 0.036618745104003 0.039959425575711 0.043216898007928 0.046385540984183 0.049459932144244 0.052434853868523 0.055305298379926 0.058066472290360 0.060713800621076 0.063242930327904 0.065649733364519 0.067930309317248 0.070080987646316 0.072098329568811 0.073979129618408 0.075720416917109 0.077319456193013 0.078773748577746 0.080081032215516 0.081239282714033 0.082246713466117 0.083101775867824 0.083803159457327 0.084349791995338 0.084740839505487 0.084975706289716 0.085054034930685 +0.093126928881442 0.093041577655954 0.092785648937502 0.092359517647819 0.091763808812924 0.090999397790019 0.090067410569397 0.088969224135649 0.087706466868919 0.086281018961676 0.084695012824256 0.082950833447477 0.081051118688253 0.078998759440964 0.076796899654586 0.074448936153548 0.071958518218739 0.069329546883034 0.066566173895492 0.063672800307480 0.060654074633812 0.057514890543129 0.054260384031532 0.050895930036070 0.047427138445328 0.043859849467753 0.040200128320006 0.036454259201651 0.032628738525458 0.028730267376667 0.024765743178972 0.020742250549303 0.016667051328549 0.012547573780479 0.008391400956333 0.004206258228205 -0.000000000000001 -0.004206258228206 -0.008391400956335 -0.012547573780479 -0.016667051328551 -0.020742250549305 -0.024765743178974 -0.028730267376673 -0.032628738525459 -0.036454259201655 -0.040200128320007 -0.043859849467760 -0.047427138445335 -0.050895930036071 -0.054260384031538 -0.057514890543134 -0.060654074633820 -0.063672800307481 -0.066566173895493 -0.069329546883042 -0.071958518218741 -0.074448936153551 -0.076796899654597 -0.078998759440965 -0.081051118688255 -0.082950833447479 -0.084695012824256 -0.086281018961677 -0.087706466868921 -0.088969224135653 -0.090067410569398 -0.090999397790019 -0.091763808812924 -0.092359517647819 -0.092785648937502 -0.093041577655954 -0.093126928881442 -0.093041577655954 -0.092785648937502 -0.092359517647819 -0.091763808812924 -0.090999397790019 -0.090067410569398 -0.088969224135651 -0.087706466868921 -0.086281018961676 -0.084695012824256 -0.082950833447479 -0.081051118688253 -0.078998759440965 -0.076796899654597 -0.074448936153551 -0.071958518218741 -0.069329546883034 -0.066566173895493 -0.063672800307481 -0.060654074633820 -0.057514890543135 -0.054260384031538 -0.050895930036071 -0.047427138445329 -0.043859849467760 -0.040200128320012 -0.036454259201651 -0.032628738525459 -0.028730267376674 -0.024765743178974 -0.020742250549305 -0.016667051328549 -0.012547573780477 -0.008391400956337 -0.004206258228207 -0.000000000000001 0.004206258228205 0.008391400956335 0.012547573780476 0.016667051328544 0.020742250549303 0.024765743178972 0.028730267376668 0.032628738525458 0.036454259201651 0.040200128320007 0.043859849467759 0.047427138445329 0.050895930036069 0.054260384031536 0.057514890543133 0.060654074633819 0.063672800307480 0.066566173895492 0.069329546883034 0.071958518218739 0.074448936153548 0.076796899654595 0.078998759440964 0.081051118688253 0.082950833447477 0.084695012824256 0.086281018961676 0.087706466868919 0.088969224135650 0.090067410569397 0.090999397790019 0.091763808812924 0.092359517647819 0.092785648937502 0.093041577655954 0.093126928881442 +0.100394924315588 0.100303376947616 0.100028863358275 0.099571769196222 0.098932737550740 0.098112669456491 0.097112724577856 0.095934322056312 0.094579141495371 0.093049124052078 0.091346473601096 0.089473657932821 0.087433409940514 0.085228728751762 0.082862880751020 0.080339400443270 0.077662091099619 0.074835025131632 0.071862544132091 0.068749258524308 0.065500046761525 0.062120054014867 0.058614690293686 0.054989627940100 0.051250798444992 0.047404388531458 0.043456835458819 0.039414821501083 0.035285267559926 0.031075325875597 0.026792371805071 0.022443994642096 0.018037987459538 0.013582335960648 0.009085206332633 0.004554932102210 -0.000000000000001 -0.004554932102213 -0.009085206332634 -0.013582335960650 -0.018037987459537 -0.022443994642100 -0.026792371805072 -0.031075325875599 -0.035285267559928 -0.039414821501087 -0.043456835458816 -0.047404388531461 -0.051250798444992 -0.054989627940099 -0.058614690293690 -0.062120054014873 -0.065500046761539 -0.068749258524310 -0.071862544132091 -0.074835025131633 -0.077662091099621 -0.080339400443269 -0.082862880751020 -0.085228728751763 -0.087433409940514 -0.089473657932824 -0.091346473601097 -0.093049124052078 -0.094579141495372 -0.095934322056314 -0.097112724577857 -0.098112669456500 -0.098932737550749 -0.099571769196222 -0.100028863358275 -0.100303376947617 -0.100394924315598 -0.100303376947617 -0.100028863358275 -0.099571769196222 -0.098932737550749 -0.098112669456501 -0.097112724577857 -0.095934322056314 -0.094579141495371 -0.093049124052078 -0.091346473601097 -0.089473657932823 -0.087433409940514 -0.085228728751763 -0.082862880751020 -0.080339400443269 -0.077662091099621 -0.074835025131632 -0.071862544132091 -0.068749258524309 -0.065500046761539 -0.062120054014872 -0.058614690293690 -0.054989627940100 -0.051250798444992 -0.047404388531461 -0.043456835458816 -0.039414821501087 -0.035285267559928 -0.031075325875602 -0.026792371805072 -0.022443994642102 -0.018037987459538 -0.013582335960649 -0.009085206332635 -0.004554932102212 -0.000000000000001 0.004554932102210 0.009085206332632 0.013582335960648 0.018037987459536 0.022443994642098 0.026792371805071 0.031075325875601 0.035285267559927 0.039414821501083 0.043456835458815 0.047404388531460 0.051250798444992 0.054989627940100 0.058614690293686 0.062120054014868 0.065500046761538 0.068749258524308 0.071862544132091 0.074835025131632 0.077662091099621 0.080339400443269 0.082862880751020 0.085228728751762 0.087433409940514 0.089473657932821 0.091346473601096 0.093049124052078 0.094579141495371 0.095934322056309 0.097112724577856 0.098112669456492 0.098932737550745 0.099571769196222 0.100028863358275 0.100303376947616 0.100394924315588 +0.106802041746530 0.106705172467761 0.106414694412616 0.105930997093067 0.105254730254359 0.104386804700583 0.103328393426342 0.102080933030637 0.100646125382084 0.099025939499442 0.097222613604426 0.095238657298753 0.093076853812660 0.090740262266818 0.088232219885883 0.085556344098243 0.082716534453836 0.079716974289213 0.076562132067477 0.073256762319949 0.069805906115640 0.066214890985337 0.062489330227892 0.058635121528285 0.054658444818991 0.050565759319964 0.046363799695545 0.042059571271360 0.037660344259257 0.033173646943643 0.028607257788719 0.023969196432676 0.019267713541857 0.014511279505156 0.009708571956833 0.004868462123553 -0.000000000000001 -0.004868462123554 -0.009708571956833 -0.014511279505158 -0.019267713541859 -0.023969196432677 -0.028607257788724 -0.033173646943645 -0.037660344259253 -0.042059571271361 -0.046363799695543 -0.050565759319967 -0.054658444818992 -0.058635121528282 -0.062489330227896 -0.066214890985339 -0.069805906115641 -0.073256762319949 -0.076562132067479 -0.079716974289213 -0.082716534453838 -0.085556344098249 -0.088232219885885 -0.090740262266821 -0.093076853812668 -0.095238657298754 -0.097222613604426 -0.099025939499449 -0.100646125382086 -0.102080933030646 -0.103328393426343 -0.104386804700585 -0.105254730254359 -0.105930997093067 -0.106414694412617 -0.106705172467762 -0.106802041746530 -0.106705172467762 -0.106414694412617 -0.105930997093067 -0.105254730254359 -0.104386804700584 -0.103328393426342 -0.102080933030639 -0.100646125382085 -0.099025939499449 -0.097222613604426 -0.095238657298754 -0.093076853812664 -0.090740262266821 -0.088232219885886 -0.085556344098251 -0.082716534453838 -0.079716974289213 -0.076562132067477 -0.073256762319949 -0.069805906115641 -0.066214890985330 -0.062489330227901 -0.058635121528286 -0.054658444818992 -0.050565759319967 -0.046363799695538 -0.042059571271361 -0.037660344259257 -0.033173646943643 -0.028607257788722 -0.023969196432679 -0.019267713541859 -0.014511279505158 -0.009708571956837 -0.004868462123555 -0.000000000000001 0.004868462123553 0.009708571956834 0.014511279505156 0.019267713541856 0.023969196432676 0.028607257788722 0.033173646943643 0.037660344259257 0.042059571271360 0.046363799695538 0.050565759319965 0.054658444818991 0.058635121528286 0.062489330227893 0.066214890985330 0.069805906115640 0.073256762319948 0.076562132067476 0.079716974289210 0.082716534453836 0.085556344098244 0.088232219885884 0.090740262266820 0.093076853812660 0.095238657298753 0.097222613604426 0.099025939499442 0.100646125382084 0.102080933030637 0.103328393426342 0.104386804700583 0.105254730254359 0.105930997093066 0.106414694412616 0.106705172467761 0.106802041746530 +0.112298866898239 0.112197591064388 0.111893892308706 0.111388157110902 0.110681030407370 0.109773416781779 0.108666482103095 0.107361655582040 0.105860632209801 0.104165375534872 0.102278120727233 0.100201377872137 0.097937935429782 0.095490863791707 0.092863518859560 0.090059545567781 0.087082881268065 0.083937758890419 0.080628709794095 0.077160566219500 0.073538463252457 0.069767840211832 0.065854441373279 0.061804315943053 0.057623817199115 0.053319600720155 0.048898621627082 0.044368130767009 0.039735669775238 0.035009064957092 0.030196419938707 0.025306107043135 0.020346757356580 0.015327249457859 0.010256696793372 0.005144433688993 -0.000000000000001 -0.005144433688994 -0.010256696793375 -0.015327249457860 -0.020346757356581 -0.025306107043140 -0.030196419938709 -0.035009064957095 -0.039735669775240 -0.044368130767013 -0.048898621627082 -0.053319600720160 -0.057623817199119 -0.061804315943055 -0.065854441373281 -0.069767840211834 -0.073538463252459 -0.077160566219510 -0.080628709794096 -0.083937758890420 -0.087082881268062 -0.090059545567780 -0.092863518859561 -0.095490863791707 -0.097937935429784 -0.100201377872144 -0.102278120727235 -0.104165375534872 -0.105860632209801 -0.107361655582041 -0.108666482103099 -0.109773416781779 -0.110681030407371 -0.111388157110902 -0.111893892308706 -0.112197591064388 -0.112298866898239 -0.112197591064388 -0.111893892308706 -0.111388157110902 -0.110681030407371 -0.109773416781779 -0.108666482103099 -0.107361655582041 -0.105860632209803 -0.104165375534872 -0.102278120727234 -0.100201377872148 -0.097937935429784 -0.095490863791707 -0.092863518859562 -0.090059545567785 -0.087082881268066 -0.083937758890419 -0.080628709794096 -0.077160566219505 -0.073538463252459 -0.069767840211833 -0.065854441373282 -0.061804315943054 -0.057623817199117 -0.053319600720160 -0.048898621627083 -0.044368130767013 -0.039735669775238 -0.035009064957099 -0.030196419938709 -0.025306107043138 -0.020346757356582 -0.015327249457860 -0.010256696793372 -0.005144433688995 -0.000000000000001 0.005144433688993 0.010256696793371 0.015327249457858 0.020346757356580 0.025306107043135 0.030196419938709 0.035009064957094 0.039735669775238 0.044368130767010 0.048898621627082 0.053319600720158 0.057623817199115 0.061804315943053 0.065854441373278 0.069767840211833 0.073538463252457 0.077160566219500 0.080628709794095 0.083937758890419 0.087082881268060 0.090059545567781 0.092863518859561 0.095490863791707 0.097937935429782 0.100201377872141 0.102278120727233 0.104165375534872 0.105860632209801 0.107361655582040 0.108666482103095 0.109773416781779 0.110681030407370 0.111388157110902 0.111893892308706 0.112197591064388 0.112298866898239 +0.116842928019785 0.116738195129898 0.116424121875913 0.115901084829030 0.115169712683120 0.114230887850655 0.113085748662917 0.111735692140530 0.110182377292004 0.108427728888136 0.106473941652689 0.104323484801360 0.101979106854264 0.099443840640198 0.096721008405217 0.093814226933415 0.090727412582339 0.087464786133383 0.084030877353939 0.080430529166866 0.076668901321821 0.072751473463751 0.068684047494057 0.064472749123091 0.060124028514760 0.055644659928703 0.051041740269721 0.046322686460240 0.041495231558098 0.036567419548846 0.031547598750423 0.026444413776205 0.021266796011965 0.016023952572198 0.010725353711426 0.005380718676885 -0.000000000000001 -0.005380718676885 -0.010725353711429 -0.016023952572197 -0.021266796011967 -0.026444413776207 -0.031547598750425 -0.036567419548846 -0.041495231558097 -0.046322686460242 -0.051041740269722 -0.055644659928708 -0.060124028514760 -0.064472749123095 -0.068684047494057 -0.072751473463752 -0.076668901321821 -0.080430529166868 -0.084030877353940 -0.087464786133385 -0.090727412582338 -0.093814226933415 -0.096721008405218 -0.099443840640200 -0.101979106854266 -0.104323484801360 -0.106473941652690 -0.108427728888141 -0.110182377292015 -0.111735692140536 -0.113085748662918 -0.114230887850655 -0.115169712683121 -0.115901084829030 -0.116424121875913 -0.116738195129899 -0.116842928019785 -0.116738195129899 -0.116424121875913 -0.115901084829030 -0.115169712683121 -0.114230887850655 -0.113085748662918 -0.111735692140536 -0.110182377292015 -0.108427728888145 -0.106473941652690 -0.104323484801360 -0.101979106854264 -0.099443840640200 -0.096721008405217 -0.093814226933414 -0.090727412582339 -0.087464786133385 -0.084030877353940 -0.080430529166868 -0.076668901321821 -0.072751473463752 -0.068684047494059 -0.064472749123092 -0.060124028514760 -0.055644659928706 -0.051041740269718 -0.046322686460242 -0.041495231558098 -0.036567419548846 -0.031547598750425 -0.026444413776208 -0.021266796011967 -0.016023952572197 -0.010725353711428 -0.005380718676887 -0.000000000000001 0.005380718676886 0.010725353711423 0.016023952572195 0.021266796011963 0.026444413776203 0.031547598750423 0.036567419548845 0.041495231558098 0.046322686460239 0.051041740269718 0.055644659928703 0.060124028514760 0.064472749123091 0.068684047494057 0.072751473463752 0.076668901321817 0.080430529166866 0.084030877353942 0.087464786133383 0.090727412582337 0.093814226933414 0.096721008405215 0.099443840640196 0.101979106854263 0.104323484801360 0.106473941652690 0.108427728888145 0.110182377292006 0.111735692140530 0.113085748662917 0.114230887850655 0.115169712683120 0.115901084829030 0.116424121875913 0.116738195129898 0.116842928019785 +0.120399020334455 0.120291806789557 0.119970285969866 0.119434817733691 0.118686003216782 0.117724686870513 0.116551959275917 0.115169160694431 0.113577885306065 0.111779986075002 0.109777580173289 0.107573054884383 0.105169073899376 0.102568583911662 0.099774821408598 0.096791319552943 0.093621915041582 0.090270754825276 0.086742302569670 0.083041344736314 0.079172996160904 0.075142705006562 0.070956256970660 0.066619778626550 0.062139739784239 0.057522954759171 0.052776582443004 0.047908125077110 0.042925425636784 0.037836663742330 0.032650350022253 0.027375318863793 0.022020719496408 0.016596005365026 0.011110921761718 0.005575491696416 -0.000000000000001 -0.005575491696417 -0.011110921761719 -0.016596005365028 -0.022020719496406 -0.027375318863796 -0.032650350022255 -0.037836663742335 -0.042925425636785 -0.047908125077113 -0.052776582443004 -0.057522954759171 -0.062139739784239 -0.066619778626550 -0.070956256970662 -0.075142705006562 -0.079172996160907 -0.083041344736315 -0.086742302569673 -0.090270754825275 -0.093621915041582 -0.096791319552946 -0.099774821408598 -0.102568583911661 -0.105169073899379 -0.107573054884381 -0.109777580173288 -0.111779986075002 -0.113577885306065 -0.115169160694432 -0.116551959275929 -0.117724686870510 -0.118686003216791 -0.119434817733691 -0.119970285969867 -0.120291806789557 -0.120399020334456 -0.120291806789557 -0.119970285969867 -0.119434817733682 -0.118686003216791 -0.117724686870518 -0.116551959275929 -0.115169160694431 -0.113577885306065 -0.111779986075001 -0.109777580173289 -0.107573054884385 -0.105169073899378 -0.102568583911662 -0.099774821408598 -0.096791319552950 -0.093621915041582 -0.090270754825277 -0.086742302569672 -0.083041344736314 -0.079172996160899 -0.075142705006562 -0.070956256970663 -0.066619778626555 -0.062139739784239 -0.057522954759171 -0.052776582443000 -0.047908125077113 -0.042925425636785 -0.037836663742331 -0.032650350022253 -0.027375318863796 -0.022020719496406 -0.016596005365027 -0.011110921761720 -0.005575491696417 -0.000000000000001 0.005575491696416 0.011110921761717 0.016596005365026 0.022020719496403 0.027375318863792 0.032650350022252 0.037836663742329 0.042925425636784 0.047908125077111 0.052776582442999 0.057522954759171 0.062139739784239 0.066619778626554 0.070956256970660 0.075142705006562 0.079172996160897 0.083041344736313 0.086742302569671 0.090270754825276 0.093621915041581 0.096791319552943 0.099774821408598 0.102568583911662 0.105169073899377 0.107573054884384 0.109777580173288 0.111779986075001 0.113577885306065 0.115169160694431 0.116551959275917 0.117724686870512 0.118686003216781 0.119434817733682 0.119970285969866 0.120291806789557 0.120399020334455 +0.122939475152865 0.122830776808816 0.122504793761921 0.121961862477229 0.121202545421008 0.120227633574885 0.119038149910734 0.117635353781679 0.116020746172776 0.114196075742982 0.112163345579265 0.109924820573363 0.107483035321833 0.104840802441457 0.102001221184275 0.098967686229353 0.095743896522925 0.092333864033510 0.088741922285123 0.084972734529289 0.081031301415393 0.076922968018729 0.072653430087002 0.068228739368375 0.063655307887855 0.058939911043786 0.054089689401832 0.049112149071547 0.044015160558182 0.038806955992179 0.033496124648546 0.028091606679464 0.022602684995449 0.017038975242650 0.011410413837271 0.005727244031541 -0.000000000000001 -0.005727244031544 -0.011410413837272 -0.017038975242651 -0.022602684995451 -0.028091606679466 -0.033496124648547 -0.038806955992181 -0.044015160558185 -0.049112149071550 -0.054089689401834 -0.058939911043789 -0.063655307887856 -0.068228739368373 -0.072653430087004 -0.076922968018730 -0.081031301415391 -0.084972734529290 -0.088741922285124 -0.092333864033513 -0.095743896522925 -0.098967686229360 -0.102001221184277 -0.104840802441459 -0.107483035321833 -0.109924820573364 -0.112163345579265 -0.114196075742982 -0.116020746172776 -0.117635353781679 -0.119038149910737 -0.120227633574889 -0.121202545421010 -0.121961862477229 -0.122504793761921 -0.122830776808818 -0.122939475152867 -0.122830776808818 -0.122504793761921 -0.121961862477229 -0.121202545421011 -0.120227633574888 -0.119038149910736 -0.117635353781679 -0.116020746172776 -0.114196075742982 -0.112163345579265 -0.109924820573363 -0.107483035321833 -0.104840802441458 -0.102001221184277 -0.098967686229357 -0.095743896522926 -0.092333864033513 -0.088741922285124 -0.084972734529290 -0.081031301415390 -0.076922968018729 -0.072653430087005 -0.068228739368375 -0.063655307887855 -0.058939911043786 -0.054089689401836 -0.049112149071550 -0.044015160558187 -0.038806955992181 -0.033496124648548 -0.028091606679466 -0.022602684995452 -0.017038975242652 -0.011410413837274 -0.005727244031544 -0.000000000000001 0.005727244031542 0.011410413837271 0.017038975242651 0.022602684995450 0.028091606679466 0.033496124648547 0.038806955992179 0.044015160558187 0.049112149071549 0.054089689401833 0.058939911043786 0.063655307887855 0.068228739368375 0.072653430087003 0.076922968018729 0.081031301415389 0.084972734529290 0.088741922285124 0.092333864033512 0.095743896522924 0.098967686229356 0.102001221184271 0.104840802441456 0.107483035321833 0.109924820573362 0.112163345579265 0.114196075742982 0.116020746172776 0.117635353781679 0.119038149910734 0.120227633574885 0.121202545421008 0.121961862477229 0.122504793761921 0.122830776808816 0.122939475152865 +0.124444371599542 0.124335196170607 0.124007771868786 0.123462405260374 0.122699609319716 0.121720106449610 0.120524832658874 0.119114942847467 0.117491817134615 0.115657068153632 0.113612549223586 0.111360363296931 0.108902872571097 0.106242708642030 0.103382783069008 0.100326298211926 0.097076758195946 0.093637979852591 0.090014103482622 0.086209603282867 0.082229297277900 0.078078356597153 0.073762313939553 0.069287071070118 0.064658905197025 0.059884474083128 0.054970819752053 0.049925370657628 0.044755942193429 0.039470735430456 0.034078333981424 0.028587698902845 0.023008161558989 0.017349414385784 0.011621499507420 0.005834795173449 -0.000000000000001 -0.005834795173452 -0.011621499507421 -0.017349414385784 -0.023008161558989 -0.028587698902849 -0.034078333981430 -0.039470735430459 -0.044755942193433 -0.049925370657629 -0.054970819752056 -0.059884474083129 -0.064658905197033 -0.069287071070114 -0.073762313939554 -0.078078356597152 -0.082229297277908 -0.086209603282870 -0.090014103482622 -0.093637979852592 -0.097076758195946 -0.100326298211926 -0.103382783069015 -0.106242708642033 -0.108902872571097 -0.111360363296931 -0.113612549223588 -0.115657068153634 -0.117491817134619 -0.119114942847467 -0.120524832658874 -0.121720106449612 -0.122699609319717 -0.123462405260374 -0.124007771868787 -0.124335196170611 -0.124444371599546 -0.124335196170611 -0.124007771868787 -0.123462405260374 -0.122699609319717 -0.121720106449612 -0.120524832658874 -0.119114942847467 -0.117491817134619 -0.115657068153634 -0.113612549223588 -0.111360363296931 -0.108902872571100 -0.106242708642037 -0.103382783069011 -0.100326298211926 -0.097076758195946 -0.093637979852593 -0.090014103482622 -0.086209603282868 -0.082229297277904 -0.078078356597152 -0.073762313939552 -0.069287071070120 -0.064658905197028 -0.059884474083129 -0.054970819752053 -0.049925370657631 -0.044755942193434 -0.039470735430459 -0.034078333981427 -0.028587698902846 -0.023008161558990 -0.017349414385784 -0.011621499507421 -0.005834795173451 -0.000000000000001 0.005834795173450 0.011621499507420 0.017349414385784 0.023008161558990 0.028587698902845 0.034078333981424 0.039470735430458 0.044755942193433 0.049925370657627 0.054970819752053 0.059884474083128 0.064658905197028 0.069287071070118 0.073762313939553 0.078078356597150 0.082229297277901 0.086209603282867 0.090014103482622 0.093637979852592 0.097076758195944 0.100326298211926 0.103382783069010 0.106242708642029 0.108902872571094 0.111360363296931 0.113612549223588 0.115657068153634 0.117491817134619 0.119114942847467 0.120524832658874 0.121720106449610 0.122699609319716 0.123462405260374 0.124007771868786 0.124335196170607 0.124444371599542 +0.124901689339080 0.124793048710251 0.124467216713020 0.123924463733877 0.123165242804451 0.122190193154244 0.121000145127904 0.119596126410972 0.117979369492765 0.116151320280625 0.114113647765636 0.111868254626887 0.109417288649317 0.106763154818810 0.103908527948498 0.100856365681099 0.097609921705113 0.094172759015957 0.090548763049041 0.086742154508058 0.082757501710093 0.078599732269089 0.074274143940302 0.069786414451106 0.065142610147891 0.060349193294590 0.055413027865487 0.050453959288901 0.045465954851294 0.040281854509424 0.034918052694234 0.029391991981028 0.023722074844531 0.017927568632054 0.012028504392176 0.006045570242373 -0.000000000000001 -0.006045570242374 -0.012028504392176 -0.017927568632054 -0.023722074844528 -0.029391991981033 -0.034918052694238 -0.040281854509427 -0.045465954851292 -0.050453959288901 -0.055413027865484 -0.060349193294590 -0.065142610147894 -0.069786414451107 -0.074274143940302 -0.078599732269089 -0.082757501710093 -0.086742154508060 -0.090548763049042 -0.094172759015957 -0.097609921705110 -0.100856365681102 -0.103908527948503 -0.106763154818811 -0.109417288649310 -0.111868254626895 -0.114113647765636 -0.116151320280625 -0.117979369492765 -0.119596126410971 -0.121000145127904 -0.122190193154248 -0.123165242804452 -0.123924463733877 -0.124467216713020 -0.124793048710251 -0.124901689339089 -0.124793048710251 -0.124467216713020 -0.123924463733877 -0.123165242804452 -0.122190193154247 -0.121000145127904 -0.119596126410972 -0.117979369492765 -0.116151320280625 -0.114113647765636 -0.111868254626896 -0.109417288649319 -0.106763154818810 -0.103908527948498 -0.100856365681102 -0.097609921705113 -0.094172759015956 -0.090548763049041 -0.086742154508060 -0.082757501710091 -0.078599732269089 -0.074274143940301 -0.069786414451107 -0.065142610147892 -0.060349193294590 -0.055413027865481 -0.050453959288900 -0.045465954851298 -0.040281854509428 -0.034918052694235 -0.029391991981029 -0.023722074844529 -0.017927568632055 -0.012028504392178 -0.006045570242375 -0.000000000000001 0.006045570242373 0.012028504392177 0.017927568632054 0.023722074844529 0.029391991981028 0.034918052694233 0.040281854509426 0.045465954851298 0.050453959288897 0.055413027865481 0.060349193294590 0.065142610147892 0.069786414451106 0.074274143940306 0.078599732269086 0.082757501710087 0.086742154508059 0.090548763049041 0.094172759015956 0.097609921705109 0.100856365681102 0.103908527948498 0.106763154818810 0.109417288649316 0.111868254626886 0.114113647765634 0.116151320280625 0.117979369492765 0.119596126410970 0.121000145127904 0.122190193154244 0.123165242804451 0.123924463733877 0.124467216713020 0.124793048710251 0.124901689339080 +0.124307401137902 0.124200303644396 0.123879086953091 0.123343979262010 0.122595363660399 0.121633782236258 0.120459941764148 0.119074720911407 0.117479178884160 0.115674565417717 0.113662332001514 0.111444144213091 0.109021895023258 0.106397718921445 0.103574006699422 0.100553420721983 0.097338910504476 0.093933728410511 0.090341445277862 0.086565965776364 0.082611543300635 0.078482794198683 0.074184711139813 0.069803824700259 0.065690082545483 0.061311416495394 0.056679737632077 0.051808390571523 0.046712093600899 0.041406869218721 0.035909965525378 0.030239768979815 0.024415709102716 0.018458155766219 0.012388309766207 0.006228087422741 -0.000000000000000 -0.006228087422739 -0.012388309766205 -0.018458155766233 -0.024415709102715 -0.030239768979819 -0.035909965525384 -0.041406869218733 -0.046712093600899 -0.051808390571523 -0.056679737632089 -0.061311416495403 -0.065690082545487 -0.069803824700261 -0.074184711139814 -0.078482794198683 -0.082611543300650 -0.086565965776365 -0.090341445277862 -0.093933728410516 -0.097338910504476 -0.100553420721983 -0.103574006699426 -0.106397718921447 -0.109021895023258 -0.111444144213090 -0.113662332001514 -0.115674565417727 -0.117479178884162 -0.119074720911407 -0.120459941764152 -0.121633782236258 -0.122595363660400 -0.123343979262010 -0.123879086953091 -0.124200303644396 -0.124307401137905 -0.124200303644396 -0.123879086953091 -0.123343979262010 -0.122595363660400 -0.121633782236258 -0.120459941764149 -0.119074720911407 -0.117479178884164 -0.115674565417731 -0.113662332001514 -0.111444144213094 -0.109021895023259 -0.106397718921447 -0.103574006699422 -0.100553420721980 -0.097338910504476 -0.093933728410514 -0.090341445277863 -0.086565965776364 -0.082611543300649 -0.078482794198679 -0.074184711139813 -0.069803824700265 -0.065690082545484 -0.061311416495400 -0.056679737632092 -0.051808390571523 -0.046712093600901 -0.041406869218722 -0.035909965525382 -0.030239768979819 -0.024415709102714 -0.018458155766233 -0.012388309766209 -0.006228087422742 -0.000000000000000 0.006228087422742 0.012388309766207 0.018458155766231 0.024415709102714 0.030239768979819 0.035909965525380 0.041406869218720 0.046712093600899 0.051808390571523 0.056679737632090 0.061311416495399 0.065690082545484 0.069803824700254 0.074184711139814 0.078482794198679 0.082611543300646 0.086565965776364 0.090341445277863 0.093933728410514 0.097338910504473 0.100553420721980 0.103574006699422 0.106397718921447 0.109021895023259 0.111444144213094 0.113662332001513 0.115674565417718 0.117479178884157 0.119074720911407 0.120459941764148 0.121633782236258 0.122595363660400 0.123343979262010 0.123879086953091 0.124200303644396 0.124307401137902 +0.122665504554637 0.122560947287527 0.122247335277265 0.121724848842985 0.120993791659530 0.120054595437833 0.118907826408295 0.117554193540134 0.115994558409419 0.114229946612526 0.112261560602937 0.110090793815452 0.107719245925093 0.105148739076040 0.102381334902556 0.099419352153606 0.096265384724160 0.092922319887133 0.089393356515662 0.085682023080306 0.081792195203387 0.078434453273984 0.074887864932058 0.071042092369538 0.066906193537712 0.062490864608232 0.057808398125665 0.052872630020168 0.047698875806019 0.042303856372953 0.036705613854282 0.030923418129835 0.024977664592276 0.018889763869948 0.012682024260167 0.006377527681175 -0.000000000000001 -0.006377527681176 -0.012682024260166 -0.018889763869952 -0.024977664592274 -0.030923418129835 -0.036705613854284 -0.042303856372962 -0.047698875806019 -0.052872630020169 -0.057808398125670 -0.062490864608233 -0.066906193537714 -0.071042092369541 -0.074887864932056 -0.078434453273984 -0.081792195203393 -0.085682023080306 -0.089393356515663 -0.092922319887133 -0.096265384724159 -0.099419352153610 -0.102381334902557 -0.105148739076041 -0.107719245925093 -0.110090793815465 -0.112261560602937 -0.114229946612535 -0.115994558409420 -0.117554193540134 -0.118907826408294 -0.120054595437834 -0.120993791659533 -0.121724848842985 -0.122247335277265 -0.122560947287527 -0.122665504554637 -0.122560947287527 -0.122247335277265 -0.121724848842985 -0.120993791659533 -0.120054595437835 -0.118907826408295 -0.117554193540134 -0.115994558409423 -0.114229946612535 -0.112261560602937 -0.110090793815457 -0.107719245925094 -0.105148739076043 -0.102381334902557 -0.099419352153610 -0.096265384724163 -0.092922319887134 -0.089393356515663 -0.085682023080307 -0.081792195203387 -0.078434453273982 -0.074887864932057 -0.071042092369546 -0.066906193537713 -0.062490864608232 -0.057808398125670 -0.052872630020171 -0.047698875806020 -0.042303856372953 -0.036705613854282 -0.030923418129838 -0.024977664592273 -0.018889763869954 -0.012682024260169 -0.006377527681176 -0.000000000000001 0.006377527681174 0.012682024260169 0.018889763869952 0.024977664592273 0.030923418129834 0.036705613854281 0.042303856372950 0.047698875806019 0.052872630020168 0.057808398125670 0.062490864608232 0.066906193537713 0.071042092369545 0.074887864932058 0.078434453273981 0.081792195203386 0.085682023080305 0.089393356515663 0.092922319887134 0.096265384724159 0.099419352153609 0.102381334902557 0.105148739076041 0.107719245925093 0.110090793815449 0.112261560602937 0.114229946612530 0.115994558409419 0.117554193540134 0.118907826408295 0.120054595437833 0.120993791659530 0.121724848842985 0.122247335277265 0.122560947287527 0.122665504554637 +0.119987992516338 0.119886953712665 0.119583879317410 0.119078896441974 0.118372220474695 0.117464160347372 0.116355125833893 0.115045636806807 0.113536334357940 0.111827993669877 0.109921538506318 0.107818057172291 0.105518819779168 0.103025296634130 0.100339177561028 0.097462391947303 0.094397129301902 0.091145860100532 0.087794648688140 0.085258793035407 0.082393055245040 0.079201199419268 0.075688798478433 0.071863227380485 0.067733643839328 0.063310956618776 0.058607781570966 0.053638385679539 0.048418619457208 0.042965838134128 0.037298812157334 0.031437627601344 0.025403577165419 0.019219042503678 0.012907368699028 0.006492731751004 -0.000000000000000 -0.006492731751004 -0.012907368699028 -0.019219042503678 -0.025403577165420 -0.031437627601345 -0.037298812157334 -0.042965838134126 -0.048418619457209 -0.053638385679539 -0.058607781570968 -0.063310956618777 -0.067733643839332 -0.071863227380488 -0.075688798478434 -0.079201199419268 -0.082393055245040 -0.085258793035408 -0.087794648688137 -0.091145860100528 -0.094397129301902 -0.097462391947302 -0.100339177561028 -0.103025296634130 -0.105518819779172 -0.107818057172292 -0.109921538506318 -0.111827993669879 -0.113536334357943 -0.115045636806809 -0.116355125833897 -0.117464160347372 -0.118372220474695 -0.119078896441974 -0.119583879317410 -0.119886953712665 -0.119987992516338 -0.119886953712665 -0.119583879317410 -0.119078896441974 -0.118372220474696 -0.117464160347372 -0.116355125833897 -0.115045636806808 -0.113536334357942 -0.111827993669879 -0.109921538506318 -0.107818057172291 -0.105518819779170 -0.103025296634133 -0.100339177561029 -0.097462391947302 -0.094397129301902 -0.091145860100532 -0.087794648688144 -0.085258793035408 -0.082393055245042 -0.079201199419271 -0.075688798478436 -0.071863227380486 -0.067733643839328 -0.063310956618777 -0.058607781570967 -0.053638385679542 -0.048418619457211 -0.042965838134130 -0.037298812157334 -0.031437627601344 -0.025403577165418 -0.019219042503677 -0.012907368699029 -0.006492731751004 -0.000000000000000 0.006492731751003 0.012907368699028 0.019219042503676 0.025403577165418 0.031437627601343 0.037298812157334 0.042965838134130 0.048418619457209 0.053638385679539 0.058607781570967 0.063310956618776 0.067733643839328 0.071863227380486 0.075688798478432 0.079201199419268 0.082393055245040 0.085258793035408 0.087794648688144 0.091145860100532 0.094397129301902 0.097462391947302 0.100339177561028 0.103025296634129 0.105518819779168 0.107818057172291 0.109921538506317 0.111827993669879 0.113536334357942 0.115045636806808 0.116355125833893 0.117464160347371 0.118372220474695 0.119078896441974 0.119583879317410 0.119886953712665 0.119987992516338 +0.116294763002426 0.116198194577981 0.115908511902330 0.115425783952691 0.114750129626273 0.113881723602246 0.112820804468413 0.111567685031855 0.110122764712661 0.108486543898121 0.106659640114529 0.104642805856571 0.102436947894491 0.100043147865275 0.097462683938674 0.094697053335811 0.091747995468183 0.089919179454201 0.087825740432268 0.085388445404470 0.082608859748283 0.079490460856226 0.076038645319831 0.072260722762538 0.068165896301920 0.063765229721383 0.059071601530152 0.054099646188484 0.048865682870697 0.043387632231679 0.037684921732507 0.031778380166130 0.025690122105303 0.019443423070349 0.013062586284021 0.006572801944024 -0.000000000000001 -0.006572801944025 -0.013062586284020 -0.019443423070350 -0.025690122105304 -0.031778380166130 -0.037684921732509 -0.043387632231680 -0.048865682870698 -0.054099646188485 -0.059071601530153 -0.063765229721384 -0.068165896301924 -0.072260722762538 -0.076038645319831 -0.079490460856227 -0.082608859748283 -0.085388445404473 -0.087825740432267 -0.089919179454201 -0.091747995468183 -0.094697053335810 -0.097462683938678 -0.100043147865280 -0.102436947894495 -0.104642805856571 -0.106659640114527 -0.108486543898121 -0.110122764712662 -0.111567685031855 -0.112820804468417 -0.113881723602246 -0.114750129626278 -0.115425783952691 -0.115908511902330 -0.116198194577981 -0.116294763002426 -0.116198194577981 -0.115908511902330 -0.115425783952691 -0.114750129626278 -0.113881723602246 -0.112820804468418 -0.111567685031855 -0.110122764712662 -0.108486543898122 -0.106659640114531 -0.104642805856572 -0.102436947894494 -0.100043147865275 -0.097462683938676 -0.094697053335810 -0.091747995468184 -0.089919179454200 -0.087825740432269 -0.085388445404470 -0.082608859748283 -0.079490460856227 -0.076038645319829 -0.072260722762538 -0.068165896301922 -0.063765229721384 -0.059071601530153 -0.054099646188483 -0.048865682870702 -0.043387632231683 -0.037684921732507 -0.031778380166131 -0.025690122105303 -0.019443423070349 -0.013062586284023 -0.006572801944026 -0.000000000000001 0.006572801944024 0.013062586284021 0.019443423070347 0.025690122105302 0.031778380166131 0.037684921732506 0.043387632231680 0.048865682870697 0.054099646188483 0.059071601530153 0.063765229721382 0.068165896301920 0.072260722762538 0.076038645319830 0.079490460856227 0.082608859748283 0.085388445404470 0.087825740432269 0.089919179454200 0.091747995468183 0.094697053335809 0.097462683938675 0.100043147865275 0.102436947894490 0.104642805856572 0.106659640114527 0.108486543898121 0.110122764712661 0.111567685031855 0.112820804468413 0.113881723602246 0.114750129626273 0.115425783952691 0.115908511902330 0.116198194577981 0.116294763002426 +0.111613468521666 0.111522288803181 0.111248751331592 0.110792862463468 0.110154637130385 0.109334105301437 0.108331320944172 0.107146373398418 0.105779401053793 0.104230607199674 0.102500277894660 0.100588801682705 0.098496690964098 0.096224604812361 0.093773373012590 0.092134052604535 0.090876633369035 0.089268349469384 0.087306382385123 0.084989870683808 0.082319946640270 0.079299759023743 0.075934481819794 0.072231308758223 0.068199433624351 0.063850016436480 0.059196135678360 0.054252726879343 0.049036507937126 0.043565891677231 0.037860886238929 0.031942983968577 0.025835039587641 0.019561138483133 0.013146456042493 0.006617109022270 -0.000000000000000 -0.006617109022270 -0.013146456042493 -0.019561138483134 -0.025835039587642 -0.031942983968577 -0.037860886238929 -0.043565891677225 -0.049036507937123 -0.054252726879343 -0.059196135678361 -0.063850016436481 -0.068199433624352 -0.072231308758225 -0.075934481819793 -0.079299759023743 -0.082319946640270 -0.084989870683810 -0.087306382385125 -0.089268349469387 -0.090876633369036 -0.092134052604535 -0.093773373012591 -0.096224604812362 -0.098496690964099 -0.100588801682707 -0.102500277894660 -0.104230607199678 -0.105779401053796 -0.107146373398418 -0.108331320944172 -0.109334105301439 -0.110154637130385 -0.110792862463468 -0.111248751331593 -0.111522288803181 -0.111613468521666 -0.111522288803181 -0.111248751331593 -0.110792862463468 -0.110154637130386 -0.109334105301438 -0.108331320944172 -0.107146373398418 -0.105779401053795 -0.104230607199678 -0.102500277894661 -0.100588801682707 -0.098496690964102 -0.096224604812362 -0.093773373012590 -0.092134052604536 -0.090876633369036 -0.089268349469388 -0.087306382385123 -0.084989870683811 -0.082319946640270 -0.079299759023744 -0.075934481819793 -0.072231308758225 -0.068199433624351 -0.063850016436479 -0.059196135678362 -0.054252726879344 -0.049036507937127 -0.043565891677230 -0.037860886238929 -0.031942983968577 -0.025835039587641 -0.019561138483133 -0.013146456042495 -0.006617109022271 -0.000000000000000 0.006617109022270 0.013146456042494 0.019561138483131 0.025835039587640 0.031942983968576 0.037860886238929 0.043565891677230 0.049036507937125 0.054252726879343 0.059196135678361 0.063850016436478 0.068199433624351 0.072231308758223 0.075934481819793 0.079299759023743 0.082319946640270 0.084989870683810 0.087306382385123 0.089268349469384 0.090876633369035 0.092134052604535 0.093773373012590 0.096224604812361 0.098496690964099 0.100588801682705 0.102500277894660 0.104230607199673 0.105779401053794 0.107146373398418 0.108331320944172 0.109334105301437 0.110154637130385 0.110792862463468 0.111248751331592 0.111522288803181 0.111613468521666 +0.105979306526531 0.105894393238748 0.105639632807998 0.105214964957949 0.104620293967597 0.103855495734213 0.102920427569194 0.101814940635388 0.100538894909794 0.099092176531140 0.097474717369454 0.095686516633267 0.093727664309678 0.091713810651216 0.091324054364656 0.090588248270018 0.089498990338831 0.088050807421789 0.086240223101281 0.084065811746908 0.081528238309354 0.078630283495199 0.075376854073123 0.071774978173503 0.067833785554732 0.063564472922419 0.058980254499024 0.054096298152099 0.048929647497309 0.043499130497680 0.037825255181738 0.031930093199871 0.025837152029795 0.019571236727105 0.013158302195775 0.006625297024686 -0.000000000000000 -0.006625297024686 -0.013158302195776 -0.019571236727106 -0.025837152029794 -0.031930093199876 -0.037825255181743 -0.043499130497683 -0.048929647497309 -0.054096298152099 -0.058980254499024 -0.063564472922418 -0.067833785554732 -0.071774978173503 -0.075376854073123 -0.078630283495197 -0.081528238309355 -0.084065811746912 -0.086240223101280 -0.088050807421789 -0.089498990338836 -0.090588248270019 -0.091324054364657 -0.091713810651218 -0.093727664309678 -0.095686516633271 -0.097474717369457 -0.099092176531141 -0.100538894909794 -0.101814940635390 -0.102920427569196 -0.103855495734218 -0.104620293967597 -0.105214964957950 -0.105639632808001 -0.105894393238748 -0.105979306526531 -0.105894393238748 -0.105639632808001 -0.105214964957949 -0.104620293967596 -0.103855495734214 -0.102920427569196 -0.101814940635388 -0.100538894909795 -0.099092176531141 -0.097474717369456 -0.095686516633272 -0.093727664309678 -0.091713810651216 -0.091324054364657 -0.090588248270019 -0.089498990338831 -0.088050807421789 -0.086240223101281 -0.084065811746910 -0.081528238309355 -0.078630283495196 -0.075376854073125 -0.071774978173503 -0.067833785554732 -0.063564472922418 -0.058980254499024 -0.054096298152097 -0.048929647497311 -0.043499130497683 -0.037825255181741 -0.031930093199874 -0.025837152029794 -0.019571236727105 -0.013158302195777 -0.006625297024686 -0.000000000000000 0.006625297024686 0.013158302195776 0.019571236727105 0.025837152029794 0.031930093199874 0.037825255181741 0.043499130497682 0.048929647497310 0.054096298152097 0.058980254499024 0.063564472922418 0.067833785554732 0.071774978173503 0.075376854073123 0.078630283495195 0.081528238309354 0.084065811746910 0.086240223101281 0.088050807421789 0.089498990338833 0.090588248270019 0.091324054364657 0.091713810651216 0.093727664309678 0.095686516633268 0.097474717369457 0.099092176531141 0.100538894909794 0.101814940635388 0.102920427569194 0.103855495734214 0.104620293967596 0.105214964957949 0.105639632808000 0.105894393238748 0.105979306526531 +0.099434752357806 0.099356935918687 0.099123442613852 0.098734142026778 0.098188821935310 0.097487195970701 0.096628914242334 0.095613576831210 0.094440750029008 0.093109985173837 0.091620839909868 0.089972901675081 0.089047234914814 0.089192930694487 0.088997801485609 0.088451683490926 0.087546334788092 0.086275521656429 0.084635091001487 0.082623028278814 0.080239500425936 0.077486883423251 0.074369774219290 0.070894986872344 0.067071532878653 0.062910585775616 0.058425430226122 0.053631395906704 0.048545776635955 0.043187735290567 0.037578195163110 0.031739718517586 0.025696373195036 0.019473588211515 0.013097999373606 0.006597286011914 -0.000000000000000 -0.006597286011914 -0.013097999373606 -0.019473588211514 -0.025696373195038 -0.031739718517589 -0.037578195163114 -0.043187735290569 -0.048545776635956 -0.053631395906704 -0.058425430226123 -0.062910585775617 -0.067071532878655 -0.070894986872346 -0.074369774219292 -0.077486883423250 -0.080239500425936 -0.082623028278816 -0.084635091001487 -0.086275521656431 -0.087546334788095 -0.088451683490928 -0.088997801485611 -0.089192930694487 -0.089047234914815 -0.089972901675082 -0.091620839909868 -0.093109985173837 -0.094440750029008 -0.095613576831210 -0.096628914242338 -0.097487195970701 -0.098188821935309 -0.098734142026780 -0.099123442613854 -0.099356935918688 -0.099434752357806 -0.099356935918689 -0.099123442613852 -0.098734142026780 -0.098188821935309 -0.097487195970701 -0.096628914242338 -0.095613576831210 -0.094440750029008 -0.093109985173837 -0.091620839909869 -0.089972901675082 -0.089047234914813 -0.089192930694487 -0.088997801485610 -0.088451683490928 -0.087546334788093 -0.086275521656431 -0.084635091001489 -0.082623028278815 -0.080239500425934 -0.077486883423250 -0.074369774219293 -0.070894986872346 -0.067071532878656 -0.062910585775619 -0.058425430226124 -0.053631395906704 -0.048545776635957 -0.043187735290570 -0.037578195163113 -0.031739718517588 -0.025696373195037 -0.019473588211514 -0.013097999373607 -0.006597286011915 -0.000000000000000 0.006597286011914 0.013097999373606 0.019473588211513 0.025696373195035 0.031739718517587 0.037578195163112 0.043187735290569 0.048545776635957 0.053631395906703 0.058425430226123 0.062910585775616 0.067071532878654 0.070894986872344 0.074369774219289 0.077486883423250 0.080239500425934 0.082623028278815 0.084635091001489 0.086275521656431 0.087546334788095 0.088451683490928 0.088997801485609 0.089192930694487 0.089047234914812 0.089972901675080 0.091620839909867 0.093109985173837 0.094440750029008 0.095613576831210 0.096628914242334 0.097487195970701 0.098188821935309 0.098734142026778 0.099123442613852 0.099356935918687 0.099434752357806 +0.092029236750708 0.091959293925994 0.091749397053062 0.091399342599604 0.090908796877035 0.090277304286583 0.089504298760560 0.088589118296611 0.087531022454804 0.086329212660692 0.084982855131962 0.085035000413647 0.085719294975347 0.086073270211303 0.086083969176295 0.085740319503993 0.085033238596180 0.083955725014613 0.082502935337436 0.080672245850493 0.078463298556607 0.075878031103204 0.072920690348786 0.069597829410903 0.065918288162409 0.061893157266493 0.057535725964631 0.052861413953577 0.047887687806908 0.042633962513041 0.037121488813343 0.031373227131029 0.025413708982414 0.019268886856428 0.012965973635304 0.006533272708227 -0.000000000000000 -0.006533272708227 -0.012965973635303 -0.019268886856428 -0.025413708982412 -0.031373227131029 -0.037121488813346 -0.042633962513042 -0.047887687806908 -0.052861413953574 -0.057535725964629 -0.061893157266494 -0.065918288162411 -0.069597829410906 -0.072920690348789 -0.075878031103204 -0.078463298556607 -0.080672245850495 -0.082502935337437 -0.083955725014613 -0.085033238596180 -0.085740319503994 -0.086083969176297 -0.086073270211303 -0.085719294975347 -0.085035000413645 -0.084982855131962 -0.086329212660692 -0.087531022454805 -0.088589118296611 -0.089504298760561 -0.090277304286584 -0.090908796877039 -0.091399342599604 -0.091749397053067 -0.091959293925994 -0.092029236750708 -0.091959293925994 -0.091749397053067 -0.091399342599604 -0.090908796877039 -0.090277304286585 -0.089504298760562 -0.088589118296611 -0.087531022454806 -0.086329212660690 -0.084982855131962 -0.085035000413647 -0.085719294975347 -0.086073270211303 -0.086083969176296 -0.085740319503996 -0.085033238596180 -0.083955725014613 -0.082502935337437 -0.080672245850495 -0.078463298556606 -0.075878031103204 -0.072920690348788 -0.069597829410903 -0.065918288162411 -0.061893157266493 -0.057535725964628 -0.052861413953573 -0.047887687806908 -0.042633962513041 -0.037121488813344 -0.031373227131030 -0.025413708982412 -0.019268886856426 -0.012965973635305 -0.006533272708228 -0.000000000000000 0.006533272708228 0.012965973635304 0.019268886856426 0.025413708982411 0.031373227131029 0.037121488813344 0.042633962513041 0.047887687806908 0.052861413953573 0.057535725964628 0.061893157266493 0.065918288162409 0.069597829410902 0.072920690348787 0.075878031103204 0.078463298556604 0.080672245850495 0.082502935337437 0.083955725014613 0.085033238596178 0.085740319503995 0.086083969176295 0.086073270211303 0.085719294975347 0.085035000413647 0.084982855131961 0.086329212660690 0.087531022454804 0.088589118296611 0.089504298760561 0.090277304286583 0.090908796877039 0.091399342599603 0.091749397053062 0.091959293925994 0.092029236750708 +0.083818770355365 0.083757418320760 0.083573268600761 0.083266042126272 0.082835279698221 0.082280350807332 0.081600465873395 0.080794691796888 0.079861970686241 0.078801141596222 0.079692410558509 0.080907441364027 0.081807971835700 0.082378276687322 0.082604446924533 0.082474513915108 0.081978559983875 0.081108814653395 0.079859735758599 0.078228074775909 0.076212925826054 0.073815757930824 0.071040430230545 0.067893189995872 0.064382653397011 0.060519769122871 0.056317765071351 0.051792078459464 0.046960269826503 0.041841921524869 0.036458521409858 0.030833332551402 0.024991249895959 0.018958644905313 0.012763199289792 0.006433729035666 -0.000000000000000 -0.006433729035667 -0.012763199289792 -0.018958644905313 -0.024991249895959 -0.030833332551403 -0.036458521409857 -0.041841921524868 -0.046960269826503 -0.051792078459466 -0.056317765071350 -0.060519769122873 -0.064382653397011 -0.067893189995872 -0.071040430230547 -0.073815757930824 -0.076212925826056 -0.078228074775908 -0.079859735758598 -0.081108814653397 -0.081978559983874 -0.082474513915108 -0.082604446924535 -0.082378276687326 -0.081807971835701 -0.080907441364029 -0.079692410558509 -0.078801141596222 -0.079861970686241 -0.080794691796889 -0.081600465873395 -0.082280350807331 -0.082835279698222 -0.083266042126273 -0.083573268600761 -0.083757418320760 -0.083818770355365 -0.083757418320760 -0.083573268600761 -0.083266042126273 -0.082835279698222 -0.082280350807332 -0.081600465873395 -0.080794691796889 -0.079861970686241 -0.078801141596222 -0.079692410558509 -0.080907441364028 -0.081807971835700 -0.082378276687325 -0.082604446924534 -0.082474513915109 -0.081978559983876 -0.081108814653396 -0.079859735758600 -0.078228074775909 -0.076212925826057 -0.073815757930824 -0.071040430230547 -0.067893189995875 -0.064382653397011 -0.060519769122871 -0.056317765071350 -0.051792078459465 -0.046960269826505 -0.041841921524869 -0.036458521409859 -0.030833332551403 -0.024991249895959 -0.018958644905313 -0.012763199289793 -0.006433729035667 -0.000000000000000 0.006433729035667 0.012763199289793 0.018958644905312 0.024991249895959 0.030833332551402 0.036458521409857 0.041841921524868 0.046960269826504 0.051792078459465 0.056317765071350 0.060519769122871 0.064382653397011 0.067893189995874 0.071040430230544 0.073815757930823 0.076212925826055 0.078228074775907 0.079859735758600 0.081108814653395 0.081978559983874 0.082474513915109 0.082604446924534 0.082378276687323 0.081807971835700 0.080907441364027 0.079692410558510 0.078801141596222 0.079861970686241 0.080794691796888 0.081600465873395 0.082280350807332 0.082835279698222 0.083266042126271 0.083573268600761 0.083757418320760 0.083818770355365 +0.074865518127754 0.074813408984010 0.074656962104441 0.074395821035269 0.074029397975229 0.073556883151130 0.072977257830659 0.072289310860180 0.071491658584998 0.073060766238654 0.074787684405015 0.076221151051876 0.077342754468832 0.078135799976745 0.078585452514654 0.078678866293947 0.078405300501001 0.077756220133749 0.076725381168207 0.075308899368567 0.073505302176354 0.071315563241509 0.068743119288011 0.065793869139578 0.062476154864825 0.058800725135946 0.054780681028558 0.050431404622685 0.045770470894476 0.040817543513920 0.035594255285527 0.030124074084458 0.024432155250314 0.018545181502889 0.012491191538557 0.006299398551469 -0.000000000000000 -0.006299398551469 -0.012491191538557 -0.018545181502888 -0.024432155250313 -0.030124074084459 -0.035594255285528 -0.040817543513919 -0.045770470894476 -0.050431404622687 -0.054780681028555 -0.058800725135948 -0.062476154864825 -0.065793869139578 -0.068743119288011 -0.071315563241510 -0.073505302176353 -0.075308899368568 -0.076725381168205 -0.077756220133748 -0.078405300501005 -0.078678866293947 -0.078585452514654 -0.078135799976746 -0.077342754468832 -0.076221151051876 -0.074787684405015 -0.073060766238653 -0.071491658584998 -0.072289310860180 -0.072977257830661 -0.073556883151130 -0.074029397975230 -0.074395821035269 -0.074656962104444 -0.074813408984010 -0.074865518127754 -0.074813408984010 -0.074656962104443 -0.074395821035269 -0.074029397975230 -0.073556883151130 -0.072977257830658 -0.072289310860180 -0.071491658584998 -0.073060766238653 -0.074787684405016 -0.076221151051876 -0.077342754468833 -0.078135799976746 -0.078585452514654 -0.078678866293947 -0.078405300501003 -0.077756220133749 -0.076725381168207 -0.075308899368568 -0.073505302176353 -0.071315563241510 -0.068743119288011 -0.065793869139577 -0.062476154864825 -0.058800725135947 -0.054780681028556 -0.050431404622685 -0.045770470894475 -0.040817543513923 -0.035594255285528 -0.030124074084457 -0.024432155250313 -0.018545181502888 -0.012491191538558 -0.006299398551470 -0.000000000000000 0.006299398551469 0.012491191538557 0.018545181502888 0.024432155250312 0.030124074084456 0.035594255285528 0.040817543513922 0.045770470894475 0.050431404622685 0.054780681028556 0.058800725135947 0.062476154864824 0.065793869139577 0.068743119288014 0.071315563241510 0.073505302176353 0.075308899368567 0.076725381168207 0.077756220133749 0.078405300501003 0.078678866293947 0.078585452514654 0.078135799976746 0.077342754468832 0.076221151051876 0.074787684405015 0.073060766238653 0.071491658584998 0.072289310860179 0.072977257830658 0.073556883151130 0.074029397975230 0.074395821035269 0.074656962104441 0.074813408984010 0.074865518127754 +0.065237326829136 0.065195042611807 0.065068044260577 0.064855896676528 0.064557881340509 0.064173006222674 0.063700019538219 0.063137427232844 0.065206874672854 0.067416120539516 0.069357993918638 0.071011535175704 0.072357372221172 0.073377880864464 0.074057332995887 0.074382031442084 0.074340430439758 0.073923240779953 0.073123518789755 0.071936738439433 0.070360845989559 0.068396296723754 0.066046073447350 0.063315686569349 0.060213155723696 0.056748973024909 0.052936048191447 0.048789635906944 0.044327245923364 0.039568536540385 0.034535192220790 0.029250786221456 0.023740629232760 0.018031605124922 0.012151994997408 0.006131290815862 -0.000000000000000 -0.006131290815862 -0.012151994997408 -0.018031605124922 -0.023740629232759 -0.029250786221459 -0.034535192220792 -0.039568536540385 -0.044327245923364 -0.048789635906943 -0.052936048191447 -0.056748973024909 -0.060213155723697 -0.063315686569349 -0.066046073447351 -0.068396296723755 -0.070360845989559 -0.071936738439433 -0.073123518789755 -0.073923240779952 -0.074340430439760 -0.074382031442084 -0.074057332995887 -0.073377880864463 -0.072357372221173 -0.071011535175705 -0.069357993918640 -0.067416120539517 -0.065206874672853 -0.063137427232845 -0.063700019538219 -0.064173006222674 -0.064557881340509 -0.064855896676528 -0.065068044260579 -0.065195042611807 -0.065237326829136 -0.065195042611807 -0.065068044260579 -0.064855896676528 -0.064557881340509 -0.064173006222674 -0.063700019538219 -0.063137427232845 -0.065206874672853 -0.067416120539516 -0.069357993918638 -0.071011535175704 -0.072357372221172 -0.073377880864464 -0.074057332995887 -0.074382031442084 -0.074340430439759 -0.073923240779953 -0.073123518789756 -0.071936738439434 -0.070360845989558 -0.068396296723754 -0.066046073447350 -0.063315686569350 -0.060213155723697 -0.056748973024909 -0.052936048191447 -0.048789635906944 -0.044327245923365 -0.039568536540386 -0.034535192220790 -0.029250786221458 -0.023740629232759 -0.018031605124921 -0.012151994997408 -0.006131290815863 -0.000000000000000 0.006131290815863 0.012151994997408 0.018031605124920 0.023740629232759 0.029250786221458 0.034535192220790 0.039568536540386 0.044327245923364 0.048789635906943 0.052936048191447 0.056748973024908 0.060213155723697 0.063315686569350 0.066046073447351 0.068396296723753 0.070360845989559 0.071936738439433 0.073123518789755 0.073923240779953 0.074340430439758 0.074382031442084 0.074057332995886 0.073377880864463 0.072357372221172 0.071011535175703 0.069357993918640 0.067416120539515 0.065206874672853 0.063137427232845 0.063700019538219 0.064173006222674 0.064557881340509 0.064855896676528 0.065068044260577 0.065195042611807 0.065237326829136 +0.055007209228816 0.054975257450673 0.054879229946768 0.054718612309591 0.054492554178936 0.054199879659272 0.053839101782347 0.056221985049761 0.058873812031446 0.061289062978865 0.063444423437767 0.065318008259523 0.066889538594764 0.068140507686588 0.069054334179698 0.069616501755052 0.069814684001631 0.069638853547648 0.069081374591476 0.068137078097177 0.066803319049867 0.065080015301029 0.062969667672555 0.060477361129394 0.057610746973447 0.054380006154430 0.050797793935948 0.046879166295730 0.042641488576920 0.038104327041418 0.033289324105486 0.028220058161160 0.022921889003631 0.017421789993640 0.011748168184310 0.005930673733014 -0.000000000000000 -0.005930673733014 -0.011748168184309 -0.017421789993639 -0.022921889003632 -0.028220058161160 -0.033289324105486 -0.038104327041418 -0.042641488576919 -0.046879166295730 -0.050797793935948 -0.054380006154431 -0.057610746973448 -0.060477361129395 -0.062969667672555 -0.065080015301029 -0.066803319049868 -0.068137078097178 -0.069081374591476 -0.069638853547649 -0.069814684001631 -0.069616501755052 -0.069054334179698 -0.068140507686587 -0.066889538594764 -0.065318008259523 -0.063444423437767 -0.061289062978867 -0.058873812031446 -0.056221985049760 -0.053839101782347 -0.054199879659272 -0.054492554178935 -0.054718612309590 -0.054879229946768 -0.054975257450673 -0.055007209228816 -0.054975257450673 -0.054879229946768 -0.054718612309591 -0.054492554178936 -0.054199879659272 -0.053839101782347 -0.056221985049761 -0.058873812031446 -0.061289062978867 -0.063444423437767 -0.065318008259523 -0.066889538594764 -0.068140507686588 -0.069054334179698 -0.069616501755053 -0.069814684001631 -0.069638853547649 -0.069081374591476 -0.068137078097178 -0.066803319049868 -0.065080015301030 -0.062969667672555 -0.060477361129395 -0.057610746973447 -0.054380006154430 -0.050797793935946 -0.046879166295731 -0.042641488576919 -0.038104327041419 -0.033289324105487 -0.028220058161160 -0.022921889003631 -0.017421789993639 -0.011748168184310 -0.005930673733015 -0.000000000000000 0.005930673733014 0.011748168184310 0.017421789993638 0.022921889003631 0.028220058161159 0.033289324105487 0.038104327041419 0.042641488576919 0.046879166295730 0.050797793935946 0.054380006154430 0.057610746973447 0.060477361129395 0.062969667672555 0.065080015301029 0.066803319049867 0.068137078097178 0.069081374591476 0.069638853547649 0.069814684001630 0.069616501755053 0.069054334179697 0.068140507686587 0.066889538594764 0.065318008259523 0.063444423437767 0.061289062978866 0.058873812031445 0.056221985049760 0.053839101782347 0.054199879659272 0.054492554178935 0.054718612309591 0.054879229946768 0.054975257450673 0.055007209228816 +0.044252788934553 0.044231598694779 0.044167829317378 0.044060887025155 0.043909789494948 0.043713176752891 0.046220172024858 0.049265408020368 0.052109161729326 0.054726008194324 0.057091766942088 0.059183694129572 0.060980664659278 0.062463342860616 0.063614340419485 0.064418360333609 0.064862325775914 0.064935492861552 0.064629546435131 0.063938678122448 0.062859646024605 0.061391815570714 0.059537181187481 0.057300368588692 0.054688617633910 0.051711745852485 0.048382092875003 0.044714446158645 0.040725948534346 0.036435988241147 0.031866072245602 0.027039683770625 0.021982125077702 0.016720346658047 0.011282764091250 0.005699063923407 -0.000000000000000 -0.005699063923406 -0.011282764091249 -0.016720346658047 -0.021982125077702 -0.027039683770625 -0.031866072245602 -0.036435988241147 -0.040725948534345 -0.044714446158644 -0.048382092875002 -0.051711745852486 -0.054688617633911 -0.057300368588692 -0.059537181187481 -0.061391815570713 -0.062859646024605 -0.063938678122449 -0.064629546435131 -0.064935492861553 -0.064862325775914 -0.064418360333609 -0.063614340419486 -0.062463342860615 -0.060980664659278 -0.059183694129573 -0.057091766942089 -0.054726008194325 -0.052109161729326 -0.049265408020366 -0.046220172024858 -0.043713176752891 -0.043909789494949 -0.044060887025155 -0.044167829317378 -0.044231598694779 -0.044252788934556 -0.044231598694779 -0.044167829317378 -0.044060887025156 -0.043909789494949 -0.043713176752891 -0.046220172024858 -0.049265408020367 -0.052109161729326 -0.054726008194325 -0.057091766942088 -0.059183694129573 -0.060980664659277 -0.062463342860616 -0.063614340419486 -0.064418360333609 -0.064862325775914 -0.064935492861552 -0.064629546435131 -0.063938678122448 -0.062859646024605 -0.061391815570713 -0.059537181187481 -0.057300368588692 -0.054688617633910 -0.051711745852485 -0.048382092875003 -0.044714446158644 -0.040725948534346 -0.036435988241148 -0.031866072245602 -0.027039683770624 -0.021982125077702 -0.016720346658047 -0.011282764091250 -0.005699063923408 -0.000000000000000 0.005699063923407 0.011282764091250 0.016720346658046 0.021982125077701 0.027039683770624 0.031866072245602 0.036435988241147 0.040725948534346 0.044714446158643 0.048382092875002 0.051711745852485 0.054688617633910 0.057300368588692 0.059537181187481 0.061391815570713 0.062859646024605 0.063938678122448 0.064629546435131 0.064935492861551 0.064862325775914 0.064418360333609 0.063614340419486 0.062463342860615 0.060980664659277 0.059183694129573 0.057091766942088 0.054726008194324 0.052109161729326 0.049265408020367 0.046220172024858 0.043713176752889 0.043909789494947 0.044060887025155 0.044167829317378 0.044231598694779 0.044252788934553 +0.033055710075090 0.033045628764742 0.033015159869903 0.032963630785544 0.032889928106107 0.035336201771372 0.038717231297303 0.041935650796013 0.044964215609245 0.047776716983053 0.050348187546649 0.052655098110649 0.054675544274110 0.056389421405813 0.057778586652293 0.058827006722586 0.059520890306361 0.059848804097999 0.059801771522437 0.059373353389205 0.058559709837277 0.057359643074721 0.055774620562111 0.053808778436490 0.051468905122082 0.048764405223697 0.045707243948071 0.042311872445640 0.038595134609738 0.034576156010558 0.030276215776615 0.025718602365493 0.020928454287897 0.015932586962947 0.010759306987903 0.005438215200848 -0.000000000000000 -0.005438215200848 -0.010759306987903 -0.015932586962947 -0.020928454287896 -0.025718602365494 -0.030276215776616 -0.034576156010558 -0.038595134609737 -0.042311872445641 -0.045707243948071 -0.048764405223698 -0.051468905122083 -0.053808778436490 -0.055774620562110 -0.057359643074721 -0.058559709837277 -0.059373353389203 -0.059801771522436 -0.059848804097999 -0.059520890306361 -0.058827006722586 -0.057778586652292 -0.056389421405813 -0.054675544274111 -0.052655098110649 -0.050348187546650 -0.047776716983055 -0.044964215609245 -0.041935650796012 -0.038717231297303 -0.035336201771373 -0.032889928106107 -0.032963630785544 -0.033015159869904 -0.033045628764742 -0.033055710075090 -0.033045628764742 -0.033015159869904 -0.032963630785544 -0.032889928106107 -0.035336201771372 -0.038717231297302 -0.041935650796012 -0.044964215609245 -0.047776716983055 -0.050348187546650 -0.052655098110649 -0.054675544274110 -0.056389421405813 -0.057778586652293 -0.058827006722586 -0.059520890306361 -0.059848804097999 -0.059801771522437 -0.059373353389204 -0.058559709837276 -0.057359643074721 -0.055774620562110 -0.053808778436491 -0.051468905122082 -0.048764405223697 -0.045707243948070 -0.042311872445640 -0.038595134609738 -0.034576156010559 -0.030276215776616 -0.025718602365494 -0.020928454287896 -0.015932586962946 -0.010759306987903 -0.005438215200849 -0.000000000000000 0.005438215200848 0.010759306987903 0.015932586962946 0.020928454287895 0.025718602365494 0.030276215776616 0.034576156010559 0.038595134609737 0.042311872445640 0.045707243948070 0.048764405223697 0.051468905122082 0.053808778436490 0.055774620562111 0.057359643074720 0.058559709837276 0.059373353389203 0.059801771522437 0.059848804097999 0.059520890306361 0.058827006722586 0.057778586652293 0.056389421405813 0.054675544274110 0.052655098110649 0.050348187546650 0.047776716983055 0.044964215609245 0.041935650796013 0.038717231297302 0.035336201771372 0.032889928106107 0.032963630785544 0.033015159869903 0.033045628764742 0.033055710075090 +0.021501016326360 0.021502306955366 0.021505927955618 0.021511129035095 0.023722928073808 0.027374872614176 0.030906251727888 0.034288332400123 0.037493188594704 0.040493917949926 0.043264851302561 0.045781753436138 0.048022013515579 0.049964823747416 0.051591344893358 0.052884857363897 0.053830896727415 0.054417372587716 0.054634669908515 0.054475731996032 0.053936124489490 0.053014079852889 0.051710522009051 0.050029070907123 0.047976026966716 0.045560335494274 0.042793531318856 0.039689664044585 0.036265204463734 0.032538932817375 0.028531809728031 0.024266830760246 0.019768865689165 0.015064483673156 0.010181765633579 0.005150105241784 -0.000000000000000 -0.005150105241784 -0.010181765633578 -0.015064483673155 -0.019768865689165 -0.024266830760247 -0.028531809728031 -0.032538932817375 -0.036265204463734 -0.039689664044584 -0.042793531318856 -0.045560335494275 -0.047976026966716 -0.050029070907122 -0.051710522009052 -0.053014079852890 -0.053936124489490 -0.054475731996032 -0.054634669908515 -0.054417372587716 -0.053830896727415 -0.052884857363897 -0.051591344893358 -0.049964823747416 -0.048022013515579 -0.045781753436138 -0.043264851302562 -0.040493917949926 -0.037493188594703 -0.034288332400122 -0.030906251727889 -0.027374872614176 -0.023722928073808 -0.021511129035096 -0.021505927955618 -0.021502306955366 -0.021501016326360 -0.021502306955366 -0.021505927955618 -0.021511129035096 -0.023722928073809 -0.027374872614176 -0.030906251727888 -0.034288332400123 -0.037493188594703 -0.040493917949927 -0.043264851302561 -0.045781753436139 -0.048022013515579 -0.049964823747416 -0.051591344893358 -0.052884857363898 -0.053830896727415 -0.054417372587716 -0.054634669908515 -0.054475731996031 -0.053936124489490 -0.053014079852890 -0.051710522009052 -0.050029070907122 -0.047976026966716 -0.045560335494275 -0.042793531318856 -0.039689664044585 -0.036265204463734 -0.032538932817376 -0.028531809728031 -0.024266830760247 -0.019768865689164 -0.015064483673155 -0.010181765633579 -0.005150105241785 -0.000000000000000 0.005150105241785 0.010181765633579 0.015064483673155 0.019768865689164 0.024266830760247 0.028531809728031 0.032538932817376 0.036265204463734 0.039689664044585 0.042793531318856 0.045560335494275 0.047976026966716 0.050029070907122 0.051710522009052 0.053014079852890 0.053936124489490 0.054475731996031 0.054634669908515 0.054417372587716 0.053830896727415 0.052884857363898 0.051591344893358 0.049964823747416 0.048022013515579 0.045781753436139 0.043264851302562 0.040493917949926 0.037493188594703 0.034288332400122 0.030906251727888 0.027374872614176 0.023722928073808 0.021511129035095 0.021505927955618 0.021502306955366 0.021501016326360 +0.009676504006833 0.009689343172824 0.009727584440859 0.011548277565973 0.015400346530006 0.019176387020983 0.022846542544036 0.026381518231931 0.029752806390805 0.032932906514990 0.035895538090654 0.038615844562036 0.041070586900413 0.043238325294304 0.045099587568870 0.046637023042842 0.047835540641163 0.048682430200745 0.049167466033818 0.049282991947695 0.049023987060195 0.048388111895481 0.047375734394460 0.045989935626205 0.044236495140694 0.042123856057614 0.039663070139635 0.036867723250426 0.033753841746507 0.030339780496707 0.026646093362482 0.022695387105411 0.018512159814089 0.014122625060104 0.009554523101241 0.004836920548344 -0.000000000000000 -0.004836920548343 -0.009554523101240 -0.014122625060104 -0.018512159814089 -0.022695387105412 -0.026646093362483 -0.030339780496707 -0.033753841746507 -0.036867723250426 -0.039663070139635 -0.042123856057614 -0.044236495140694 -0.045989935626205 -0.047375734394460 -0.048388111895481 -0.049023987060196 -0.049282991947695 -0.049167466033818 -0.048682430200745 -0.047835540641163 -0.046637023042842 -0.045099587568869 -0.043238325294303 -0.041070586900414 -0.038615844562036 -0.035895538090655 -0.032932906514991 -0.029752806390805 -0.026381518231930 -0.022846542544036 -0.019176387020983 -0.015400346530006 -0.011548277565974 -0.009727584440859 -0.009689343172824 -0.009676504006833 -0.009689343172824 -0.009727584440859 -0.011548277565974 -0.015400346530006 -0.019176387020983 -0.022846542544035 -0.026381518231931 -0.029752806390805 -0.032932906514991 -0.035895538090655 -0.038615844562036 -0.041070586900413 -0.043238325294303 -0.045099587568870 -0.046637023042842 -0.047835540641163 -0.048682430200745 -0.049167466033818 -0.049282991947695 -0.049023987060196 -0.048388111895481 -0.047375734394460 -0.045989935626206 -0.044236495140694 -0.042123856057614 -0.039663070139635 -0.036867723250427 -0.033753841746507 -0.030339780496708 -0.026646093362482 -0.022695387105412 -0.018512159814088 -0.014122625060104 -0.009554523101241 -0.004836920548344 -0.000000000000000 0.004836920548344 0.009554523101241 0.014122625060104 0.018512159814088 0.022695387105412 0.026646093362482 0.030339780496708 0.033753841746506 0.036867723250426 0.039663070139635 0.042123856057614 0.044236495140694 0.045989935626206 0.047375734394461 0.048388111895481 0.049023987060196 0.049282991947695 0.049167466033818 0.048682430200745 0.047835540641163 0.046637023042842 0.045099587568870 0.043238325294303 0.041070586900413 0.038615844562036 0.035895538090655 0.032932906514991 0.029752806390805 0.026381518231930 0.022846542544035 0.019176387020983 0.015400346530006 0.011548277565974 0.009727584440859 0.009689343172824 0.009676504006833 +-0.002327945835414 -0.002303469320852 -0.001008106656194 0.002968873644430 0.006916116486370 0.010803032409417 0.014599336138350 0.018275278411321 0.021801874021229 0.025151124331464 0.028296232568886 0.031211810251304 0.033874073173714 0.036261025456441 0.038352630248689 0.040130965782064 0.041580365579626 0.042687541746131 0.043441690393438 0.043834578390532 0.043860610769338 0.043516878264296 0.042803184614442 0.041722053410396 0.040278714423947 0.038481069513748 0.036339638355730 0.033867484400082 0.031080121606872 0.027995402658362 0.024633389486855 0.021016207091240 0.017167881742410 0.013114164796368 0.008882343443216 0.004501039819515 -0.000000000000000 -0.004501039819514 -0.008882343443215 -0.013114164796368 -0.017167881742410 -0.021016207091240 -0.024633389486856 -0.027995402658362 -0.031080121606872 -0.033867484400082 -0.036339638355730 -0.038481069513748 -0.040278714423947 -0.041722053410396 -0.042803184614442 -0.043516878264295 -0.043860610769338 -0.043834578390532 -0.043441690393439 -0.042687541746131 -0.041580365579626 -0.040130965782064 -0.038352630248689 -0.036261025456441 -0.033874073173714 -0.031211810251304 -0.028296232568886 -0.025151124331464 -0.021801874021228 -0.018275278411321 -0.014599336138351 -0.010803032409417 -0.006916116486371 -0.002968873644430 0.001008106656194 0.002303469320852 0.002327945835414 0.002303469320852 0.001008106656194 -0.002968873644431 -0.006916116486371 -0.010803032409416 -0.014599336138350 -0.018275278411321 -0.021801874021228 -0.025151124331465 -0.028296232568886 -0.031211810251303 -0.033874073173714 -0.036261025456441 -0.038352630248689 -0.040130965782065 -0.041580365579626 -0.042687541746131 -0.043441690393438 -0.043834578390532 -0.043860610769338 -0.043516878264296 -0.042803184614442 -0.041722053410396 -0.040278714423947 -0.038481069513748 -0.036339638355729 -0.033867484400082 -0.031080121606872 -0.027995402658362 -0.024633389486855 -0.021016207091240 -0.017167881742409 -0.013114164796368 -0.008882343443216 -0.004501039819515 -0.000000000000000 0.004501039819515 0.008882343443216 0.013114164796368 0.017167881742409 0.021016207091240 0.024633389486855 0.027995402658362 0.031080121606872 0.033867484400082 0.036339638355729 0.038481069513748 0.040278714423947 0.041722053410396 0.042803184614443 0.043516878264296 0.043860610769338 0.043834578390532 0.043441690393438 0.042687541746131 0.041580365579626 0.040130965782065 0.038352630248689 0.036261025456441 0.033874073173714 0.031211810251303 0.028296232568887 0.025151124331465 0.021801874021228 0.018275278411321 0.014599336138350 0.010803032409416 0.006916116486371 0.002968873644431 -0.001008106656194 -0.002303469320852 -0.002327945835414 +-0.014421051261160 -0.013758485441293 -0.009734636716744 -0.005693259926040 -0.001665269913301 0.002318457768181 0.006227322256555 0.010031230809799 0.013700828484335 0.017207722314623 0.020524698286154 0.023625929448807 0.026487173584863 0.029085958925146 0.031401756497581 0.033416137793967 0.035112916552299 0.036478273572692 0.037500863613860 0.038171903553348 0.038485241137082 0.038437403791399 0.038027627122289 0.037257862880987 0.036132766331220 0.034659663110028 0.032848495829988 0.030711750824768 0.028264365590917 0.025523617625614 0.022508995501580 0.019242053155477 0.015746248493780 0.012046767539387 0.008170335452230 0.004145015856995 0.000000000000000 -0.004145015856994 -0.008170335452229 -0.012046767539387 -0.015746248493780 -0.019242053155478 -0.022508995501580 -0.025523617625614 -0.028264365590917 -0.030711750824768 -0.032848495829988 -0.034659663110028 -0.036132766331220 -0.037257862880987 -0.038027627122289 -0.038437403791399 -0.038485241137082 -0.038171903553348 -0.037500863613860 -0.036478273572692 -0.035112916552300 -0.033416137793967 -0.031401756497581 -0.029085958925146 -0.026487173584863 -0.023625929448807 -0.020524698286154 -0.017207722314623 -0.013700828484334 -0.010031230809799 -0.006227322256555 -0.002318457768181 0.001665269913301 0.005693259926040 0.009734636716744 0.013758485441293 0.014421051261160 0.013758485441293 0.009734636716744 0.005693259926040 0.001665269913301 -0.002318457768181 -0.006227322256555 -0.010031230809799 -0.013700828484334 -0.017207722314624 -0.020524698286153 -0.023625929448807 -0.026487173584863 -0.029085958925146 -0.031401756497581 -0.033416137793967 -0.035112916552299 -0.036478273572692 -0.037500863613860 -0.038171903553348 -0.038485241137082 -0.038437403791399 -0.038027627122289 -0.037257862880987 -0.036132766331220 -0.034659663110028 -0.032848495829987 -0.030711750824767 -0.028264365590918 -0.025523617625615 -0.022508995501580 -0.019242053155477 -0.015746248493780 -0.012046767539386 -0.008170335452230 -0.004145015856995 0.000000000000000 0.004145015856995 0.008170335452230 0.012046767539386 0.015746248493780 0.019242053155477 0.022508995501580 0.025523617625615 0.028264365590918 0.030711750824767 0.032848495829987 0.034659663110028 0.036132766331220 0.037257862880987 0.038027627122289 0.038437403791399 0.038485241137082 0.038171903553348 0.037500863613860 0.036478273572692 0.035112916552300 0.033416137793967 0.031401756497581 0.029085958925146 0.026487173584863 0.023625929448807 0.020524698286154 0.017207722314624 0.013700828484334 0.010031230809799 0.006227322256555 0.002318457768181 -0.001665269913301 -0.005693259926040 -0.009734636716744 -0.013758485441293 -0.014421051261160 +-0.026510824000000 -0.022519321961073 -0.018462854505343 -0.014372246235611 -0.010278549978222 -0.006212810603024 -0.002205828963749 0.001712072245006 0.005511278932756 0.009163110606859 0.012640038203397 0.015915893098236 0.018966065708517 0.021767692174156 0.024299827699777 0.026543605239083 0.028482378315372 0.030101846892700 0.031390165341289 0.032338031677165 0.032938757398577 0.033188317389530 0.033085379512544 0.032631313667394 0.031830180248944 0.030688698094051 0.029216192163668 0.027424521360558 0.025327987034313 0.022943222872329 0.020289067017185 0.017386417386125 0.014258071296243 0.010928550618463 0.007423913793550 0.003771556143404 0.000000000000000 -0.003771556143404 -0.007423913793550 -0.010928550618462 -0.014258071296242 -0.017386417386125 -0.020289067017186 -0.022943222872328 -0.025327987034313 -0.027424521360558 -0.029216192163667 -0.030688698094050 -0.031830180248943 -0.032631313667394 -0.033085379512544 -0.033188317389530 -0.032938757398577 -0.032338031677165 -0.031390165341289 -0.030101846892699 -0.028482378315372 -0.026543605239083 -0.024299827699777 -0.021767692174156 -0.018966065708517 -0.015915893098237 -0.012640038203397 -0.009163110606859 -0.005511278932756 -0.001712072245005 0.002205828963749 0.006212810603024 0.010278549978222 0.014372246235611 0.018462854505344 0.022519321961072 0.026510824000000 0.022519321961073 0.018462854505344 0.014372246235611 0.010278549978222 0.006212810603024 0.002205828963749 -0.001712072245005 -0.005511278932756 -0.009163110606859 -0.012640038203397 -0.015915893098236 -0.018966065708516 -0.021767692174156 -0.024299827699777 -0.026543605239083 -0.028482378315372 -0.030101846892700 -0.031390165341289 -0.032338031677165 -0.032938757398577 -0.033188317389530 -0.033085379512544 -0.032631313667393 -0.031830180248943 -0.030688698094051 -0.029216192163667 -0.027424521360558 -0.025327987034313 -0.022943222872329 -0.020289067017185 -0.017386417386125 -0.014258071296242 -0.010928550618462 -0.007423913793550 -0.003771556143404 0.000000000000000 0.003771556143404 0.007423913793550 0.010928550618462 0.014258071296242 0.017386417386125 0.020289067017185 0.022943222872330 0.025327987034313 0.027424521360558 0.029216192163667 0.030688698094051 0.031830180248943 0.032631313667393 0.033085379512544 0.033188317389530 0.032938757398577 0.032338031677165 0.031390165341289 0.030101846892700 0.028482378315372 0.026543605239083 0.024299827699777 0.021767692174156 0.018966065708516 0.015915893098236 0.012640038203397 0.009163110606859 0.005511278932756 0.001712072245005 -0.002205828963749 -0.006212810603024 -0.010278549978222 -0.014372246235611 -0.018462854505344 -0.022519321961073 -0.026510824000000 +-0.022839198807661 -0.022168620776637 -0.018120750670321 -0.014039389053304 -0.009955526883095 -0.005900146068814 -0.001903983868121 0.002002700800803 0.005790357354202 0.009430368094752 0.012895265612337 0.016158941379769 0.019196843956789 0.021986165294838 0.024506013725740 0.026737572318887 0.028664241402948 0.030271764168734 0.031548334398702 0.032484685504669 0.033074160197678 0.033312760261385 0.033199176051891 0.032734795501246 0.031923692557971 0.030772595154425 0.029290832946810 0.027490265227518 0.025385189560527 0.022992231837300 0.020330218592063 0.017420032550438 0.014284452512999 0.010947978794596 0.007436645550255 0.003777821418265 0.000000000000000 -0.003777821418265 -0.007436645550255 -0.010947978794595 -0.014284452512999 -0.017420032550438 -0.020330218592063 -0.022992231837300 -0.025385189560527 -0.027490265227516 -0.029290832946809 -0.030772595154424 -0.031923692557971 -0.032734795501246 -0.033199176051891 -0.033312760261386 -0.033074160197678 -0.032484685504668 -0.031548334398702 -0.030271764168734 -0.028664241402948 -0.026737572318887 -0.024506013725740 -0.021986165294837 -0.019196843956789 -0.016158941379769 -0.012895265612338 -0.009430368094752 -0.005790357354201 -0.002002700800802 0.001903983868121 0.005900146068813 0.009955526883094 0.014039389053303 0.018120750670322 0.022168620776636 0.022839198807661 0.022168620776637 0.018120750670321 0.014039389053303 0.009955526883094 0.005900146068814 0.001903983868121 -0.002002700800803 -0.005790357354201 -0.009430368094753 -0.012895265612337 -0.016158941379769 -0.019196843956788 -0.021986165294837 -0.024506013725740 -0.026737572318887 -0.028664241402947 -0.030271764168734 -0.031548334398701 -0.032484685504669 -0.033074160197678 -0.033312760261385 -0.033199176051890 -0.032734795501247 -0.031923692557971 -0.030772595154424 -0.029290832946809 -0.027490265227517 -0.025385189560527 -0.022992231837300 -0.020330218592063 -0.017420032550438 -0.014284452512999 -0.010947978794595 -0.007436645550256 -0.003777821418266 0.000000000000000 0.003777821418266 0.007436645550256 0.010947978794595 0.014284452512999 0.017420032550438 0.020330218592063 0.022992231837300 0.025385189560527 0.027490265227517 0.029290832946809 0.030772595154424 0.031923692557971 0.032734795501247 0.033199176051891 0.033312760261385 0.033074160197678 0.032484685504669 0.031548334398702 0.030271764168734 0.028664241402948 0.026737572318887 0.024506013725740 0.021986165294837 0.019196843956788 0.016158941379769 0.012895265612338 0.009430368094753 0.005790357354201 0.002002700800803 -0.001903983868121 -0.005900146068814 -0.009955526883094 -0.014039389053303 -0.018120750670321 -0.022168620776637 -0.022839198807661 +-0.019100173742569 -0.019059733783460 -0.017716511172488 -0.013659865527909 -0.009601303591884 -0.005571626726845 -0.001601391961576 0.002279320354455 0.006041135222737 0.009655606253430 0.013095431810678 0.016334662401123 0.019348897728057 0.022115471912324 0.024613625471264 0.026824662747798 0.028732093592625 0.030321758222371 0.031581934304684 0.032503425456561 0.033079630483780 0.033306592835878 0.033183029901789 0.032710341924779 0.031892600470370 0.030736516536758 0.029251388552090 0.027449030656163 0.025343681814176 0.022951896456074 0.020292417475683 0.017386032558133 0.014255414930918 0.010924949752601 0.007420547462435 0.003769445513453 0.000000000000000 -0.003769445513452 -0.007420547462434 -0.010924949752600 -0.014255414930918 -0.017386032558134 -0.020292417475684 -0.022951896456072 -0.025343681814177 -0.027449030656163 -0.029251388552089 -0.030736516536757 -0.031892600470369 -0.032710341924778 -0.033183029901789 -0.033306592835877 -0.033079630483780 -0.032503425456561 -0.031581934304684 -0.030321758222371 -0.028732093592625 -0.026824662747797 -0.024613625471263 -0.022115471912324 -0.019348897728057 -0.016334662401123 -0.013095431810678 -0.009655606253430 -0.006041135222737 -0.002279320354454 0.001601391961576 0.005571626726845 0.009601303591884 0.013659865527908 0.017716511172488 0.019059733783460 0.019100173742569 0.019059733783460 0.017716511172488 0.013659865527908 0.009601303591883 0.005571626726845 0.001601391961577 -0.002279320354454 -0.006041135222737 -0.009655606253431 -0.013095431810678 -0.016334662401124 -0.019348897728057 -0.022115471912324 -0.024613625471263 -0.026824662747797 -0.028732093592624 -0.030321758222371 -0.031581934304683 -0.032503425456561 -0.033079630483780 -0.033306592835877 -0.033183029901789 -0.032710341924778 -0.031892600470369 -0.030736516536757 -0.029251388552089 -0.027449030656164 -0.025343681814176 -0.022951896456073 -0.020292417475683 -0.017386032558133 -0.014255414930917 -0.010924949752600 -0.007420547462435 -0.003769445513453 0.000000000000000 0.003769445513453 0.007420547462435 0.010924949752600 0.014255414930918 0.017386032558133 0.020292417475684 0.022951896456074 0.025343681814177 0.027449030656163 0.029251388552089 0.030736516536757 0.031892600470369 0.032710341924778 0.033183029901788 0.033306592835877 0.033079630483780 0.032503425456561 0.031581934304683 0.030321758222371 0.028732093592625 0.026824662747797 0.024613625471263 0.022115471912324 0.019348897728057 0.016334662401124 0.013095431810679 0.009655606253431 0.006041135222737 0.002279320354454 -0.001601391961577 -0.005571626726845 -0.009601303591883 -0.013659865527908 -0.017716511172488 -0.019059733783460 -0.019100173742569 +-0.015322157479256 -0.015285525126780 -0.015175949590973 -0.013236516905632 -0.009218529116421 -0.005229706371227 -0.001300310208035 0.002539871026633 0.006261748662804 0.009837154827816 0.013239056520320 0.016441761008920 0.019421110992854 0.022154668040165 0.024621882908052 0.026804251450045 0.028685454924332 0.030251483636464 0.031490742976419 0.032394141044194 0.032955157198190 0.033169891005905 0.033037091225724 0.032558164600534 0.031737164397650 0.030580758783682 0.029098179276541 0.027301149668398 0.025203795962085 0.022822538007997 0.020175963667812 0.017284686464394 0.014171187802918 0.010859644965727 0.007375746191724 0.003746494249367 0.000000000000000 -0.003746494249367 -0.007375746191723 -0.010859644965727 -0.014171187802917 -0.017284686464394 -0.020175963667813 -0.022822538007997 -0.025203795962084 -0.027301149668398 -0.029098179276540 -0.030580758783682 -0.031737164397650 -0.032558164600533 -0.033037091225724 -0.033169891005904 -0.032955157198190 -0.032394141044195 -0.031490742976419 -0.030251483636464 -0.028685454924332 -0.026804251450045 -0.024621882908052 -0.022154668040164 -0.019421110992854 -0.016441761008921 -0.013239056520320 -0.009837154827817 -0.006261748662803 -0.002539871026632 0.001300310208034 0.005229706371227 0.009218529116422 0.013236516905632 0.015175949590973 0.015285525126780 0.015322157479256 0.015285525126780 0.015175949590973 0.013236516905631 0.009218529116422 0.005229706371228 0.001300310208035 -0.002539871026633 -0.006261748662803 -0.009837154827817 -0.013239056520320 -0.016441761008920 -0.019421110992854 -0.022154668040165 -0.024621882908052 -0.026804251450044 -0.028685454924332 -0.030251483636464 -0.031490742976419 -0.032394141044193 -0.032955157198190 -0.033169891005903 -0.033037091225724 -0.032558164600535 -0.031737164397649 -0.030580758783682 -0.029098179276539 -0.027301149668398 -0.025203795962085 -0.022822538007997 -0.020175963667812 -0.017284686464393 -0.014171187802917 -0.010859644965727 -0.007375746191724 -0.003746494249368 0.000000000000000 0.003746494249368 0.007375746191724 0.010859644965727 0.014171187802917 0.017284686464393 0.020175963667813 0.022822538007997 0.025203795962085 0.027301149668398 0.029098179276539 0.030580758783682 0.031737164397650 0.032558164600535 0.033037091225724 0.033169891005903 0.032955157198190 0.032394141044194 0.031490742976419 0.030251483636464 0.028685454924333 0.026804251450045 0.024621882908052 0.022154668040164 0.019421110992854 0.016441761008920 0.013239056520320 0.009837154827817 0.006261748662803 0.002539871026632 -0.001300310208035 -0.005229706371227 -0.009218529116422 -0.013236516905631 -0.015175949590973 -0.015285525126780 -0.015322157479256 +-0.011533823830148 -0.011501091353231 -0.011403204660605 -0.011241093484380 -0.008810038631842 -0.004876909926467 -0.001002953546612 0.002782445377611 0.006450593070793 0.009973705269542 0.013325118425215 0.016479492345012 0.019413002730090 0.022103522145619 0.024530788046394 0.026676556579742 0.028524740996208 0.030061533615179 0.031275510418435 0.032157717476147 0.032701738548906 0.032903743352138 0.032762516116660 0.032279464229230 0.031458606888457 0.030306543863568 0.028832404595030 0.027047778025863 0.024966623698662 0.022605164796618 0.019981763943608 0.017116782710266 0.014032425896469 0.010752571776928 0.007302589603188 0.003709145752446 0.000000000000000 -0.003709145752445 -0.007302589603188 -0.010752571776928 -0.014032425896469 -0.017116782710266 -0.019981763943608 -0.022605164796618 -0.024966623698662 -0.027047778025861 -0.028832404595030 -0.030306543863567 -0.031458606888457 -0.032279464229229 -0.032762516116660 -0.032903743352137 -0.032701738548906 -0.032157717476146 -0.031275510418435 -0.030061533615180 -0.028524740996207 -0.026676556579743 -0.024530788046394 -0.022103522145619 -0.019413002730091 -0.016479492345009 -0.013325118425215 -0.009973705269542 -0.006450593070792 -0.002782445377611 0.001002953546612 0.004876909926467 0.008810038631843 0.011241093484380 0.011403204660605 0.011501091353231 0.011533823830148 0.011501091353231 0.011403204660605 0.011241093484380 0.008810038631842 0.004876909926467 0.001002953546613 -0.002782445377611 -0.006450593070792 -0.009973705269543 -0.013325118425214 -0.016479492345012 -0.019413002730090 -0.022103522145620 -0.024530788046394 -0.026676556579743 -0.028524740996207 -0.030061533615179 -0.031275510418434 -0.032157717476146 -0.032701738548907 -0.032903743352138 -0.032762516116661 -0.032279464229229 -0.031458606888457 -0.030306543863568 -0.028832404595031 -0.027047778025860 -0.024966623698662 -0.022605164796618 -0.019981763943608 -0.017116782710265 -0.014032425896469 -0.010752571776928 -0.007302589603188 -0.003709145752446 0.000000000000000 0.003709145752446 0.007302589603188 0.010752571776928 0.014032425896469 0.017116782710266 0.019981763943608 0.022605164796618 0.024966623698662 0.027047778025861 0.028832404595030 0.030306543863568 0.031458606888457 0.032279464229229 0.032762516116659 0.032903743352138 0.032701738548907 0.032157717476146 0.031275510418435 0.030061533615179 0.028524740996204 0.026676556579743 0.024530788046394 0.022103522145620 0.019413002730090 0.016479492345013 0.013325118425216 0.009973705269543 0.006450593070792 0.002782445377611 -0.001002953546613 -0.004876909926467 -0.008810038631842 -0.011241093484380 -0.011403204660605 -0.011501091353231 -0.011533823830148 +-0.007763893671266 -0.007735123763731 -0.007649112960416 -0.007506755592094 -0.007309534138185 -0.004515814378408 -0.000711478180186 0.003005302780296 0.006606335185391 0.010064320556579 0.013353062807582 0.016447667381593 0.019324730457354 0.021962516784668 0.024341124796397 0.026442637741048 0.028251259686145 0.029753435358238 0.030937952908044 0.031796028819411 0.032321374316807 0.032510242766523 0.032361457712016 0.031876421330699 0.031059103248903 0.029916009801013 0.028456133967841 0.026690886376207 0.024634007885909 0.022301464430563 0.019711324913520 0.016883623089525 0.013840204484256 0.010604559518005 0.007201644104725 0.003657689092937 0.000000000000000 -0.003657689092936 -0.007201644104724 -0.010604559518004 -0.013840204484255 -0.016883623089526 -0.019711324913522 -0.022301464430563 -0.024634007885910 -0.026690886376207 -0.028456133967840 -0.029916009801014 -0.031059103248903 -0.031876421330699 -0.032361457712017 -0.032510242766523 -0.032321374316807 -0.031796028819411 -0.030937952908044 -0.029753435358238 -0.028251259686145 -0.026442637741047 -0.024341124796397 -0.021962516784668 -0.019324730457354 -0.016447667381594 -0.013353062807582 -0.010064320556580 -0.006606335185390 -0.003005302780296 0.000711478180186 0.004515814378408 0.007309534138185 0.007506755592095 0.007649112960416 0.007735123763731 0.007763893671266 0.007735123763731 0.007649112960416 0.007506755592094 0.007309534138185 0.004515814378408 0.000711478180187 -0.003005302780296 -0.006606335185391 -0.010064320556581 -0.013353062807582 -0.016447667381593 -0.019324730457354 -0.021962516784667 -0.024341124796398 -0.026442637741048 -0.028251259686145 -0.029753435358238 -0.030937952908044 -0.031796028819411 -0.032321374316808 -0.032510242766523 -0.032361457712017 -0.031876421330699 -0.031059103248903 -0.029916009801014 -0.028456133967838 -0.026690886376207 -0.024634007885910 -0.022301464430563 -0.019711324913521 -0.016883623089525 -0.013840204484255 -0.010604559518004 -0.007201644104724 -0.003657689092937 0.000000000000000 0.003657689092937 0.007201644104725 0.010604559518004 0.013840204484255 0.016883623089526 0.019711324913521 0.022301464430563 0.024634007885910 0.026690886376207 0.028456133967839 0.029916009801014 0.031059103248903 0.031876421330699 0.032361457712015 0.032510242766523 0.032321374316808 0.031796028819411 0.030937952908044 0.029753435358238 0.028251259686146 0.026442637741048 0.024341124796398 0.021962516784667 0.019324730457354 0.016447667381593 0.013353062807583 0.010064320556581 0.006606335185391 0.003005302780296 -0.000711478180187 -0.004515814378408 -0.007309534138185 -0.007506755592094 -0.007649112960416 -0.007735123763731 -0.007763893671266 +-0.004040916569583 -0.004016141902728 -0.003942104057050 -0.003819659133623 -0.003650226107216 -0.003435775099827 -0.000427965368789 0.003206882466626 0.006727923036679 0.010108442129922 0.013322805578831 0.016346654173082 0.019157088849809 0.021732844751816 0.024054452829481 0.026104387756859 0.027867201036843 0.029329638282765 0.030480739784528 0.031311923594378 0.031817050500692 0.031992470395886 0.031837049686231 0.031352179535700 0.030541764881840 0.029412194307968 0.027972291001826 0.026233245174691 0.024208528456091 0.021913790916500 0.019366741502558 0.016587012795668 0.013596011124125 0.010416753170396 0.007073690317999 0.003592522075715 0.000000000000000 -0.003592522075714 -0.007073690317999 -0.010416753170396 -0.013596011124124 -0.016587012795668 -0.019366741502558 -0.021913790916500 -0.024208528456091 -0.026233245174690 -0.027972291001827 -0.029412194307968 -0.030541764881840 -0.031352179535701 -0.031837049686230 -0.031992470395884 -0.031817050500692 -0.031311923594378 -0.030480739784527 -0.029329638282766 -0.027867201036843 -0.026104387756859 -0.024054452829480 -0.021732844751817 -0.019157088849809 -0.016346654173082 -0.013322805578831 -0.010108442129922 -0.006727923036678 -0.003206882466625 0.000427965368790 0.003435775099828 0.003650226107215 0.003819659133623 0.003942104057051 0.004016141902728 0.004040916569583 0.004016141902728 0.003942104057051 0.003819659133623 0.003650226107215 0.003435775099827 0.000427965368790 -0.003206882466625 -0.006727923036678 -0.010108442129923 -0.013322805578831 -0.016346654173083 -0.019157088849807 -0.021732844751817 -0.024054452829481 -0.026104387756859 -0.027867201036843 -0.029329638282767 -0.030480739784525 -0.031311923594379 -0.031817050500691 -0.031992470395884 -0.031837049686230 -0.031352179535700 -0.030541764881840 -0.029412194307969 -0.027972291001826 -0.026233245174691 -0.024208528456091 -0.021913790916499 -0.019366741502558 -0.016587012795667 -0.013596011124124 -0.010416753170395 -0.007073690318000 -0.003592522075715 0.000000000000000 0.003592522075715 0.007073690318000 0.010416753170395 0.013596011124124 0.016587012795667 0.019366741502558 0.021913790916500 0.024208528456091 0.026233245174691 0.027972291001826 0.029412194307969 0.030541764881840 0.031352179535700 0.031837049686233 0.031992470395884 0.031817050500692 0.031311923594379 0.030480739784526 0.029329638282767 0.027867201036843 0.026104387756859 0.024054452829481 0.021732844751817 0.019157088849808 0.016346654173083 0.013322805578831 0.010108442129923 0.006727923036679 0.003206882466625 -0.000427965368790 -0.003435775099826 -0.003650226107215 -0.003819659133623 -0.003942104057051 -0.004016141902728 -0.004040916569583 +-0.000393053773690 -0.000372276777145 -0.000310218329215 -0.000207693763003 -0.000066054344843 0.000112824096534 0.000326556965022 0.003385815148368 0.006814593698400 0.010105893895108 0.013234733674719 0.016177374815379 0.018911503458256 0.021416399774491 0.023673095487050 0.025664518049004 0.027375620381236 0.028793495182581 0.029907472942891 0.030709202913355 0.031192716418484 0.031354472028166 0.031193382246669 0.030710821515841 0.029910615472194 0.028799011540167 0.027384631085853 0.025678403496005 0.023693482684524 0.021445146662505 0.018950680936750 0.016229246624829 0.013301734290979 0.010190604615933 0.006919717113911 0.003514148200967 0.000000000000000 -0.003514148200966 -0.006919717113910 -0.010190604615932 -0.013301734290978 -0.016229246624830 -0.018950680936750 -0.021445146662505 -0.023693482684523 -0.025678403496002 -0.027384631085853 -0.028799011540166 -0.029910615472195 -0.030710821515840 -0.031193382246668 -0.031354472028167 -0.031192716418482 -0.030709202913355 -0.029907472942889 -0.028793495182581 -0.027375620381235 -0.025664518049003 -0.023673095487050 -0.021416399774491 -0.018911503458257 -0.016177374815379 -0.013234733674719 -0.010105893895108 -0.006814593698400 -0.003385815148366 -0.000326556965023 -0.000112824096535 0.000066054344843 0.000207693763003 0.000310218329215 0.000372276777145 0.000393053773690 0.000372276777145 0.000310218329215 0.000207693763003 0.000066054344842 -0.000112824096534 -0.000326556965022 -0.003385815148367 -0.006814593698399 -0.010105893895109 -0.013234733674719 -0.016177374815378 -0.018911503458256 -0.021416399774491 -0.023673095487051 -0.025664518049003 -0.027375620381235 -0.028793495182581 -0.029907472942891 -0.030709202913355 -0.031192716418482 -0.031354472028166 -0.031193382246668 -0.030710821515841 -0.029910615472194 -0.028799011540166 -0.027384631085856 -0.025678403496003 -0.023693482684524 -0.021445146662504 -0.018950680936751 -0.016229246624830 -0.013301734290978 -0.010190604615932 -0.006919717113911 -0.003514148200967 0.000000000000000 0.003514148200967 0.006919717113911 0.010190604615933 0.013301734290979 0.016229246624830 0.018950680936751 0.021445146662504 0.023693482684524 0.025678403496003 0.027384631085856 0.028799011540166 0.029910615472194 0.030710821515841 0.031193382246670 0.031354472028167 0.031192716418482 0.030709202913355 0.029907472942891 0.028793495182581 0.027375620381234 0.025664518049003 0.023673095487051 0.021416399774491 0.018911503458256 0.016177374815378 0.013234733674719 0.010105893895109 0.006814593698399 0.003385815148367 0.000326556965023 0.000112824096534 -0.000066054344842 -0.000207693763003 -0.000310218329215 -0.000372276777145 -0.000393053773690 +0.003152135781313 0.003168942908904 0.003219106108723 0.003301853044755 0.003415903849369 0.003559482101404 0.003730330075035 0.003925728140093 0.006865878785130 0.010056883258381 0.013089701812339 0.015941298136344 0.018590019574949 0.021015761823070 0.023200121828992 0.025126537741672 0.026780414837593 0.028149236468866 0.029222659188577 0.029992591329577 0.030453254438995 0.030601227101202 0.030435470815969 0.029957337735215 0.029170560199785 0.028081222156144 0.026697712670979 0.025030661897721 0.023092859982785 0.020899159528975 0.018466362358785 0.015813091439793 0.012959648947201 0.009927861544194 0.006740914058005 0.003423172817897 0.000000000000000 -0.003423172817896 -0.006740914058004 -0.009927861544194 -0.012959648947200 -0.015813091439793 -0.018466362358785 -0.020899159528975 -0.023092859982785 -0.025030661897720 -0.026697712670978 -0.028081222156143 -0.029170560199784 -0.029957337735216 -0.030435470815966 -0.030601227101201 -0.030453254438995 -0.029992591329575 -0.029222659188576 -0.028149236468866 -0.026780414837593 -0.025126537741673 -0.023200121828990 -0.021015761823070 -0.018590019574949 -0.015941298136345 -0.013089701812338 -0.010056883258381 -0.006865878785128 -0.003925728140092 -0.003730330075034 -0.003559482101404 -0.003415903849369 -0.003301853044755 -0.003219106108723 -0.003168942908904 -0.003152135781313 -0.003168942908904 -0.003219106108722 -0.003301853044754 -0.003415903849369 -0.003559482101404 -0.003730330075034 -0.003925728140092 -0.006865878785129 -0.010056883258380 -0.013089701812338 -0.015941298136345 -0.018590019574948 -0.021015761823068 -0.023200121828991 -0.025126537741674 -0.026780414837592 -0.028149236468865 -0.029222659188578 -0.029992591329577 -0.030453254438996 -0.030601227101200 -0.030435470815966 -0.029957337735216 -0.029170560199784 -0.028081222156144 -0.026697712670978 -0.025030661897720 -0.023092859982786 -0.020899159528975 -0.018466362358785 -0.015813091439793 -0.012959648947201 -0.009927861544194 -0.006740914058004 -0.003423172817897 0.000000000000000 0.003423172817897 0.006740914058005 0.009927861544195 0.012959648947201 0.015813091439793 0.018466362358786 0.020899159528975 0.023092859982786 0.025030661897721 0.026697712670978 0.028081222156144 0.029170560199784 0.029957337735216 0.030435470815969 0.030601227101200 0.030453254438996 0.029992591329577 0.029222659188578 0.028149236468865 0.026780414837594 0.025126537741674 0.023200121828991 0.021015761823069 0.018590019574948 0.015941298136345 0.013089701812338 0.010056883258381 0.006865878785129 0.003925728140092 0.003730330075034 0.003559482101404 0.003415903849370 0.003301853044754 0.003219106108723 0.003168942908904 0.003152135781313 +0.006567904826542 0.006580799877158 0.006619241841457 0.006682503283698 0.006769378883970 0.006878195989338 0.007006829269118 0.007152719359168 0.007312895348558 0.009961999190294 0.012889025634114 0.015640428173486 0.018195286332140 0.020534177149073 0.022639322958913 0.024494726647517 0.026086293353323 0.027401937688542 0.028431675664065 0.029167700618751 0.029604442575171 0.029738610570385 0.029569217639425 0.029097588261816 0.028327348214224 0.027264396906853 0.025916862414160 0.024295039542241 0.022411311404396 0.020280055101945 0.017917532228128 0.015341765028651 0.012572399161558 0.009630554100965 0.006538662323398 0.003320298500757 0.000000000000000 -0.003320298500756 -0.006538662323398 -0.009630554100964 -0.012572399161558 -0.015341765028652 -0.017917532228127 -0.020280055101944 -0.022411311404397 -0.024295039542242 -0.025916862414160 -0.027264396906850 -0.028327348214223 -0.029097588261817 -0.029569217639426 -0.029738610570382 -0.029604442575172 -0.029167700618750 -0.028431675664065 -0.027401937688542 -0.026086293353323 -0.024494726647516 -0.022639322958916 -0.020534177149073 -0.018195286332141 -0.015640428173485 -0.012889025634115 -0.009961999190293 -0.007312895348560 -0.007152719359168 -0.007006829269118 -0.006878195989338 -0.006769378883969 -0.006682503283699 -0.006619241841457 -0.006580799877158 -0.006567904826542 -0.006580799877158 -0.006619241841457 -0.006682503283699 -0.006769378883970 -0.006878195989338 -0.007006829269118 -0.007152719359166 -0.007312895348559 -0.009961999190295 -0.012889025634113 -0.015640428173486 -0.018195286332140 -0.020534177149072 -0.022639322958915 -0.024494726647517 -0.026086293353322 -0.027401937688543 -0.028431675664067 -0.029167700618750 -0.029604442575172 -0.029738610570381 -0.029569217639427 -0.029097588261815 -0.028327348214222 -0.027264396906852 -0.025916862414160 -0.024295039542239 -0.022411311404395 -0.020280055101946 -0.017917532228127 -0.015341765028651 -0.012572399161557 -0.009630554100964 -0.006538662323398 -0.003320298500756 0.000000000000000 0.003320298500756 0.006538662323399 0.009630554100964 0.012572399161558 0.015341765028651 0.017917532228127 0.020280055101946 0.022411311404396 0.024295039542239 0.025916862414160 0.027264396906852 0.028327348214223 0.029097588261816 0.029569217639425 0.029738610570381 0.029604442575172 0.029167700618750 0.028431675664067 0.027401937688543 0.026086293353324 0.024494726647517 0.022639322958915 0.020534177149072 0.018195286332141 0.015640428173488 0.012889025634115 0.009961999190295 0.007312895348559 0.007152719359166 0.007006829269118 0.006878195989338 0.006769378883971 0.006682503283700 0.006619241841457 0.006580799877158 0.006567904826542 +0.009828520877223 0.009837591165229 0.009864574360158 0.009908789489409 0.009969108364839 0.010043965676014 0.010131373008885 0.010228936679491 0.010333879241525 0.010443064497961 0.012634471291688 0.015277288527359 0.017730536155284 0.019975533203895 0.021995182807060 0.023774102342654 0.025298740526163 0.026557480568246 0.027540728610911 0.028240986769440 0.028652910223885 0.028773347925797 0.028601366610150 0.028138257929779 0.027387528657944 0.026354874033424 0.025048134451140 0.023477235827621 0.021654114095290 0.019592624400023 0.017308435693029 0.014818911519171 0.012142977908957 0.009300979379520 0.006314524140441 0.003206319682422 0.000000000000000 -0.003206319682421 -0.006314524140440 -0.009300979379520 -0.012142977908956 -0.014818911519171 -0.017308435693027 -0.019592624400022 -0.021654114095289 -0.023477235827618 -0.025048134451139 -0.026354874033423 -0.027387528657942 -0.028138257929780 -0.028601366610149 -0.028773347925796 -0.028652910223887 -0.028240986769439 -0.027540728610913 -0.026557480568246 -0.025298740526161 -0.023774102342651 -0.021995182807059 -0.019975533203896 -0.017730536155281 -0.015277288527356 -0.012634471291688 -0.010443064497960 -0.010333879241524 -0.010228936679492 -0.010131373008885 -0.010043965676014 -0.009969108364841 -0.009908789489408 -0.009864574360159 -0.009837591165229 -0.009828520877223 -0.009837591165228 -0.009864574360158 -0.009908789489408 -0.009969108364840 -0.010043965676014 -0.010131373008885 -0.010228936679493 -0.010333879241525 -0.010443064497960 -0.012634471291687 -0.015277288527358 -0.017730536155283 -0.019975533203895 -0.021995182807059 -0.023774102342650 -0.025298740526162 -0.026557480568244 -0.027540728610911 -0.028240986769439 -0.028652910223886 -0.028773347925796 -0.028601366610147 -0.028138257929779 -0.027387528657943 -0.026354874033424 -0.025048134451139 -0.023477235827618 -0.021654114095288 -0.019592624400022 -0.017308435693028 -0.014818911519171 -0.012142977908956 -0.009300979379520 -0.006314524140440 -0.003206319682422 0.000000000000000 0.003206319682422 0.006314524140441 0.009300979379520 0.012142977908957 0.014818911519172 0.017308435693029 0.019592624400023 0.021654114095288 0.023477235827619 0.025048134451140 0.026354874033424 0.027387528657944 0.028138257929779 0.028601366610147 0.028773347925797 0.028652910223886 0.028240986769440 0.027540728610911 0.026557480568244 0.025298740526162 0.023774102342651 0.021995182807060 0.019975533203895 0.017730536155283 0.015277288527359 0.012634471291689 0.010443064497961 0.010333879241525 0.010228936679493 0.010131373008885 0.010043965676014 0.009969108364841 0.009908789489409 0.009864574360158 0.009837591165228 0.009828520877223 +0.012909461570691 0.012914823240453 0.012930696504531 0.012956448064334 0.012991028863176 0.013032983694110 0.013080464544005 0.013131247568047 0.013182753559910 0.013232071754976 0.013275986777724 0.014854902710352 0.017199559727743 0.019344328629836 0.021272843593903 0.022970381581840 0.024423974478708 0.025622507880875 0.026556805781695 0.027219700510123 0.027606087389710 0.027712963701779 0.027539451656142 0.027086805194197 0.026358400572404 0.025359710797655 0.024098264108739 0.022583586819733 0.020827130959944 0.018842187260937 0.016643784152523 0.014248573536200 0.011674704204988 0.008941683872872 0.006070230863462 0.003082116586393 0.000000000000000 -0.003082116586392 -0.006070230863461 -0.008941683872871 -0.011674704204986 -0.014248573536200 -0.016643784152525 -0.018842187260935 -0.020827130959943 -0.022583586819730 -0.024098264108741 -0.025359710797656 -0.026358400572403 -0.027086805194194 -0.027539451656143 -0.027712963701777 -0.027606087389710 -0.027219700510123 -0.026556805781694 -0.025622507880874 -0.024423974478708 -0.022970381581839 -0.021272843593902 -0.019344328629835 -0.017199559727742 -0.014854902710353 -0.013275986777723 -0.013232071754975 -0.013182753559910 -0.013131247568047 -0.013080464544005 -0.013032983694111 -0.012991028863176 -0.012956448064333 -0.012930696504531 -0.012914823240452 -0.012909461570691 -0.012914823240452 -0.012930696504531 -0.012956448064333 -0.012991028863176 -0.013032983694108 -0.013080464544005 -0.013131247568048 -0.013182753559910 -0.013232071754975 -0.013275986777723 -0.014854902710352 -0.017199559727743 -0.019344328629835 -0.021272843593902 -0.022970381581841 -0.024423974478707 -0.025622507880874 -0.026556805781693 -0.027219700510122 -0.027606087389710 -0.027712963701774 -0.027539451656144 -0.027086805194194 -0.026358400572405 -0.025359710797656 -0.024098264108740 -0.022583586819731 -0.020827130959943 -0.018842187260937 -0.016643784152523 -0.014248573536200 -0.011674704204986 -0.008941683872871 -0.006070230863462 -0.003082116586392 0.000000000000000 0.003082116586393 0.006070230863462 0.008941683872871 0.011674704204986 0.014248573536201 0.016643784152523 0.018842187260938 0.020827130959943 0.022583586819732 0.024098264108741 0.025359710797656 0.026358400572405 0.027086805194194 0.027539451656141 0.027712963701777 0.027606087389710 0.027219700510123 0.026556805781694 0.025622507880874 0.024423974478708 0.022970381581842 0.021272843593902 0.019344328629835 0.017199559727743 0.014854902710352 0.013275986777724 0.013232071754975 0.013182753559911 0.013131247568048 0.013080464544006 0.013032983694109 0.012991028863177 0.012956448064333 0.012930696504531 0.012914823240453 0.012909461570691 +0.015787600738861 0.015789397853401 0.015794593660593 0.015802603385622 0.015812458503591 0.015822815838184 0.015831970198081 0.015837870450424 0.015838138902930 0.015830093840238 0.015810775034181 0.015776972024577 0.016606676658605 0.018645638552458 0.020478066238009 0.022089936348186 0.023468899107675 0.024604372479069 0.025487622864785 0.026111831750125 0.026472147779713 0.026565723871203 0.026391739082783 0.025951405068159 0.025247957069194 0.024286629514511 0.023074616409367 0.021621016817610 0.019936765850460 0.018034551686739 0.015928719255552 0.013635161314164 0.011171197749378 0.008555444020642 0.005807669745531 0.002948648503442 0.000000000000000 -0.002948648503440 -0.005807669745530 -0.008555444020641 -0.011171197749376 -0.013635161314163 -0.015928719255551 -0.018034551686738 -0.019936765850458 -0.021621016817611 -0.023074616409366 -0.024286629514510 -0.025247957069190 -0.025951405068160 -0.026391739082783 -0.026565723871203 -0.026472147779711 -0.026111831750125 -0.025487622864787 -0.024604372479069 -0.023468899107675 -0.022089936348185 -0.020478066238010 -0.018645638552458 -0.016606676658603 -0.015776972024577 -0.015810775034181 -0.015830093840238 -0.015838138902927 -0.015837870450424 -0.015831970198081 -0.015822815838181 -0.015812458503589 -0.015802603385621 -0.015794593660591 -0.015789397853402 -0.015787600738861 -0.015789397853400 -0.015794593660591 -0.015802603385621 -0.015812458503589 -0.015822815838183 -0.015831970198080 -0.015837870450424 -0.015838138902927 -0.015830093840239 -0.015810775034178 -0.015776972024576 -0.016606676658605 -0.018645638552458 -0.020478066238008 -0.022089936348186 -0.023468899107675 -0.024604372479070 -0.025487622864787 -0.026111831750127 -0.026472147779710 -0.026565723871201 -0.026391739082781 -0.025951405068159 -0.025247957069191 -0.024286629514509 -0.023074616409367 -0.021621016817610 -0.019936765850461 -0.018034551686738 -0.015928719255552 -0.013635161314164 -0.011171197749377 -0.008555444020640 -0.005807669745531 -0.002948648503440 0.000000000000000 0.002948648503441 0.005807669745531 0.008555444020640 0.011171197749377 0.013635161314164 0.015928719255553 0.018034551686739 0.019936765850461 0.021621016817610 0.023074616409368 0.024286629514510 0.025247957069191 0.025951405068159 0.026391739082780 0.026565723871204 0.026472147779712 0.026111831750128 0.025487622864787 0.024604372479070 0.023468899107677 0.022089936348186 0.020478066238008 0.018645638552458 0.016606676658605 0.015776972024577 0.015810775034182 0.015830093840239 0.015838138902927 0.015837870450424 0.015831970198081 0.015822815838184 0.015812458503590 0.015802603385621 0.015794593660591 0.015789397853400 0.015787600738861 +0.018441383800030 0.018439787217859 0.018434818305876 0.018425941295415 0.018412268983951 0.018392571304747 0.018365287227947 0.018328539897822 0.018280154884777 0.018217681405560 0.018138416341399 0.018039430860948 0.017917599434006 0.017885075439435 0.019617186010427 0.021139744872777 0.022441051072016 0.023511080884081 0.024341564330378 0.024926048357853 0.025259946203053 0.025340572563741 0.025167164310071 0.024740886577049 0.024064824191468 0.023143958497975 0.021985129759950 0.020596985421003 0.018989914619956 0.017175969457267 0.015168773611408 0.012983419000003 0.010636351271587 0.008145244998760 0.005528869521961 0.002806946464122 0.000000000000000 -0.002806946464121 -0.005528869521960 -0.008145244998761 -0.010636351271586 -0.012983419000002 -0.015168773611409 -0.017175969457267 -0.018989914619954 -0.020596985421004 -0.021985129759951 -0.023143958497977 -0.024064824191472 -0.024740886577046 -0.025167164310070 -0.025340572563742 -0.025259946203053 -0.024926048357852 -0.024341564330378 -0.023511080884081 -0.022441051072016 -0.021139744872778 -0.019617186010429 -0.017885075439435 -0.017917599434006 -0.018039430860949 -0.018138416341399 -0.018217681405559 -0.018280154884777 -0.018328539897821 -0.018365287227946 -0.018392571304747 -0.018412268983950 -0.018425941295414 -0.018434818305876 -0.018439787217858 -0.018441383800030 -0.018439787217858 -0.018434818305877 -0.018425941295413 -0.018412268983950 -0.018392571304746 -0.018365287227945 -0.018328539897823 -0.018280154884776 -0.018217681405558 -0.018138416341399 -0.018039430860948 -0.017917599434009 -0.017885075439433 -0.019617186010431 -0.021139744872778 -0.022441051072014 -0.023511080884082 -0.024341564330378 -0.024926048357853 -0.025259946203052 -0.025340572563744 -0.025167164310069 -0.024740886577050 -0.024064824191469 -0.023143958497976 -0.021985129759951 -0.020596985421003 -0.018989914619955 -0.017175969457266 -0.015168773611406 -0.012983419000002 -0.010636351271585 -0.008145244998761 -0.005528869521960 -0.002806946464122 0.000000000000000 0.002806946464123 0.005528869521961 0.008145244998761 0.010636351271586 0.012983419000002 0.015168773611406 0.017175969457266 0.018989914619956 0.020596985421004 0.021985129759952 0.023143958497976 0.024064824191469 0.024740886577050 0.025167164310071 0.025340572563744 0.025259946203052 0.024926048357853 0.024341564330378 0.023511080884082 0.022441051072014 0.021139744872778 0.019617186010431 0.017885075439433 0.017917599434009 0.018039430860949 0.018138416341400 0.018217681405559 0.018280154884776 0.018328539897824 0.018365287227946 0.018392571304746 0.018412268983950 0.018425941295415 0.018434818305877 0.018439787217859 0.018441383800030 +0.020850991136378 0.020846197185042 0.020831652574690 0.020806870654257 0.020771045718753 0.020723061033856 0.020661499979732 0.020584660224157 0.020490570810584 0.020377012023380 0.020241537869631 0.020081500995857 0.019894079838023 0.019676307784817 0.019425104117690 0.020127337997805 0.021348541924325 0.022351231860467 0.023127619148687 0.023671629743366 0.023978950752543 0.024047063590297 0.023875263486737 0.023464665206518 0.022818194931713 0.021940568370046 0.020838255254506 0.019519430503580 0.017993912413213 0.016273088350094 0.014369828510927 0.012298388403236 0.010074300789150 0.007714257913572 0.005235984912361 0.002658105362964 0.000000000000000 -0.002658105362963 -0.005235984912360 -0.007714257913571 -0.010074300789149 -0.012298388403238 -0.014369828510926 -0.016273088350094 -0.017993912413210 -0.019519430503579 -0.020838255254505 -0.021940568370043 -0.022818194931710 -0.023464665206517 -0.023875263486736 -0.024047063590297 -0.023978950752543 -0.023671629743362 -0.023127619148687 -0.022351231860469 -0.021348541924324 -0.020127337997804 -0.019425104117694 -0.019676307784816 -0.019894079838023 -0.020081500995856 -0.020241537869632 -0.020377012023381 -0.020490570810586 -0.020584660224157 -0.020661499979732 -0.020723061033851 -0.020771045718752 -0.020806870654257 -0.020831652574687 -0.020846197185038 -0.020850991136378 -0.020846197185038 -0.020831652574688 -0.020806870654256 -0.020771045718752 -0.020723061033855 -0.020661499979735 -0.020584660224158 -0.020490570810584 -0.020377012023381 -0.020241537869629 -0.020081500995857 -0.019894079838023 -0.019676307784816 -0.019425104117694 -0.020127337997806 -0.021348541924323 -0.022351231860466 -0.023127619148686 -0.023671629743365 -0.023978950752542 -0.024047063590295 -0.023875263486734 -0.023464665206518 -0.022818194931712 -0.021940568370044 -0.020838255254506 -0.019519430503580 -0.017993912413213 -0.016273088350093 -0.014369828510927 -0.012298388403237 -0.010074300789148 -0.007714257913571 -0.005235984912361 -0.002658105362964 0.000000000000000 0.002658105362964 0.005235984912361 0.007714257913571 0.010074300789149 0.012298388403238 0.014369828510927 0.016273088350093 0.017993912413213 0.019519430503581 0.020838255254507 0.021940568370044 0.022818194931713 0.023464665206518 0.023875263486739 0.024047063590298 0.023978950752542 0.023671629743366 0.023127619148686 0.022351231860466 0.021348541924325 0.020127337997806 0.019425104117695 0.019676307784816 0.019894079838023 0.020081500995858 0.020241537869633 0.020377012023382 0.020490570810585 0.020584660224158 0.020661499979735 0.020723061033856 0.020771045718752 0.020806870654257 0.020831652574689 0.020846197185040 0.020850991136378 +0.022998488215123 0.022990717171496 0.022967257607503 0.022927671729522 0.022871234888586 0.022796943048254 0.022703523154800 0.022589446325538 0.022452943748249 0.022292025162589 0.022104499773312 0.021887999425087 0.021640003850240 0.021357867783472 0.021038849722113 0.020680142096566 0.020278902603662 0.021133950444720 0.021855311870738 0.022358395751148 0.022639170285092 0.022695287295513 0.022526100502508 0.022132670859106 0.021517758908279 0.020685804218360 0.019642892052665 0.018396707526008 0.016956477596196 0.015332901330997 0.013538068980436 0.011585370469301 0.009489394005376 0.007265815574048 0.004931280159345 0.002503275594336 0.000000000000000 -0.002503275594335 -0.004931280159344 -0.007265815574048 -0.009489394005375 -0.011585370469302 -0.013538068980438 -0.015332901330996 -0.016956477596195 -0.018396707526008 -0.019642892052662 -0.020685804218359 -0.021517758908277 -0.022132670859105 -0.022526100502507 -0.022695287295513 -0.022639170285091 -0.022358395751148 -0.021855311870737 -0.021133950444718 -0.020278902603660 -0.020680142096563 -0.021038849722112 -0.021357867783470 -0.021640003850236 -0.021887999425087 -0.022104499773312 -0.022292025162589 -0.022452943748248 -0.022589446325537 -0.022703523154799 -0.022796943048253 -0.022871234888585 -0.022927671729521 -0.022967257607501 -0.022990717171495 -0.022998488215122 -0.022990717171496 -0.022967257607502 -0.022927671729521 -0.022871234888584 -0.022796943048254 -0.022703523154799 -0.022589446325538 -0.022452943748246 -0.022292025162589 -0.022104499773310 -0.021887999425087 -0.021640003850240 -0.021357867783472 -0.021038849722112 -0.020680142096565 -0.020278902603661 -0.021133950444718 -0.021855311870736 -0.022358395751147 -0.022639170285087 -0.022695287295513 -0.022526100502507 -0.022132670859105 -0.021517758908279 -0.020685804218358 -0.019642892052660 -0.018396707526007 -0.016956477596197 -0.015332901330997 -0.013538068980435 -0.011585370469301 -0.009489394005375 -0.007265815574048 -0.004931280159346 -0.002503275594334 0.000000000000000 0.002503275594335 0.004931280159347 0.007265815574049 0.009489394005375 0.011585370469302 0.013538068980437 0.015332901330997 0.016956477596197 0.018396707526007 0.019642892052661 0.020685804218359 0.021517758908280 0.022132670859106 0.022526100502507 0.022695287295513 0.022639170285088 0.022358395751147 0.021855311870736 0.021133950444718 0.020278902603660 0.020680142096564 0.021038849722113 0.021357867783473 0.021640003850241 0.021887999425087 0.022104499773313 0.022292025162590 0.022452943748248 0.022589446325538 0.022703523154799 0.022796943048254 0.022871234888585 0.022927671729521 0.022967257607502 0.022990717171496 0.022998488215123 +0.024867961312005 0.024857455701152 0.024825808549330 0.024772630290725 0.024697276277897 0.024598853685449 0.024476231096207 0.024328050691531 0.024152742946311 0.023948543708372 0.023713513522662 0.023445559041803 0.023142456347445 0.022801875990950 0.022421409547165 0.021998597462744 0.021530957968513 0.021016016816906 0.020534629596874 0.020996631405661 0.021251077753900 0.021295793295959 0.021130189954653 0.020755271868462 0.020173628237158 0.019389414119308 0.018408319326670 0.017237525651596 0.015885652751563 0.014362693101955 0.012679936510909 0.010849884769699 0.008886157087164 0.006803387026723 0.004617111729235 0.002343654263700 0.000000000000000 -0.002343654263699 -0.004617111729233 -0.006803387026721 -0.008886157087162 -0.010849884769698 -0.012679936510908 -0.014362693101954 -0.015885652751563 -0.017237525651593 -0.018408319326669 -0.019389414119308 -0.020173628237159 -0.020755271868464 -0.021130189954651 -0.021295793295956 -0.021251077753903 -0.020996631405660 -0.020534629596872 -0.021016016816906 -0.021530957968516 -0.021998597462743 -0.022421409547162 -0.022801875990948 -0.023142456347443 -0.023445559041802 -0.023713513522663 -0.023948543708371 -0.024152742946311 -0.024328050691528 -0.024476231096211 -0.024598853685450 -0.024697276277898 -0.024772630290724 -0.024825808549329 -0.024857455701152 -0.024867961312004 -0.024857455701150 -0.024825808549329 -0.024772630290724 -0.024697276277898 -0.024598853685449 -0.024476231096208 -0.024328050691530 -0.024152742946311 -0.023948543708372 -0.023713513522662 -0.023445559041804 -0.023142456347443 -0.022801875990950 -0.022421409547163 -0.021998597462745 -0.021530957968514 -0.021016016816903 -0.020534629596873 -0.020996631405661 -0.021251077753905 -0.021295793295959 -0.021130189954650 -0.020755271868460 -0.020173628237158 -0.019389414119308 -0.018408319326669 -0.017237525651593 -0.015885652751563 -0.014362693101955 -0.012679936510908 -0.010849884769698 -0.008886157087163 -0.006803387026721 -0.004617111729234 -0.002343654263699 0.000000000000000 0.002343654263700 0.004617111729234 0.006803387026723 0.008886157087164 0.010849884769699 0.012679936510908 0.014362693101956 0.015885652751564 0.017237525651594 0.018408319326670 0.019389414119308 0.020173628237159 0.020755271868460 0.021130189954653 0.021295793295959 0.021251077753905 0.020996631405661 0.020534629596875 0.021016016816904 0.021530957968517 0.021998597462745 0.022421409547163 0.022801875990950 0.023142456347443 0.023445559041804 0.023713513522665 0.023948543708372 0.024152742946311 0.024328050691531 0.024476231096208 0.024598853685450 0.024697276277899 0.024772630290725 0.024825808549329 0.024857455701151 0.024867961312005 +0.026445637805765 0.026432660531226 0.026393614170964 0.026328156392752 0.026235720891459 0.026115523725312 0.025966572113493 0.025787675623005 0.025577459652529 0.025334381102297 0.025056746100826 0.024742729642243 0.024390396971834 0.023997726542816 0.023562634354006 0.023082999466032 0.022556690483559 0.021981592782303 0.021355636252676 0.020676823326699 0.019943257051520 0.019859509692916 0.019698416656078 0.019343195650199 0.018796260163287 0.018061474571283 0.017144125295347 0.016050881151004 0.014789743189796 0.013369984414054 0.011802079822452 0.010097627317536 0.008269260075979 0.006330551047304 0.004295910306588 0.002180476041216 0.000000000000000 -0.002180476041215 -0.004295910306587 -0.006330551047302 -0.008269260075980 -0.010097627317535 -0.011802079822449 -0.013369984414051 -0.014789743189796 -0.016050881151006 -0.017144125295344 -0.018061474571286 -0.018796260163286 -0.019343195650198 -0.019698416656074 -0.019859509692914 -0.019943257051521 -0.020676823326701 -0.021355636252677 -0.021981592782302 -0.022556690483555 -0.023082999466032 -0.023562634354005 -0.023997726542812 -0.024390396971831 -0.024742729642243 -0.025056746100826 -0.025334381102295 -0.025577459652534 -0.025787675623004 -0.025966572113491 -0.026115523725312 -0.026235720891458 -0.026328156392752 -0.026393614170964 -0.026432660531228 -0.026445637805764 -0.026432660531226 -0.026393614170965 -0.026328156392752 -0.026235720891458 -0.026115523725312 -0.025966572113492 -0.025787675623005 -0.025577459652533 -0.025334381102295 -0.025056746100827 -0.024742729642243 -0.024390396971833 -0.023997726542815 -0.023562634354004 -0.023082999466030 -0.022556690483559 -0.021981592782304 -0.021355636252677 -0.020676823326704 -0.019943257051520 -0.019859509692914 -0.019698416656074 -0.019343195650196 -0.018796260163286 -0.018061474571285 -0.017144125295343 -0.016050881151007 -0.014789743189794 -0.013369984414053 -0.011802079822451 -0.010097627317534 -0.008269260075980 -0.006330551047301 -0.004295910306587 -0.002180476041215 0.000000000000000 0.002180476041216 0.004295910306588 0.006330551047303 0.008269260075981 0.010097627317535 0.011802079822451 0.013369984414054 0.014789743189795 0.016050881151008 0.017144125295344 0.018061474571284 0.018796260163287 0.019343195650197 0.019698416656075 0.019859509692914 0.019943257051521 0.020676823326704 0.021355636252678 0.021981592782305 0.022556690483557 0.023082999466030 0.023562634354006 0.023997726542815 0.024390396971834 0.024742729642243 0.025056746100827 0.025334381102296 0.025577459652535 0.025787675623005 0.025966572113493 0.026115523725312 0.026235720891459 0.026328156392753 0.026393614170965 0.026432660531226 0.026445637805765 +0.027719990129618 0.027704822449377 0.027659220204245 0.027582886944435 0.027475332456064 0.027335878530830 0.027163666976854 0.026957669803931 0.026716701498868 0.026439433288924 0.026124409275004 0.025770064300103 0.025374743404320 0.024936722703849 0.024454231519414 0.023925475568482 0.023348661026327 0.022722019252948 0.022043831976649 0.021312456720219 0.020526352252814 0.019684103849028 0.018784448137306 0.017907446594265 0.017396377041354 0.016712313406371 0.015860133885739 0.014845988603615 0.013677253444397 0.012362474569428 0.010911304039295 0.009334427029907 0.007643481195559 0.005850968790922 0.003970162219703 0.002015003727356 0.000000000000000 -0.002015003727355 -0.003970162219701 -0.005850968790921 -0.007643481195558 -0.009334427029905 -0.010911304039294 -0.012362474569427 -0.013677253444394 -0.014845988603615 -0.015860133885739 -0.016712313406372 -0.017396377041345 -0.017907446594266 -0.018784448137308 -0.019684103849031 -0.020526352252808 -0.021312456720222 -0.022043831976648 -0.022722019252950 -0.023348661026325 -0.023925475568483 -0.024454231519411 -0.024936722703850 -0.025374743404320 -0.025770064300103 -0.026124409275004 -0.026439433288922 -0.026716701498868 -0.026957669803931 -0.027163666976855 -0.027335878530826 -0.027475332456064 -0.027582886944434 -0.027659220204244 -0.027704822449377 -0.027719990129617 -0.027704822449376 -0.027659220204246 -0.027582886944434 -0.027475332456064 -0.027335878530830 -0.027163666976854 -0.026957669803932 -0.026716701498868 -0.026439433288922 -0.026124409275004 -0.025770064300103 -0.025374743404319 -0.024936722703849 -0.024454231519412 -0.023925475568483 -0.023348661026327 -0.022722019252947 -0.022043831976646 -0.021312456720219 -0.020526352252808 -0.019684103849030 -0.018784448137308 -0.017907446594264 -0.017396377041350 -0.016712313406371 -0.015860133885739 -0.014845988603613 -0.013677253444397 -0.012362474569431 -0.010911304039295 -0.009334427029906 -0.007643481195556 -0.005850968790921 -0.003970162219701 -0.002015003727355 0.000000000000000 0.002015003727356 0.003970162219702 0.005850968790921 0.007643481195557 0.009334427029906 0.010911304039296 0.012362474569431 0.013677253444397 0.014845988603613 0.015860133885739 0.016712313406373 0.017396377041351 0.017907446594265 0.018784448137312 0.019684103849031 0.020526352252809 0.021312456720219 0.022043831976646 0.022722019252952 0.023348661026325 0.023925475568484 0.024454231519412 0.024936722703849 0.025374743404319 0.025770064300103 0.026124409275005 0.026439433288922 0.026716701498868 0.026957669803932 0.027163666976854 0.027335878530831 0.027475332456064 0.027582886944435 0.027659220204246 0.027704822449377 0.027719990129618 +0.028681822590229 0.028664761953957 0.028613495606705 0.028527771283653 0.028407172036371 0.028251121441722 0.028058890833087 0.027829608493839 0.027562270735852 0.027255754770388 0.026908833263513 0.026520190453681 0.026088439696050 0.025612142285572 0.025089827399960 0.024520012993515 0.023901227464502 0.023232031911135 0.022511042786063 0.021736954754453 0.020908563558224 0.020024788688019 0.019084695664323 0.018087517731767 0.017032676773463 0.015919803257648 0.014748755035155 0.013632210419724 0.012556822235080 0.011347982550517 0.010014518662407 0.008566201168731 0.007013670328238 0.005368355809407 0.003642390438599 0.001848518602415 0.000000000000000 -0.001848518602415 -0.003642390438598 -0.005368355809406 -0.007013670328237 -0.008566201168731 -0.010014518662406 -0.011347982550513 -0.012556822235083 -0.013632210419725 -0.014748755035151 -0.015919803257649 -0.017032676773462 -0.018087517731762 -0.019084695664326 -0.020024788688022 -0.020908563558225 -0.021736954754449 -0.022511042786063 -0.023232031911132 -0.023901227464499 -0.024520012993515 -0.025089827399960 -0.025612142285566 -0.026088439696049 -0.026520190453680 -0.026908833263513 -0.027255754770389 -0.027562270735854 -0.027829608493840 -0.028058890833084 -0.028251121441722 -0.028407172036369 -0.028527771283650 -0.028613495606705 -0.028664761953956 -0.028681822590226 -0.028664761953958 -0.028613495606705 -0.028527771283652 -0.028407172036370 -0.028251121441721 -0.028058890833088 -0.027829608493839 -0.027562270735850 -0.027255754770391 -0.026908833263514 -0.026520190453680 -0.026088439696046 -0.025612142285569 -0.025089827399959 -0.024520012993514 -0.023901227464497 -0.023232031911135 -0.022511042786061 -0.021736954754452 -0.020908563558224 -0.020024788688021 -0.019084695664327 -0.018087517731763 -0.017032676773462 -0.015919803257648 -0.014748755035154 -0.013632210419724 -0.012556822235080 -0.011347982550515 -0.010014518662406 -0.008566201168731 -0.007013670328237 -0.005368355809405 -0.003642390438598 -0.001848518602415 0.000000000000000 0.001848518602416 0.003642390438599 0.005368355809406 0.007013670328238 0.008566201168732 0.010014518662407 0.011347982550516 0.012556822235080 0.013632210419725 0.014748755035154 0.015919803257649 0.017032676773463 0.018087517731765 0.019084695664323 0.020024788688026 0.020908563558225 0.021736954754453 0.022511042786062 0.023232031911136 0.023901227464501 0.024520012993514 0.025089827399960 0.025612142285570 0.026088439696047 0.026520190453681 0.026908833263512 0.027255754770391 0.027562270735853 0.027829608493840 0.028058890833089 0.028251121441721 0.028407172036371 0.028527771283654 0.028613495606705 0.028664761953961 0.028681822590229 +0.029324340395209 0.029305698159107 0.029249701100703 0.029156139109112 0.029024665122931 0.028854799787691 0.028645937921189 0.028397356732181 0.028108225722979 0.027777618192114 0.027404524239929 0.026987865166438 0.026526509139383 0.026019287998845 0.025465015055150 0.024862503727380 0.024210586862572 0.023508136568960 0.022754084391364 0.021947441653125 0.021087319786758 0.020172950473845 0.019203705415770 0.018179115558088 0.017098889594864 0.015962931583645 0.014771357507759 0.013524510629680 0.012222975487788 0.010867590398290 0.009459458335000 0.007999956071205 0.006490741480735 0.004933758908831 0.003331242537629 0.001685717686146 -0.000004436041146 -0.001685717686146 -0.003331242537627 -0.004933758908829 -0.006490741480734 -0.007999956071205 -0.009459458334997 -0.010867590398289 -0.012222975487785 -0.013524510629680 -0.014771357507758 -0.015962931583645 -0.017098889594864 -0.018179115558087 -0.019203705415765 -0.020172950473844 -0.021087319786757 -0.021947441653125 -0.022754084391359 -0.023508136568961 -0.024210586862571 -0.024862503727374 -0.025465015055147 -0.026019287998845 -0.026526509139379 -0.026987865166439 -0.027404524239927 -0.027777618192113 -0.028108225722977 -0.028397356732181 -0.028645937921191 -0.028854799787691 -0.029024665122932 -0.029156139109112 -0.029249701100702 -0.029305698159107 -0.029324340395207 -0.029305698159106 -0.029249701100703 -0.029156139109111 -0.029024665122933 -0.028854799787692 -0.028645937921188 -0.028397356732181 -0.028108225722977 -0.027777618192115 -0.027404524239928 -0.026987865166437 -0.026526509139384 -0.026019287998845 -0.025465015055149 -0.024862503727374 -0.024210586862572 -0.023508136568960 -0.022754084391363 -0.021947441653126 -0.021087319786753 -0.020172950473845 -0.019203705415766 -0.018179115558091 -0.017098889594863 -0.015962931583646 -0.014771357507757 -0.013524510629681 -0.012222975487788 -0.010867590398288 -0.009459458334999 -0.007999956071205 -0.006490741480734 -0.004933758908829 -0.003331242537626 -0.001685717686145 -0.000027057123918 0.001685717686147 0.003331242537628 0.004933758908830 0.006490741480736 0.007999956071206 0.009459458335000 0.010867590398289 0.012222975487789 0.013524510629681 0.014771357507758 0.015962931583647 0.017098889594864 0.018179115558093 0.019203705415771 0.020172950473846 0.021087319786754 0.021947441653126 0.022754084391364 0.023508136568960 0.024210586862572 0.024862503727374 0.025465015055149 0.026019287998847 0.026526509139385 0.026987865166443 0.027404524239931 0.027777618192115 0.028108225722978 0.028397356732182 0.028645937921189 0.028854799787692 0.029024665122933 0.029156139109113 0.029249701100703 0.029305698159106 0.029324340395209 +0.029643200365574 0.029623299402364 0.029563539467101 0.029463750254043 0.029323650683328 0.029142853020878 0.028920868597128 0.028657115075374 0.028350925208350 0.028001557007450 0.027608205238027 0.027170014141868 0.026686091277588 0.026155522359643 0.025577386967719 0.024950774990126 0.024274803658423 0.023548635024035 0.022771493723582 0.021942684875966 0.021061611952208 0.020127794458029 0.019140885269683 0.018100687464937 0.017007170494213 0.015860485540759 0.014660979924354 0.013409210409071 0.012105955283685 0.010752225091499 0.009349271896480 0.007898596982636 0.006401956895521 0.004861367746352 0.003279107712594 0.001657717681853 0.000000000000001 -0.001657717681852 -0.003279107712595 -0.004861367746351 -0.006401956895521 -0.007898596982639 -0.009349271896479 -0.010752225091498 -0.012105955283684 -0.013409210409073 -0.014660979924353 -0.015860485540757 -0.017007170494212 -0.018100687464940 -0.019140885269676 -0.020127794458028 -0.021061611952200 -0.021942684875966 -0.022771493723581 -0.023548635024036 -0.024274803658422 -0.024950774990126 -0.025577386967720 -0.026155522359642 -0.026686091277588 -0.027170014141867 -0.027608205238028 -0.028001557007450 -0.028350925208347 -0.028657115075374 -0.028920868597119 -0.029142853020877 -0.029323650683328 -0.029463750254041 -0.029563539467098 -0.029623299402363 -0.029643200365573 -0.029623299402363 -0.029563539467099 -0.029463750254040 -0.029323650683328 -0.029142853020878 -0.028920868597127 -0.028657115075373 -0.028350925208346 -0.028001557007449 -0.027608205238025 -0.027170014141863 -0.026686091277587 -0.026155522359644 -0.025577386967718 -0.024950774990128 -0.024274803658423 -0.023548635024035 -0.022771493723581 -0.021942684875966 -0.021061611952201 -0.020127794458028 -0.019140885269676 -0.018100687464936 -0.017007170494212 -0.015860485540759 -0.014660979924352 -0.013409210409070 -0.012105955283682 -0.010752225091505 -0.009349271896478 -0.007898596982638 -0.006401956895521 -0.004861367746352 -0.003279107712594 -0.001657717681853 0.000000000000001 0.001657717681854 0.003279107712594 0.004861367746352 0.006401956895522 0.007898596982641 0.009349271896479 0.010752225091506 0.012105955283682 0.013409210409073 0.014660979924353 0.015860485540759 0.017007170494214 0.018100687464937 0.019140885269681 0.020127794458029 0.021061611952202 0.021942684875967 0.022771493723584 0.023548635024036 0.024274803658422 0.024950774990129 0.025577386967719 0.026155522359644 0.026686091277587 0.027170014141864 0.027608205238027 0.028001557007450 0.028350925208347 0.028657115075373 0.028920868597127 0.029142853020879 0.029323650683329 0.029463750254041 0.029563539467099 0.029623299402364 0.029643200365574 +0.029636542949151 0.029615715171398 0.029553187212955 0.029448825924468 0.029302411805129 0.029113642602936 0.028882138311473 0.028607447520173 0.028289055062857 0.027926390898706 0.027518840148260 0.027065754197532 0.026566462773308 0.026020286884116 0.025426552513704 0.024784604946210 0.024093823596872 0.023353637216365 0.022563539333241 0.021723103795862 0.020832000273188 0.019890009573122 0.018897038637619 0.017853135074842 0.016758501091588 0.015613506692738 0.014418702019153 0.013174828701347 0.011882830112876 0.010543860415204 0.009159292294248 0.007730723298455 0.006259980697917 0.004749124795464 0.003200450631584 0.001616488037111 0.000000000000000 -0.001616488037109 -0.003200450631584 -0.004749124795464 -0.006259980697914 -0.007730723298454 -0.009159292294246 -0.010543860415200 -0.011882830112874 -0.013174828701343 -0.014418702019152 -0.015613506692736 -0.016758501091586 -0.017853135074842 -0.018897038637619 -0.019890009573120 -0.020832000273186 -0.021723103795861 -0.022563539333240 -0.023353637216367 -0.024093823596871 -0.024784604946205 -0.025426552513697 -0.026020286884115 -0.026566462773306 -0.027065754197532 -0.027518840148257 -0.027926390898705 -0.028289055062857 -0.028607447520173 -0.028882138311471 -0.029113642602937 -0.029302411805128 -0.029448825924461 -0.029553187212953 -0.029615715171397 -0.029636542949150 -0.029615715171398 -0.029553187212953 -0.029448825924463 -0.029302411805128 -0.029113642602934 -0.028882138311473 -0.028607447520173 -0.028289055062856 -0.027926390898704 -0.027518840148259 -0.027065754197531 -0.026566462773309 -0.026020286884115 -0.025426552513703 -0.024784604946205 -0.024093823596872 -0.023353637216365 -0.022563539333240 -0.021723103795861 -0.020832000273186 -0.019890009573120 -0.018897038637618 -0.017853135074841 -0.016758501091588 -0.015613506692738 -0.014418702019150 -0.013174828701343 -0.011882830112875 -0.010543860415202 -0.009159292294246 -0.007730723298452 -0.006259980697914 -0.004749124795466 -0.003200450631583 -0.001616488037109 0.000000000000000 0.001616488037110 0.003200450631584 0.004749124795466 0.006259980697915 0.007730723298454 0.009159292294247 0.010543860415202 0.011882830112876 0.013174828701343 0.014418702019150 0.015613506692740 0.016758501091590 0.017853135074841 0.018897038637613 0.019890009573121 0.020832000273187 0.021723103795862 0.022563539333241 0.023353637216365 0.024093823596872 0.024784604946205 0.025426552513704 0.026020286884116 0.026566462773310 0.027065754197532 0.027518840148260 0.027926390898705 0.028289055062856 0.028607447520173 0.028882138311475 0.029113642602935 0.029302411805128 0.029448825924464 0.029553187212955 0.029615715171398 0.029636542949151 +0.029305005293263 0.029283589108991 0.029219307373812 0.029112061166488 0.028961687699457 0.028767963421189 0.028530608321676 0.028249291402968 0.027923637266984 0.027553233762559 0.027137640624635 0.026676399029024 0.026169041978596 0.025615105428411 0.025014140050980 0.024365723536167 0.023669473315512 0.022925059595685 0.022132218583046 0.021290765777809 0.020400609215522 0.019461762532312 0.018474357731023 0.017438657526639 0.016355067151512 0.015224145504266 0.014046615530650 0.012823373729157 0.011555498680747 0.010244258508427 0.008891117180085 0.007497739576336 0.006065995253760 0.004597960843855 0.003095921037609 0.001562368116321 0.000000000000000 -0.001562368116320 -0.003095921037608 -0.004597960843855 -0.006065995253759 -0.007497739576336 -0.008891117180086 -0.010244258508424 -0.011555498680744 -0.012823373729157 -0.014046615530652 -0.015224145504267 -0.016355067151511 -0.017438657526637 -0.018474357731019 -0.019461762532310 -0.020400609215526 -0.021290765777804 -0.022132218583045 -0.022925059595686 -0.023669473315510 -0.024365723536169 -0.025014140050973 -0.025615105428411 -0.026169041978598 -0.026676399029023 -0.027137640624633 -0.027553233762558 -0.027923637266972 -0.028249291402968 -0.028530608321676 -0.028767963421192 -0.028961687699455 -0.029112061166488 -0.029219307373809 -0.029283589108991 -0.029305005293263 -0.029283589108990 -0.029219307373810 -0.029112061166486 -0.028961687699451 -0.028767963421188 -0.028530608321675 -0.028249291402968 -0.027923637266978 -0.027553233762557 -0.027137640624634 -0.026676399029023 -0.026169041978595 -0.025615105428412 -0.025014140050975 -0.024365723536168 -0.023669473315506 -0.022925059595685 -0.022132218583046 -0.021290765777807 -0.020400609215525 -0.019461762532310 -0.018474357731019 -0.017438657526637 -0.016355067151511 -0.015224145504267 -0.014046615530652 -0.012823373729153 -0.011555498680746 -0.010244258508426 -0.008891117180084 -0.007497739576335 -0.006065995253758 -0.004597960843853 -0.003095921037609 -0.001562368116322 0.000000000000000 0.001562368116323 0.003095921037611 0.004597960843854 0.006065995253759 0.007497739576336 0.008891117180084 0.010244258508427 0.011555498680747 0.012823373729153 0.014046615530652 0.015224145504269 0.016355067151511 0.017438657526638 0.018474357731024 0.019461762532312 0.020400609215525 0.021290765777808 0.022132218583046 0.022925059595685 0.023669473315510 0.024365723536170 0.025014140050976 0.025615105428412 0.026169041978595 0.026676399029023 0.027137640624634 0.027553233762558 0.027923637266979 0.028249291402968 0.028530608321675 0.028767963421188 0.028961687699456 0.029112061166488 0.029219307373811 0.029283589108991 0.029305005293263 +0.028651715279306 0.028630052999109 0.028565043355449 0.028456618469751 0.028304666975642 0.028109036649250 0.027869538058845 0.027585949201247 0.027258021083719 0.026885484201257 0.026468055851569 0.026005448221638 0.025497377173575 0.024943571649679 0.024343783611950 0.023697798425056 0.023005445587642 0.022266609713047 0.021481241657400 0.020649369690807 0.019771110606225 0.018846680659784 0.017876406236790 0.016860734138868 0.015800241389644 0.014695644459054 0.013547807810326 0.012357751677913 0.011126658989750 0.009855881353267 0.008546944031150 0.007201549839708 0.005821581910923 0.004409105266986 0.002966367165297 0.001495796180521 0.000000000000001 -0.001495796180520 -0.002966367165296 -0.004409105266984 -0.005821581910921 -0.007201549839707 -0.008546944031148 -0.009855881353267 -0.011126658989750 -0.012357751677906 -0.013547807810326 -0.014695644459049 -0.015800241389643 -0.016860734138867 -0.017876406236792 -0.018846680659782 -0.019771110606223 -0.020649369690808 -0.021481241657399 -0.022266609713046 -0.023005445587641 -0.023697798425055 -0.024343783611949 -0.024943571649673 -0.025497377173579 -0.026005448221638 -0.026468055851567 -0.026885484201255 -0.027258021083717 -0.027585949201248 -0.027869538058845 -0.028109036649248 -0.028304666975638 -0.028456618469751 -0.028565043355448 -0.028630052999110 -0.028651715279305 -0.028630052999107 -0.028565043355446 -0.028456618469751 -0.028304666975637 -0.028109036649251 -0.027869538058843 -0.027585949201248 -0.027258021083716 -0.026885484201256 -0.026468055851563 -0.026005448221636 -0.025497377173575 -0.024943571649678 -0.024343783611948 -0.023697798425060 -0.023005445587642 -0.022266609713048 -0.021481241657404 -0.020649369690807 -0.019771110606223 -0.018846680659783 -0.017876406236792 -0.016860734138863 -0.015800241389642 -0.014695644459053 -0.013547807810326 -0.012357751677906 -0.011126658989748 -0.009855881353266 -0.008546944031148 -0.007201549839708 -0.005821581910924 -0.004409105266984 -0.002966367165297 -0.001495796180519 0.000000000000001 0.001495796180521 0.002966367165299 0.004409105266985 0.005821581910924 0.007201549839709 0.008546944031149 0.009855881353268 0.011126658989749 0.012357751677907 0.013547807810327 0.014695644459054 0.015800241389643 0.016860734138864 0.017876406236785 0.018846680659783 0.019771110606224 0.020649369690808 0.021481241657405 0.022266609713050 0.023005445587642 0.023697798425061 0.024343783611949 0.024943571649679 0.025497377173575 0.026005448221636 0.026468055851568 0.026885484201257 0.027258021083717 0.027585949201248 0.027869538058844 0.028109036649252 0.028304666975638 0.028456618469751 0.028565043355448 0.028630052999108 0.028651715279306 +0.027682266566511 0.027660701782224 0.027595993864059 0.027488102557778 0.027336962240508 0.027142484108103 0.026904559209792 0.026623062302069 0.026297856487188 0.025928798593759 0.025515745250211 0.025058559595456 0.024557118565056 0.024011320685362 0.023421094303496 0.022786406176093 0.022107270336376 0.021383757155479 0.020616002511732 0.019804216979578 0.018948694948752 0.018049823583892 0.017108091535249 0.016124097311570 0.015098557228987 0.014032312851119 0.012926337839654 0.011781744137516 0.010599787412293 0.009381871691536 0.008129553127904 0.006844542837845 0.005528708764429 0.004184076521604 0.002812829184993 0.001417306001718 0.000000000000001 -0.001417306001718 -0.002812829184992 -0.004184076521603 -0.005528708764425 -0.006844542837844 -0.008129553127906 -0.009381871691532 -0.010599787412294 -0.011781744137517 -0.012926337839653 -0.014032312851119 -0.015098557228984 -0.016124097311572 -0.017108091535248 -0.018049823583889 -0.018948694948750 -0.019804216979579 -0.020616002511733 -0.021383757155472 -0.022107270336374 -0.022786406176088 -0.023421094303494 -0.024011320685364 -0.024557118565055 -0.025058559595457 -0.025515745250211 -0.025928798593756 -0.026297856487188 -0.026623062302069 -0.026904559209786 -0.027142484108101 -0.027336962240503 -0.027488102557778 -0.027595993864060 -0.027660701782224 -0.027682266566511 -0.027660701782224 -0.027595993864060 -0.027488102557780 -0.027336962240503 -0.027142484108102 -0.026904559209793 -0.026623062302069 -0.026297856487188 -0.025928798593757 -0.025515745250209 -0.025058559595456 -0.024557118565055 -0.024011320685363 -0.023421094303496 -0.022786406176088 -0.022107270336375 -0.021383757155478 -0.020616002511732 -0.019804216979578 -0.018948694948749 -0.018049823583889 -0.017108091535247 -0.016124097311565 -0.015098557228983 -0.014032312851118 -0.012926337839650 -0.011781744137515 -0.010599787412291 -0.009381871691538 -0.008129553127904 -0.006844542837844 -0.005528708764426 -0.004184076521601 -0.002812829184992 -0.001417306001718 0.000000000000001 0.001417306001719 0.002812829184993 0.004184076521602 0.005528708764427 0.006844542837845 0.008129553127904 0.009381871691540 0.010599787412292 0.011781744137518 0.012926337839655 0.014032312851119 0.015098557228984 0.016124097311566 0.017108091535250 0.018049823583890 0.018948694948749 0.019804216979579 0.020616002511734 0.021383757155479 0.022107270336375 0.022786406176088 0.023421094303496 0.024011320685363 0.024557118565056 0.025058559595457 0.025515745250212 0.025928798593759 0.026297856487189 0.026623062302069 0.026904559209798 0.027142484108102 0.027336962240503 0.027488102557780 0.027595993864061 0.027660701782225 0.027682266566511 +0.026404674837502 0.026383549792029 0.026320169117692 0.026214516559293 0.026066566217407 0.025876284325232 0.025643631713304 0.025368566938895 0.025051050050703 0.024691046953846 0.024288534334326 0.023843505096100 0.023355974260089 0.022825985268299 0.022253616633592 0.021638988870748 0.020982271641889 0.020283691046504 0.019543536984369 0.018762170517830 0.017940031159373 0.017077644009884 0.016175626673250 0.015234695873996 0.014255673705910 0.013239493442015 0.012187204838593 0.011099978869231 0.009979111828709 0.008826028750744 0.007642286088234 0.006429573609867 0.005189715472541 0.003924670434857 0.002636531183280 0.001327522748967 0.000000000000001 -0.001327522748966 -0.002636531183279 -0.003924670434856 -0.005189715472539 -0.006429573609869 -0.007642286088232 -0.008826028750745 -0.009979111828705 -0.011099978869231 -0.012187204838593 -0.013239493442012 -0.014255673705903 -0.015234695873995 -0.016175626673248 -0.017077644009883 -0.017940031159372 -0.018762170517830 -0.019543536984372 -0.020283691046508 -0.020982271641882 -0.021638988870748 -0.022253616633589 -0.022825985268298 -0.023355974260088 -0.023843505096095 -0.024288534334324 -0.024691046953845 -0.025051050050702 -0.025368566938896 -0.025643631713305 -0.025876284325229 -0.026066566217409 -0.026214516559292 -0.026320169117689 -0.026383549792029 -0.026404674837502 -0.026383549792029 -0.026320169117689 -0.026214516559291 -0.026066566217410 -0.025876284325228 -0.025643631713303 -0.025368566938894 -0.025051050050702 -0.024691046953846 -0.024288534334322 -0.023843505096101 -0.023355974260088 -0.022825985268298 -0.022253616633589 -0.021638988870749 -0.020982271641889 -0.020283691046503 -0.019543536984368 -0.018762170517829 -0.017940031159368 -0.017077644009884 -0.016175626673249 -0.015234695873996 -0.014255673705906 -0.013239493442014 -0.012187204838593 -0.011099978869229 -0.009979111828708 -0.008826028750743 -0.007642286088233 -0.006429573609869 -0.005189715472538 -0.003924670434855 -0.002636531183279 -0.001327522748966 0.000000000000001 0.001327522748968 0.002636531183280 0.003924670434855 0.005189715472539 0.006429573609870 0.007642286088233 0.008826028750746 0.009979111828710 0.011099978869230 0.012187204838594 0.013239493442015 0.014255673705907 0.015234695873997 0.016175626673251 0.017077644009884 0.017940031159374 0.018762170517829 0.019543536984368 0.020283691046504 0.020982271641883 0.021638988870749 0.022253616633589 0.022825985268299 0.023355974260088 0.023843505096101 0.024288534334325 0.024691046953846 0.025051050050703 0.025368566938896 0.025643631713304 0.025876284325229 0.026066566217411 0.026214516559290 0.026320169117690 0.026383549792030 0.026404674837502 +0.024829315580258 0.024808968549081 0.024747928674501 0.024646199896208 0.024503789721668 0.024320710628241 0.024096982007844 0.023832632634635 0.023527703632472 0.023182251913334 0.022796354053347 0.022370110569088 0.021903650551559 0.021397136613292 0.020850770098839 0.020264796507121 0.019639511071064 0.018975264437839 0.018272468391367 0.017531601557668 0.016753215032643 0.015937937871996 0.015086482382952 0.014199649158310 0.013278331794727 0.012323521238655 0.011336309705614 0.010317894121201 0.009269579035384 0.008192778964699 0.007089020121579 0.005959941493497 0.004807295239794 0.003632946378556 0.002438871741177 0.001227158177492 0.000000000000001 -0.001227158177492 -0.002438871741177 -0.003632946378551 -0.004807295239794 -0.005959941493497 -0.007089020121578 -0.008192778964697 -0.009269579035383 -0.010317894121200 -0.011336309705612 -0.012323521238654 -0.013278331794725 -0.014199649158309 -0.015086482382954 -0.015937937871995 -0.016753215032640 -0.017531601557670 -0.018272468391363 -0.018975264437835 -0.019639511071062 -0.020264796507121 -0.020850770098839 -0.021397136613289 -0.021903650551561 -0.022370110569088 -0.022796354053347 -0.023182251913332 -0.023527703632472 -0.023832632634634 -0.024096982007844 -0.024320710628238 -0.024503789721672 -0.024646199896207 -0.024747928674500 -0.024808968549079 -0.024829315580258 -0.024808968549080 -0.024747928674501 -0.024646199896208 -0.024503789721674 -0.024320710628240 -0.024096982007841 -0.023832632634635 -0.023527703632470 -0.023182251913332 -0.022796354053346 -0.022370110569086 -0.021903650551558 -0.021397136613289 -0.020850770098839 -0.020264796507127 -0.019639511071063 -0.018975264437839 -0.018272468391366 -0.017531601557667 -0.016753215032639 -0.015937937871991 -0.015086482382956 -0.014199649158306 -0.013278331794725 -0.012323521238653 -0.011336309705612 -0.010317894121200 -0.009269579035383 -0.008192778964698 -0.007089020121576 -0.005959941493495 -0.004807295239794 -0.003632946378552 -0.002438871741175 -0.001227158177491 0.000000000000001 0.001227158177493 0.002438871741176 0.003632946378553 0.004807295239795 0.005959941493498 0.007089020121579 0.008192778964698 0.009269579035384 0.010317894121202 0.011336309705613 0.012323521238655 0.013278331794726 0.014199649158307 0.015086482382956 0.015937937871995 0.016753215032639 0.017531601557670 0.018272468391369 0.018975264437839 0.019639511071063 0.020264796507127 0.020850770098840 0.021397136613291 0.021903650551558 0.022370110569088 0.022796354053346 0.023182251913333 0.023527703632476 0.023832632634636 0.024096982007842 0.024320710628241 0.024503789721674 0.024646199896209 0.024747928674501 0.024808968549080 0.024829315580258 +0.022968843882872 0.022949606586799 0.022891901353626 0.022795748363551 0.022661181966180 0.022488251746560 0.022277024002933 0.022027583621292 0.021740036327786 0.021414511296609 0.021051164086708 0.020650179877748 0.020211776972196 0.019736210527414 0.019223776479422 0.018674815616840 0.018089717762361 0.017468926016819 0.016812941019894 0.016122325180518 0.015397706829364 0.014639784245972 0.013849329512863 0.013027192150050 0.012174302484013 0.011291674706944 0.010380409583533 0.009441696764955 0.008476816672003 0.007487141912339 0.006474138199674 0.005439364746378 0.004384474104497 0.003311211434071 0.002221413181858 0.001117005157661 0.000000000000001 -0.001117005157660 -0.002221413181857 -0.003311211434067 -0.004384474104492 -0.005439364746377 -0.006474138199674 -0.007487141912337 -0.008476816672000 -0.009441696764952 -0.010380409583533 -0.011291674706942 -0.012174302484011 -0.013027192150050 -0.013849329512862 -0.014639784245969 -0.015397706829361 -0.016122325180509 -0.016812941019894 -0.017468926016819 -0.018089717762360 -0.018674815616839 -0.019223776479416 -0.019736210527412 -0.020211776972194 -0.020650179877753 -0.021051164086707 -0.021414511296607 -0.021740036327784 -0.022027583621282 -0.022277024002931 -0.022488251746557 -0.022661181966180 -0.022795748363548 -0.022891901353625 -0.022949606586801 -0.022968843882872 -0.022949606586798 -0.022891901353625 -0.022795748363547 -0.022661181966180 -0.022488251746558 -0.022277024002932 -0.022027583621283 -0.021740036327785 -0.021414511296602 -0.021051164086706 -0.020650179877743 -0.020211776972195 -0.019736210527413 -0.019223776479417 -0.018674815616840 -0.018089717762355 -0.017468926016815 -0.016812941019893 -0.016122325180517 -0.015397706829359 -0.014639784245970 -0.013849329512861 -0.013027192150049 -0.012174302484013 -0.011291674706943 -0.010380409583531 -0.009441696764949 -0.008476816672003 -0.007487141912336 -0.006474138199674 -0.005439364746377 -0.004384474104494 -0.003311211434067 -0.002221413181857 -0.001117005157660 0.000000000000001 0.001117005157661 0.002221413181859 0.003311211434068 0.004384474104494 0.005439364746379 0.006474138199675 0.007487141912336 0.008476816672004 0.009441696764952 0.010380409583532 0.011291674706945 0.012174302484014 0.013027192150049 0.013849329512859 0.014639784245971 0.015397706829360 0.016122325180518 0.016812941019894 0.017468926016816 0.018089717762358 0.018674815616841 0.019223776479417 0.019736210527414 0.020211776972195 0.020650179877744 0.021051164086710 0.021414511296608 0.021740036327786 0.022027583621283 0.022277024002933 0.022488251746562 0.022661181966180 0.022795748363548 0.022891901353626 0.022949606586799 0.022968843882872 +0.020838096853639 0.020820291922565 0.020766887859647 0.020677917011378 0.020553433806637 0.020393515527563 0.020198263377850 0.019967803836540 0.019702290283387 0.019401904878347 0.019066860674910 0.018697403944949 0.018293816689404 0.017856419307756 0.017385573396546 0.016881684645662 0.016345205799941 0.015776639651471 0.015176542028167 0.014545524742378 0.013884258463822 0.013193475480329 0.012473972310736 0.011726612134123 0.010952327001060 0.010152119793023 0.009327065898120 0.008478314572432 0.007607089958472 0.006714691734677 0.005802495371538 0.004871951973635 0.003924587688696 0.002962002668622 0.001985869570019 0.000997931585478 0.000000000000001 -0.000997931585475 -0.001985869570017 -0.002962002668621 -0.003924587688698 -0.004871951973634 -0.005802495371536 -0.006714691734676 -0.007607089958470 -0.008478314572431 -0.009327065898120 -0.010152119793021 -0.010952327001060 -0.011726612134124 -0.012473972310735 -0.013193475480328 -0.013884258463820 -0.014545524742378 -0.015176542028164 -0.015776639651470 -0.016345205799941 -0.016881684645661 -0.017385573396544 -0.017856419307757 -0.018293816689403 -0.018697403944948 -0.019066860674909 -0.019401904878348 -0.019702290283388 -0.019967803836539 -0.020198263377846 -0.020393515527561 -0.020553433806637 -0.020677917011376 -0.020766887859646 -0.020820291922563 -0.020838096853638 -0.020820291922564 -0.020766887859646 -0.020677917011377 -0.020553433806633 -0.020393515527559 -0.020198263377846 -0.019967803836539 -0.019702290283386 -0.019401904878348 -0.019066860674910 -0.018697403944948 -0.018293816689402 -0.017856419307756 -0.017385573396545 -0.016881684645661 -0.016345205799940 -0.015776639651470 -0.015176542028165 -0.014545524742377 -0.013884258463820 -0.013193475480328 -0.012473972310735 -0.011726612134122 -0.010952327001059 -0.010152119793022 -0.009327065898124 -0.008478314572435 -0.007607089958471 -0.006714691734676 -0.005802495371536 -0.004871951973633 -0.003924587688698 -0.002962002668620 -0.001985869570018 -0.000997931585476 0.000000000000001 0.000997931585477 0.001985869570020 0.002962002668622 0.003924587688699 0.004871951973634 0.005802495371538 0.006714691734677 0.007607089958472 0.008478314572436 0.009327065898125 0.010152119793023 0.010952327001061 0.011726612134124 0.012473972310736 0.013193475480329 0.013884258463821 0.014545524742378 0.015176542028166 0.015776639651471 0.016345205799942 0.016881684645663 0.017385573396546 0.017856419307758 0.018293816689405 0.018697403944949 0.019066860674908 0.019401904878349 0.019702290283388 0.019967803836539 0.020198263377851 0.020393515527560 0.020553433806637 0.020677917011378 0.020766887859647 0.020820291922565 0.020838096853639 +0.018453979411342 0.018437917918583 0.018389746855196 0.018309506570945 0.018197264664428 0.018053116502370 0.017877185938385 0.017669626222931 0.017430621093959 0.017160386035793 0.016859169691511 0.016527255412256 0.016164962925128 0.015772650099841 0.015350714792463 0.014899596743671 0.014419779507663 0.013911792386960 0.013376212347811 0.012813665890135 0.012224830845933 0.011610438080058 0.010971273067236 0.010308177319723 0.009622049640814 0.008913847179856 0.008184586265826 0.007435342997758 0.006667253571503 0.005881514324217 0.005079381479692 0.004262170579640 0.003431255588069 0.002588067658294 0.001734093554339 0.000870873721101 0.000000000000001 -0.000870873721100 -0.001734093554336 -0.002588067658291 -0.003431255588066 -0.004262170579637 -0.005079381479690 -0.005881514324215 -0.006667253571503 -0.007435342997757 -0.008184586265824 -0.008913847179851 -0.009622049640814 -0.010308177319723 -0.010971273067236 -0.011610438080059 -0.012224830845933 -0.012813665890135 -0.013376212347810 -0.013911792386957 -0.014419779507661 -0.014899596743670 -0.015350714792469 -0.015772650099840 -0.016164962925120 -0.016527255412254 -0.016859169691510 -0.017160386035791 -0.017430621093955 -0.017669626222930 -0.017877185938384 -0.018053116502369 -0.018197264664426 -0.018309506570944 -0.018389746855195 -0.018437917918582 -0.018453979411341 -0.018437917918582 -0.018389746855194 -0.018309506570944 -0.018197264664427 -0.018053116502369 -0.017877185938385 -0.017669626222930 -0.017430621093955 -0.017160386035791 -0.016859169691509 -0.016527255412254 -0.016164962925127 -0.015772650099840 -0.015350714792462 -0.014899596743670 -0.014419779507664 -0.013911792386957 -0.013376212347811 -0.012813665890134 -0.012224830845932 -0.011610438080060 -0.010971273067235 -0.010308177319721 -0.009622049640814 -0.008913847179854 -0.008184586265825 -0.007435342997757 -0.006667253571504 -0.005881514324216 -0.005079381479690 -0.004262170579638 -0.003431255588066 -0.002588067658290 -0.001734093554338 -0.000870873721099 0.000000000000001 0.000870873721101 0.001734093554339 0.002588067658291 0.003431255588067 0.004262170579639 0.005079381479691 0.005881514324219 0.006667253571504 0.007435342997758 0.008184586265826 0.008913847179856 0.009622049640814 0.010308177319723 0.010971273067236 0.011610438080061 0.012224830845934 0.012813665890135 0.013376212347812 0.013911792386959 0.014419779507662 0.014899596743671 0.015350714792475 0.015772650099841 0.016164962925128 0.016527255412255 0.016859169691510 0.017160386035791 0.017430621093955 0.017669626222930 0.017877185938386 0.018053116502369 0.018197264664428 0.018309506570945 0.018389746855195 0.018437917918583 0.018453979411342 +0.015835334317886 0.015821313403577 0.015779265350461 0.015709234291267 0.015611293990951 0.015485548159423 0.015332130883738 0.015151207174059 0.014942973616326 0.014707659122951 0.014445525771699 0.014156869721221 0.013842022190992 0.013501350491809 0.013135259092458 0.012744190706855 0.012328627385692 0.011889091595584 0.011426147268628 0.010940400804685 0.010432502008784 0.009903144945882 0.009353068695458 0.008783057988698 0.008193943711528 0.007586603257293 0.006961960713690 0.006320986869584 0.005664699028042 0.004994160613507 0.004310480561982 0.003614812484670 0.002908353596956 0.002192343406194 0.001468062153465 0.000736829006156 0.000000000000001 -0.000736829006154 -0.001468062153465 -0.002192343406190 -0.002908353596954 -0.003614812484669 -0.004310480561980 -0.004994160613506 -0.005664699028041 -0.006320986869583 -0.006961960713690 -0.007586603257293 -0.008193943711528 -0.008783057988697 -0.009353068695457 -0.009903144945879 -0.010432502008782 -0.010940400804684 -0.011426147268628 -0.011889091595578 -0.012328627385688 -0.012744190706855 -0.013135259092459 -0.013501350491806 -0.013842022190991 -0.014156869721220 -0.014445525771697 -0.014707659122947 -0.014942973616324 -0.015151207174059 -0.015332130883737 -0.015485548159422 -0.015611293990950 -0.015709234291267 -0.015779265350460 -0.015821313403573 -0.015835334317885 -0.015821313403574 -0.015779265350460 -0.015709234291266 -0.015611293990950 -0.015485548159422 -0.015332130883738 -0.015151207174058 -0.014942973616324 -0.014707659122944 -0.014445525771698 -0.014156869721220 -0.013842022190991 -0.013501350491808 -0.013135259092459 -0.012744190706854 -0.012328627385689 -0.011889091595582 -0.011426147268625 -0.010940400804684 -0.010432502008783 -0.009903144945880 -0.009353068695455 -0.008783057988696 -0.008193943711528 -0.007586603257292 -0.006961960713690 -0.006320986869583 -0.005664699028039 -0.004994160613506 -0.004310480561981 -0.003614812484669 -0.002908353596955 -0.002192343406190 -0.001468062153465 -0.000736829006154 0.000000000000001 0.000736829006156 0.001468062153465 0.002192343406191 0.002908353596956 0.003614812484670 0.004310480561982 0.004994160613507 0.005664699028041 0.006320986869584 0.006961960713691 0.007586603257294 0.008193943711528 0.008783057988697 0.009353068695461 0.009903144945882 0.010432502008783 0.010940400804685 0.011426147268626 0.011889091595584 0.012328627385689 0.012744190706855 0.013135259092460 0.013501350491808 0.013842022190992 0.014156869721221 0.014445525771699 0.014707659122945 0.014942973616325 0.015151207174059 0.015332130883738 0.015485548159423 0.015611293990951 0.015709234291267 0.015779265350461 0.015821313403576 0.015835334317886 +0.013002797444318 0.012991098046269 0.012956014398584 0.012897590171848 0.012815898253394 0.012711040900376 0.012583149950327 0.012432387085920 0.012258944149448 0.012063043501805 0.011844938419561 0.011604913523338 0.011343285229602 0.011060402217483 0.010756645901723 0.010432430902001 0.010088205498707 0.009724452064963 0.009341687464097 0.008940463401869 0.008521366722726 0.008085019638974 0.007632079882587 0.007163240768884 0.006679231162001 0.006180815332563 0.005668792698280 0.005143997438763 0.004607297976794 0.004059596318873 0.003501827248623 0.002934957367809 0.002359983980437 0.001777933816623 0.001189861593876 0.000596848414629 0.000000000000001 -0.000596848414628 -0.001189861593872 -0.001777933816622 -0.002359983980437 -0.002934957367808 -0.003501827248625 -0.004059596318872 -0.004607297976794 -0.005143997438763 -0.005668792698278 -0.006180815332563 -0.006679231161999 -0.007163240768882 -0.007632079882586 -0.008085019638971 -0.008521366722724 -0.008940463401867 -0.009341687464095 -0.009724452064962 -0.010088205498706 -0.010432430902000 -0.010756645901722 -0.011060402217483 -0.011343285229597 -0.011604913523338 -0.011844938419560 -0.012063043501802 -0.012258944149447 -0.012432387085919 -0.012583149950325 -0.012711040900374 -0.012815898253394 -0.012897590171846 -0.012956014398584 -0.012991098046264 -0.013002797444310 -0.012991098046263 -0.012956014398585 -0.012897590171846 -0.012815898253394 -0.012711040900376 -0.012583149950326 -0.012432387085919 -0.012258944149448 -0.012063043501802 -0.011844938419560 -0.011604913523337 -0.011343285229601 -0.011060402217483 -0.010756645901722 -0.010432430902000 -0.010088205498706 -0.009724452064961 -0.009341687464096 -0.008940463401868 -0.008521366722723 -0.008085019638970 -0.007632079882585 -0.007163240768883 -0.006679231162000 -0.006180815332562 -0.005668792698278 -0.005143997438763 -0.004607297976794 -0.004059596318873 -0.003501827248621 -0.002934957367808 -0.002359983980437 -0.001777933816623 -0.001189861593875 -0.000596848414628 0.000000000000001 0.000596848414630 0.001189861593876 0.001777933816623 0.002359983980438 0.002934957367810 0.003501827248625 0.004059596318873 0.004607297976794 0.005143997438764 0.005668792698279 0.006180815332563 0.006679231162001 0.007163240768884 0.007632079882591 0.008085019638972 0.008521366722724 0.008940463401869 0.009341687464097 0.009724452064962 0.010088205498706 0.010432430902001 0.010756645901723 0.011060402217484 0.011343285229601 0.011604913523338 0.011844938419560 0.012063043501805 0.012258944149448 0.012432387085920 0.012583149950327 0.012711040900377 0.012815898253395 0.012897590171848 0.012956014398585 0.012991098046269 0.013002797444318 +0.009978639374813 0.009969524083808 0.009942191198099 0.009896679688274 0.009833054533309 0.009751406761693 0.009651853507147 0.009534538077020 0.009399630031111 0.009247325267997 0.009077846115692 0.008891441422841 0.008688386646397 0.008468983931411 0.008233562178025 0.007982477090830 0.007716111205229 0.007434873885463 0.007139201288750 0.006829556289965 0.006506428361227 0.006170333400912 0.005821813506512 0.005461436686137 0.005089796503435 0.004707511651240 0.004315225449215 0.003913605261488 0.003503341830352 0.003085148522802 0.002659760487017 0.002227933716506 0.001790444020146 0.001348085896977 0.000901671315232 0.000452028395669 0.000000000000001 -0.000452028395667 -0.000901671315229 -0.001348085896977 -0.001790444020143 -0.002227933716505 -0.002659760487016 -0.003085148522801 -0.003503341830351 -0.003913605261487 -0.004315225449213 -0.004707511651239 -0.005089796503434 -0.005461436686135 -0.005821813506512 -0.006170333400911 -0.006506428361226 -0.006829556289963 -0.007139201288749 -0.007434873885462 -0.007716111205228 -0.007982477090830 -0.008233562178024 -0.008468983931410 -0.008688386646397 -0.008891441422840 -0.009077846115692 -0.009247325267996 -0.009399630031109 -0.009534538077020 -0.009651853507145 -0.009751406761692 -0.009833054533310 -0.009896679688274 -0.009942191198097 -0.009969524083806 -0.009978639374813 -0.009969524083806 -0.009942191198097 -0.009896679688273 -0.009833054533311 -0.009751406761692 -0.009651853507146 -0.009534538077019 -0.009399630031110 -0.009247325267995 -0.009077846115692 -0.008891441422840 -0.008688386646397 -0.008468983931410 -0.008233562178023 -0.007982477090831 -0.007716111205229 -0.007434873885462 -0.007139201288748 -0.006829556289963 -0.006506428361225 -0.006170333400911 -0.005821813506512 -0.005461436686135 -0.005089796503435 -0.004707511651239 -0.004315225449214 -0.003913605261487 -0.003503341830351 -0.003085148522800 -0.002659760487015 -0.002227933716504 -0.001790444020143 -0.001348085896976 -0.000901671315230 -0.000452028395667 0.000000000000001 0.000452028395668 0.000901671315232 0.001348085896978 0.001790444020144 0.002227933716506 0.002659760487016 0.003085148522800 0.003503341830353 0.003913605261489 0.004315225449215 0.004707511651241 0.005089796503436 0.005461436686136 0.005821813506515 0.006170333400912 0.006506428361227 0.006829556289964 0.007139201288749 0.007434873885463 0.007716111205231 0.007982477090832 0.008233562178025 0.008468983931411 0.008688386646398 0.008891441422841 0.009077846115693 0.009247325267996 0.009399630031111 0.009534538077020 0.009651853507147 0.009751406761693 0.009833054533311 0.009896679688274 0.009942191198100 0.009969524083808 0.009978639374813 +0.006786594556323 0.006780305612381 0.006761448806137 0.006730054210084 0.006686171930634 0.006629872086316 0.006561244776306 0.006480400038861 0.006387467798641 0.006282597801763 0.006165959537438 0.006037742144709 0.005898154302690 0.005747424102715 0.005585798900434 0.005413545146091 0.005230948191040 0.005038312068258 0.004835959245105 0.004624230346047 0.004403483843463 0.004174095714412 0.003936459061539 0.003690983696239 0.003438095682334 0.003178236838668 0.002911864199257 0.002639449429582 0.002361478198115 0.002078449502114 0.001790874947106 0.001499277979693 0.001204193073561 0.000906164868822 0.000605747265200 0.000303502469720 0.000000000000001 -0.000303502469717 -0.000605747265198 -0.000906164868822 -0.001204193073559 -0.001499277979691 -0.001790874947104 -0.002078449502112 -0.002361478198114 -0.002639449429581 -0.002911864199256 -0.003178236838667 -0.003438095682333 -0.003690983696238 -0.003936459061538 -0.004174095714412 -0.004403483843462 -0.004624230346046 -0.004835959245104 -0.005038312068257 -0.005230948191038 -0.005413545146090 -0.005585798900433 -0.005747424102715 -0.005898154302688 -0.006037742144708 -0.006165959537437 -0.006282597801761 -0.006387467798640 -0.006480400038860 -0.006561244776304 -0.006629872086315 -0.006686171930629 -0.006730054210083 -0.006761448806136 -0.006780305612378 -0.006786594556322 -0.006780305612378 -0.006761448806136 -0.006730054210083 -0.006686171930628 -0.006629872086315 -0.006561244776304 -0.006480400038861 -0.006387467798641 -0.006282597801761 -0.006165959537436 -0.006037742144708 -0.005898154302689 -0.005747424102714 -0.005585798900432 -0.005413545146090 -0.005230948191039 -0.005038312068257 -0.004835959245105 -0.004624230346046 -0.004403483843461 -0.004174095714412 -0.003936459061538 -0.003690983696237 -0.003438095682329 -0.003178236838667 -0.002911864199255 -0.002639449429581 -0.002361478198114 -0.002078449502111 -0.001790874947104 -0.001499277979691 -0.001204193073559 -0.000906164868822 -0.000605747265198 -0.000303502469718 0.000000000000001 0.000303502469720 0.000605747265201 0.000906164868823 0.001204193073562 0.001499277979692 0.001790874947105 0.002078449502114 0.002361478198116 0.002639449429582 0.002911864199256 0.003178236838668 0.003438095682334 0.003690983696239 0.003936459061539 0.004174095714413 0.004403483843463 0.004624230346047 0.004835959245105 0.005038312068258 0.005230948191039 0.005413545146091 0.005585798900434 0.005747424102715 0.005898154302695 0.006037742144709 0.006165959537439 0.006282597801762 0.006387467798641 0.006480400038861 0.006561244776305 0.006629872086316 0.006686171930634 0.006730054210084 0.006761448806137 0.006780305612381 0.006786594556323 +0.003451679296814 0.003448436741730 0.003438714761486 0.003422530404027 0.003399912058856 0.003370899421399 0.003335543443029 0.003293906266632 0.003246061147544 0.003192092359777 0.003132095087460 0.003066175300978 0.002994449618053 0.002917045149145 0.002834099327240 0.002745759721663 0.002652183835720 0.002553538888008 0.002450001577100 0.002341757829505 0.002229002530705 0.002111939239135 0.001990779882986 0.001865744439840 0.001737060599004 0.001604963406664 0.001469694893883 0.001331503687607 0.001190644604843 0.001047378230309 0.000901970477826 0.000754692135916 0.000605818398029 0.000455628377956 0.000304404611070 0.000152432542063 0.000000000000001 -0.000152432542061 -0.000304404611068 -0.000455628377954 -0.000605818398027 -0.000754692135915 -0.000901970477824 -0.001047378230306 -0.001190644604842 -0.001331503687605 -0.001469694893882 -0.001604963406663 -0.001737060599003 -0.001865744439840 -0.001990779882985 -0.002111939239133 -0.002229002530704 -0.002341757829505 -0.002450001577098 -0.002553538888007 -0.002652183835719 -0.002745759721662 -0.002834099327239 -0.002917045149145 -0.002994449618052 -0.003066175300978 -0.003132095087459 -0.003192092359776 -0.003246061147543 -0.003293906266630 -0.003335543443024 -0.003370899421398 -0.003399912058855 -0.003422530404026 -0.003438714761485 -0.003448436741729 -0.003451679296814 -0.003448436741729 -0.003438714761485 -0.003422530404026 -0.003399912058855 -0.003370899421398 -0.003335543443024 -0.003293906266629 -0.003246061147543 -0.003192092359776 -0.003132095087459 -0.003066175300977 -0.002994449618052 -0.002917045149145 -0.002834099327239 -0.002745759721661 -0.002652183835719 -0.002553538888007 -0.002450001577098 -0.002341757829504 -0.002229002530704 -0.002111939239133 -0.001990779882985 -0.001865744439840 -0.001737060599004 -0.001604963406663 -0.001469694893882 -0.001331503687604 -0.001190644604842 -0.001047378230306 -0.000901970477825 -0.000754692135915 -0.000605818398027 -0.000455628377954 -0.000304404611068 -0.000152432542061 0.000000000000001 0.000152432542063 0.000304404611070 0.000455628377955 0.000605818398029 0.000754692135917 0.000901970477826 0.001047378230309 0.001190644604843 0.001331503687607 0.001469694893883 0.001604963406664 0.001737060599004 0.001865744439841 0.001990779882986 0.002111939239134 0.002229002530705 0.002341757829505 0.002450001577100 0.002553538888008 0.002652183835720 0.002745759721663 0.002834099327241 0.002917045149146 0.002994449618053 0.003066175300978 0.003132095087460 0.003192092359777 0.003246061147544 0.003293906266631 0.003335543443030 0.003370899421399 0.003399912058856 0.003422530404027 0.003438714761486 0.003448436741729 0.003451679296814 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 \ No newline at end of file diff --git a/simulations/Tutorial/xhps_integration/surface_tables/torque_TZ.txt b/simulations/Tutorial/xhps_integration/surface_tables/torque_TZ.txt new file mode 100644 index 0000000000000000000000000000000000000000..73dc009e1b4345055e8201546776e0d4e69224bf --- /dev/null +++ b/simulations/Tutorial/xhps_integration/surface_tables/torque_TZ.txt @@ -0,0 +1,73 @@ +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 +0.000000000000000 -0.000076228991420 -0.000151877834188 -0.000226370794930 -0.000299140937237 -0.000369634436385 -0.000437314794282 -0.000501666922535 -0.000562201062594 -0.000618456513099 -0.000670005136106 -0.000716454615467 -0.000757451442597 -0.000792683606887 -0.000821882970294 -0.000844827308030 -0.000861341999831 -0.000871301358921 -0.000874629588563 -0.000871301358921 -0.000861341999831 -0.000844827308030 -0.000821882970294 -0.000792683606887 -0.000757451442597 -0.000716454615467 -0.000670005136106 -0.000618456513099 -0.000562201062594 -0.000501666922535 -0.000437314794282 -0.000369634436385 -0.000299140937237 -0.000226370794930 -0.000151877834188 -0.000076228991420 0.000000000000000 0.000076228991420 0.000151877834188 0.000226370794930 0.000299140937237 0.000369634436386 0.000437314794282 0.000501666922535 0.000562201062594 0.000618456513099 0.000670005136106 0.000716454615467 0.000757451442597 0.000792683606887 0.000821882970294 0.000844827308030 0.000861341999831 0.000871301358921 0.000874629588563 0.000871301358921 0.000861341999831 0.000844827308030 0.000821882970294 0.000792683606887 0.000757451442597 0.000716454615467 0.000670005136106 0.000618456513099 0.000562201062594 0.000501666922535 0.000437314794282 0.000369634436386 0.000299140937237 0.000226370794930 0.000151877834188 0.000076228991420 -0.000000000000000 -0.000076228991420 -0.000151877834188 -0.000226370794930 -0.000299140937237 -0.000369634436385 -0.000437314794282 -0.000501666922535 -0.000562201062594 -0.000618456513099 -0.000670005136106 -0.000716454615467 -0.000757451442597 -0.000792683606887 -0.000821882970294 -0.000844827308030 -0.000861341999831 -0.000871301358921 -0.000874629588563 -0.000871301358921 -0.000861341999831 -0.000844827308030 -0.000821882970294 -0.000792683606887 -0.000757451442597 -0.000716454615467 -0.000670005136106 -0.000618456513099 -0.000562201062594 -0.000501666922535 -0.000437314794282 -0.000369634436386 -0.000299140937237 -0.000226370794930 -0.000151877834188 -0.000076228991420 -0.000000000000000 0.000076228991420 0.000151877834188 0.000226370794930 0.000299140937237 0.000369634436385 0.000437314794282 0.000501666922535 0.000562201062594 0.000618456513099 0.000670005136106 0.000716454615467 0.000757451442597 0.000792683606887 0.000821882970294 0.000844827308030 0.000861341999831 0.000871301358921 0.000874629588563 0.000871301358921 0.000861341999831 0.000844827308030 0.000821882970294 0.000792683606887 0.000757451442597 0.000716454615467 0.000670005136106 0.000618456513099 0.000562201062594 0.000501666922535 0.000437314794282 0.000369634436385 0.000299140937237 0.000226370794930 0.000151877834188 0.000076228991420 0.000000000000000 +0.000000000000000 -0.000304335817028 -0.000606355454726 -0.000903760361285 -0.001194287105790 -0.001475724604290 -0.001745930947484 -0.002002849701945 -0.002244525560822 -0.002469119224898 -0.002674921400779 -0.002860365809637 -0.003024041107549 -0.003164701626666 -0.003281276855504 -0.003372879586184 -0.003438812666612 -0.003478574306235 -0.003491861894967 -0.003478574306235 -0.003438812666612 -0.003372879586184 -0.003281276855504 -0.003164701626666 -0.003024041107549 -0.002860365809637 -0.002674921400779 -0.002469119224898 -0.002244525560822 -0.002002849701945 -0.001745930947484 -0.001475724604290 -0.001194287105790 -0.000903760361285 -0.000606355454726 -0.000304335817028 0.000000000000000 0.000304335817028 0.000606355454726 0.000903760361285 0.001194287105790 0.001475724604290 0.001745930947484 0.002002849701945 0.002244525560822 0.002469119224898 0.002674921400779 0.002860365809637 0.003024041107549 0.003164701626666 0.003281276855504 0.003372879586184 0.003438812666612 0.003478574306235 0.003491861894967 0.003478574306235 0.003438812666612 0.003372879586184 0.003281276855504 0.003164701626666 0.003024041107549 0.002860365809637 0.002674921400779 0.002469119224898 0.002244525560822 0.002002849701945 0.001745930947484 0.001475724604290 0.001194287105790 0.000903760361285 0.000606355454726 0.000304335817028 -0.000000000000000 -0.000304335817028 -0.000606355454726 -0.000903760361285 -0.001194287105790 -0.001475724604290 -0.001745930947484 -0.002002849701945 -0.002244525560822 -0.002469119224898 -0.002674921400779 -0.002860365809637 -0.003024041107549 -0.003164701626666 -0.003281276855504 -0.003372879586184 -0.003438812666612 -0.003478574306235 -0.003491861894967 -0.003478574306235 -0.003438812666612 -0.003372879586184 -0.003281276855504 -0.003164701626666 -0.003024041107549 -0.002860365809637 -0.002674921400779 -0.002469119224898 -0.002244525560822 -0.002002849701945 -0.001745930947484 -0.001475724604290 -0.001194287105790 -0.000903760361285 -0.000606355454726 -0.000304335817028 -0.000000000000000 0.000304335817028 0.000606355454726 0.000903760361285 0.001194287105790 0.001475724604290 0.001745930947484 0.002002849701945 0.002244525560822 0.002469119224898 0.002674921400779 0.002860365809637 0.003024041107549 0.003164701626666 0.003281276855504 0.003372879586184 0.003438812666612 0.003478574306235 0.003491861894967 0.003478574306235 0.003438812666612 0.003372879586184 0.003281276855504 0.003164701626666 0.003024041107549 0.002860365809637 0.002674921400779 0.002469119224898 0.002244525560822 0.002002849701945 0.001745930947484 0.001475724604290 0.001194287105790 0.000903760361285 0.000606355454726 0.000304335817028 0.000000000000000 +0.000000000000000 -0.000682584446146 -0.001359974012501 -0.002027013355446 -0.002678625902812 -0.003309852489659 -0.003915889100516 -0.004492123430840 -0.005034169989437 -0.005537903474699 -0.005999490170641 -0.006415417123794 -0.006782518878899 -0.007098001569939 -0.007359464183142 -0.007564916830145 -0.007712795892249 -0.007801975920499 -0.007831778201032 -0.007801975920499 -0.007712795892249 -0.007564916830145 -0.007359464183142 -0.007098001569939 -0.006782518878899 -0.006415417123793 -0.005999490170641 -0.005537903474699 -0.005034169989437 -0.004492123430840 -0.003915889100516 -0.003309852489659 -0.002678625902812 -0.002027013355446 -0.001359974012501 -0.000682584446146 0.000000000000000 0.000682584446146 0.001359974012501 0.002027013355446 0.002678625902812 0.003309852489659 0.003915889100516 0.004492123430840 0.005034169989437 0.005537903474699 0.005999490170641 0.006415417123794 0.006782518878899 0.007098001569939 0.007359464183142 0.007564916830145 0.007712795892249 0.007801975920499 0.007831778201032 0.007801975920499 0.007712795892249 0.007564916830145 0.007359464183142 0.007098001569939 0.006782518878899 0.006415417123794 0.005999490170641 0.005537903474699 0.005034169989437 0.004492123430840 0.003915889100516 0.003309852489659 0.002678625902812 0.002027013355446 0.001359974012501 0.000682584446146 -0.000000000000000 -0.000682584446146 -0.001359974012501 -0.002027013355446 -0.002678625902812 -0.003309852489659 -0.003915889100516 -0.004492123430840 -0.005034169989437 -0.005537903474699 -0.005999490170641 -0.006415417123794 -0.006782518878899 -0.007098001569939 -0.007359464183142 -0.007564916830145 -0.007712795892249 -0.007801975920499 -0.007831778201032 -0.007801975920499 -0.007712795892249 -0.007564916830145 -0.007359464183142 -0.007098001569939 -0.006782518878899 -0.006415417123794 -0.005999490170641 -0.005537903474699 -0.005034169989437 -0.004492123430840 -0.003915889100516 -0.003309852489659 -0.002678625902812 -0.002027013355446 -0.001359974012501 -0.000682584446146 -0.000000000000000 0.000682584446146 0.001359974012501 0.002027013355446 0.002678625902812 0.003309852489659 0.003915889100516 0.004492123430840 0.005034169989437 0.005537903474699 0.005999490170641 0.006415417123793 0.006782518878899 0.007098001569939 0.007359464183142 0.007564916830145 0.007712795892249 0.007801975920499 0.007831778201032 0.007801975920499 0.007712795892249 0.007564916830145 0.007359464183142 0.007098001569939 0.006782518878899 0.006415417123794 0.005999490170641 0.005537903474699 0.005034169989437 0.004492123430840 0.003915889100516 0.003309852489659 0.002678625902812 0.002027013355446 0.001359974012501 0.000682584446146 0.000000000000000 +0.000000000000000 -0.001208096178313 -0.002406998015241 -0.003587581143888 -0.004740860613789 -0.005858059271810 -0.006930674561579 -0.007950543233078 -0.008909903469905 -0.009801453961378 -0.010618409469927 -0.011354552470838 -0.012004280471379 -0.012562648649151 -0.013025407485168 -0.013389035105267 -0.013650764083694 -0.013808602504888 -0.013861349123157 -0.013808602504888 -0.013650764083694 -0.013389035105267 -0.013025407485168 -0.012562648649151 -0.012004280471379 -0.011354552470837 -0.010618409469927 -0.009801453961379 -0.008909903469905 -0.007950543233078 -0.006930674561578 -0.005858059271809 -0.004740860613789 -0.003587581143888 -0.002406998015241 -0.001208096178313 0.000000000000000 0.001208096178313 0.002406998015241 0.003587581143888 0.004740860613789 0.005858059271810 0.006930674561579 0.007950543233078 0.008909903469905 0.009801453961379 0.010618409469927 0.011354552470838 0.012004280471379 0.012562648649151 0.013025407485168 0.013389035105267 0.013650764083694 0.013808602504888 0.013861349123157 0.013808602504888 0.013650764083694 0.013389035105267 0.013025407485168 0.012562648649151 0.012004280471379 0.011354552470838 0.010618409469927 0.009801453961379 0.008909903469905 0.007950543233078 0.006930674561579 0.005858059271810 0.004740860613789 0.003587581143888 0.002406998015241 0.001208096178313 -0.000000000000000 -0.001208096178313 -0.002406998015241 -0.003587581143888 -0.004740860613789 -0.005858059271810 -0.006930674561579 -0.007950543233078 -0.008909903469905 -0.009801453961379 -0.010618409469927 -0.011354552470838 -0.012004280471379 -0.012562648649151 -0.013025407485168 -0.013389035105267 -0.013650764083694 -0.013808602504888 -0.013861349123157 -0.013808602504888 -0.013650764083694 -0.013389035105267 -0.013025407485168 -0.012562648649151 -0.012004280471379 -0.011354552470838 -0.010618409469927 -0.009801453961378 -0.008909903469905 -0.007950543233078 -0.006930674561579 -0.005858059271810 -0.004740860613789 -0.003587581143888 -0.002406998015241 -0.001208096178313 -0.000000000000000 0.001208096178313 0.002406998015241 0.003587581143888 0.004740860613789 0.005858059271810 0.006930674561579 0.007950543233078 0.008909903469905 0.009801453961378 0.010618409469927 0.011354552470838 0.012004280471379 0.012562648649151 0.013025407485168 0.013389035105267 0.013650764083694 0.013808602504888 0.013861349123157 0.013808602504888 0.013650764083694 0.013389035105267 0.013025407485168 0.012562648649151 0.012004280471379 0.011354552470837 0.010618409469927 0.009801453961379 0.008909903469905 0.007950543233078 0.006930674561578 0.005858059271810 0.004740860613789 0.003587581143888 0.002406998015241 0.001208096178313 0.000000000000000 +0.000000000000000 -0.001876871551936 -0.003739458978076 -0.005573586863445 -0.007365296387360 -0.009100951558480 -0.010767342992935 -0.012351788445714 -0.013842229330207 -0.015227322491331 -0.016496526533787 -0.017640182048446 -0.018649585126284 -0.019517053600382 -0.020235985511863 -0.020800909354776 -0.021207525717567 -0.021452740004194 -0.021534685985869 -0.021452740004194 -0.021207525717567 -0.020800909354776 -0.020235985511863 -0.019517053600382 -0.018649585126284 -0.017640182048446 -0.016496526533787 -0.015227322491331 -0.013842229330207 -0.012351788445714 -0.010767342992934 -0.009100951558480 -0.007365296387360 -0.005573586863445 -0.003739458978076 -0.001876871551936 0.000000000000000 0.001876871551936 0.003739458978076 0.005573586863445 0.007365296387360 0.009100951558480 0.010767342992935 0.012351788445714 0.013842229330207 0.015227322491331 0.016496526533787 0.017640182048447 0.018649585126284 0.019517053600382 0.020235985511863 0.020800909354776 0.021207525717568 0.021452740004194 0.021534685985869 0.021452740004194 0.021207525717567 0.020800909354776 0.020235985511863 0.019517053600382 0.018649585126284 0.017640182048446 0.016496526533787 0.015227322491331 0.013842229330207 0.012351788445714 0.010767342992935 0.009100951558480 0.007365296387360 0.005573586863445 0.003739458978076 0.001876871551936 -0.000000000000000 -0.001876871551936 -0.003739458978076 -0.005573586863445 -0.007365296387360 -0.009100951558480 -0.010767342992935 -0.012351788445714 -0.013842229330207 -0.015227322491331 -0.016496526533787 -0.017640182048446 -0.018649585126284 -0.019517053600382 -0.020235985511863 -0.020800909354777 -0.021207525717568 -0.021452740004194 -0.021534685985869 -0.021452740004194 -0.021207525717568 -0.020800909354776 -0.020235985511863 -0.019517053600383 -0.018649585126284 -0.017640182048446 -0.016496526533787 -0.015227322491331 -0.013842229330207 -0.012351788445714 -0.010767342992935 -0.009100951558480 -0.007365296387360 -0.005573586863445 -0.003739458978076 -0.001876871551936 -0.000000000000000 0.001876871551936 0.003739458978076 0.005573586863445 0.007365296387360 0.009100951558480 0.010767342992935 0.012351788445714 0.013842229330207 0.015227322491331 0.016496526533787 0.017640182048446 0.018649585126284 0.019517053600382 0.020235985511863 0.020800909354776 0.021207525717568 0.021452740004194 0.021534685985869 0.021452740004194 0.021207525717567 0.020800909354776 0.020235985511863 0.019517053600382 0.018649585126284 0.017640182048446 0.016496526533787 0.015227322491331 0.013842229330207 0.012351788445714 0.010767342992935 0.009100951558480 0.007365296387360 0.005573586863445 0.003739458978076 0.001876871551936 0.000000000000000 +0.000000000000000 -0.002683820782603 -0.005347216068515 -0.007969915811408 -0.010531959682610 -0.013013848981256 -0.015396695031178 -0.017662362935134 -0.019793609592327 -0.021774214928814 -0.023589105342063 -0.025224468420167 -0.026667858062644 -0.027908289202771 -0.028936321410578 -0.029744130740223 -0.030325569274938 -0.030676211916390 -0.030793390062356 -0.030676211916390 -0.030325569274938 -0.029744130740223 -0.028936321410578 -0.027908289202770 -0.026667858062644 -0.025224468420167 -0.023589105342063 -0.021774214928815 -0.019793609592327 -0.017662362935134 -0.015396695031178 -0.013013848981256 -0.010531959682610 -0.007969915811409 -0.005347216068515 -0.002683820782603 0.000000000000000 0.002683820782603 0.005347216068515 0.007969915811408 0.010531959682610 0.013013848981257 0.015396695031178 0.017662362935134 0.019793609592327 0.021774214928815 0.023589105342063 0.025224468420168 0.026667858062644 0.027908289202770 0.028936321410579 0.029744130740223 0.030325569274938 0.030676211916390 0.030793390062356 0.030676211916390 0.030325569274938 0.029744130740223 0.028936321410578 0.027908289202770 0.026667858062644 0.025224468420168 0.023589105342063 0.021774214928815 0.019793609592327 0.017662362935134 0.015396695031178 0.013013848981256 0.010531959682610 0.007969915811408 0.005347216068515 0.002683820782603 -0.000000000000000 -0.002683820782603 -0.005347216068515 -0.007969915811409 -0.010531959682611 -0.013013848981256 -0.015396695031178 -0.017662362935134 -0.019793609592327 -0.021774214928815 -0.023589105342063 -0.025224468420167 -0.026667858062644 -0.027908289202771 -0.028936321410578 -0.029744130740223 -0.030325569274938 -0.030676211916391 -0.030793390062356 -0.030676211916390 -0.030325569274938 -0.029744130740223 -0.028936321410578 -0.027908289202771 -0.026667858062644 -0.025224468420168 -0.023589105342063 -0.021774214928814 -0.019793609592327 -0.017662362935134 -0.015396695031178 -0.013013848981256 -0.010531959682610 -0.007969915811408 -0.005347216068515 -0.002683820782603 -0.000000000000000 0.002683820782603 0.005347216068515 0.007969915811408 0.010531959682610 0.013013848981256 0.015396695031178 0.017662362935134 0.019793609592327 0.021774214928814 0.023589105342063 0.025224468420167 0.026667858062644 0.027908289202771 0.028936321410578 0.029744130740223 0.030325569274938 0.030676211916390 0.030793390062356 0.030676211916390 0.030325569274938 0.029744130740223 0.028936321410578 0.027908289202771 0.026667858062644 0.025224468420167 0.023589105342063 0.021774214928815 0.019793609592327 0.017662362935134 0.015396695031178 0.013013848981256 0.010531959682611 0.007969915811409 0.005347216068515 0.002683820782603 0.000000000000000 +0.000000000000000 -0.003622802499420 -0.007218033284311 -0.010758330477540 -0.014216750279779 -0.017566972028079 -0.020783498512019 -0.023841850022862 -0.026718750658929 -0.029392305469258 -0.031842167087407 -0.034049690587195 -0.035998075381849 -0.037672493086615 -0.039060200371718 -0.040150635946799 -0.040935500938708 -0.041408822050942 -0.041566997024038 -0.041408822050942 -0.040935500938708 -0.040150635946799 -0.039060200371718 -0.037672493086614 -0.035998075381849 -0.034049690587195 -0.031842167087407 -0.029392305469258 -0.026718750658929 -0.023841850022862 -0.020783498512019 -0.017566972028079 -0.014216750279779 -0.010758330477541 -0.007218033284311 -0.003622802499419 0.000000000000000 0.003622802499419 0.007218033284311 0.010758330477541 0.014216750279779 0.017566972028080 0.020783498512019 0.023841850022862 0.026718750658929 0.029392305469258 0.031842167087407 0.034049690587195 0.035998075381849 0.037672493086615 0.039060200371718 0.040150635946799 0.040935500938708 0.041408822050942 0.041566997024038 0.041408822050942 0.040935500938708 0.040150635946799 0.039060200371718 0.037672493086614 0.035998075381849 0.034049690587195 0.031842167087407 0.029392305469258 0.026718750658928 0.023841850022862 0.020783498512019 0.017566972028080 0.014216750279779 0.010758330477541 0.007218033284311 0.003622802499420 -0.000000000000000 -0.003622802499420 -0.007218033284311 -0.010758330477541 -0.014216750279779 -0.017566972028079 -0.020783498512019 -0.023841850022862 -0.026718750658929 -0.029392305469258 -0.031842167087407 -0.034049690587195 -0.035998075381849 -0.037672493086615 -0.039060200371718 -0.040150635946799 -0.040935500938708 -0.041408822050942 -0.041566997024038 -0.041408822050942 -0.040935500938708 -0.040150635946799 -0.039060200371718 -0.037672493086615 -0.035998075381849 -0.034049690587195 -0.031842167087407 -0.029392305469258 -0.026718750658929 -0.023841850022862 -0.020783498512019 -0.017566972028080 -0.014216750279779 -0.010758330477540 -0.007218033284311 -0.003622802499420 -0.000000000000000 0.003622802499420 0.007218033284311 0.010758330477540 0.014216750279779 0.017566972028080 0.020783498512019 0.023841850022862 0.026718750658929 0.029392305469258 0.031842167087407 0.034049690587195 0.035998075381849 0.037672493086615 0.039060200371718 0.040150635946798 0.040935500938708 0.041408822050942 0.041566997024038 0.041408822050942 0.040935500938708 0.040150635946799 0.039060200371718 0.037672493086615 0.035998075381849 0.034049690587195 0.031842167087407 0.029392305469258 0.026718750658929 0.023841850022862 0.020783498512019 0.017566972028079 0.014216750279779 0.010758330477541 0.007218033284311 0.003622802499420 0.000000000000000 +0.000000000000000 -0.004686670484549 -0.009337672576821 -0.013917609342541 -0.018391624697484 -0.022725668683312 -0.026886756608326 -0.030843220080884 -0.034564948024980 -0.038023615843719 -0.041192900986602 -0.044048683280022 -0.046569228496360 -0.048735353764571 -0.050530573563423 -0.051941225186262 -0.052956572722464 -0.053568888764196 -0.053773513216653 -0.053568888764196 -0.052956572722464 -0.051941225186262 -0.050530573563423 -0.048735353764571 -0.046569228496360 -0.044048683280022 -0.041192900986602 -0.038023615843720 -0.034564948024980 -0.030843220080884 -0.026886756608326 -0.022725668683312 -0.018391624697485 -0.013917609342542 -0.009337672576820 -0.004686670484548 0.000000000000000 0.004686670484548 0.009337672576820 0.013917609342542 0.018391624697485 0.022725668683313 0.026886756608327 0.030843220080884 0.034564948024980 0.038023615843720 0.041192900986602 0.044048683280023 0.046569228496360 0.048735353764571 0.050530573563422 0.051941225186262 0.052956572722464 0.053568888764196 0.053773513216653 0.053568888764196 0.052956572722464 0.051941225186262 0.050530573563423 0.048735353764571 0.046569228496360 0.044048683280023 0.041192900986602 0.038023615843720 0.034564948024980 0.030843220080883 0.026886756608327 0.022725668683313 0.018391624697484 0.013917609342542 0.009337672576820 0.004686670484549 -0.000000000000000 -0.004686670484548 -0.009337672576820 -0.013917609342542 -0.018391624697485 -0.022725668683312 -0.026886756608326 -0.030843220080884 -0.034564948024980 -0.038023615843720 -0.041192900986602 -0.044048683280022 -0.046569228496360 -0.048735353764571 -0.050530573563423 -0.051941225186262 -0.052956572722464 -0.053568888764196 -0.053773513216653 -0.053568888764196 -0.052956572722464 -0.051941225186262 -0.050530573563422 -0.048735353764571 -0.046569228496360 -0.044048683280023 -0.041192900986602 -0.038023615843719 -0.034564948024980 -0.030843220080884 -0.026886756608327 -0.022725668683312 -0.018391624697484 -0.013917609342541 -0.009337672576821 -0.004686670484549 -0.000000000000000 0.004686670484549 0.009337672576821 0.013917609342541 0.018391624697484 0.022725668683312 0.026886756608326 0.030843220080884 0.034564948024980 0.038023615843719 0.041192900986602 0.044048683280022 0.046569228496360 0.048735353764571 0.050530573563423 0.051941225186262 0.052956572722464 0.053568888764196 0.053773513216653 0.053568888764196 0.052956572722464 0.051941225186262 0.050530573563423 0.048735353764571 0.046569228496360 0.044048683280022 0.041192900986602 0.038023615843720 0.034564948024980 0.030843220080884 0.026886756608326 0.022725668683312 0.018391624697485 0.013917609342542 0.009337672576820 0.004686670484548 0.000000000000000 +0.000000000000000 -0.005867328060241 -0.011690002211154 -0.017423708386623 -0.023024809620548 -0.028450678150501 -0.033660019840739 -0.038613188455513 -0.043272487390860 -0.047602456568520 -0.051570142308545 -0.055145348126698 -0.058300864547936 -0.061012676186939 -0.063260144519699 -0.065026164955144 -0.066297297011409 -0.067063866606014 -0.067320039681477 -0.067063866606014 -0.066297297011409 -0.065026164955144 -0.063260144519699 -0.061012676186939 -0.058300864547936 -0.055145348126698 -0.051570142308545 -0.047602456568520 -0.043272487390860 -0.038613188455513 -0.033660019840738 -0.028450678150500 -0.023024809620549 -0.017423708386624 -0.011690002211154 -0.005867328060241 0.000000000000000 0.005867328060240 0.011690002211154 0.017423708386624 0.023024809620549 0.028450678150501 0.033660019840739 0.038613188455512 0.043272487390860 0.047602456568520 0.051570142308545 0.055145348126699 0.058300864547936 0.061012676186939 0.063260144519699 0.065026164955144 0.066297297011409 0.067063866606014 0.067320039681478 0.067063866606014 0.066297297011409 0.065026164955144 0.063260144519699 0.061012676186939 0.058300864547936 0.055145348126698 0.051570142308545 0.047602456568520 0.043272487390860 0.038613188455512 0.033660019840739 0.028450678150501 0.023024809620549 0.017423708386624 0.011690002211154 0.005867328060242 -0.000000000000000 -0.005867328060241 -0.011690002211154 -0.017423708386624 -0.023024809620549 -0.028450678150500 -0.033660019840738 -0.038613188455513 -0.043272487390860 -0.047602456568520 -0.051570142308544 -0.055145348126698 -0.058300864547936 -0.061012676186939 -0.063260144519699 -0.065026164955144 -0.066297297011408 -0.067063866606014 -0.067320039681478 -0.067063866606014 -0.066297297011409 -0.065026164955144 -0.063260144519699 -0.061012676186940 -0.058300864547936 -0.055145348126698 -0.051570142308545 -0.047602456568520 -0.043272487390860 -0.038613188455513 -0.033660019840739 -0.028450678150501 -0.023024809620548 -0.017423708386623 -0.011690002211155 -0.005867328060241 -0.000000000000000 0.005867328060241 0.011690002211154 0.017423708386623 0.023024809620548 0.028450678150501 0.033660019840739 0.038613188455513 0.043272487390860 0.047602456568520 0.051570142308545 0.055145348126698 0.058300864547936 0.061012676186939 0.063260144519699 0.065026164955144 0.066297297011408 0.067063866606014 0.067320039681477 0.067063866606014 0.066297297011409 0.065026164955144 0.063260144519699 0.061012676186939 0.058300864547936 0.055145348126698 0.051570142308545 0.047602456568520 0.043272487390860 0.038613188455513 0.033660019840738 0.028450678150500 0.023024809620549 0.017423708386624 0.011690002211154 0.005867328060241 0.000000000000000 +0.000000000000000 -0.007155789709447 -0.014257119538421 -0.021249944079021 -0.028081043714115 -0.034698429650747 -0.041051739586252 -0.047092620995787 -0.052775099124243 -0.058055926881885 -0.062894913980831 -0.067255232807395 -0.071103698702475 -0.074411022516842 -0.077152033519251 -0.079305870960908 -0.080856142838358 -0.081791050646534 -0.082103479172504 -0.081791050646534 -0.080856142838358 -0.079305870960908 -0.077152033519251 -0.074411022516841 -0.071103698702475 -0.067255232807395 -0.062894913980832 -0.058055926881886 -0.052775099124242 -0.047092620995787 -0.041051739586251 -0.034698429650746 -0.028081043714116 -0.021249944079022 -0.014257119538420 -0.007155789709446 0.000000000000000 0.007155789709446 0.014257119538420 0.021249944079022 0.028081043714116 0.034698429650748 0.041051739586252 0.047092620995787 0.052775099124242 0.058055926881886 0.062894913980831 0.067255232807395 0.071103698702475 0.074411022516841 0.077152033519251 0.079305870960908 0.080856142838358 0.081791050646534 0.082103479172504 0.081791050646534 0.080856142838358 0.079305870960908 0.077152033519251 0.074411022516841 0.071103698702475 0.067255232807395 0.062894913980831 0.058055926881886 0.052775099124242 0.047092620995786 0.041051739586252 0.034698429650747 0.028081043714116 0.021249944079022 0.014257119538419 0.007155789709447 -0.000000000000000 -0.007155789709446 -0.014257119538420 -0.021249944079022 -0.028081043714116 -0.034698429650747 -0.041051739586251 -0.047092620995787 -0.052775099124242 -0.058055926881886 -0.062894913980831 -0.067255232807395 -0.071103698702475 -0.074411022516842 -0.077152033519251 -0.079305870960908 -0.080856142838358 -0.081791050646534 -0.082103479172504 -0.081791050646534 -0.080856142838358 -0.079305870960908 -0.077152033519251 -0.074411022516841 -0.071103698702475 -0.067255232807395 -0.062894913980831 -0.058055926881885 -0.052775099124243 -0.047092620995787 -0.041051739586252 -0.034698429650747 -0.028081043714115 -0.021249944079021 -0.014257119538421 -0.007155789709447 -0.000000000000000 0.007155789709447 0.014257119538420 0.021249944079021 0.028081043714115 0.034698429650747 0.041051739586252 0.047092620995787 0.052775099124243 0.058055926881885 0.062894913980831 0.067255232807395 0.071103698702475 0.074411022516841 0.077152033519252 0.079305870960908 0.080856142838358 0.081791050646534 0.082103479172503 0.081791050646534 0.080856142838358 0.079305870960908 0.077152033519251 0.074411022516841 0.071103698702475 0.067255232807395 0.062894913980832 0.058055926881886 0.052775099124242 0.047092620995787 0.041051739586251 0.034698429650747 0.028081043714116 0.021249944079022 0.014257119538420 0.007155789709446 0.000000000000000 +0.000000000000000 -0.008542249461020 -0.017019487245690 -0.025367196455772 -0.033521845983694 -0.041421374022637 -0.049005660394359 -0.056216984100052 -0.063000462612000 -0.069304469562751 -0.075081027652948 -0.080286173787541 -0.084880293661495 -0.088828423248561 -0.092100514898638 -0.094671666018524 -0.096522308595695 -0.097638358122689 -0.098011320788717 -0.097638358122689 -0.096522308595695 -0.094671666018524 -0.092100514898638 -0.088828423248561 -0.084880293661494 -0.080286173787541 -0.075081027652949 -0.069304469562752 -0.063000462612000 -0.056216984100051 -0.049005660394358 -0.041421374022637 -0.033521845983696 -0.025367196455773 -0.017019487245690 -0.008542249461019 0.000000000000000 0.008542249461019 0.017019487245689 0.025367196455772 0.033521845983695 0.041421374022638 0.049005660394359 0.056216984100051 0.063000462612000 0.069304469562752 0.075081027652948 0.080286173787542 0.084880293661495 0.088828423248561 0.092100514898638 0.094671666018524 0.096522308595695 0.097638358122689 0.098011320788717 0.097638358122689 0.096522308595695 0.094671666018524 0.092100514898638 0.088828423248561 0.084880293661495 0.080286173787542 0.075081027652948 0.069304469562752 0.063000462611999 0.056216984100051 0.049005660394359 0.041421374022638 0.033521845983695 0.025367196455772 0.017019487245689 0.008542249461021 -0.000000000000000 -0.008542249461019 -0.017019487245690 -0.025367196455773 -0.033521845983696 -0.041421374022637 -0.049005660394358 -0.056216984100051 -0.063000462612000 -0.069304469562752 -0.075081027652947 -0.080286173787541 -0.084880293661494 -0.088828423248561 -0.092100514898638 -0.094671666018524 -0.096522308595695 -0.097638358122689 -0.098011320788717 -0.097638358122689 -0.096522308595695 -0.094671666018524 -0.092100514898638 -0.088828423248562 -0.084880293661495 -0.080286173787542 -0.075081027652947 -0.069304469562751 -0.063000462612001 -0.056216984100052 -0.049005660394359 -0.041421374022637 -0.033521845983695 -0.025367196455772 -0.017019487245690 -0.008542249461020 -0.000000000000000 0.008542249461020 0.017019487245690 0.025367196455772 0.033521845983694 0.041421374022637 0.049005660394358 0.056216984100052 0.063000462612000 0.069304469562751 0.075081027652947 0.080286173787542 0.084880293661495 0.088828423248561 0.092100514898638 0.094671666018524 0.096522308595695 0.097638358122689 0.098011320788717 0.097638358122689 0.096522308595695 0.094671666018524 0.092100514898638 0.088828423248561 0.084880293661494 0.080286173787541 0.075081027652949 0.069304469562752 0.063000462612000 0.056216984100051 0.049005660394358 0.041421374022637 0.033521845983696 0.025367196455773 0.017019487245690 0.008542249461019 0.000000000000000 +0.000000000000000 -0.010016155519084 -0.019956082046748 -0.029744130740222 -0.039305808638768 -0.048568345600077 -0.057461248125000 -0.065916835855642 -0.073870756663748 -0.081262476409260 -0.088035739641674 -0.094138997737982 -0.099525801218822 -0.104155153257066 -0.107991821688422 -0.111006607149484 -0.113176565302517 -0.114485181455719 -0.114922496250001 -0.114485181455719 -0.113176565302517 -0.111006607149484 -0.107991821688422 -0.104155153257066 -0.099525801218822 -0.094138997737981 -0.088035739641675 -0.081262476409261 -0.073870756663748 -0.065916835855641 -0.057461248125000 -0.048568345600076 -0.039305808638770 -0.029744130740223 -0.019956082046747 -0.010016155519083 0.000000000000000 0.010016155519083 0.019956082046747 0.029744130740223 0.039305808638769 0.048568345600078 0.057461248125001 0.065916835855641 0.073870756663748 0.081262476409261 0.088035739641675 0.094138997737982 0.099525801218823 0.104155153257065 0.107991821688422 0.111006607149484 0.113176565302517 0.114485181455719 0.114922496250001 0.114485181455719 0.113176565302517 0.111006607149484 0.107991821688422 0.104155153257065 0.099525801218823 0.094138997737982 0.088035739641675 0.081262476409261 0.073870756663749 0.065916835855641 0.057461248125001 0.048568345600078 0.039305808638769 0.029744130740223 0.019956082046747 0.010016155519085 -0.000000000000000 -0.010016155519083 -0.019956082046747 -0.029744130740224 -0.039305808638770 -0.048568345600076 -0.057461248125000 -0.065916835855642 -0.073870756663748 -0.081262476409261 -0.088035739641674 -0.094138997737981 -0.099525801218822 -0.104155153257066 -0.107991821688422 -0.111006607149484 -0.113176565302517 -0.114485181455719 -0.114922496250001 -0.114485181455719 -0.113176565302517 -0.111006607149484 -0.107991821688421 -0.104155153257066 -0.099525801218823 -0.094138997737982 -0.088035739641674 -0.081262476409260 -0.073870756663749 -0.065916835855642 -0.057461248125000 -0.048568345600077 -0.039305808638768 -0.029744130740222 -0.019956082046748 -0.010016155519084 -0.000000000000000 0.010016155519084 0.019956082046748 0.029744130740222 0.039305808638768 0.048568345600077 0.057461248125000 0.065916835855642 0.073870756663749 0.081262476409260 0.088035739641674 0.094138997737982 0.099525801218822 0.104155153257066 0.107991821688422 0.111006607149484 0.113176565302517 0.114485181455719 0.114922496250001 0.114485181455719 0.113176565302517 0.111006607149484 0.107991821688422 0.104155153257065 0.099525801218822 0.094138997737981 0.088035739641675 0.081262476409261 0.073870756663747 0.065916835855641 0.057461248125000 0.048568345600076 0.039305808638769 0.029744130740224 0.019956082046747 0.010016155519083 0.000000000000000 +0.000000000000000 -0.011566290568569 -0.023044554681993 -0.034347435819603 -0.045388912231079 -0.056084951613902 -0.066354150649924 -0.076118354533768 -0.085303251778090 -0.093838939768868 -0.101660456766506 -0.108708276303889 -0.114928760218747 -0.120274566872458 -0.124705011448499 -0.128186375588473 -0.130692164009169 -0.132203306147670 -0.132708301299847 -0.132203306147670 -0.130692164009170 -0.128186375588474 -0.124705011448499 -0.120274566872457 -0.114928760218746 -0.108708276303888 -0.101660456766508 -0.093838939768870 -0.085303251778090 -0.076118354533767 -0.066354150649923 -0.056084951613901 -0.045388912231080 -0.034347435819604 -0.023044554681992 -0.011566290568568 0.000000000000000 0.011566290568567 0.023044554681992 0.034347435819604 0.045388912231080 0.056084951613903 0.066354150649925 0.076118354533766 0.085303251778089 0.093838939768869 0.101660456766507 0.108708276303890 0.114928760218748 0.120274566872457 0.124705011448499 0.128186375588473 0.130692164009170 0.132203306147669 0.132708301299847 0.132203306147669 0.130692164009170 0.128186375588473 0.124705011448499 0.120274566872457 0.114928760218748 0.108708276303890 0.101660456766507 0.093838939768869 0.085303251778089 0.076118354533766 0.066354150649924 0.056084951613903 0.045388912231080 0.034347435819604 0.023044554681992 0.011566290568569 -0.000000000000000 -0.011566290568568 -0.023044554681992 -0.034347435819605 -0.045388912231081 -0.056084951613901 -0.066354150649923 -0.076118354533767 -0.085303251778090 -0.093838939768870 -0.101660456766506 -0.108708276303889 -0.114928760218747 -0.120274566872457 -0.124705011448499 -0.128186375588474 -0.130692164009169 -0.132203306147670 -0.132708301299847 -0.132203306147670 -0.130692164009170 -0.128186375588473 -0.124705011448499 -0.120274566872458 -0.114928760218747 -0.108708276303889 -0.101660456766507 -0.093838939768869 -0.085303251778091 -0.076118354533768 -0.066354150649924 -0.056084951613902 -0.045388912231079 -0.034347435819603 -0.023044554681993 -0.011566290568569 -0.000000000000000 0.011566290568568 0.023044554681993 0.034347435819603 0.045388912231079 0.056084951613902 0.066354150649924 0.076118354533768 0.085303251778091 0.093838939768869 0.101660456766506 0.108708276303889 0.114928760218747 0.120274566872458 0.124705011448499 0.128186375588473 0.130692164009169 0.132203306147670 0.132708301299847 0.132203306147670 0.130692164009170 0.128186375588474 0.124705011448499 0.120274566872457 0.114928760218747 0.108708276303889 0.101660456766508 0.093838939768870 0.085303251778090 0.076118354533767 0.066354150649923 0.056084951613901 0.045388912231081 0.034347435819605 0.023044554681992 0.011566290568568 0.000000000000000 +0.000000000000000 -0.013180857145750 -0.026261400009801 -0.039142077762708 -0.051724860669211 -0.063913986153697 -0.075616687611232 -0.086743900417442 -0.097210939764077 -0.106938145161533 -0.115851486703296 -0.123883128478206 -0.130971944842719 -0.137063985623956 -0.142112886713097 -0.146080222924244 -0.148935800433287 -0.150657886571138 -0.151233375222465 -0.150657886571139 -0.148935800433288 -0.146080222924244 -0.142112886713097 -0.137063985623955 -0.130971944842718 -0.123883128478205 -0.115851486703297 -0.106938145161535 -0.097210939764076 -0.086743900417442 -0.075616687611231 -0.063913986153696 -0.051724860669213 -0.039142077762710 -0.026261400009800 -0.013180857145749 0.000000000000000 0.013180857145748 0.026261400009799 0.039142077762709 0.051724860669212 0.063913986153698 0.075616687611233 0.086743900417441 0.097210939764075 0.106938145161534 0.115851486703297 0.123883128478207 0.130971944842719 0.137063985623955 0.142112886713096 0.146080222924244 0.148935800433288 0.150657886571139 0.151233375222464 0.150657886571139 0.148935800433287 0.146080222924244 0.142112886713096 0.137063985623955 0.130971944842719 0.123883128478207 0.115851486703297 0.106938145161534 0.097210939764075 0.086743900417441 0.075616687611233 0.063913986153698 0.051724860669212 0.039142077762709 0.026261400009799 0.013180857145751 -0.000000000000000 -0.013180857145749 -0.026261400009800 -0.039142077762710 -0.051724860669213 -0.063913986153696 -0.075616687611232 -0.086743900417442 -0.097210939764076 -0.106938145161535 -0.115851486703295 -0.123883128478206 -0.130971944842718 -0.137063985623955 -0.142112886713097 -0.146080222924245 -0.148935800433287 -0.150657886571139 -0.151233375222465 -0.150657886571139 -0.148935800433288 -0.146080222924244 -0.142112886713096 -0.137063985623956 -0.130971944842719 -0.123883128478206 -0.115851486703296 -0.106938145161533 -0.097210939764077 -0.086743900417443 -0.075616687611233 -0.063913986153697 -0.051724860669211 -0.039142077762708 -0.026261400009801 -0.013180857145750 -0.000000000000000 0.013180857145750 0.026261400009801 0.039142077762708 0.051724860669211 0.063913986153697 0.075616687611232 0.086743900417442 0.097210939764076 0.106938145161533 0.115851486703296 0.123883128478206 0.130971944842719 0.137063985623956 0.142112886713097 0.146080222924244 0.148935800433287 0.150657886571139 0.151233375222465 0.150657886571139 0.148935800433287 0.146080222924245 0.142112886713097 0.137063985623955 0.130971944842718 0.123883128478206 0.115851486703297 0.106938145161535 0.097210939764076 0.086743900417442 0.075616687611232 0.063913986153696 0.051724860669213 0.039142077762710 0.026261400009800 0.013180857145749 0.000000000000000 +0.000000000000000 -0.014847567424073 -0.029582135894842 -0.044091566449266 -0.058265433559799 -0.071995865539311 -0.085178365509776 -0.097712606686609 -0.109503195926072 -0.120460399724697 -0.130500827145442 -0.139548064473056 -0.147533256768605 -0.154395631897129 -0.160082963040284 -0.164551966173966 -0.167768629485871 -0.169708472225920 -0.170356731019552 -0.169708472225920 -0.167768629485871 -0.164551966173966 -0.160082963040283 -0.154395631897128 -0.147533256768604 -0.139548064473055 -0.130500827145444 -0.120460399724699 -0.109503195926071 -0.097712606686608 -0.085178365509775 -0.071995865539310 -0.058265433559801 -0.044091566449268 -0.029582135894841 -0.014847567424071 0.000000000000000 0.014847567424071 0.029582135894840 0.044091566449267 0.058265433559800 0.071995865539312 0.085178365509777 0.097712606686608 0.109503195926070 0.120460399724698 0.130500827145443 0.139548064473057 0.147533256768606 0.154395631897128 0.160082963040283 0.164551966173965 0.167768629485871 0.169708472225920 0.170356731019552 0.169708472225920 0.167768629485872 0.164551966173966 0.160082963040283 0.154395631897128 0.147533256768606 0.139548064473057 0.130500827145443 0.120460399724698 0.109503195926070 0.097712606686608 0.085178365509777 0.071995865539312 0.058265433559800 0.044091566449267 0.029582135894840 0.014847567424074 -0.000000000000000 -0.014847567424072 -0.029582135894841 -0.044091566449268 -0.058265433559801 -0.071995865539310 -0.085178365509776 -0.097712606686608 -0.109503195926071 -0.120460399724699 -0.130500827145441 -0.139548064473056 -0.147533256768604 -0.154395631897129 -0.160082963040284 -0.164551966173966 -0.167768629485870 -0.169708472225920 -0.170356731019552 -0.169708472225920 -0.167768629485871 -0.164551966173965 -0.160082963040283 -0.154395631897129 -0.147533256768605 -0.139548064473056 -0.130500827145442 -0.120460399724697 -0.109503195926072 -0.097712606686610 -0.085178365509777 -0.071995865539311 -0.058265433559799 -0.044091566449266 -0.029582135894842 -0.014847567424073 -0.000000000000000 0.014847567424073 0.029582135894842 0.044091566449266 0.058265433559799 0.071995865539311 0.085178365509776 0.097712606686609 0.109503195926072 0.120460399724697 0.130500827145442 0.139548064473056 0.147533256768605 0.154395631897129 0.160082963040284 0.164551966173965 0.167768629485871 0.169708472225920 0.170356731019552 0.169708472225920 0.167768629485871 0.164551966173966 0.160082963040283 0.154395631897129 0.147533256768604 0.139548064473056 0.130500827145443 0.120460399724699 0.109503195926071 0.097712606686608 0.085178365509775 0.071995865539310 0.058265433559801 0.044091566449268 0.029582135894841 0.014847567424072 0.000000000000000 +0.000000000000000 -0.016553736731933 -0.032981489531917 -0.049158233281791 -0.064960853193841 -0.080269081788651 -0.094966414203253 -0.108940994863478 -0.122086468772422 -0.134302790936179 -0.145496987766673 -0.155583864666779 -0.164486654412664 -0.172137601398711 -0.178478477298590 -0.183461024217973 -0.187047321966263 -0.189210076652129 -0.189932828406505 -0.189210076652129 -0.187047321966264 -0.183461024217974 -0.178478477298589 -0.172137601398711 -0.164486654412664 -0.155583864666778 -0.145496987766674 -0.134302790936181 -0.122086468772421 -0.108940994863477 -0.094966414203251 -0.080269081788650 -0.064960853193844 -0.049158233281793 -0.032981489531915 -0.016553736731932 0.000000000000000 0.016553736731931 0.032981489531914 0.049158233281792 0.064960853193843 0.080269081788652 0.094966414203254 0.108940994863477 0.122086468772420 0.134302790936180 0.145496987766674 0.155583864666779 0.164486654412665 0.172137601398710 0.178478477298589 0.183461024217973 0.187047321966263 0.189210076652129 0.189932828406505 0.189210076652130 0.187047321966264 0.183461024217973 0.178478477298589 0.172137601398710 0.164486654412665 0.155583864666779 0.145496987766674 0.134302790936180 0.122086468772420 0.108940994863476 0.094966414203254 0.080269081788652 0.064960853193843 0.049158233281792 0.032981489531914 0.016553736731934 -0.000000000000000 -0.016553736731932 -0.032981489531915 -0.049158233281793 -0.064960853193844 -0.080269081788650 -0.094966414203252 -0.108940994863478 -0.122086468772421 -0.134302790936181 -0.145496987766672 -0.155583864666779 -0.164486654412664 -0.172137601398711 -0.178478477298590 -0.183461024217974 -0.187047321966263 -0.189210076652129 -0.189932828406505 -0.189210076652129 -0.187047321966263 -0.183461024217973 -0.178478477298589 -0.172137601398712 -0.164486654412664 -0.155583864666779 -0.145496987766673 -0.134302790936180 -0.122086468772422 -0.108940994863479 -0.094966414203253 -0.080269081788651 -0.064960853193842 -0.049158233281791 -0.032981489531917 -0.016553736731933 -0.000000000000000 0.016553736731933 0.032981489531916 0.049158233281791 0.064960853193841 0.080269081788651 0.094966414203252 0.108940994863478 0.122086468772422 0.134302790936179 0.145496987766673 0.155583864666778 0.164486654412664 0.172137601398712 0.178478477298589 0.183461024217973 0.187047321966263 0.189210076652129 0.189932828406505 0.189210076652129 0.187047321966264 0.183461024217973 0.178478477298589 0.172137601398711 0.164486654412663 0.155583864666778 0.145496987766674 0.134302790936181 0.122086468772421 0.108940994863478 0.094966414203251 0.080269081788650 0.064960853193844 0.049158233281793 0.032981489531915 0.016553736731932 0.000000000000000 +0.000000000000000 -0.018286380090685 -0.036433589787261 -0.054303517866349 -0.071760163385118 -0.088670670730554 -0.104906340730916 -0.120343610134136 -0.134864991998776 -0.148359969840594 -0.160725838729728 -0.171868486937215 -0.181703112182080 -0.190154867027899 -0.197159428516989 -0.202663487706945 -0.206625155383893 -0.209014280864689 -0.209812681461833 -0.209014280864690 -0.206625155383894 -0.202663487706946 -0.197159428516988 -0.190154867027899 -0.181703112182079 -0.171868486937214 -0.160725838729730 -0.146549223833431 -0.129653287100459 -0.112959525513639 -0.096451373625862 -0.080108863600372 -0.063909054345155 -0.047826486535649 -0.031833659529021 -0.015901526001330 0.000000000000000 0.015901526001329 0.031833659529020 0.047826486535648 0.063909054345154 0.080108863600374 0.096451373625865 0.112959525513638 0.129653287100457 0.146549223833430 0.160725838729729 0.171868486937216 0.181703112182080 0.190154867027899 0.197159428516988 0.202663487706946 0.206625155383894 0.209014280864690 0.209812681461833 0.209014280864690 0.206625155383893 0.202663487706945 0.197159428516988 0.190154867027898 0.181703112182081 0.171868486937216 0.160725838729729 0.148359969840595 0.134864991998774 0.120343610134134 0.104906340730918 0.088670670730555 0.071760163385119 0.054303517866350 0.036433589787258 0.018286380090686 -0.000000000000000 -0.018286380090683 -0.036433589787259 -0.054303517866352 -0.071760163385120 -0.088670670730553 -0.104906340730915 -0.120343610134135 -0.134864991998775 -0.148359969840596 -0.160725838729728 -0.171868486937214 -0.181703112182079 -0.190154867027899 -0.197159428516989 -0.202663487706946 -0.206625155383893 -0.209014280864689 -0.209812681461832 -0.209014280864690 -0.206625155383893 -0.202663487706945 -0.197159428516988 -0.190154867027900 -0.181703112182080 -0.171868486937215 -0.160725838729728 -0.146549168918499 -0.129653129043833 -0.112959301574731 -0.096451117210044 -0.080108603944390 -0.063908816242681 -0.047826290105161 -0.031833520025832 -0.015901453675289 -0.000000000000000 0.015901453675288 0.031833520025831 0.047826290105161 0.063908816242681 0.080108603944390 0.096451117210043 0.112959301574731 0.129653129043833 0.146549168918499 0.160725838729728 0.171868486937215 0.181703112182079 0.190154867027900 0.197159428516989 0.202663487706945 0.206625155383893 0.209014280864690 0.209812681461833 0.209014280864689 0.206625155383893 0.202663487706946 0.197159428516989 0.190154867027899 0.181703112182079 0.171868486937214 0.160725838729730 0.148359969840596 0.134864991998775 0.120343610134135 0.104906340730915 0.088670670730553 0.071760163385120 0.054303517866352 0.036433589787259 0.018286380090683 0.000000000000000 +0.000000000000000 -0.020032311038168 -0.039912164093496 -0.059488261480444 -0.078611617277536 -0.097136691200154 -0.114922496250001 -0.131833671711284 -0.147741513327498 -0.162524952818520 -0.176071479283348 -0.188277995475964 -0.199051602437645 -0.208310306514132 -0.215983643376844 -0.222013214298968 -0.226353130605033 -0.228970362911438 -0.229844992500001 -0.228970362911437 -0.226353130605034 -0.222013214298968 -0.215983643376844 -0.207005043968383 -0.189599993775687 -0.172496689697847 -0.155691822550973 -0.139176744777298 -0.122937796175206 -0.106956673122087 -0.091210837975113 -0.075673965019997 -0.060316419051395 -0.045105762413043 -0.030007286102961 -0.014984560360529 0.000000000000000 0.014984560360528 0.030007286102960 0.045105762413043 0.060316419051394 0.075673965020001 0.091210837975116 0.106956673122086 0.122937796175205 0.139176744777297 0.155691822550972 0.172496689697850 0.189599993775690 0.207005043968382 0.215983643376843 0.222013214298968 0.226353130605034 0.228970362911438 0.229844992500001 0.228970362911438 0.226353130605034 0.222013214298968 0.215983643376843 0.208310306514130 0.199051602437646 0.188277995475964 0.176071479283349 0.162524952818521 0.147741513327495 0.131833671711282 0.114922496250002 0.097136691200155 0.078611617277538 0.059488261480446 0.039912164093493 0.020032311038170 -0.000000000000000 -0.020032311038167 -0.039912164093495 -0.059488261480447 -0.078611617277539 -0.097136691200153 -0.114922496249999 -0.131833671711283 -0.147741513327497 -0.162524952818523 -0.176071479283348 -0.188277995475963 -0.199051602437644 -0.208310306514131 -0.215983643376843 -0.222013214298969 -0.226353130605033 -0.228970362911438 -0.229844992500001 -0.228970362911437 -0.226353130605034 -0.222013214298968 -0.215983643376842 -0.207005004383374 -0.189599707134481 -0.172496211094395 -0.155691204492222 -0.139176036690578 -0.122937043946915 -0.106955918671371 -0.091210118865954 -0.075673314114743 -0.060315864208518 -0.045105326231534 -0.030006985715346 -0.014984407276182 -0.000000000000000 0.014984407276182 0.030006985715346 0.045105326231534 0.060315864208518 0.075673314114742 0.091210118865954 0.106955918671371 0.122937043946915 0.139176036690578 0.155691204492222 0.172496211094394 0.189599707134481 0.207005004383374 0.215983643376844 0.222013214298968 0.226353130605034 0.228970362911437 0.229844992500001 0.228970362911438 0.226353130605034 0.222013214298969 0.215983643376843 0.208310306514131 0.199051602437644 0.188277995475963 0.176071479283350 0.162524952818523 0.147741513327496 0.131833671711283 0.114922496249999 0.097136691200153 0.078611617277539 0.059488261480447 0.039912164093494 0.020032311038167 0.000000000000000 +0.000000000000000 -0.021778241985652 -0.043390738399731 -0.064673005094539 -0.085463071169955 -0.105602711669754 -0.124938651769085 -0.143323733288433 -0.160618034656219 -0.176689935796447 -0.191417119836968 -0.204687504014712 -0.216400092693210 -0.226465746000364 -0.234807858236699 -0.241362940890989 -0.246081105826174 -0.248926444958186 -0.249877303538169 -0.248926444958185 -0.246081105826174 -0.230001654967407 -0.212394295673323 -0.195164327998988 -0.178316778533955 -0.161850208091536 -0.145756969475575 -0.130023518791851 -0.114630777453136 -0.099554541629830 -0.084765935527071 -0.070231904526393 -0.055915743918412 -0.041777658674982 -0.027775349466832 -0.013864619927667 0.000000000000000 0.013864619927666 0.027775349466831 0.041777658674982 0.055915743918411 0.070231904526396 0.084765935527074 0.099554541629829 0.114630777453135 0.130023518791850 0.145756969475574 0.161850208091539 0.178316778533958 0.195164327998988 0.212394295673322 0.230001654967407 0.246081105826174 0.248926444958186 0.249877303538169 0.248926444958186 0.246081105826174 0.241362940890990 0.234807858236698 0.226465746000363 0.216400092693211 0.204687504014713 0.191417119836969 0.176689935796448 0.160618034656217 0.143323733288430 0.124938651769086 0.105602711669755 0.085463071169956 0.064673005094541 0.043390738399728 0.021778241985654 -0.000000000000000 -0.021778241985650 -0.043390738399730 -0.064673005094543 -0.085463071169958 -0.105602711669752 -0.124938651769083 -0.143323733288431 -0.160618034656218 -0.176689935796450 -0.191417119836967 -0.204687504014711 -0.216400092693209 -0.226465746000363 -0.234807858236698 -0.241362940890991 -0.246081105826173 -0.248926444958185 -0.249877303538169 -0.248926444958186 -0.246081105826174 -0.230001310410955 -0.212393615931820 -0.195163378713361 -0.178315623572132 -0.161848908954566 -0.145755584729216 -0.130022103528202 -0.114629382786532 -0.099553214231034 -0.084764717199451 -0.070230831827423 -0.055914847829513 -0.041776964322305 -0.027774875895179 -0.013864379929350 -0.000000000000000 0.013864379929349 0.027774875895178 0.041776964322305 0.055914847829513 0.070230831827423 0.084764717199450 0.099553214231033 0.114629382786532 0.130022103528201 0.145755584729215 0.161848908954566 0.178315623572132 0.195163378713361 0.212393615931824 0.230001310410955 0.246081105826174 0.248926444958186 0.249877303538169 0.248926444958185 0.246081105826174 0.241362940890991 0.234807858236698 0.226465746000363 0.216400092693209 0.204687504014711 0.191417119836970 0.176689935796449 0.160618034656218 0.143323733288431 0.124938651769083 0.105602711669752 0.085463071169958 0.064673005094543 0.043390738399730 0.021778241985650 0.000000000000000 +0.000000000000000 -0.023510885344403 -0.046842838655074 -0.069818289679096 -0.092262381361229 -0.114004300611654 -0.134878578296746 -0.154726348559087 -0.173396557882570 -0.190747114700858 -0.206645970800020 -0.220972126285145 -0.233616550462621 -0.244483011629547 -0.253488809455094 -0.260565404379958 -0.265658939243799 -0.268730649170741 -0.268417428900537 -0.250038944545349 -0.232079125067785 -0.214561932009576 -0.197503753512972 -0.180913502176690 -0.164792777385546 -0.149136090440226 -0.133931150322091 -0.119159207453709 -0.104795452362639 -0.090809465727055 -0.077165715880908 -0.063824099485923 -0.050740520741170 -0.037867504200478 -0.025154836006116 -0.012550228125677 0.000000000000000 0.012550228125676 0.025154836006115 0.037867504200477 0.050740520741169 0.063824099485925 0.077165715880910 0.090809465727054 0.104795452362638 0.119159207453708 0.133931150322090 0.149136090440229 0.164792777385550 0.180913502176689 0.197503753512971 0.214561932009574 0.232079125067784 0.250038944545352 0.268417428900536 0.268730649170742 0.265658939243799 0.260565404379959 0.253488809455093 0.244483011629546 0.233616550462622 0.220972126285146 0.206645970800021 0.190747114700859 0.173396557882567 0.154726348559085 0.134878578296748 0.114004300611656 0.092262381361231 0.069818289679098 0.046842838655071 0.023510885344405 -0.000000000000000 -0.023510885344401 -0.046842838655073 -0.069818289679100 -0.092262381361233 -0.114004300611653 -0.134878578296745 -0.154726348559086 -0.173396557882569 -0.190747114700861 -0.206645970800019 -0.220972126285144 -0.233616550462621 -0.244483011629547 -0.253488809455093 -0.260565404379959 -0.265658939243799 -0.268730649170742 -0.268417388270295 -0.250038377677531 -0.232078106684685 -0.214560536851206 -0.197502055640719 -0.180911574288896 -0.164790690150436 -0.149133911851499 -0.133928945082247 -0.119157036390034 -0.104793371880421 -0.090807527304385 -0.077163965609057 -0.063822577658901 -0.050739261497719 -0.037866535221323 -0.025154178268847 -0.012549895719192 -0.000000000000000 0.012549895719191 0.025154178268847 0.037866535221323 0.050739261497719 0.063822577658901 0.077163965609056 0.090807527304385 0.104793371880421 0.119157036390034 0.133928945082247 0.149133911851498 0.164790690150436 0.180911574288896 0.197502055640723 0.214560536851207 0.232078106684685 0.250038377677530 0.268417388270295 0.268730649170741 0.265658939243800 0.260565404379959 0.253488809455093 0.244483011629547 0.233616550462621 0.220972126285144 0.206645970800022 0.190747114700861 0.173396557882568 0.154726348559086 0.134878578296745 0.114004300611653 0.092262381361233 0.069818289679100 0.046842838655073 0.023510885344401 0.000000000000000 +0.000000000000000 -0.025217054652263 -0.050242192292149 -0.074884956511621 -0.098957800995272 -0.122277516860995 -0.144666626990223 -0.165954736735957 -0.185979830728920 -0.204589505912340 -0.221642131421251 -0.237007926478867 -0.250569948106680 -0.262224981131130 -0.271884323713400 -0.279474462423965 -0.284937631724191 -0.267295365175706 -0.248834644851839 -0.230863469761383 -0.213412383729389 -0.196503637800879 -0.180151231358514 -0.164361023890874 -0.149130916145211 -0.134451098856230 -0.120304366714899 -0.106666494732203 -0.093506673666382 -0.080788000721801 -0.068468021297263 -0.056499317164079 -0.044830136092930 -0.033405057626094 -0.022165689410558 -0.011051388269823 0.000000000000000 0.011051388269822 0.022165689410557 0.033405057626093 0.044830136092930 0.056499317164082 0.068468021297265 0.080788000721800 0.093506673666381 0.106666494732202 0.120304366714897 0.134451098856233 0.149130916145213 0.164361023890873 0.180151231358512 0.196503637800878 0.213412383729388 0.230863469761385 0.248834644851838 0.267295365175705 0.284937631724192 0.279474462423966 0.271884323713399 0.262224981131129 0.250569948106682 0.237007926478868 0.221642131421252 0.204589505912342 0.185979830728917 0.165954736735954 0.144666626990224 0.122277516860997 0.098957800995274 0.074884956511623 0.050242192292146 0.025217054652265 -0.000000000000000 -0.025217054652262 -0.050242192292148 -0.074884956511625 -0.098957800995276 -0.122277516860994 -0.144666626990221 -0.165954736735955 -0.185979830728919 -0.204589505912343 -0.221642131421249 -0.237007926478866 -0.250569948106680 -0.262224981131130 -0.271884323713399 -0.279474462423967 -0.284937631724192 -0.267294730217659 -0.248833416640785 -0.230861729924485 -0.213410214565996 -0.196501121524731 -0.180148449346967 -0.164358055947118 -0.149127839779304 -0.134447988590665 -0.120301293420145 -0.106663524997500 -0.093503869210718 -0.080785417849725 -0.068465710403831 -0.056497322292805 -0.044828494550223 -0.033403799655227 -0.022164837927706 -0.011050958664254 -0.000000000000000 0.011050958664254 0.022164837927706 0.033403799655227 0.044828494550223 0.056497322292805 0.068465710403831 0.080785417849725 0.093503869210718 0.106663524997500 0.120301293420144 0.134447988590665 0.149127839779304 0.164358055947117 0.180148449346970 0.196501121524731 0.213410214565996 0.230861729924485 0.248833416640785 0.267294730217659 0.284937631724193 0.279474462423966 0.271884323713399 0.262224981131130 0.250569948106679 0.237007926478866 0.221642131421253 0.204589505912343 0.185979830728919 0.165954736735955 0.144666626990221 0.122277516860994 0.098957800995276 0.074884956511625 0.050242192292147 0.025217054652262 0.000000000000000 +0.000000000000000 -0.026883764930587 -0.053562928177191 -0.079834445198180 -0.105498373885861 -0.130359396246611 -0.154228304888769 -0.176923443005126 -0.198272086890918 -0.218111760475507 -0.236291471863400 -0.252672862473721 -0.267131260032572 -0.279556627404307 -0.289854400040591 -0.282021835396055 -0.262933997500735 -0.244356928664521 -0.226337684413969 -0.208914472991077 -0.192116552882646 -0.175964206864145 -0.160468792381284 -0.145632867495957 -0.131450391033881 -0.117906994992546 -0.104980326705329 -0.092640457714450 -0.080850355786596 -0.069566416013885 -0.058739046483733 -0.048313303577158 -0.038229571569655 -0.028424280864763 -0.018830658890645 -0.009379507436433 0.000000000000000 0.009379507436432 0.018830658890645 0.028424280864762 0.038229571569654 0.048313303577160 0.058739046483734 0.069566416013884 0.080850355786595 0.092640457714450 0.104980326705329 0.117906994992549 0.131450391033883 0.145632867495957 0.160468792381283 0.175964206864145 0.192116552882644 0.208914472991081 0.226337684413967 0.244356928664519 0.262933997500734 0.282021835396053 0.289854400040590 0.279556627404306 0.267131260032572 0.252672862473722 0.236291471863401 0.218111760475509 0.198272086890915 0.176923443005123 0.154228304888770 0.130359396246613 0.105498373885863 0.079834445198182 0.053562928177187 0.026883764930589 -0.000000000000000 -0.026883764930585 -0.053562928177189 -0.079834445198184 -0.105498373885865 -0.130359396246610 -0.154228304888767 -0.176923443005125 -0.198272086890917 -0.218111760475510 -0.236291471863399 -0.252672862473720 -0.267131260032570 -0.279556627404307 -0.289854400040590 -0.282021352453847 -0.262932759043498 -0.244355020295304 -0.226335193973578 -0.208911489749988 -0.192113166727737 -0.175960507486741 -0.160464868472853 -0.145628805957896 -0.131446276207550 -0.117902907915687 -0.104976344400661 -0.092636652516086 -0.080846794709529 -0.069563160171519 -0.058736150558037 -0.048310815345583 -0.038227531492514 -0.028422721736348 -0.018829605556766 -0.009378976580609 -0.000000000000000 0.009378976580608 0.018829605556766 0.028422721736348 0.038227531492514 0.048310815345582 0.058736150558037 0.069563160171519 0.080846794709529 0.092636652516086 0.104976344400661 0.117902907915686 0.131446276207550 0.145628805957896 0.160464868472857 0.175960507486741 0.192113166727737 0.208911489749988 0.226335193973577 0.244355020295304 0.262932759043494 0.282021352453847 0.289854400040590 0.279556627404306 0.267131260032570 0.252672862473720 0.236291471863403 0.218111760475510 0.198272086890917 0.176923443005124 0.154228304888767 0.130359396246609 0.105498373885865 0.079834445198184 0.053562928177189 0.026883764930585 0.000000000000000 +0.000000000000000 -0.028498331507768 -0.056779773504999 -0.084629087141285 -0.111834322323993 -0.138188430786406 -0.163490841850078 -0.187548988888801 -0.210179774876904 -0.231210965868172 -0.250482501800190 -0.267847714648038 -0.283174444656542 -0.294489155821858 -0.274689386437132 -0.255389633621511 -0.236655191735897 -0.218542276797171 -0.201097763039891 -0.184358999353024 -0.168353706659072 -0.153099956670852 -0.138606231826482 -0.124871565570475 -0.111885761523445 -0.099629689469180 -0.088075655490763 -0.077187843011310 -0.066922820944439 -0.057230114638712 -0.048052834813162 -0.039328359231405 -0.030989061452896 -0.022963080635112 -0.015175126042382 -0.007547309648158 0.000000000000000 0.007547309648157 0.015175126042382 0.022963080635112 0.030989061452896 0.039328359231406 0.048052834813164 0.057230114638711 0.066922820944439 0.077187843011309 0.088075655490764 0.099629689469182 0.111885761523448 0.124871565570475 0.138606231826480 0.153099956670851 0.168353706659071 0.184358999353027 0.201097763039890 0.218542276797170 0.236655191735896 0.255389633621510 0.274689386437135 0.294489155821861 0.283174444656543 0.267847714648039 0.250482501800191 0.231210965868174 0.210179774876901 0.187548988888797 0.163490841850079 0.138188430786408 0.111834322323996 0.084629087141288 0.056779773504994 0.028498331507770 -0.000000000000000 -0.028498331507766 -0.056779773504996 -0.084629087141290 -0.111834322323998 -0.138188430786404 -0.163490841850076 -0.187548988888799 -0.210179774876903 -0.231210965868175 -0.250482501800188 -0.267847714648037 -0.283174444656541 -0.294489099507500 -0.274688398591302 -0.255387800327108 -0.236652603035852 -0.218539025864304 -0.201093945327968 -0.184354711735685 -0.168349046563466 -0.153095021212825 -0.138601116954104 -0.124866365222682 -0.111880566810375 -0.099624587880693 -0.088070730139292 -0.077183171915033 -0.066918476356360 -0.057226162426885 -0.048049333896972 -0.039325361078250 -0.030986609639233 -0.022961210475307 -0.015173864288238 -0.007546674261482 -0.000000000000000 0.007546674261481 0.015173864288237 0.022961210475307 0.030986609639233 0.039325361078249 0.048049333896972 0.057226162426884 0.066918476356359 0.077183171915033 0.088070730139292 0.099624587880692 0.111880566810375 0.124866365222681 0.138601116954107 0.153095021212825 0.168349046563466 0.184354711735685 0.201093945327968 0.218539025864304 0.236652603035848 0.255387800327107 0.274688398591302 0.294489099507500 0.283174444656541 0.267847714648037 0.250482501800192 0.231210965868175 0.210179774876903 0.187548988888799 0.163490841850076 0.138188430786404 0.111834322323998 0.084629087141290 0.056779773504996 0.028498331507766 0.000000000000000 +0.000000000000000 -0.030048466557252 -0.059868246140244 -0.089232392220666 -0.117917425916304 -0.145705036800231 -0.172383744375001 -0.197750507566926 -0.221612269991246 -0.243787429227780 -0.264107218925022 -0.282416993213945 -0.284399990663531 -0.264313773583249 -0.244764645504470 -0.225828137134400 -0.207570404659391 -0.190047874661681 -0.173306971771548 -0.157383930828607 -0.142304694666829 -0.128084897970780 -0.114729936980905 -0.102235124158099 -0.090585926257925 -0.079758283617304 -0.069719007826465 -0.060426254351215 -0.051830066089738 -0.043872983298609 -0.036490714808876 -0.029612864978550 -0.023163710396582 -0.017063019968453 -0.011226911678015 -0.005568739036478 0.000000000000000 0.005568739036478 0.011226911678015 0.017063019968453 0.023163710396581 0.029612864978552 0.036490714808878 0.043872983298609 0.051830066089738 0.060426254351215 0.069719007826464 0.079758283617306 0.090585926257928 0.102235124158098 0.114729936980904 0.128084897970779 0.142304694666829 0.157383930828610 0.173306971771546 0.190047874661680 0.207570404659389 0.225828137134399 0.244764645504473 0.264313773583252 0.284399990663529 0.282416993213947 0.264107218925023 0.243787429227782 0.221612269991242 0.197750507566923 0.172383744375003 0.145705036800233 0.117917425916306 0.089232392220668 0.059868246140239 0.030048466557255 -0.000000000000000 -0.030048466557250 -0.059868246140242 -0.089232392220671 -0.117917425916309 -0.145705036800229 -0.172383744374999 -0.197750507566924 -0.221612269991244 -0.243787429227784 -0.264107218925021 -0.282416993213944 -0.284399560701720 -0.264312313275487 -0.244762243258904 -0.225824886306419 -0.207566402698244 -0.190043222230404 -0.173301771847232 -0.157378287790053 -0.142298713376801 -0.128078682860087 -0.114723591141470 -0.102228748452173 -0.090579618450391 -0.079752137537900 -0.069713112568454 -0.060420693512783 -0.051824917064025 -0.043868316617939 -0.036486593548301 -0.029609344223348 -0.023160836777872 -0.017060831270551 -0.011225436520572 -0.005567996633897 -0.000000000000000 0.005567996633896 0.011225436520572 0.017060831270551 0.023160836777871 0.029609344223347 0.036486593548300 0.043868316617939 0.051824917064025 0.060420693512783 0.069713112568454 0.079752137537899 0.090579618450390 0.102228748452173 0.114723591141473 0.128078682860087 0.142298713376801 0.157378287790053 0.173301771847232 0.190043222230404 0.207566402698238 0.225824886306418 0.244762243258904 0.264312313275487 0.284399560701720 0.282416993213944 0.264107218925025 0.243787429227784 0.221612269991244 0.197750507566924 0.172383744374999 0.145705036800229 0.117917425916309 0.089232392220671 0.059868246140242 0.030048466557250 0.000000000000000 +0.000000000000000 -0.031522372615317 -0.062804840941302 -0.093609326505117 -0.123701388571378 -0.152852008377670 -0.180839332105642 -0.207450359322517 -0.232482564042994 -0.255745436074289 -0.277061930913748 -0.271436726257091 -0.251036927429200 -0.231202012457257 -0.212018240652741 -0.193562326772707 -0.175900989062743 -0.159090581863692 -0.143176815311026 -0.128194563977289 -0.114167765616002 -0.101109410465143 -0.089021620865229 -0.077895820246232 -0.067712989844885 -0.058444010834132 -0.050050088885203 -0.042483257544795 -0.035686956200189 -0.029596677828333 -0.024140681185506 -0.019240761596233 -0.014813074047326 -0.010769001889014 -0.007016064092853 -0.003458853718441 0.000000000000000 0.003458853718441 0.007016064092852 0.010769001889014 0.014813074047326 0.019240761596234 0.024140681185508 0.029596677828332 0.035686956200189 0.042483257544795 0.050050088885203 0.058444010834134 0.067712989844887 0.077895820246231 0.089021620865228 0.101109410465143 0.114167765616001 0.128194563977291 0.143176815311025 0.159090581863691 0.175900989062741 0.193562326772706 0.212018240652743 0.231202012457262 0.251036927429199 0.271436726257089 0.277061930913750 0.255745436074291 0.232482564042991 0.207450359322513 0.180839332105645 0.152852008377672 0.123701388571380 0.093609326505119 0.062804840941297 0.031522372615319 -0.000000000000000 -0.031522372615314 -0.062804840941299 -0.093609326505121 -0.123701388571383 -0.152852008377668 -0.180839332105641 -0.207450359322515 -0.232482564042993 -0.255745436074293 -0.277061930913747 -0.271435973137974 -0.251035041499922 -0.231199083143732 -0.212014363359601 -0.193557602018051 -0.175895521577968 -0.159084479665493 -0.143170188752928 -0.128187524788128 -0.114160425932916 -0.101101881868670 -0.089014013424029 -0.077888241578959 -0.067705544206480 -0.058436798233732 -0.050043204242496 -0.042476789891438 -0.035680987932481 -0.029591284016979 -0.024135928947851 -0.019236709535833 -0.014809771765235 -0.010766489570574 -0.007014372173206 -0.003458002629358 -0.000000000000000 0.003458002629357 0.007014372173206 0.010766489570573 0.014809771765234 0.019236709535832 0.024135928947850 0.029591284016978 0.035680987932481 0.042476789891438 0.050043204242495 0.058436798233731 0.067705544206480 0.077888241578959 0.089014013424033 0.101101881868670 0.114160425932916 0.128187524788128 0.143170188752928 0.159084479665493 0.175895521577964 0.193557602018051 0.212014363359602 0.231199083143732 0.251035041499921 0.271435973137974 0.277061930913751 0.255745436074293 0.232482564042993 0.207450359322515 0.180839332105640 0.152852008377668 0.123701388571382 0.093609326505121 0.062804840941299 0.031522372615314 0.000000000000000 +0.000000000000000 -0.032908832366889 -0.065567208648571 -0.097726578881866 -0.129142190840956 -0.159574952749559 -0.188793252913747 -0.216574722426779 -0.242707927530750 -0.266993978755153 -0.255768597016257 -0.235032969979701 -0.214879634045479 -0.195405872939495 -0.176699391795693 -0.158837764835922 -0.141887968321168 -0.125906002093929 -0.110936602342087 -0.097013047505838 -0.084157058526215 -0.072378793902111 -0.061676939288205 -0.052038890634124 -0.043441029141489 -0.035849085605461 -0.029218591016546 -0.023495409632028 -0.018616350089534 -0.014509849532783 -0.011096725156084 -0.008290987054043 -0.006000705790002 -0.004128927674811 -0.002574630379599 -0.001233711195303 0.000000000000000 0.001233711195303 0.002574630379600 0.004128927674811 0.006000705790003 0.008290987054044 0.011096725156085 0.014509849532783 0.018616350089534 0.023495409632028 0.029218591016547 0.035849085605462 0.043441029141491 0.052038890634124 0.061676939288204 0.072378793902109 0.084157058526215 0.097013047505840 0.110936602342086 0.125906002093927 0.141887968321167 0.158837764835921 0.176699391795696 0.195405872939499 0.214879634045478 0.235032969979700 0.255768597016256 0.266993978755155 0.242707927530746 0.216574722426775 0.188793252913750 0.159574952749561 0.129142190840958 0.097726578881868 0.065567208648566 0.032908832366892 -0.000000000000000 -0.032908832366887 -0.065567208648568 -0.097726578881871 -0.129142190840961 -0.159574952749557 -0.188793252913745 -0.216574722426777 -0.242707927530748 -0.266993978755156 -0.255767581677004 -0.235030717642637 -0.214876233759165 -0.195401420787863 -0.176693990033146 -0.158831520978969 -0.141880994203761 -0.125898412893897 -0.110928515586362 -0.097004582062228 -0.084148333589626 -0.072369927983160 -0.061668049212086 -0.052030090557553 -0.043432429595389 -0.035840792570850 -0.029210705040796 -0.023488024992383 -0.018609554010394 -0.014503721462807 -0.011091336110769 -0.008286399028847 -0.005996971248582 -0.004126089116342 -0.002572719988535 -0.001232750576289 -0.000000000000000 0.001232750576288 0.002572719988535 0.004126089116341 0.005996971248582 0.008286399028847 0.011091336110769 0.014503721462806 0.018609554010393 0.023488024992383 0.029210705040796 0.035840792570850 0.043432429595389 0.052030090557553 0.061668049212088 0.072369927983160 0.084148333589626 0.097004582062227 0.110928515586362 0.125898412893897 0.141880994203757 0.158831520978968 0.176693990033146 0.195401420787862 0.214876233759165 0.235030717642637 0.255767581676999 0.266993978755156 0.242707927530748 0.216574722426777 0.188793252913745 0.159574952749557 0.129142190840961 0.097726578881871 0.065567208648568 0.032908832366887 0.000000000000000 +0.000000000000000 -0.034197294016095 -0.068134325975837 -0.101552814574264 -0.134198424934523 -0.165822704249805 -0.196184972659260 -0.225054154967053 -0.252210539264132 -0.237589564792799 -0.216502834634715 -0.196004612650371 -0.176203289347373 -0.157197785265972 -0.139076896699219 -0.121918726207632 -0.105790202060117 -0.090746690041822 -0.076831700352581 -0.064076691582501 -0.052500972999369 -0.042111705621733 -0.032904001787793 -0.024861122168952 -0.017954768424489 -0.012145468955458 -0.007383054497667 -0.003607219600698 -0.000748165377779 0.001272681715043 0.002541880897857 0.003153124252105 0.003206326931902 0.002806667700002 0.002063587469378 0.001089753854760 0.000000000000000 -0.001089753854759 -0.002063587469378 -0.002806667700001 -0.003206326931902 -0.003153124252104 -0.002541880897856 -0.001272681715042 0.000748165377779 0.003607219600697 0.007383054497668 0.012145468955461 0.017954768424491 0.024861122168952 0.032904001787793 0.042111705621733 0.052500972999369 0.064076691582503 0.076831700352580 0.090746690041820 0.105790202060116 0.121918726207631 0.139076896699221 0.157197785265975 0.176203289347372 0.196004612650370 0.216502834634714 0.237589564792797 0.252210539264128 0.225054154967049 0.196184972659263 0.165822704249808 0.134198424934525 0.101552814574267 0.068134325975832 0.034197294016098 -0.000000000000000 -0.034197294016093 -0.068134325975834 -0.101552814574269 -0.134198424934528 -0.165822704249803 -0.196184972659259 -0.225054154967051 -0.252210539264130 -0.237588356013157 -0.216500285024174 -0.196000809431549 -0.176198327839626 -0.157191768033608 -0.139069932647560 -0.121910929634042 -0.105781691667458 -0.090737587922031 -0.076822130948371 -0.064066780635254 -0.052490846491447 -0.042101488721445 -0.032893817805225 -0.024851091530793 -0.017945007675805 -0.012136089796184 -0.007374162861278 -0.003598914782226 -0.000740539217915 0.001279545583427 0.002547907734918 0.003158248822677 0.003210494038844 0.002809832635108 0.002065716378375 0.001090824013543 -0.000000000000000 -0.001090824013544 -0.002065716378375 -0.002809832635108 -0.003210494038845 -0.003158248822677 -0.002547907734919 -0.001279545583428 0.000740539217915 0.003598914782225 0.007374162861278 0.012136089796184 0.017945007675804 0.024851091530793 0.032893817805226 0.042101488721444 0.052490846491446 0.064066780635254 0.076822130948371 0.090737587922031 0.105781691667454 0.121910929634041 0.139069932647560 0.157191768033608 0.176198327839626 0.196000809431548 0.216500285024169 0.237588356013157 0.252210539264130 0.225054154967051 0.196184972659259 0.165822704249803 0.134198424934528 0.101552814574269 0.068134325975834 0.034197294016092 0.000000000000000 +0.000000000000000 -0.035377951591788 -0.070486655610171 -0.105058913618347 -0.138831609857588 -0.171547713716995 -0.202958235891674 -0.232824123341684 -0.217113611784516 -0.195669115228150 -0.174807687423704 -0.154648683634353 -0.135302243671458 -0.116868536054564 -0.099437085268092 -0.083086187064132 -0.067882416077272 -0.053880229301869 -0.041121668239757 -0.029636161763378 -0.019440430960798 -0.010538496441603 -0.002921787791955 0.003430645920873 0.008551826473027 0.012486440280529 0.015290339053864 0.017029951414238 0.017781610260309 0.017630801322591 0.016671338949027 0.015004475725023 0.012737953040015 0.009985000166793 0.006863289815616 0.003493858459769 0.000000000000000 -0.003493858459768 -0.006863289815616 -0.009985000166792 -0.012737953040014 -0.015004475725023 -0.016671338949028 -0.017630801322590 -0.017781610260309 -0.017029951414238 -0.015290339053864 -0.012486440280528 -0.008551826473026 -0.003430645920872 0.002921787791955 0.010538496441602 0.019440430960798 0.029636161763381 0.041121668239756 0.053880229301867 0.067882416077271 0.083086187064131 0.099437085268094 0.116868536054567 0.135302243671456 0.154648683634352 0.174807687423702 0.195669115228148 0.217113611784519 0.232824123341680 0.202958235891677 0.171547713716997 0.138831609857591 0.105058913618349 0.070486655610166 0.035377951591790 -0.000000000000000 -0.035377951591785 -0.070486655610169 -0.105058913618352 -0.138831609857593 -0.171547713716993 -0.202958235891672 -0.232824123341682 -0.217112283315921 -0.195666344617151 -0.174803558601317 -0.154643289673106 -0.135295685959719 -0.116860923410056 -0.099428532997584 -0.083076815976676 -0.067872351458721 -0.053869599858623 -0.041110605020054 -0.029624797064467 -0.019428897230517 -0.010526925182895 -0.002910308478817 0.003441906907593 0.008562746881734 0.012496902988859 0.015300233024801 0.017039172600960 0.017790062452773 0.017638396929300 0.016677999707943 0.015010133338119 0.012742549726585 0.009988489131222 0.006865635626006 0.003495037334497 -0.000000000000000 -0.003495037334497 -0.006865635626006 -0.009988489131223 -0.012742549726586 -0.015010133338120 -0.016677999707943 -0.017638396929300 -0.017790062452774 -0.017039172600960 -0.015300233024801 -0.012496902988859 -0.008562746881735 -0.003441906907593 0.002910308478818 0.010526925182895 0.019428897230517 0.029624797064467 0.041110605020054 0.053869599858624 0.067872351458718 0.083076815976676 0.099428532997584 0.116860923410056 0.135295685959719 0.154643289673106 0.174803558601312 0.195666344617151 0.217112283315921 0.232824123341682 0.202958235891672 0.171547713716993 0.138831609857593 0.105058913618352 0.070486655610168 0.035377951591785 0.000000000000000 +0.000000000000000 -0.036441819576917 -0.072606294902681 -0.108218192483348 -0.143006484275294 -0.176706410372228 -0.209061493987982 -0.194570450560393 -0.172771284018343 -0.151537977684030 -0.131000480629715 -0.111279926522850 -0.092487778672053 -0.074725055243239 -0.058081640402476 -0.042635686476029 -0.028453111513309 -0.015587195900875 -0.004078280910303 0.006046428723846 0.014772956902083 0.022100542452000 0.028041519947053 0.032621096197148 0.035877024358769 0.037859178400062 0.038629031422550 0.038259042080287 0.036831954043542 0.034440014122346 0.031184115290059 0.027172871423964 0.022521631104298 0.017351438281094 0.011787948026120 0.005960305932041 0.000000000000000 -0.005960305932040 -0.011787948026119 -0.017351438281094 -0.022521631104297 -0.027172871423963 -0.031184115290059 -0.034440014122345 -0.036831954043541 -0.038259042080287 -0.038629031422549 -0.037859178400061 -0.035877024358769 -0.032621096197149 -0.028041519947053 -0.022100542452000 -0.014772956902084 -0.006046428723844 0.004078280910303 0.015587195900875 0.028453111513308 0.042635686476028 0.058081640402480 0.074725055243242 0.092487778672052 0.111279926522848 0.131000480629714 0.151537977684028 0.172771284018347 0.194570450560396 0.209061493987985 0.176706410372230 0.143006484275296 0.108218192483350 0.072606294902675 0.036441819576919 -0.000000000000000 -0.036441819576914 -0.072606294902678 -0.108218192483353 -0.143006484275299 -0.176706410372226 -0.209061493987980 -0.194569078099831 -0.172768372815801 -0.151533606933589 -0.130994739673681 -0.111272914065025 -0.092479601921840 -0.074715828997222 -0.058071486070686 -0.042624731060485 -0.028441486546826 -0.015575036354333 -0.004065724076937 0.006059244358523 0.014785892795937 0.022113461138721 0.028054286156634 0.032633577955707 0.035889094059225 0.037870713835375 0.038639916773575 0.038269168850570 0.036841221933876 0.034448331838326 0.031191401276407 0.027179054519955 0.022526651115245 0.017355246461472 0.011790507470613 0.005961591871495 -0.000000000000000 -0.005961591871496 -0.011790507470614 -0.017355246461473 -0.022526651115245 -0.027179054519955 -0.031191401276407 -0.034448331838326 -0.036841221933876 -0.038269168850571 -0.038639916773576 -0.037870713835376 -0.035889094059225 -0.032633577955708 -0.028054286156633 -0.022113461138720 -0.014785892795937 -0.006059244358523 0.004065724076937 0.015575036354333 0.028441486546823 0.042624731060484 0.058071486070685 0.074715828997222 0.092479601921840 0.111272914065025 0.130994739673677 0.151533606933589 0.172768372815800 0.194569078099831 0.209061493987980 0.176706410372225 0.143006484275299 0.108218192483353 0.072606294902678 0.036441819576914 0.000000000000000 +0.000000000000000 -0.037380801293733 -0.074477112118477 -0.111006607149480 -0.146691274872462 -0.181259533419051 -0.170201740762027 -0.148061388552187 -0.126458165522584 -0.105532016764258 -0.085414613547967 -0.066228403744252 -0.048085738279886 -0.031088080167899 -0.015325302008900 -0.000875077177481 0.012197630815976 0.023840977055008 0.034016539090797 0.042699513819828 0.049878806049034 0.055557008265101 0.059750271961174 0.062488071707601 0.063812863977424 0.063779643545570 0.062455401067178 0.059918486199008 0.056257881352815 0.051572391855221 0.045969758929942 0.039565702510177 0.032482901427138 0.024849919000880 0.016800082478317 0.008470325117032 0.000000000000000 -0.008470325117031 -0.016800082478316 -0.024849919000879 -0.032482901427137 -0.039565702510178 -0.045969758929942 -0.051572391855220 -0.056257881352814 -0.059918486199007 -0.062455401067178 -0.063779643545571 -0.063812863977423 -0.062488071707601 -0.059750271961174 -0.055557008265101 -0.049878806049033 -0.042699513819827 -0.034016539090797 -0.023840977055008 -0.012197630815977 0.000875077177480 0.015325302008903 0.031088080167902 0.048085738279884 0.066228403744251 0.085414613547966 0.105532016764256 0.126458165522587 0.148061388552190 0.170201740762025 0.181259533419054 0.146691274872465 0.111006607149483 0.074477112118471 0.037380801293736 -0.000000000000000 -0.037380801293731 -0.074477112118474 -0.111006607149485 -0.146691274872467 -0.181259533419049 -0.170200398886066 -0.148058418193330 -0.126453639750544 -0.105526019744317 -0.085407239805796 -0.066219757353431 -0.048075931978576 -0.031077234411490 -0.015313543966045 -0.000862539677314 0.012210810377242 0.023854657839678 0.034030577968696 0.042713766531876 0.049893128376361 0.055571257194689 0.059764306839012 0.062501755370464 0.063826063854546 0.063792232721697 0.062467259298831 0.059929500876122 0.056267948398335 0.051581416555730 0.045977656690943 0.039572399530194 0.032488335285454 0.024854039154407 0.016802850663742 0.008471715655166 -0.000000000000000 -0.008471715655166 -0.016802850663742 -0.024854039154408 -0.032488335285455 -0.039572399530195 -0.045977656690943 -0.051581416555730 -0.056267948398335 -0.059929500876123 -0.062467259298831 -0.063792232721698 -0.063826063854546 -0.062501755370465 -0.059764306839011 -0.055571257194689 -0.049893128376361 -0.042713766531876 -0.034030577968696 -0.023854657839678 -0.012210810377246 0.000862539677314 0.015313543966045 0.031077234411490 0.048075931978576 0.066219757353431 0.085407239805791 0.105526019744317 0.126453639750544 0.148058418193330 0.170200398886066 0.181259533419049 0.146691274872467 0.111006607149485 0.074477112118474 0.037380801293731 0.000000000000000 +0.000000000000000 -0.038187750524400 -0.076084869208916 -0.113402936097443 -0.149857938167712 -0.144257868793560 -0.121800304682637 -0.099840215739147 -0.078526727093615 -0.058001365610592 -0.038397022152451 -0.019836984589758 -0.002434048833026 0.013710285442405 0.028506528360478 0.041877817379005 0.053760434215867 0.064104217362207 0.072872867181051 0.080044141415250 0.085609939770548 0.089576277091297 0.091963145501314 0.092804266734418 0.092146736721370 0.090050565326096 0.086588114927997 0.081843442322326 0.075911549151609 0.068897546781857 0.060915742192760 0.052088652056103 0.042545952726596 0.032423374360166 0.021861547802618 0.011004813253153 0.000000000000000 -0.011004813253151 -0.021861547802616 -0.032423374360165 -0.042545952726594 -0.052088652056104 -0.060915742192761 -0.068897546781856 -0.075911549151609 -0.081843442322326 -0.086588114927995 -0.090050565326095 -0.092146736721370 -0.092804266734419 -0.091963145501313 -0.089576277091298 -0.085609939770549 -0.080044141415248 -0.072872867181052 -0.064104217362207 -0.053760434215868 -0.041877817379005 -0.028506528360476 -0.013710285442403 0.002434048833025 0.019836984589757 0.038397022152449 0.058001365610590 0.078526727093618 0.099840215739151 0.121800304682636 0.144257868793558 0.149857938167715 0.113402936097446 0.076084869208910 0.038187750524403 -0.000000000000000 -0.038187750524398 -0.076084869208913 -0.113402936097449 -0.149857938167717 -0.144256627967802 -0.121797354529218 -0.099835621910122 -0.078520567204379 -0.057993728567986 -0.038388007398140 -0.019826701264740 -0.002422614869865 0.013722744292637 0.028519879558969 0.041891922679707 0.053775150787362 0.064119398942295 0.072888365255099 0.080059806409246 0.085625622249658 0.089591828954653 0.091978421163888 0.092819124286837 0.092161039058754 0.090064181237259 0.086600920136607 0.081855320472036 0.075922392727578 0.068907257961574 0.060924233619661 0.052095847530002 0.042551787805647 0.032427796869738 0.021864518247153 0.011006305127861 -0.000000000000000 -0.011006305127861 -0.021864518247154 -0.032427796869738 -0.042551787805647 -0.052095847530002 -0.060924233619662 -0.068907257961574 -0.075922392727578 -0.081855320472037 -0.086600920136607 -0.090064181237259 -0.092161039058755 -0.092819124286837 -0.091978421163888 -0.089591828954653 -0.085625622249658 -0.080059806409247 -0.072888365255099 -0.064119398942295 -0.053775150787364 -0.041891922679707 -0.028519879558969 -0.013722744292638 0.002422614869864 0.019826701264739 0.038388007398136 0.057993728567986 0.078520567204379 0.099835621910121 0.121797354529218 0.144256627967802 0.149857938167717 0.113402936097449 0.076084869208913 0.038187750524397 0.000000000000000 +0.000000000000000 -0.038856525898023 -0.077417330171750 -0.115388941816999 -0.116995312946225 -0.094254589023786 -0.071961697493897 -0.050273924363134 -0.029341755919685 -0.009307761178115 0.009694461296304 0.027541264228951 0.044119852746583 0.059329098975377 0.073080264010155 0.085297621850941 0.095918980656173 0.104896097450364 0.112194983241595 0.117796096344797 0.121694422563953 0.123899441753418 0.124434981149160 0.123338956728024 0.120663004710559 0.116472006164064 0.110843508480789 0.103867048295489 0.095643381160764 0.086283624012043 0.075908317121250 0.064646412854130 0.052634199106046 0.040014165790688 0.026933823191706 0.013544481355320 0.000000000000000 -0.013544481355319 -0.026933823191705 -0.040014165790687 -0.052634199106045 -0.064646412854131 -0.075908317121251 -0.086283624012043 -0.095643381160763 -0.103867048295488 -0.110843508480788 -0.116472006164065 -0.120663004710560 -0.123338956728024 -0.124434981149160 -0.123899441753418 -0.121694422563953 -0.117796096344796 -0.112194983241594 -0.104896097450364 -0.095918980656174 -0.085297621850941 -0.073080264010154 -0.059329098975374 -0.044119852746584 -0.027541264228952 -0.009694461296305 0.009307761178114 0.029341755919689 0.050273924363137 0.071961697493896 0.094254589023785 0.116995312946223 0.115388941817002 0.077417330171744 0.038856525898026 -0.000000000000000 -0.038856525898020 -0.077417330171747 -0.115388941817005 -0.116994236721591 -0.094251733388569 -0.071957119517490 -0.050267693847652 -0.029333954802173 -0.009298482841243 0.009705112799664 0.027553175031310 0.044132900094861 0.059343152226244 0.073095185683976 0.085313268736184 0.095935204955768 0.104912747961201 0.112211906558040 0.117813138077002 0.121711428561573 0.123916259325331 0.124451460269834 0.123354951221237 0.120678373401410 0.116486613990414 0.110857227555620 0.103879758912009 0.095654972732577 0.086293995941126 0.075917379587141 0.064654087518234 0.052640419725665 0.040018878738090 0.026936987874221 0.013546070533265 -0.000000000000000 -0.013546070533266 -0.026936987874222 -0.040018878738090 -0.052640419725665 -0.064654087518234 -0.075917379587142 -0.086293995941127 -0.095654972732577 -0.103879758912010 -0.110857227555621 -0.116486613990415 -0.120678373401411 -0.123354951221238 -0.124451460269835 -0.123916259325331 -0.121711428561573 -0.117813138077003 -0.112211906558040 -0.104912747961201 -0.095935204955771 -0.085313268736184 -0.073095185683976 -0.059343152226244 -0.044132900094861 -0.027553175031310 -0.009705112799669 0.009298482841243 0.029333954802173 0.050267693847652 0.071957119517490 0.094251733388568 0.116994236721591 0.115388941817005 0.077417330171747 0.038856525898020 0.000000000000000 +0.000000000000000 -0.039382037630190 -0.078464354174491 -0.088674583242265 -0.065693940111734 -0.043102737572815 -0.021065221089864 0.000260256169561 0.020722420669894 0.040178208801460 0.058493831570844 0.075545765630617 0.091221663157925 0.105421173714657 0.118056671897501 0.129053885308717 0.138352418142478 0.145906166481218 0.151683622225878 0.155668063436221 0.157857629726799 0.158265282243506 0.156918648628417 0.153859754260229 0.149144641927014 0.142842882941010 0.135036983534821 0.125821691178831 0.115303206224290 0.103598305000066 0.090833381167448 0.077143412762007 0.062670862919095 0.047564522786219 0.031978305567150 0.016070001015785 0.000000000000000 -0.016070001015784 -0.031978305567148 -0.047564522786218 -0.062670862919094 -0.077143412762006 -0.090833381167449 -0.103598305000064 -0.115303206224289 -0.125821691178829 -0.135036983534821 -0.142842882941009 -0.149144641927014 -0.153859754260227 -0.156918648628417 -0.158265282243506 -0.157857629726799 -0.155668063436220 -0.151683622225878 -0.145906166481219 -0.138352418142478 -0.129053885308718 -0.118056671897498 -0.105421173714655 -0.091221663157926 -0.075545765630618 -0.058493831570845 -0.040178208801462 -0.020722420669891 -0.000260256169558 0.021065221089863 0.043102737572814 0.065693940111732 0.088674583242263 0.078464354174485 0.039382037630193 -0.000000000000000 -0.039382037630188 -0.078464354174488 -0.088673725741772 -0.065691245516145 -0.043098253363022 -0.021059008133658 0.000268124131613 0.020731857636026 0.040189117212961 0.058506103103514 0.075559282067375 0.091236297335750 0.105436790538622 0.118073129414080 0.129071035830116 0.138370109413321 0.145924242878686 0.151701925984019 0.155686435885086 0.157875912536885 0.158283318665960 0.156936284721509 0.153876840092672 0.149161032748943 0.142858440313624 0.135051576410062 0.125835196920804 0.115315511564645 0.103609306919970 0.090842987699467 0.077151543705712 0.062677450464918 0.047569512042826 0.031981654988243 0.016071682723093 -0.000000000000000 -0.016071682723093 -0.031981654988244 -0.047569512042827 -0.062677450464918 -0.077151543705712 -0.090842987699467 -0.103609306919971 -0.115315511564645 -0.125835196920805 -0.135051576410063 -0.142858440313625 -0.149161032748943 -0.153876840092672 -0.156936284721509 -0.158283318665960 -0.157875912536885 -0.155686435885086 -0.151701925984020 -0.145924242878687 -0.138370109413324 -0.129071035830116 -0.118073129414080 -0.105436790538622 -0.091236297335751 -0.075559282067376 -0.058506103103518 -0.040189117212961 -0.020731857636026 -0.000268124131613 0.021059008133658 0.043098253363022 0.065691245516145 0.088673725741772 0.078464354174488 0.039382037630188 0.000000000000000 +0.000000000000000 -0.039760286259308 -0.059558694104010 -0.036389244816360 -0.013543601255714 0.008808389083468 0.030501771611882 0.051377730231698 0.071284784061691 0.090079926216135 0.107629695997502 0.123811176373652 0.138512909182910 0.151635721140315 0.163093454400982 0.172813596166660 0.180737802593491 0.186822313066876 0.191038251747333 0.193371814152228 0.193824337416629 0.192412253764761 0.189166927615386 0.184134377632844 0.177374885913827 0.168962497361481 0.158984413136510 0.147540282883433 0.134741401202527 0.120709814568712 0.105577345581959 0.089484542064537 0.072579559093821 0.055016982570991 0.036956603372129 0.018562151504980 0.000000000000000 -0.018562151504979 -0.036956603372127 -0.055016982570989 -0.072579559093819 -0.089484542064539 -0.105577345581961 -0.120709814568710 -0.134741401202526 -0.147540282883432 -0.158984413136509 -0.168962497361480 -0.177374885913828 -0.184134377632843 -0.189166927615386 -0.192412253764761 -0.193824337416630 -0.193371814152227 -0.191038251747333 -0.186822313066876 -0.180737802593491 -0.172813596166660 -0.163093454400980 -0.151635721140313 -0.138512909182911 -0.123811176373652 -0.107629695997504 -0.090079926216136 -0.071284784061687 -0.051377730231695 -0.030501771611884 -0.008808389083470 0.013543601255714 0.036389244816358 0.059558694104014 0.039760286259311 -0.000000000000000 -0.039760286259305 -0.059558097892343 -0.036386767580675 -0.013539280068364 0.008814503238517 0.030509614261516 0.051387223938478 0.071295839046990 0.090092441076773 0.107643558510342 0.123826264382021 0.138529091557981 0.151652858810103 0.163111401439059 0.172832200932251 0.180756908914195 0.186841761454998 0.191057880640469 0.193391461168644 0.193843840615821 0.192431452903551 0.189185665389953 0.184152500897200 0.177392246865410 0.168978954684817 0.158999833096200 0.147554540358117 0.134754380651911 0.120721410926282 0.105587465066575 0.089493102904674 0.072586492158953 0.055022231905300 0.036960126626428 0.018563920263572 -0.000000000000000 -0.018563920263572 -0.036960126626428 -0.055022231905301 -0.072586492158953 -0.089493102904674 -0.105587465066575 -0.120721410926282 -0.134754380651912 -0.147554540358118 -0.158999833096200 -0.168978954684818 -0.177392246865410 -0.184152500897201 -0.189185665389955 -0.192431452903552 -0.193843840615822 -0.193391461168644 -0.191057880640469 -0.186841761454998 -0.180756908914196 -0.172832200932251 -0.163111401439060 -0.151652858810103 -0.138529091557981 -0.123826264382021 -0.107643558510346 -0.090092441076773 -0.071295839046990 -0.051387223938478 -0.030509614261516 -0.008814503238517 0.013539280068364 0.036386767580676 0.059558097892343 0.039760286259305 0.000000000000000 +0.000000000000000 -0.029912099944922 -0.006611156362101 0.016437135262913 0.039058808053902 0.061083715926414 0.082346824659883 0.102689462980091 0.121960524139902 0.140017608864901 0.156728100978947 0.171970167538850 0.185633675884052 0.197621020641334 0.207847854411798 0.216243716602306 0.222752555640544 0.227333140625977 0.229959359312325 0.230620400183721 0.229320817270628 0.226080477245404 0.220934389234934 0.213932418681687 0.205138887468373 0.194632063388283 0.182503542886728 0.168857531812377 0.153810029694583 0.137487923797950 0.120027999892937 0.101575877315951 0.082284876469297 0.062314827426124 0.041830828754370 0.021001966052882 0.000000000000000 -0.021001966052879 -0.041830828754367 -0.062314827426122 -0.082284876469296 -0.101575877315953 -0.120027999892941 -0.137487923797949 -0.153810029694581 -0.168857531812376 -0.182503542886727 -0.194632063388284 -0.205138887468375 -0.213932418681686 -0.220934389234932 -0.226080477245402 -0.229320817270627 -0.230620400183721 -0.229959359312324 -0.227333140625978 -0.222752555640544 -0.216243716602306 -0.207847854411796 -0.197621020641332 -0.185633675884052 -0.171970167538851 -0.156728100978948 -0.140017608864902 -0.121960524139899 -0.102689462980088 -0.082346824659884 -0.061083715926416 -0.039058808053904 -0.016437135262915 0.006611156362104 0.029912099944921 -0.000000000000000 -0.029911794358760 -0.006608940614676 0.016441235120281 0.039064751674480 0.061091448992529 0.082356279313620 0.102700558356857 0.121973167000813 0.140031694323139 0.156743513314495 0.171986781095432 0.185651356041352 0.197639624855116 0.207867233313952 0.216263715152449 0.222773014320337 0.227353896667100 0.229980247948679 0.230641255918355 0.229341475147670 0.226100774117349 0.220954165015575 0.213951517575159 0.205157159164916 0.194649364217630 0.182519736920298 0.168872491905886 0.153823638463106 0.137500074516006 0.120038597312737 0.101584838397582 0.082292131017236 0.062320318627284 0.041834513613526 0.021003815722167 -0.000000000000000 -0.021003815722167 -0.041834513613526 -0.062320318627284 -0.082292131017237 -0.101584838397583 -0.120038597312738 -0.137500074516005 -0.153823638463107 -0.168872491905887 -0.182519736920298 -0.194649364217630 -0.205157159164916 -0.213951517575160 -0.220954165015578 -0.226100774117350 -0.229341475147670 -0.230641255918355 -0.229980247948680 -0.227353896667100 -0.222773014320338 -0.216263715152449 -0.207867233313952 -0.197639624855116 -0.185651356041352 -0.171986781095432 -0.156743513314499 -0.140031694323139 -0.121973167000813 -0.102700558356857 -0.082356279313620 -0.061091448992529 -0.039064751674479 -0.016441235120281 0.006608940614676 0.029911794358760 0.000000000000000 +-0.000000000000000 0.023370876197580 0.046563885915576 0.069402516345705 0.091712951720064 0.113325396154039 0.134075365895537 0.153804941145650 0.172363967923682 0.189611200829601 0.205415378006838 0.219656220124246 0.232225345774457 0.243027096321826 0.251979263922414 0.259013717175310 0.264076919643746 0.267130337299688 0.268150731791074 0.267130337299688 0.264076919643746 0.259013717175311 0.251979263922412 0.243027096321825 0.232225345774456 0.219656220124245 0.205415378006839 0.189611200829604 0.172363967923681 0.153804941145648 0.134075365895536 0.113325396154038 0.091712951720068 0.069402516345709 0.046563885915574 0.023370876197578 0.000000000000000 -0.023370876197576 -0.046563885915572 -0.069402516345707 -0.091712951720065 -0.113325396154041 -0.134075365895537 -0.153804941145646 -0.172363967923679 -0.189611200829602 -0.205415378006839 -0.219656220124247 -0.232225345774458 -0.243027096321824 -0.251979263922412 -0.259013717175312 -0.264076919643746 -0.267130337299688 -0.268150731791073 -0.267130337299689 -0.264076919643746 -0.259013717175310 -0.251979263922412 -0.243027096321824 -0.232225345774457 -0.219656220124246 -0.205415378006839 -0.189611200829603 -0.172363967923679 -0.153804941145647 -0.134075365895538 -0.113325396154040 -0.091712951720066 -0.069402516345707 -0.046563885915572 -0.023370876197582 -0.000000000000000 0.023372800021184 0.046567718921327 0.069408229362120 0.091720501267633 0.113334724776142 0.134086402595731 0.153817601927983 0.172378156431956 0.189626809080705 0.205432287212548 0.219674301595301 0.232244461899943 0.243047101616487 0.252000006133876 0.259035038442823 0.264098657699587 0.267152326704127 0.268172805191464 0.267152326704127 0.264098657699587 0.259035038442824 0.252000006133875 0.243047101616487 0.232244461899944 0.219674301595301 0.205432287212549 0.189626809080702 0.172378156431957 0.153817601927985 0.134086402595732 0.113334724776144 0.091720501267630 0.069408229362116 0.046567718921328 0.023372800021186 -0.000000000000000 -0.023372800021186 -0.046567718921329 -0.069408229362117 -0.091720501267630 -0.113334724776144 -0.134086402595733 -0.153817601927985 -0.172378156431957 -0.189626809080703 -0.205432287212550 -0.219674301595301 -0.232244461899945 -0.243047101616488 -0.252000006133876 -0.259035038442825 -0.264098657699588 -0.267152326704127 -0.268172805191465 -0.267152326704127 -0.264098657699587 -0.259035038442823 -0.252000006133877 -0.243047101616487 -0.232244461899943 -0.219674301595301 -0.205432287212551 -0.189626809080705 -0.172378156431956 -0.153817601927983 -0.134086402595731 -0.113334724776142 -0.091720501267633 -0.069408229362120 -0.046567718921327 -0.023372800021184 -0.000000000000000 +-0.000000424259389 0.076566109821775 0.099562925869818 0.122104981559985 0.144019273664933 0.165137002639550 0.185294861129863 0.204336281768311 0.222112634749571 0.238484366061200 0.253322067693068 0.266507471665110 0.277934360290900 0.287509385729970 0.295152792570356 0.300799037918916 0.304397304255265 0.305911901119441 0.305322552547804 0.302624568039530 0.297828895720802 0.290962057268871 0.282065965056488 0.271197622872264 0.258428712457052 0.243845068964404 0.227546049297093 0.209643798085982 0.190262416855439 0.169537042655278 0.147612843127438 0.124643935610709 0.100792238464245 0.076226263305815 0.051119857309931 0.025650905090506 0.000000000000000 -0.025650905090503 -0.051119857309929 -0.076226263305812 -0.100792238464243 -0.124643935610712 -0.147612843127440 -0.169537042655276 -0.190262416855436 -0.209643798085981 -0.227546049297092 -0.243845068964405 -0.258428712457053 -0.271197622872263 -0.282065965056487 -0.290962057268869 -0.297828895720804 -0.302624568039530 -0.305322552547803 -0.305911901119440 -0.304397304255265 -0.300799037918916 -0.295152792570355 -0.287509385729969 -0.277934360290900 -0.266507471665111 -0.253322067693069 -0.238484366061201 -0.222112634749568 -0.204336281768309 -0.185294861129864 -0.165137002639552 -0.144019273664935 -0.122104981559987 -0.099562925869815 -0.076566109821777 0.000000424259389 0.076567263119114 0.099565986907151 0.122109922676936 0.144026052913381 0.165145564111160 0.185305135389802 0.204348186391819 0.222126074957316 0.238499235448570 0.253338249047792 0.266524837867041 0.277952775287018 0.287528705577231 0.295172866538403 0.300819709644265 0.304418412938152 0.305933282754228 0.305344041177541 0.302645997025141 0.297850099015202 0.290982870686318 0.282086227527508 0.271217177674544 0.258447408412985 0.243862761596121 0.227562601930194 0.209659082893570 0.190276315834478 0.169549448527850 0.147623660160059 0.124653080345416 0.100799640355924 0.076231865260899 0.051123616122372 0.025652791771660 -0.000000000000000 -0.025652791771661 -0.051123616122373 -0.076231865260900 -0.100799640355924 -0.124653080345417 -0.147623660160059 -0.169549448527850 -0.190276315834479 -0.209659082893571 -0.227562601930194 -0.243862761596121 -0.258447408412985 -0.271217177674544 -0.282086227527511 -0.290982870686319 -0.297850099015202 -0.302645997025141 -0.305344041177541 -0.305933282754228 -0.304418412938154 -0.300819709644265 -0.295172866538403 -0.287528705577231 -0.277952775287018 -0.266524837867041 -0.253338249047796 -0.238499235448570 -0.222126074957316 -0.204348186391819 -0.185305135389802 -0.165145564111160 -0.144026052913381 -0.122109922676936 -0.099565986907151 -0.076567263119114 -0.000000424259389 +-0.000000845289908 0.086148047255579 0.151981421484391 0.174142251663485 0.195578517446196 0.216123054168772 0.235614347832594 0.253897774141144 0.270826787245803 0.286264049130627 0.300082491014029 0.312166298658597 0.322411814055600 0.330728346583193 0.337038887422558 0.341280721748771 0.343405933987537 0.343381802239302 0.341191078812238 0.336832154669163 0.330319106473670 0.321681625811154 0.310964831054248 0.298228963232437 0.283548968145752 0.267013967825666 0.248726625286051 0.228802407316886 0.207368750847396 0.184564139137078 0.160537094737764 0.135445096801557 0.109453430883886 0.082733979903375 0.055463965367078 0.027824648347047 0.000000000000000 -0.027824648347044 -0.055463965367076 -0.082733979903373 -0.109453430883884 -0.135445096801561 -0.160537094737768 -0.184564139137075 -0.207368750847394 -0.228802407316885 -0.248726625286050 -0.267013967825668 -0.283548968145754 -0.298228963232435 -0.310964831054247 -0.321681625811153 -0.330319106473670 -0.336832154669165 -0.341191078812238 -0.343381802239301 -0.343405933987537 -0.341280721748771 -0.337038887422559 -0.330728346583193 -0.322411814055601 -0.312166298658598 -0.300082491014029 -0.286264049130628 -0.270826787245800 -0.253897774141141 -0.235614347832595 -0.216123054168773 -0.195578517446198 -0.174142251663487 -0.151981421484388 -0.086148047255585 0.000000845289908 0.086149736226331 0.151983701842707 0.174146405015840 0.195584503529657 0.216130818830144 0.235623823456933 0.253908880182551 0.270839430856480 0.286278125883354 0.300097885712520 0.312182886229578 0.322429460515739 0.330746910073536 0.337058219302549 0.341300667741505 0.343426335367516 0.343402497053608 0.341211903125826 0.336852943824748 0.330339696356622 0.321701854109726 0.310984538505561 0.298247994844668 0.283567174387243 0.267031205771889 0.248742759715643 0.228817311748456 0.207382308509132 0.184576243861804 0.160547651776634 0.135454023550138 0.109460657515121 0.082739449902629 0.055467635965118 0.027826490847695 -0.000000000000000 -0.027826490847696 -0.055467635965118 -0.082739449902630 -0.109460657515122 -0.135454023550139 -0.160547651776634 -0.184576243861805 -0.207382308509132 -0.228817311748456 -0.248742759715644 -0.267031205771889 -0.283567174387243 -0.298247994844667 -0.310984538505563 -0.321701854109728 -0.330339696356622 -0.336852943824748 -0.341211903125826 -0.343402497053608 -0.343426335367516 -0.341300667741505 -0.337058219302550 -0.330746910073536 -0.322429460515740 -0.312182886229579 -0.300097885712523 -0.286278125883354 -0.270839430856479 -0.253908880182551 -0.235623823456933 -0.216130818830144 -0.195584503529657 -0.174146405015840 -0.151983701842707 -0.086149736226331 -0.000000845289908 +-0.000001259887260 0.085328079089147 0.170008012677791 0.225118291609748 0.245998286086349 0.265895516103340 0.284650864326178 0.302112225381135 0.318135681297462 0.332586617799553 0.345340772913526 0.356285209861727 0.365319206789183 0.372355056493073 0.377318770005678 0.380150678607415 0.380805929614239 0.379254872086800 0.375483329441489 0.369492756799230 0.361300281780392 0.350938628336572 0.338455924095830 0.323915392580231 0.307394932526736 0.288986587397934 0.268795909001254 0.246941219937782 0.223552780368783 0.198771865313214 0.172749759367880 0.145646676367998 0.117630612074904 0.088876138485617 0.059563148801653 0.029875562468477 0.000000000000000 -0.029875562468474 -0.059563148801651 -0.088876138485614 -0.117630612074901 -0.145646676368002 -0.172749759367883 -0.198771865313212 -0.223552780368780 -0.246941219937780 -0.268795909001252 -0.288986587397935 -0.307394932526738 -0.323915392580230 -0.338455924095829 -0.350938628336570 -0.361300281780390 -0.369492756799230 -0.375483329441487 -0.379254872086799 -0.380805929614238 -0.380150678607415 -0.377318770005678 -0.372355056493072 -0.365319206789183 -0.356285209861727 -0.345340772913525 -0.332586617799553 -0.318135681297459 -0.302112225381133 -0.284650864326179 -0.265895516103341 -0.245998286086350 -0.225118291609750 -0.170008012677778 -0.085328079089154 0.000001259887260 0.085330596465394 0.170010522863802 0.225121647327740 0.246003462175419 0.265902460358936 0.284659511197671 0.302122496494860 0.318147486077117 0.332599854179159 0.345355328137465 0.356300961365782 0.365336023155755 0.372372798473315 0.377337291600708 0.380169828200345 0.380825551144352 0.379274806256916 0.375503414949280 0.369512831583086 0.361320184270316 0.350958198700562 0.338475005472209 0.323933832286539 0.307412583235925 0.289003308272940 0.268811566779220 0.246955689955716 0.223565947522782 0.198783624943930 0.172760018065537 0.145655352690728 0.117637637174978 0.088881456638794 0.059566717835567 0.029877354086807 -0.000000000000000 -0.029877354086807 -0.059566717835568 -0.088881456638795 -0.117637637174978 -0.145655352690729 -0.172760018065537 -0.198783624943931 -0.223565947522782 -0.246955689955717 -0.268811566779220 -0.289003308272940 -0.307412583235926 -0.323933832286538 -0.338475005472211 -0.350958198700563 -0.361320184270317 -0.369512831583086 -0.375503414949279 -0.379274806256917 -0.380825551144353 -0.380169828200345 -0.377337291600708 -0.372372798473315 -0.365336023155755 -0.356300961365782 -0.345355328137468 -0.332599854179159 -0.318147486077117 -0.302122496494860 -0.284659511197671 -0.265902460358936 -0.246003462175419 -0.225121647327740 -0.170010522863802 -0.085330596465394 -0.000001259887260 +-0.000001664896110 0.084189044501499 0.167739014943119 0.250012380731933 0.294894854701749 0.314075589954498 0.332031213111041 0.348612694401667 0.363679267654925 0.377099529350078 0.388752470538604 0.398528433720515 0.406329987324751 0.412072711062303 0.415685886091595 0.417113084652832 0.416312654585915 0.413258094939644 0.407938319702042 0.400357807526505 0.390536636189934 0.378510401390039 0.364330020363613 0.348061421678418 0.329785123412475 0.309595702778827 0.287601161075464 0.263922188632108 0.238691335182758 0.212052091808617 0.184157891265742 0.155171034129650 0.125261548750919 0.094605993516990 0.063386210352565 0.031788038759958 0.000000000000000 -0.031788038759954 -0.063386210352562 -0.094605993516988 -0.125261548750916 -0.155171034129655 -0.184157891265746 -0.212052091808616 -0.238691335182756 -0.263922188632106 -0.287601161075462 -0.309595702778830 -0.329785123412477 -0.348061421678417 -0.364330020363611 -0.378510401390038 -0.390536636189934 -0.400357807526506 -0.407938319702040 -0.413258094939644 -0.416312654585915 -0.417113084652832 -0.415685886091594 -0.412072711062302 -0.406329987324752 -0.398528433720515 -0.388752470538605 -0.377099529350079 -0.363679267654923 -0.348612694401664 -0.332031213111042 -0.314075589954499 -0.294894854701751 -0.250012380731939 -0.167739014943106 -0.084189044501505 0.000001664896110 0.084192371124487 0.167742332064467 0.250015682037331 0.294899210131575 0.314081696452564 0.332039007419750 0.348622100596432 0.363690197753615 0.377111884013828 0.388766139858582 0.398543298084646 0.406345918357681 0.412089572631445 0.415703535371521 0.417131373239854 0.416331429654337 0.413277200430821 0.407957597537145 0.400377098833727 0.390555782536733 0.378529246011020 0.364348409374638 0.348079205267688 0.329802156999437 0.309611848132119 0.287616287381292 0.263936173504942 0.238704065610584 0.212063465025533 0.184167815545276 0.155179429492697 0.125268347582885 0.094611141089488 0.063389665245595 0.031789773181400 -0.000000000000000 -0.031789773181400 -0.063389665245596 -0.094611141089489 -0.125268347582886 -0.155179429492697 -0.184167815545276 -0.212063465025534 -0.238704065610584 -0.263936173504943 -0.287616287381292 -0.309611848132119 -0.329802156999437 -0.348079205267689 -0.364348409374643 -0.378529246011021 -0.390555782536733 -0.400377098833728 -0.407957597537146 -0.413277200430822 -0.416331429654337 -0.417131373239855 -0.415703535371521 -0.412089572631445 -0.406345918357682 -0.398543298084646 -0.388766139858585 -0.377111884013828 -0.363690197753615 -0.348622100596432 -0.332039007419750 -0.314081696452564 -0.294899210131575 -0.250015682037330 -0.167742332064467 -0.084192371124487 -0.000001664896110 +-0.000002057234094 0.082739612233614 0.164851571563123 0.245708899196863 0.324696222104357 0.360296596268314 0.377394801123893 0.393045284555743 0.407110932126043 0.419464013647670 0.429987194657638 0.438574473794241 0.445132038859445 0.449579034957432 0.451848238760199 0.451886633656506 0.449655881285982 0.445132685740216 0.438309047521153 0.429192405178130 0.417805663391850 0.404187107130333 0.388390202361792 0.370483284665793 0.350549137930765 0.328684466156176 0.304999262185473 0.279616077974712 0.252669201746278 0.224303748080847 0.194674667659187 0.163945683972982 0.132288164876140 0.099879937340928 0.066904054212984 0.033547522122123 0.000000000000000 -0.033547522122120 -0.066904054212981 -0.099879937340925 -0.132288164876134 -0.163945683972986 -0.194674667659192 -0.224303748080844 -0.252669201746277 -0.279616077974709 -0.304999262185471 -0.328684466156178 -0.350549137930767 -0.370483284665792 -0.388390202361790 -0.404187107130331 -0.417805663391848 -0.429192405178130 -0.438309047521152 -0.445132685740215 -0.449655881285981 -0.451886633656506 -0.451848238760199 -0.449579034957431 -0.445132038859446 -0.438574473794242 -0.429987194657638 -0.419464013647671 -0.407110932126041 -0.393045284555740 -0.377394801123895 -0.360296596268315 -0.324696222104362 -0.245708899196870 -0.164851571563110 -0.082739612233620 0.000002057234094 0.082743722785734 0.164855670374512 0.245712978465219 0.324700274064540 0.360301854032936 0.377401725548399 0.393053802422824 0.407120958350675 0.419475451963221 0.429999938386508 0.438588406697116 0.445147036056582 0.449594963914939 0.451864960333718 0.451904003184288 0.449673749722973 0.445150900824453 0.438327454963558 0.429210849866546 0.417823990600128 0.404205163723220 0.388407837986365 0.370500352920358 0.350565497502244 0.328699981917322 0.305013806243476 0.279629530663228 0.252681452553248 0.224314696505011 0.194684223988818 0.163953769980789 0.132294714425090 0.099884896896362 0.066907383257053 0.033549193467415 -0.000000000000000 -0.033549193467415 -0.066907383257053 -0.099884896896363 -0.132294714425090 -0.163953769980789 -0.194684223988819 -0.224314696505012 -0.252681452553248 -0.279629530663229 -0.305013806243477 -0.328699981917323 -0.350565497502244 -0.370500352920359 -0.388407837986369 -0.404205163723220 -0.417823990600129 -0.429210849866547 -0.438327454963558 -0.445150900824454 -0.449673749722973 -0.451904003184288 -0.451864960333719 -0.449594963914940 -0.445147036056583 -0.438588406697116 -0.429999938386511 -0.419475451963221 -0.407120958350675 -0.393053802422825 -0.377401725548399 -0.360301854032936 -0.324700274064540 -0.245712978465218 -0.164855670374512 -0.082743722785734 -0.000002057234094 +-0.000002433915285 0.080990813340242 0.161367657725411 0.240516382961205 0.317834619523286 0.392733929037562 0.420396384068672 0.435071837003158 0.448100133519435 0.459357651386451 0.468731124121875 0.476118555537484 0.481430054351766 0.484588582406683 0.485530610672256 0.484206677913676 0.480581847626069 0.474636059606120 0.466364373321774 0.455777101055169 0.442899829623641 0.427773330322748 0.410453357577426 0.391010337626327 0.369528949393464 0.346107600514570 0.320857802276579 0.293903447991468 0.265380000054730 0.235433591627915 0.204220049529662 0.171903845514407 0.138656983659066 0.104657832060434 0.070089907467001 0.035140621824184 0.000000000000000 -0.035140621824181 -0.070089907466997 -0.104657832060431 -0.138656983659063 -0.171903845514411 -0.204220049529666 -0.235433591627912 -0.265380000054727 -0.293903447991467 -0.320857802276575 -0.346107600514573 -0.369528949393468 -0.391010337626324 -0.410453357577424 -0.427773330322746 -0.442899829623639 -0.455777101055170 -0.466364373321773 -0.474636059606119 -0.480581847626068 -0.484206677913676 -0.485530610672255 -0.484588582406681 -0.481430054351766 -0.476118555537484 -0.468731124121875 -0.459357651386451 -0.448100133519432 -0.435071837003155 -0.420396384068674 -0.392733929037568 -0.317834619523292 -0.240516382961211 -0.161367657725399 -0.080990813340248 0.000002433915285 0.080995676537711 0.161372507032411 0.240521209146823 0.317839413400584 0.392738681481107 0.420402427907900 0.435079449894544 0.448109233555941 0.459368145695422 0.468742909616800 0.476131519746757 0.481444076318012 0.484603533649756 0.485546356208477 0.484223077323484 0.480598756161894 0.474653329331950 0.466381854275681 0.455794642425884 0.442917280932144 0.427790542599825 0.410470184528169 0.391026636772650 0.369544583185874 0.346122437404715 0.320871717742322 0.293916325506690 0.265391731996361 0.235444080113310 0.204229207177925 0.171911596125796 0.138663262807287 0.104662587593345 0.070093099911815 0.035142224694107 -0.000000000000000 -0.035142224694107 -0.070093099911816 -0.104662587593346 -0.138663262807288 -0.171911596125796 -0.204229207177924 -0.235444080113310 -0.265391731996361 -0.293916325506692 -0.320871717742322 -0.346122437404714 -0.369544583185874 -0.391026636772652 -0.410470184528174 -0.427790542599825 -0.442917280932144 -0.455794642425884 -0.466381854275681 -0.474653329331950 -0.480598756161893 -0.484223077323485 -0.485546356208476 -0.484603533649756 -0.481444076318012 -0.476131519746756 -0.468742909616801 -0.459368145695422 -0.448109233555941 -0.435079449894544 -0.420402427907901 -0.392738681481107 -0.317839413400584 -0.240521209146823 -0.161372507032411 -0.080995676537710 -0.000002433915285 +-0.000002792072912 0.078955957236915 0.157313788117934 0.234474350208839 0.309850405117020 0.382868295657059 0.452972311728171 0.474372504303453 0.486334919262530 0.496476827894782 0.504689394233860 0.510874945818434 0.514947783986467 0.516834909614616 0.516476658639537 0.513827242372161 0.508855188328705 0.501543678047606 0.491890779134286 0.479909569569711 0.465628153128009 0.449089565567032 0.430351572077221 0.409486357292413 0.386580109975018 0.361732505281161 0.335056088283030 0.306675563169596 0.276726993257989 0.245356917620045 0.212721390757467 0.178984952339325 0.144319534543162 0.108903315011720 0.072919523847679 0.036555213415468 0.000000000000000 -0.036555213415464 -0.072919523847676 -0.108903315011716 -0.144319534543159 -0.178984952339329 -0.212721390757472 -0.245356917620042 -0.276726993257986 -0.306675563169593 -0.335056088283027 -0.361732505281163 -0.386580109975020 -0.409486357292411 -0.430351572077219 -0.449089565567031 -0.465628153128008 -0.479909569569712 -0.491890779134286 -0.501543678047606 -0.508855188328704 -0.513827242372159 -0.516476658639537 -0.516834909614615 -0.514947783986467 -0.510874945818434 -0.504689394233860 -0.496476827894782 -0.486334919262528 -0.474372504303451 -0.452972311728176 -0.382868295657065 -0.309850405117026 -0.234474350208845 -0.157313788117922 -0.078955957236921 0.000002792072912 0.078961536067863 0.157319351014391 0.234479886581532 0.309855904427132 0.382873747436324 0.452977705598834 0.474379202458543 0.486343077845697 0.496486357723254 0.504700196144738 0.510886911474100 0.514960796748822 0.516848845481454 0.516491387235795 0.513842627988444 0.508871090999067 0.501559954658311 0.491907284555035 0.479926157798627 0.465644678441607 0.449105883666340 0.430367541221259 0.409501839410339 0.386594971748385 0.361746619188066 0.335069333596052 0.306687826899965 0.276738171038680 0.245366914521061 0.212730122027106 0.178992344065686 0.144325524230850 0.108907852069383 0.072922569982552 0.036556742931944 -0.000000000000000 -0.036556742931944 -0.072922569982552 -0.108907852069385 -0.144325524230851 -0.178992344065686 -0.212730122027107 -0.245366914521062 -0.276738171038681 -0.306687826899966 -0.335069333596052 -0.361746619188067 -0.386594971748386 -0.409501839410340 -0.430367541221265 -0.449105883666341 -0.465644678441608 -0.479926157798627 -0.491907284555035 -0.501559954658311 -0.508871090999065 -0.513842627988444 -0.516491387235795 -0.516848845481454 -0.514960796748822 -0.510886911474100 -0.504700196144739 -0.496486357723254 -0.486343077845697 -0.474379202458543 -0.452977705598834 -0.382873747436324 -0.309855904427132 -0.234479886581532 -0.157319351014391 -0.078961536067863 -0.000002792072912 +-0.000003128981177 0.076650530407260 0.152720815136196 0.227628784457288 0.300804343578188 0.371690582427879 0.439748014078429 0.504458680565959 0.521524299549048 0.530539043826280 0.537588340845858 0.542579127520586 0.545430137602485 0.546072602560331 0.544450864551288 0.540522896651060 0.534260726199249 0.525650757841082 0.514693993597206 0.501406148064795 0.485817657639364 0.467973583441895 0.447933408433977 0.425770729998281 0.401572850047632 0.375440265496103 0.347486062675169 0.317835220000582 0.286623823886286 0.253998203554571 0.220113991002616 0.185135112949111 0.149232722097062 0.112584075506036 0.075371368265796 0.037780530999811 0.000000000000000 -0.037780530999807 -0.075371368265792 -0.112584075506032 -0.149232722097058 -0.185135112949116 -0.220113991002621 -0.253998203554568 -0.286623823886282 -0.317835220000580 -0.347486062675166 -0.375440265496106 -0.401572850047636 -0.425770729998277 -0.447933408433972 -0.467973583441892 -0.485817657639362 -0.501406148064796 -0.514693993597205 -0.525650757841081 -0.534260726199250 -0.540522896651059 -0.544450864551288 -0.546072602560329 -0.545430137602485 -0.542579127520586 -0.537588340845859 -0.530539043826281 -0.521524299549047 -0.504458680565948 -0.439748014078433 -0.371690582427884 -0.300804343578194 -0.227628784457294 -0.152720815136184 -0.076650530407266 0.000003128981177 0.076656782413415 0.152727049285108 0.227634988881918 0.300810506468043 0.371696692051532 0.439754058805881 0.504464648890728 0.521531508578689 0.530547596040612 0.537598141308259 0.542590072362236 0.545442114868601 0.546085493116757 0.544464543044454 0.540537232513849 0.534275584695088 0.525666001138148 0.514709481864527 0.501421740581792 0.485833213910303 0.467988964306703 0.447948477166852 0.425785353385724 0.401586899437519 0.375453617809875 0.347498601375274 0.317846836005813 0.286634416427935 0.254007680966853 0.220122271441374 0.185142125033166 0.149238405467386 0.112588381298456 0.075374259493545 0.037781982843025 -0.000000000000000 -0.037781982843026 -0.075374259493545 -0.112588381298456 -0.149238405467387 -0.185142125033166 -0.220122271441374 -0.254007680966854 -0.286634416427935 -0.317846836005813 -0.347498601375274 -0.375453617809875 -0.401586899437520 -0.425785353385724 -0.447948477166863 -0.467988964306704 -0.485833213910303 -0.501421740581793 -0.514709481864528 -0.525666001138148 -0.534275584695088 -0.540537232513848 -0.544464543044454 -0.546085493116757 -0.545442114868601 -0.542590072362236 -0.537598141308260 -0.530547596040612 -0.521531508578689 -0.504464648890728 -0.439754058805881 -0.371696692051533 -0.300810506468043 -0.227634988881918 -0.152727049285108 -0.076656782413415 -0.000003128981177 +-0.000003442076006 0.074092078541504 0.147623694077901 0.220031784595388 0.290765280897264 0.359285858496984 0.425072034592362 0.487623136864247 0.546463113894793 0.561285065150371 0.567177583109220 0.570989812677669 0.572645126083049 0.572079144746297 0.569240327809230 0.564090470702027 0.556605109754217 0.546773829553061 0.534600470479503 0.520103234598073 0.503314688837600 0.484281665168821 0.463065058256804 0.439739521834853 0.414393065806488 0.387126556827188 0.358053125842441 0.327297486757553 0.294995171082665 0.261291684027777 0.226341588113464 0.190307520907957 0.153359153996815 0.115672100733516 0.077426780704864 0.038807249170529 0.000000000000000 -0.038807249170525 -0.077426780704861 -0.115672100733513 -0.153359153996810 -0.190307520907961 -0.226341588113469 -0.261291684027776 -0.294995171082662 -0.327297486757551 -0.358053125842439 -0.387126556827192 -0.414393065806492 -0.439739521834850 -0.463065058256802 -0.484281665168818 -0.503314688837598 -0.520103234598075 -0.534600470479502 -0.546773829553061 -0.556605109754216 -0.564090470702027 -0.569240327809228 -0.572079144746299 -0.572645126083048 -0.570989812677670 -0.567177583109220 -0.561285065150371 -0.546463113894785 -0.487623136864238 -0.425072034592367 -0.359285858496989 -0.290765280897269 -0.220031784595393 -0.147623694077890 -0.074092078541510 0.000003442076006 0.074098956141324 0.147630552033632 0.220038609852537 0.290772060463550 0.359292579467100 0.425078684172579 0.487629702396708 0.546469582881636 0.561292634057154 0.567186371880339 0.570999722213907 0.572656049441323 0.572090968013581 0.569252931028084 0.564103728840609 0.556618893713273 0.546788007202116 0.534614907714287 0.520117796411008 0.503329240393135 0.484296072875321 0.463079190826747 0.439753251325195 0.414406268631182 0.387139114734112 0.358064926847181 0.327308426026939 0.295005151761191 0.261300618000598 0.226349396700178 0.190314135481736 0.153364516524201 0.115676164230764 0.077429509607244 0.038808619611808 -0.000000000000000 -0.038808619611809 -0.077429509607244 -0.115676164230765 -0.153364516524202 -0.190314135481736 -0.226349396700179 -0.261300618000600 -0.295005151761191 -0.327308426026940 -0.358064926847181 -0.387139114734112 -0.414406268631181 -0.439753251325195 -0.463079190826753 -0.484296072875322 -0.503329240393136 -0.520117796411009 -0.534614907714288 -0.546788007202117 -0.556618893713274 -0.564103728840610 -0.569252931028084 -0.572090968013581 -0.572656049441324 -0.570999722213907 -0.567186371880340 -0.561292634057154 -0.546469582881636 -0.487629702396709 -0.425078684172579 -0.359292579467100 -0.290772060463550 -0.220038609852536 -0.147630552033632 -0.074098956141324 -0.000003442076006 +-0.000003728974559 0.071300073003182 0.142061217112030 0.211741168379281 0.279809620403001 0.345748531303665 0.409056066335459 0.469250417151349 0.525873468655104 0.578494285533294 0.593231929023845 0.595890778820801 0.596385626932960 0.594656610683307 0.590656385629678 0.584350601056045 0.575718284742849 0.564752133853355 0.551458709472248 0.535858533051419 0.517986083750314 0.497889696398779 0.475631360553816 0.451286421861671 0.424943187668603 0.396702439541012 0.366676856053579 0.334990349877018 0.301777323840207 0.267181851249341 0.231356786315674 0.194462811068107 0.156667425604051 0.118143888957576 0.079070118235129 0.039627553982394 0.000000000000000 -0.039627553982390 -0.079070118235125 -0.118143888957572 -0.156667425604049 -0.194462811068112 -0.231356786315679 -0.267181851249338 -0.301777323840204 -0.334990349877014 -0.366676856053576 -0.396702439541017 -0.424943187668607 -0.451286421861668 -0.475631360553812 -0.497889696398777 -0.517986083750312 -0.535858533051421 -0.551458709472247 -0.564752133853354 -0.575718284742846 -0.584350601056043 -0.590656385629679 -0.594656610683306 -0.596385626932960 -0.595890778820800 -0.593231929023846 -0.578494285533298 -0.525873468655096 -0.469250417151340 -0.409056066335464 -0.345748531303670 -0.279809620403006 -0.211741168379286 -0.142061217112020 -0.071300073003188 0.000003728974559 0.071307523853980 0.142068646681395 0.211748562524621 0.279816965049124 0.345755812469606 0.409063270161119 0.469257529923835 0.525880476834852 0.578501175779846 0.593239703560460 0.595899646439526 0.596395485992672 0.594667352805430 0.590667896586493 0.584362761701838 0.575730971980735 0.564765221630251 0.551472069794370 0.535872037012425 0.517999602564184 0.497903102429486 0.475644528333807 0.451299229091385 0.424955516189264 0.396714176273287 0.366687893894816 0.335000588550221 0.301786670688175 0.267190221967871 0.231364105620262 0.194469013288934 0.156672455204740 0.118147700973738 0.079072678629290 0.039628839912583 -0.000000000000000 -0.039628839912583 -0.079072678629291 -0.118147700973740 -0.156672455204741 -0.194469013288935 -0.231364105620262 -0.267190221967872 -0.301786670688176 -0.335000588550223 -0.366687893894816 -0.396714176273288 -0.424955516189264 -0.451299229091384 -0.475644528333813 -0.497903102429487 -0.517999602564185 -0.535872037012426 -0.551472069794369 -0.564765221630252 -0.575730971980733 -0.584362761701839 -0.590667896586493 -0.594667352805429 -0.596395485992672 -0.595899646439527 -0.593239703560461 -0.578501175779846 -0.525880476834852 -0.469257529923836 -0.409063270161119 -0.345755812469606 -0.279816965049124 -0.211748562524621 -0.142068646681395 -0.071307523853980 -0.000003728974559 +-0.000003987493363 0.068295762640300 0.136075718047008 0.202820032404384 0.268020741286969 0.331181628081927 0.391822000496862 0.449480348918030 0.503717858776721 0.554121750192541 0.600308419476994 0.617092514562014 0.616470960605844 0.613633172222925 0.608536048881253 0.601149095887716 0.591454788362626 0.579448844990642 0.565140409197417 0.548552136090295 0.529720184203383 0.508694111797354 0.485536678176789 0.460323551197320 0.433142922836268 0.404095035388046 0.373291621514524 0.340855262025558 0.306918665881247 0.271623877490127 0.235121416922667 0.197569359162416 0.159132358974260 0.119980628377328 0.080288874065712 0.040235202420474 0.000000000000000 -0.040235202420470 -0.080288874065708 -0.119980628377324 -0.159132358974258 -0.197569359162420 -0.235121416922672 -0.271623877490123 -0.306918665881245 -0.340855262025556 -0.373291621514521 -0.404095035388050 -0.433142922836269 -0.460323551197317 -0.485536678176787 -0.508694111797352 -0.529720184203381 -0.548552136090298 -0.565140409197416 -0.579448844990641 -0.591454788362625 -0.601149095887715 -0.608536048881253 -0.613633172222925 -0.616470960605843 -0.617092514562013 -0.600308419476997 -0.554121750192545 -0.503717858776713 -0.449480348918022 -0.391822000496866 -0.331181628081931 -0.268020741286973 -0.202820032404389 -0.136075718046998 -0.068295762640304 0.000003987493363 0.068303730036601 0.136083662686498 0.202827939164003 0.268028595115737 0.331189414029620 0.391829703742501 0.449487954798049 0.503725352812895 0.554129118119558 0.600315647269564 0.617100341580752 0.616479753076224 0.613642827572039 0.608546458901075 0.601160147624727 0.591466365041669 0.579460826965818 0.565152674922713 0.548564563102397 0.529732650109118 0.508706495258139 0.485548859882449 0.460335414821840 0.433154355968039 0.404105930427512 0.373301876532253 0.340864781574204 0.306927361755062 0.271631669426244 0.235128233238776 0.197575137325868 0.159137046098256 0.119984181640411 0.080291261051254 0.040236401373595 -0.000000000000000 -0.040236401373596 -0.080291261051254 -0.119984181640412 -0.159137046098256 -0.197575137325869 -0.235128233238776 -0.271631669426244 -0.306927361755063 -0.340864781574204 -0.373301876532254 -0.404105930427513 -0.433154355968039 -0.460335414821840 -0.485548859882455 -0.508706495258140 -0.529732650109120 -0.548564563102397 -0.565152674922715 -0.579460826965818 -0.591466365041666 -0.601160147624727 -0.608546458901075 -0.613642827572039 -0.616479753076224 -0.617100341580752 -0.600315647269574 -0.554129118119558 -0.503725352812895 -0.449487954798050 -0.391829703742501 -0.331189414029620 -0.268028595115737 -0.202827939164003 -0.136083662686498 -0.068303730036601 -0.000003987493363 +-0.000004215664936 0.065102012068770 0.129712750144863 0.193336271902193 0.255488364037560 0.315696011761021 0.373500998723813 0.428463394321041 0.480164901828740 0.528212041893954 0.572239147149599 0.611911145163135 0.632748265584595 0.628864406273479 0.622743242530573 0.614358108508164 0.603694856319046 0.590752112119049 0.575541443658872 0.558087437730967 0.538427686607119 0.516612683239482 0.492705625677620 0.466782131830789 0.438929866373723 0.409248082250123 0.377847079866014 0.344847587680389 0.310380068488428 0.274583956248269 0.237606828822378 0.199603522484091 0.160735194476115 0.121168340296732 0.081073772728838 0.040625569913246 0.000000000000000 -0.040625569913243 -0.081073772728835 -0.121168340296728 -0.160735194476111 -0.199603522484096 -0.237606828822383 -0.274583956248266 -0.310380068488423 -0.344847587680385 -0.377847079866011 -0.409248082250127 -0.438929866373728 -0.466782131830787 -0.492705625677619 -0.516612683239478 -0.538427686607117 -0.558087437730968 -0.575541443658870 -0.590752112119049 -0.603694856319045 -0.614358108508164 -0.622743242530574 -0.628864406273480 -0.632748265584593 -0.611911145163137 -0.572239147149602 -0.528212041893958 -0.480164901828733 -0.428463394321033 -0.373500998723818 -0.315696011761026 -0.255488364037565 -0.193336271902198 -0.129712750144853 -0.065102012068774 0.000004215664936 0.065110435373879 0.129721149390974 0.193344631100879 0.255496667276595 0.315704243234705 0.373509142763082 0.428471435423253 0.480172824687200 0.528219831427061 0.572246788529513 0.611918623844065 0.632755997292263 0.628872977492733 0.622752551317241 0.614368048359860 0.603705317053592 0.590762980778762 0.575552605433718 0.558098776893420 0.538439087451514 0.516624031018588 0.492716807529190 0.466793037686956 0.438940389846197 0.409258121484405 0.377856538357992 0.344856375049070 0.310388101198794 0.274591158278731 0.237613132271704 0.199608868113080 0.160739532179886 0.121171629504010 0.081075982725103 0.040626680085275 -0.000000000000000 -0.040626680085275 -0.081075982725103 -0.121171629504012 -0.160739532179886 -0.199608868113080 -0.237613132271704 -0.274591158278731 -0.310388101198794 -0.344856375049070 -0.377856538357993 -0.409258121484406 -0.438940389846197 -0.466793037686956 -0.492716807529197 -0.516624031018589 -0.538439087451515 -0.558098776893422 -0.575552605433718 -0.590762980778763 -0.603705317053589 -0.614368048359860 -0.622752551317242 -0.628872977492733 -0.632755997292263 -0.611918623844066 -0.572246788529524 -0.528219831427061 -0.480172824687200 -0.428471435423253 -0.373509142763082 -0.315704243234705 -0.255496667276595 -0.193344631100879 -0.129721149390974 -0.065110435373878 -0.000004215664936 +-0.000004411752752 0.061743127658882 0.123020739433397 0.183362064016586 0.242307867612904 0.299409537231627 0.354232494902337 0.406359505075254 0.455393850035207 0.500962349162402 0.542718199061632 0.580343612944704 0.613552239178982 0.640234393946970 0.633169841255427 0.623877110355527 0.612345334304201 0.598575910550633 0.582582654704039 0.564391868570374 0.544042321610493 0.521585145615118 0.497083643037097 0.470613010063659 0.442259976146393 0.412122362329124 0.380308561319332 0.346936942832649 0.312135188297856 0.276039559537076 0.238794106529514 0.200549819822000 0.161463733563638 0.121697985510921 0.081418840671746 0.040795685528383 0.000000000000000 -0.040795685528379 -0.081418840671741 -0.121697985510918 -0.161463733563633 -0.200549819822006 -0.238794106529520 -0.276039559537074 -0.312135188297853 -0.346936942832646 -0.380308561319329 -0.412122362329129 -0.442259976146397 -0.470613010063654 -0.497083643037094 -0.521585145615116 -0.544042321610491 -0.564391868570377 -0.582582654704038 -0.598575910550631 -0.612345334304200 -0.623877110355527 -0.633169841255427 -0.640234393946970 -0.613552239178984 -0.580343612944707 -0.542718199061636 -0.500962349162407 -0.455393850035200 -0.406359505075246 -0.354232494902341 -0.299409537231631 -0.242307867612908 -0.183362064016591 -0.123020739433388 -0.061743127658887 0.000004411752752 0.061751942766361 0.123029529362795 0.183370812035788 0.242316557069542 0.299418151584816 0.354241017754178 0.406367920202015 0.455402141418216 0.500970501018551 0.542726195873377 0.580351439489672 0.613559880558898 0.640241891930395 0.633178056893831 0.623885943807492 0.612354682201608 0.598585666854142 0.582592711576542 0.564402117261633 0.544052653346106 0.521595452482959 0.497093818864312 0.470622951277507 0.442269582612217 0.412131538159046 0.380317215645356 0.346944990538289 0.312142550702558 0.276046165028184 0.238799891136977 0.200554727731284 0.161467717562944 0.121701007369294 0.081420871445070 0.040796705790966 -0.000000000000000 -0.040796705790966 -0.081420871445070 -0.121701007369296 -0.161467717562944 -0.200554727731284 -0.238799891136978 -0.276046165028185 -0.312142550702559 -0.346944990538290 -0.380317215645356 -0.412131538159047 -0.442269582612218 -0.470622951277509 -0.497093818864319 -0.521595452482960 -0.544052653346107 -0.564402117261634 -0.582592711576541 -0.598585666854142 -0.612354682201606 -0.623885943807493 -0.633178056893832 -0.640241891930395 -0.613559880558898 -0.580351439489672 -0.542726195873386 -0.500970501018551 -0.455402141418216 -0.406367920202015 -0.354241017754178 -0.299418151584816 -0.242316557069543 -0.183370812035787 -0.123029529362795 -0.061751942766360 -0.000004411752752 +-0.000004574264467 0.058244672549145 0.116050616154867 0.172973318492158 0.228579563549385 0.282446154398946 0.334163133981144 0.383336905124511 0.429593226057430 0.472580058613375 0.511970247453264 0.547464009914291 0.578791217536163 0.605713451900829 0.628025819139559 0.629633656078019 0.617340386957327 0.602860696455189 0.586210454465270 0.567417448083115 0.546521358450925 0.523573655483135 0.498637410899596 0.471787030599430 0.443107908008135 0.412696000618114 0.380657332514338 0.347107426228047 0.312170667788012 0.275979609336606 0.238674214143833 0.200401049282013 0.161312431614464 0.121565533100009 0.081321451719032 0.040744254583330 0.000000000000000 -0.040744254583326 -0.081321451719028 -0.121565533100008 -0.161312431614461 -0.200401049282020 -0.238674214143839 -0.275979609336602 -0.312170667788009 -0.347107426228045 -0.380657332514335 -0.412696000618117 -0.443107908008141 -0.471787030599429 -0.498637410899593 -0.523573655483132 -0.546521358450923 -0.567417448083118 -0.586210454465269 -0.602860696455187 -0.617340386957326 -0.629633656078018 -0.628025819139556 -0.605713451900826 -0.578791217536166 -0.547464009914293 -0.511970247453267 -0.472580058613379 -0.429593226057424 -0.383336905124504 -0.334163133981148 -0.282446154398950 -0.228579563549389 -0.172973318492162 -0.116050616154859 -0.058244672549149 0.000004574264467 0.058253812370702 0.116059729870882 0.172982388754167 0.228588573091615 0.282455086071211 0.334171970781510 0.383345630231626 0.429601822862558 0.472588510752016 0.511978538836273 0.547472124758562 0.578799140394626 0.605721167691873 0.628033313175734 0.629641397036212 0.617348633594319 0.602869349827454 0.586219413892509 0.567426611980769 0.546530625166872 0.523582924132080 0.498646582188642 0.471796007638507 0.443116597098938 0.412704312015526 0.380665181154394 0.347114732416858 0.312177357846259 0.275985616194681 0.238679477883053 0.200405517617663 0.161316060316975 0.121568286351058 0.081323302399748 0.040745184492386 -0.000000000000000 -0.040745184492386 -0.081323302399749 -0.121568286351060 -0.161316060316976 -0.200405517617663 -0.238679477883052 -0.275985616194682 -0.312177357846259 -0.347114732416859 -0.380665181154395 -0.412704312015526 -0.443116597098938 -0.471796007638508 -0.498646582188649 -0.523582924132081 -0.546530625166873 -0.567426611980769 -0.586219413892508 -0.602869349827456 -0.617348633594316 -0.629641397036211 -0.628033313175734 -0.605721167691873 -0.578799140394625 -0.547472124758562 -0.511978538836282 -0.472588510752016 -0.429601822862557 -0.383345630231626 -0.334171970781510 -0.282455086071211 -0.228588573091615 -0.172982388754167 -0.116059729870882 -0.058253812370702 -0.000004574264467 +-0.000004701963267 0.054633272095369 0.108855427156101 0.162249099955247 0.214407932530307 0.264934964849110 0.313445655915061 0.359570810355870 0.402959388222726 0.443281176615651 0.480229302802364 0.513522569704210 0.542907595974867 0.568160744384376 0.589089823832441 0.605535552037588 0.617372767770263 0.603573860024759 0.586397233195855 0.567141149782201 0.545845930161174 0.522563079082740 0.497355104153494 0.470295258432933 0.441467208685488 0.410964631383342 0.378890739091641 0.345357740384996 0.310486236938554 0.274404561904078 0.237248064118774 0.199158343097766 0.160282440127789 0.120771991106817 0.080782347059432 0.040471668498636 0.000000000000000 -0.040471668498633 -0.080782347059428 -0.120771991106813 -0.160282440127786 -0.199158343097770 -0.237248064118784 -0.274404561904075 -0.310486236938550 -0.345357740384994 -0.378890739091638 -0.410964631383346 -0.441467208685492 -0.470295258432930 -0.497355104153491 -0.522563079082738 -0.545845930161170 -0.567141149782202 -0.586397233195851 -0.603573860024757 -0.617372767770264 -0.605535552037588 -0.589089823832439 -0.568160744384371 -0.542907595974867 -0.513522569704212 -0.480229302802366 -0.443281176615654 -0.402959388222720 -0.359570810355863 -0.313445655915065 -0.264934964849114 -0.214407932530311 -0.162249099955251 -0.108855427156093 -0.054633272095373 0.000004701963267 0.054642667071443 0.108864795297850 0.162258423429893 0.214417193590073 0.264944145865033 0.313454739410565 0.359579779040004 0.402968225023093 0.443289864710906 0.480237825654207 0.513530911088918 0.542915740014137 0.568168675575569 0.589097527078085 0.605543012674115 0.617379971595928 0.603581428284717 0.586405110987131 0.567149242819778 0.545854144052016 0.522571320106635 0.497363280035703 0.470303279102736 0.441474987014665 0.410972083898946 0.378897786657472 0.345364308846574 0.310492257726521 0.274409972591402 0.237252808927495 0.199162373351270 0.160285714645195 0.120774476536397 0.080784018148488 0.040472508297724 -0.000000000000000 -0.040472508297723 -0.080784018148488 -0.120774476536398 -0.160285714645196 -0.199162373351271 -0.237252808927496 -0.274409972591402 -0.310492257726521 -0.345364308846575 -0.378897786657473 -0.410972083898946 -0.441474987014665 -0.470303279102738 -0.497363280035711 -0.522571320106637 -0.545854144052018 -0.567149242819779 -0.586405110987132 -0.603581428284718 -0.617379971595930 -0.605543012674116 -0.589097527078085 -0.568168675575569 -0.542915740014137 -0.513530911088918 -0.480237825654214 -0.443289864710907 -0.402968225023093 -0.359579779040004 -0.313454739410565 -0.264944145865032 -0.214417193590073 -0.162258423429893 -0.108864795297850 -0.054642667071443 -0.000004701963267 +-0.000004793877287 0.050936411235629 0.101489932169953 0.151271026184381 0.199900829224791 0.247009239308139 0.292237733221727 0.335242095100878 0.375695036118971 0.413288685352383 0.447736932863428 0.478777607168863 0.506174470522294 0.529719016825061 0.549232058482452 0.564565090128321 0.575601418839334 0.582257052237218 0.583141569396870 0.563565076464532 0.542021177158355 0.518561107510544 0.493246481927408 0.466149046851112 0.437350364890974 0.406941431390110 0.375022225893888 0.341701201469253 0.307094715285331 0.271326404301497 0.234526510317171 0.196831159013687 0.158381597960749 0.119323398865068 0.079805629604924 0.039980001819002 0.000000000000000 -0.039980001818998 -0.079805629604919 -0.119323398865063 -0.158381597960746 -0.196831159013691 -0.234526510317176 -0.271326404301495 -0.307094715285327 -0.341701201469250 -0.375022225893885 -0.406941431390115 -0.437350364890978 -0.466149046851109 -0.493246481927404 -0.518561107510540 -0.542021177158353 -0.563565076464536 -0.583141569396869 -0.582257052237219 -0.575601418839334 -0.564565090128323 -0.549232058482451 -0.529719016825057 -0.506174470522297 -0.478777607168865 -0.447736932863431 -0.413288685352385 -0.375695036118964 -0.335242095100872 -0.292237733221731 -0.247009239308142 -0.199900829224795 -0.151271026184385 -0.101489932169945 -0.050936411235633 0.000004793877287 0.050945989864781 0.101499483440222 0.151280531914392 0.199910271319836 0.247018599794642 0.292246994281482 0.335251239104931 0.375704045661190 0.413297543282601 0.447745622320055 0.478786111611034 0.506182773761318 0.529727103055250 0.549239912311211 0.564572696605442 0.575608763485446 0.582264121071376 0.583148389593393 0.563572120725455 0.542028358431294 0.518568339324079 0.493253679109752 0.466156126235686 0.437357246003375 0.406948037111218 0.375028483093896 0.341707041607750 0.307100074972744 0.271331225817574 0.234530742082510 0.196834756010610 0.158384522100303 0.119325619297308 0.079807122970068 0.039980752437472 -0.000000000000000 -0.039980752437473 -0.079807122970068 -0.119325619297310 -0.158384522100303 -0.196834756010611 -0.234530742082511 -0.271331225817576 -0.307100074972746 -0.341707041607752 -0.375028483093896 -0.406948037111219 -0.437357246003375 -0.466156126235686 -0.493253679109760 -0.518568339324080 -0.542028358431294 -0.563572120725455 -0.583148389593392 -0.582264121071376 -0.575608763485448 -0.564572696605442 -0.549239912311211 -0.529727103055251 -0.506182773761319 -0.478786111611034 -0.447745622320063 -0.413297543282601 -0.375704045661190 -0.335251239104931 -0.292246994281483 -0.247018599794643 -0.199910271319836 -0.151280531914393 -0.101499483440222 -0.050945989864781 -0.000004793877287 +-0.000004849307006 0.047182225313296 0.094010187060674 0.140122646949697 0.185168661448619 0.228805403371247 0.270700770998532 0.310535915572708 0.348007667928336 0.382830845792044 0.414740424191125 0.443493552452726 0.468871402443210 0.490680833981361 0.508755864750680 0.522958933523839 0.533181947085416 0.539347102885159 0.541407481160948 0.539347402024986 0.533182544795644 0.511598198186663 0.486342813317327 0.459379951027655 0.430788708291690 0.400657019619644 0.369081234642386 0.336165637949846 0.302021914355983 0.266768563166861 0.230530265406762 0.193437208305847 0.155624371669994 0.117230781036406 0.078398732765096 0.039272996424731 0.000000000000000 -0.039272996424726 -0.078398732765091 -0.117230781036400 -0.155624371669990 -0.193437208305852 -0.230530265406767 -0.266768563166857 -0.302021914355981 -0.336165637949844 -0.369081234642384 -0.400657019619649 -0.430788708291693 -0.459379951027652 -0.486342813317324 -0.511598198186659 -0.533182544795645 -0.539347402024986 -0.541407481160948 -0.539347102885159 -0.533181947085416 -0.522958933523839 -0.508755864750678 -0.490680833981357 -0.468871402443211 -0.443493552452727 -0.414740424191126 -0.382830845792046 -0.348007667928331 -0.310535915572703 -0.270700770998534 -0.228805403371251 -0.185168661448622 -0.140122646949701 -0.094010187060667 -0.047182225313299 0.000004849307006 0.047191914696373 0.094019848768528 0.140132262590729 0.185178212718898 0.228814872089379 0.270710139140282 0.310545165305288 0.348016781644354 0.382839806143028 0.414749214120524 0.443502155228419 0.468879801689325 0.490689013709450 0.508763809390174 0.522966627951662 0.533189376654786 0.539354253453468 0.541414339116682 0.539353954313640 0.533188778944563 0.511604446885234 0.486349055955284 0.459386111374795 0.430794712560522 0.400662797078189 0.369086718200133 0.336170764712386 0.302026626143945 0.266772806995141 0.230533993920406 0.193440380169094 0.155626951905532 0.117232741312230 0.078400051626660 0.039273659470653 -0.000000000000000 -0.039273659470654 -0.078400051626661 -0.117232741312230 -0.155626951905533 -0.193440380169094 -0.230533993920406 -0.266772806995141 -0.302026626143944 -0.336170764712387 -0.369086718200133 -0.400662797078190 -0.430794712560522 -0.459386111374795 -0.486349055955292 -0.511604446885235 -0.533188778944565 -0.539353954313641 -0.541414339116683 -0.539354253453468 -0.533189376654786 -0.522966627951663 -0.508763809390174 -0.490689013709451 -0.468879801689326 -0.443502155228419 -0.414749214120531 -0.382839806143028 -0.348016781644353 -0.310545165305288 -0.270710139140282 -0.228814872089379 -0.185178212718898 -0.140132262590729 -0.094019848768529 -0.047191914696373 -0.000004849307006 +-0.000004867830571 0.043399285950077 0.086473117204943 0.128888808148750 0.170323549894098 0.210461999221697 0.248998678532371 0.285640300715575 0.320108001240853 0.352139460484643 0.381490900140292 0.407938938517290 0.431282290609913 0.451343299996629 0.467969290911630 0.481033730198393 0.490437190302145 0.496108105972191 0.498003318915267 0.496108406254684 0.490437790295527 0.481034628760545 0.467970486332080 0.450039487869071 0.421832177056396 0.392159224240151 0.361112979867827 0.328793178807627 0.295306441228623 0.260765726423304 0.225289743224326 0.189002320988462 0.152031745412464 0.114510063706064 0.076572363874403 0.038356033053774 0.000000000000000 -0.038356033053773 -0.076572363874402 -0.114510063706059 -0.152031745412462 -0.189002320988469 -0.225289743224332 -0.260765726423299 -0.295306441228621 -0.328793178807621 -0.361112979867824 -0.392159224240158 -0.421832177056401 -0.450039487869068 -0.467970486332078 -0.481034628760544 -0.490437790295527 -0.496108406254684 -0.498003318915266 -0.496108105972192 -0.490437190302146 -0.481033730198394 -0.467969290911627 -0.451343299996626 -0.431282290609915 -0.407938938517292 -0.381490900140294 -0.352139460484645 -0.320108001240848 -0.285640300715570 -0.248998678532373 -0.210461999221700 -0.170323549894101 -0.128888808148754 -0.086473117204936 -0.043399285950080 0.000004867830571 0.043409012345023 0.086482815818951 0.128898460519968 0.170333137648677 0.210471504108794 0.249008082458901 0.285649585780630 0.320117149769783 0.352148455062711 0.381499723645795 0.407947574154189 0.431290721939782 0.451351510969953 0.467977265898356 0.481041454017683 0.490444648251262 0.496115283854510 0.498010203067280 0.496114983572016 0.490444048257881 0.481040555455533 0.467976070477901 0.450044758421002 0.421837331528176 0.392164198271640 0.361117712394758 0.328797612570559 0.295310523249140 0.260769408443789 0.225292982108011 0.189005079076460 0.152033990835151 0.114511770646340 0.076573512780799 0.038356610801701 -0.000000000000000 -0.038356610801701 -0.076573512780799 -0.114511770646342 -0.152033990835151 -0.189005079076461 -0.225292982108011 -0.260769408443790 -0.295310523249140 -0.328797612570560 -0.361117712394759 -0.392164198271639 -0.421837331528176 -0.450044758421003 -0.467976070477905 -0.481040555455532 -0.490444048257881 -0.496114983572017 -0.498010203067281 -0.496115283854510 -0.490444648251264 -0.481041454017683 -0.467977265898356 -0.451351510969953 -0.431290721939782 -0.407947574154190 -0.381499723645802 -0.352148455062712 -0.320117149769783 -0.285649585780630 -0.249008082458901 -0.210471504108794 -0.170333137648677 -0.128898460519969 -0.086482815818951 -0.043409012345023 -0.000004867830571 +-0.000004849307006 0.039616383598726 0.078936084255364 0.117655006077988 0.155478474823875 0.192118631241108 0.227296621850985 0.260744721190911 0.292208369366277 0.321448109404319 0.348241409665555 0.372384357443053 0.393693210860363 0.412005797257119 0.427182747419799 0.439108556264402 0.447692461898612 0.452869136373222 0.454599182865854 0.452869435513050 0.447693059608839 0.439109451407254 0.427183938291316 0.412007281590410 0.393694985829917 0.372386419670113 0.348243755224562 0.319639932908267 0.286999404708663 0.253363579283053 0.218844827307976 0.183560249231871 0.147631061243253 0.111181953175739 0.074340422702907 0.037236090351066 0.000000000000000 -0.037236090351063 -0.074340422702904 -0.111181953175735 -0.147631061243250 -0.183560249231876 -0.218844827307980 -0.253363579283052 -0.286999404708659 -0.319639932908266 -0.348243755224561 -0.372386419670117 -0.393694985829919 -0.412007281590409 -0.427183938291315 -0.439109451407253 -0.447693059608838 -0.452869435513049 -0.454599182865855 -0.452869136373221 -0.447692461898612 -0.439108556264403 -0.427182747419798 -0.412005797257116 -0.393693210860364 -0.372384357443054 -0.348241409665556 -0.321448109404322 -0.292208369366273 -0.260744721190906 -0.227296621850988 -0.192118631241110 -0.155478474823877 -0.117655006077990 -0.078936084255358 -0.039616383598729 0.000004849307006 0.039626072981804 0.078945745963218 0.117664621719018 0.155488026094153 0.192128099959240 0.227305989992736 0.260753970923491 0.292217483082295 0.321457069755303 0.348250199594956 0.372392960218746 0.393701610106476 0.412013976985210 0.427190692059294 0.439116250692228 0.447699891467982 0.452876286941530 0.454606040821590 0.452875987801702 0.447699293757756 0.439115355549378 0.427189501187776 0.412012492651921 0.393699835136924 0.372390897991685 0.348247854035955 0.319643699322092 0.287002879886646 0.253366719651445 0.218847593909814 0.183562608052128 0.147632983492368 0.111183415529376 0.074341407496007 0.037236585724715 -0.000000000000000 -0.037236585724715 -0.074341407496008 -0.111183415529377 -0.147632983492368 -0.183562608052129 -0.218847593909815 -0.253366719651445 -0.287002879886645 -0.319643699322093 -0.348247854035954 -0.372390897991686 -0.393699835136924 -0.412012492651921 -0.427189501187780 -0.439115355549378 -0.447699293757757 -0.452875987801704 -0.454606040821591 -0.452876286941529 -0.447699891467984 -0.439116250692229 -0.427190692059294 -0.412013976985210 -0.393701610106476 -0.372392960218747 -0.348250199594961 -0.321457069755303 -0.292217483082294 -0.260753970923491 -0.227305989992736 -0.192128099959240 -0.155488026094153 -0.117664621719018 -0.078945745963218 -0.039626072981804 -0.000004849307006 +-0.000004793877287 0.035862308430318 0.071456449583670 0.106506736754325 0.140746416222938 0.173914903535844 0.205759766709784 0.236038647391268 0.264521105349441 0.290990372264747 0.315245001466024 0.337100401060438 0.356390238788369 0.372967707911324 0.386706644498765 0.397502487610628 0.405273075067951 0.409959268755312 0.411525404696189 0.409959564475839 0.405273665946086 0.397503372521601 0.386707821758096 0.372969175278030 0.356391993469239 0.337102439715334 0.315247320214256 0.290992966692444 0.264523970517953 0.236041777846591 0.205763156492919 0.173918546194146 0.140750304822406 0.106510863892785 0.071460807404870 0.035866888638902 -0.000002369568022 -0.035866888638900 -0.071460807404865 -0.106510863892782 -0.140750304822403 -0.173918546194150 -0.205763156492924 -0.236041777846589 -0.264523970517950 -0.290992966692441 -0.315247320214253 -0.337102439715335 -0.356391993469240 -0.372969175278027 -0.386707821758092 -0.397503372521600 -0.405273665946086 -0.409959564475842 -0.411525404696188 -0.409959268755314 -0.405273075067951 -0.397502487610629 -0.386706644498763 -0.372967707911321 -0.356390238788370 -0.337100401060439 -0.315245001466025 -0.290990372264749 -0.264521105349436 -0.236038647391263 -0.205759766709786 -0.173914903535846 -0.140746416222940 -0.106506736754328 -0.071456449583665 -0.035862308430320 0.000004793877287 0.035871887059471 0.071466000853940 0.106516242484334 0.140755858317980 0.173924264022349 0.205769027769540 0.236047791395321 0.264530114891660 0.290999230194965 0.315253690922651 0.337108905502608 0.356398542027394 0.372975794141513 0.386714498327523 0.397510094087747 0.405280419714063 0.409966337589471 0.411532184262463 0.409966041868943 0.405279828835930 0.397509209176773 0.386713321068190 0.372974326774807 0.356396787346525 0.337106866847711 0.315251372174424 0.290996635767269 0.264527249723148 0.236044660939998 0.205765637986405 0.173920621364044 0.140751969718511 0.106512115345874 0.071461643032740 0.035867306850886 0.000014452908236 -0.035867306850886 -0.071461643032741 -0.106512115345876 -0.140751969718512 -0.173920621364046 -0.205765637986405 -0.236044660939999 -0.264527249723150 -0.290996635767271 -0.315251372174425 -0.337106866847712 -0.356396787346526 -0.372974326774807 -0.386713321068195 -0.397509209176774 -0.405279828835931 -0.409966041868943 -0.411532184262463 -0.409966337589470 -0.405280419714065 -0.397510094087747 -0.386714498327523 -0.372975794141513 -0.356398542027394 -0.337108905502609 -0.315253690922656 -0.290999230194965 -0.264530114891661 -0.236047791395321 -0.205769027769540 -0.173924264022349 -0.140755858317980 -0.106516242484334 -0.071466000853940 -0.035871887059471 -0.000004793877287 +-0.000004701963267 0.032165631223655 0.064091137726041 0.095528845238825 0.126239493952700 0.155989357465454 0.184552021580701 0.211710107456195 0.237256925987537 0.260998050836442 0.282752798131873 0.302355601582553 0.319657272535550 0.334526135391006 0.346849029731892 0.356532171541952 0.363501866957470 0.367705073120724 0.369109801866799 0.367705363171341 0.363502446506573 0.356533039486341 0.346850184419378 0.334527574623581 0.319658993573552 0.302357601149890 0.282755072422258 0.261000595520631 0.237259736221570 0.211713177890638 0.184555346370812 0.155992930282301 0.126243307995232 0.095532893246788 0.064095411993814 0.032170123614935 0.000000000000000 -0.032170123614932 -0.064095411993812 -0.095532893246784 -0.126243307995230 -0.155992930282305 -0.184555346370817 -0.211713177890636 -0.237259736221568 -0.261000595520627 -0.282755072422256 -0.302357601149892 -0.319658993573553 -0.334527574623580 -0.346850184419376 -0.356533039486339 -0.363502446506573 -0.367705363171340 -0.369109801866797 -0.367705073120724 -0.363501866957469 -0.356532171541953 -0.346849029731888 -0.334526135391004 -0.319657272535552 -0.302355601582555 -0.282752798131874 -0.260998050836443 -0.237256925987534 -0.211710107456190 -0.184552021580703 -0.155989357465456 -0.126239493952703 -0.095528845238827 -0.064091137726036 -0.032165631223658 0.000004701963267 0.032175026199732 0.064100505867792 0.095538168713467 0.126248755012464 0.155998538481377 0.184561105076206 0.211719076140331 0.237265762787905 0.261006738931696 0.282761320983717 0.302363942967261 0.319665416574822 0.334534066582200 0.346856732977534 0.356539632178480 0.363509070783132 0.367712006422635 0.369116451447018 0.367711716372019 0.363508491234030 0.356538764234094 0.346855578290044 0.334532627349625 0.319663695536819 0.302361943399926 0.282759046693339 0.261004194247508 0.237262952553871 0.211716005705887 0.184557780286096 0.155994965664532 0.126244940969934 0.095534120705504 0.064096231600018 0.032170533808452 -0.000000000000000 -0.032170533808452 -0.064096231600018 -0.095534120705505 -0.126244940969934 -0.155994965664531 -0.184557780286098 -0.211716005705887 -0.237262952553873 -0.261004194247509 -0.282759046693339 -0.302361943399926 -0.319663695536819 -0.334532627349626 -0.346855578290048 -0.356538764234094 -0.363508491234031 -0.367711716372020 -0.369116451447021 -0.367712006422635 -0.363509070783133 -0.356539632178480 -0.346856732977535 -0.334534066582200 -0.319665416574822 -0.302363942967262 -0.282761320983722 -0.261006738931696 -0.237265762787905 -0.211719076140331 -0.184561105076206 -0.155998538481377 -0.126248755012464 -0.095538168713467 -0.064100505867792 -0.032175026199732 -0.000004701963267 +-0.000004574264467 0.028554485924396 0.056896203153009 0.084804879914552 0.112068114451159 0.138478417259274 0.163834790209756 0.187944256264573 0.210623328148073 0.231699404795334 0.251012084949805 0.268414387912910 0.283773872155062 0.296973643274702 0.307913243634240 0.316509416902213 0.322696741683031 0.326428129412018 0.327675182726458 0.326428411585260 0.322697305492385 0.316510261274434 0.307914366962018 0.296975043419717 0.283775546452058 0.268416333174771 0.251014297473616 0.231701880369428 0.210626062060047 0.187947243310276 0.163838024703177 0.138481893043372 0.112071824909585 0.084808817984233 0.056900361337599 0.028558856308561 0.000000000000000 -0.028558856308559 -0.056900361337597 -0.084808817984230 -0.112071824909584 -0.138481893043375 -0.163838024703181 -0.187947243310274 -0.210626062060045 -0.231701880369425 -0.251014297473615 -0.268416333174773 -0.283775546452061 -0.296975043419715 -0.307914366962017 -0.316510261274434 -0.322697305492385 -0.326428411585261 -0.327675182726459 -0.326428129412016 -0.322696741683031 -0.316509416902214 -0.307913243634239 -0.296973643274700 -0.283773872155064 -0.268414387912912 -0.251012084949807 -0.231699404795335 -0.210623328148069 -0.187944256264569 -0.163834790209758 -0.138478417259276 -0.112068114451161 -0.084804879914554 -0.056896203153005 -0.028554485924398 0.000004574264467 0.028563625745955 0.056905316869026 0.084813950176556 0.112077123993386 0.138487348931542 0.163843627010124 0.187952981371689 0.210631924953201 0.231707856933971 0.251020376332816 0.268422502757181 0.283781795013524 0.296981359065745 0.307920737670417 0.316516674918203 0.322703749862783 0.326434874415064 0.327681651713305 0.326434592241820 0.322703186053429 0.316515830545979 0.307919614342641 0.296979958920728 0.283780120716527 0.268420557495320 0.251018163809009 0.231705381359877 0.210629191041227 0.187949994325986 0.163840392516701 0.138483873147444 0.112073413534960 0.084810012106875 0.056901158684435 0.028559255361790 -0.000000000000000 -0.028559255361791 -0.056901158684436 -0.084810012106875 -0.112073413534960 -0.138483873147445 -0.163840392516701 -0.187949994325986 -0.210629191041227 -0.231705381359878 -0.251018163809009 -0.268420557495321 -0.283780120716526 -0.296979958920729 -0.307919614342643 -0.316515830545980 -0.322703186053431 -0.326434592241822 -0.327681651713305 -0.326434874415065 -0.322703749862784 -0.316516674918203 -0.307920737670418 -0.296981359065746 -0.283781795013524 -0.268422502757182 -0.251020376332820 -0.231707856933972 -0.210631924953201 -0.187952981371690 -0.163843627010124 -0.138487348931542 -0.112077123993386 -0.084813950176556 -0.056905316869026 -0.028563625745955 -0.000004574264467 +-0.000004411752752 0.025056355528737 0.049926403661096 0.074416456632932 0.098340130473232 0.121515351745669 0.143765743237087 0.164921966294184 0.184823009592413 0.203317414528800 0.220264427912700 0.235535073181799 0.249013131990789 0.260596028702230 0.270195611048087 0.277738821020619 0.283168250886786 0.286442580094511 0.287536889745728 0.286442852242874 0.283168794665460 0.277739635394492 0.270196694466950 0.260597379103737 0.249014746804372 0.235536949333569 0.220266561831299 0.203319802152186 0.184825646375610 0.164924847217925 0.143768862817373 0.121518704044202 0.098343709108726 0.074420254793243 0.049930414116208 0.025060570644525 0.000000000000000 -0.025060570644522 -0.049930414116205 -0.074420254793241 -0.098343709108722 -0.121518704044204 -0.143768862817376 -0.164924847217923 -0.184825646375608 -0.203319802152184 -0.220266561831297 -0.235536949333569 -0.249014746804373 -0.260597379103735 -0.270196694466949 -0.277739635394491 -0.283168794665460 -0.286442852242873 -0.287536889745728 -0.286442580094510 -0.283168250886785 -0.277738821020619 -0.270195611048085 -0.260596028702228 -0.249013131990789 -0.235535073181800 -0.220264427912702 -0.203317414528800 -0.184823009592410 -0.164921966294180 -0.143765743237089 -0.121515351745671 -0.098340130473234 -0.074416456632933 -0.049926403661092 -0.025056355528739 0.000004411752752 0.025065170636218 0.049935193590497 0.074425204652127 0.098348819929866 0.121523966098861 0.143774266088931 0.164930381420946 0.184831300975424 0.203325566384942 0.220272424724447 0.235542899726767 0.249020773370705 0.260603470371294 0.270202838840657 0.277745821178184 0.283175010084146 0.286449085465151 0.287543128906306 0.286448813316789 0.283174466305472 0.277745006804310 0.270201755421791 0.260602119969790 0.249019158557124 0.235541023575000 0.220270290805854 0.203323178761555 0.184828664192228 0.164927500497204 0.143771146508644 0.121520613800329 0.098345241294374 0.074421406491814 0.049931183135385 0.025060955520431 -0.000000000000000 -0.025060955520431 -0.049931183135385 -0.074421406491815 -0.098345241294375 -0.121520613800329 -0.143771146508644 -0.164927500497205 -0.184828664192228 -0.203323178761556 -0.220270290805855 -0.235541023575000 -0.249019158557124 -0.260602119969790 -0.270201755421794 -0.277745006804311 -0.283174466305472 -0.286448813316790 -0.287543128906306 -0.286449085465151 -0.283175010084147 -0.277745821178184 -0.270202838840657 -0.260603470371295 -0.249020773370704 -0.235542899726767 -0.220272424724451 -0.203325566384942 -0.184831300975424 -0.164930381420947 -0.143774266088931 -0.121523966098861 -0.098348819929866 -0.074425204652127 -0.049935193590497 -0.025065170636218 -0.000004411752752 +-0.000004215664936 0.021697862921219 0.043234783632917 0.064442637567841 0.085160020266180 0.105229260095780 0.124497618228183 0.142818451072945 0.160052326323429 0.176068084120288 0.190743835256563 0.203967888827404 0.215639602264498 0.225670147285902 0.233983185931947 0.240515451542161 0.245217230251655 0.248052739342459 0.249000399570376 0.248052999394727 0.245217749861167 0.240516229719810 0.233984221196427 0.225671437666528 0.215641145304956 0.203969681590434 0.190745874329538 0.176070365621712 0.160054845910334 0.142821203949157 0.124500599153445 0.105232463395731 0.085163439843162 0.064446266912490 0.043238615836565 0.021701890689053 0.000000000000000 -0.021701890689051 -0.043238615836563 -0.064446266912488 -0.085163439843159 -0.105232463395733 -0.124500599153448 -0.142821203949156 -0.160054845910332 -0.176070365621712 -0.190745874329537 -0.203969681590436 -0.215641145304957 -0.225671437666527 -0.233984221196425 -0.240516229719809 -0.245217749861166 -0.248052999394727 -0.249000399570374 -0.248052739342460 -0.245217230251655 -0.240515451542162 -0.233983185931947 -0.225670147285900 -0.215639602264498 -0.203967888827405 -0.190743835256565 -0.176068084120289 -0.160052326323426 -0.142818451072942 -0.124497618228184 -0.105229260095781 -0.085160020266181 -0.064442637567842 -0.043234783632913 -0.021697862921221 0.000004215664936 0.021706286226331 0.043243182879031 0.064450996766520 0.085168323505209 0.105237491569467 0.124505762267454 0.142826492175160 0.160060249181891 0.176075873653390 0.190751476636480 0.203975367508338 0.215646904010353 0.225677258197392 0.233990092473047 0.240522140565880 0.245223689025052 0.248058955570892 0.249006361420902 0.248058695518625 0.245223169415539 0.240521362388230 0.233989057208565 0.225675967816765 0.215645360969894 0.203973574745308 0.190749437563510 0.176073592151966 0.160057729594986 0.142823739298948 0.124502781342192 0.105234288269516 0.085164903928226 0.064447367421870 0.043239350675383 0.021702258458498 -0.000000000000000 -0.021702258458498 -0.043239350675383 -0.064447367421870 -0.085164903928226 -0.105234288269516 -0.124502781342192 -0.142823739298948 -0.160057729594987 -0.176073592151966 -0.190749437563511 -0.203973574745309 -0.215645360969894 -0.225675967816766 -0.233989057208568 -0.240521362388231 -0.245223169415540 -0.248058695518626 -0.249006361420902 -0.248058955570891 -0.245223689025054 -0.240522140565879 -0.233990092473048 -0.225677258197392 -0.215646904010353 -0.203975367508338 -0.190751476636485 -0.176075873653391 -0.160060249181891 -0.142826492175160 -0.124505762267454 -0.105237491569467 -0.085168323505209 -0.064450996766520 -0.043243182879031 -0.021706286226331 -0.000004215664936 +-0.000003987493363 0.018504568258496 0.036872270337393 0.054959329504716 0.072628092427039 0.089744089300865 0.106177057248764 0.121801931698148 0.136499798197734 0.150158797427793 0.162674976516515 0.173953080183435 0.183907275688878 0.192461806072102 0.199551566706601 0.205122600784643 0.209132509960108 0.211550777024385 0.212358998159574 0.211551023001404 0.209133001445913 0.205123336843663 0.199552545937709 0.192463026611272 0.183908735212746 0.173954775913714 0.162676905225289 0.150160955443652 0.136502181412770 0.121804535575780 0.106179876832361 0.089747119223189 0.072631326920465 0.054962762412198 0.036875895124193 0.018508378024631 0.000000000000000 -0.018508378024629 -0.036875895124191 -0.054962762412196 -0.072631326920463 -0.089747119223192 -0.106179876832362 -0.121804535575777 -0.136502181412769 -0.150160955443651 -0.162676905225287 -0.173954775913714 -0.183908735212746 -0.192463026611271 -0.199552545937707 -0.205123336843663 -0.209133001445912 -0.211551023001404 -0.212358998159573 -0.211550777024384 -0.209132509960108 -0.205122600784643 -0.199551566706599 -0.192461806072100 -0.183907275688878 -0.173953080183436 -0.162674976516515 -0.150158797427794 -0.136499798197732 -0.121801931698146 -0.106177057248765 -0.089744089300866 -0.072628092427040 -0.054959329504718 -0.036872270337390 -0.018504568258498 0.000003987493363 0.018512535654802 0.036880214976886 0.054967236264329 0.072635946255800 0.089751875248562 0.106184760494407 0.121809537578170 0.136507292233911 0.150166165354804 0.162682204309087 0.173960154083055 0.183914182229978 0.192468532107687 0.199558099433281 0.205128927767002 0.209138619154373 0.211556656801361 0.212364637326769 0.211556410824343 0.209138127668567 0.205128191707978 0.199557120202173 0.192467311568516 0.183912722706111 0.173958458352774 0.162680275600315 0.150164007338944 0.136504909018875 0.121806933700538 0.106181940910810 0.089748845326238 0.072632711762373 0.054963803356847 0.036876590190086 0.018508725888667 -0.000000000000000 -0.018508725888668 -0.036876590190086 -0.054963803356848 -0.072632711762374 -0.089748845326238 -0.106181940910811 -0.121806933700540 -0.136504909018875 -0.150164007338945 -0.162680275600316 -0.173958458352775 -0.183912722706111 -0.192467311568517 -0.199557120202174 -0.205128191707979 -0.209138127668569 -0.211556410824343 -0.212364637326771 -0.211556656801361 -0.209138619154375 -0.205128927767001 -0.199558099433281 -0.192468532107687 -0.183914182229978 -0.173960154083055 -0.162682204309089 -0.150166165354804 -0.136507292233911 -0.121809537578170 -0.106184760494407 -0.089751875248562 -0.072635946255800 -0.054967236264329 -0.036880214976886 -0.018512535654802 -0.000003987493363 +-0.000003728974559 0.015500774441117 0.030887286342495 0.046038706144100 0.060839722493652 0.075177690860879 0.088943490830146 0.102032356572362 0.114344674175776 0.125786739767504 0.136271472656013 0.145719078067116 0.154057654429681 0.161223740589220 0.167162798784739 0.171829629713121 0.175188716522122 0.177214495114028 0.177891548702759 0.177214725143763 0.175189176143720 0.171830318051661 0.167163714529934 0.161224881997895 0.154059019329100 0.145720663859113 0.136273276321949 0.125788757873994 0.114346902881240 0.102034791634331 0.088946127613343 0.075180524346037 0.060842747287075 0.046041916487917 0.030890676125632 0.015504337210932 0.000000000000000 -0.015504337210930 -0.030890676125630 -0.046041916487915 -0.060842747287073 -0.075180524346039 -0.088946127613345 -0.102034791634330 -0.114346902881238 -0.125788757873992 -0.136273276321948 -0.145720663859115 -0.154059019329101 -0.161224881997893 -0.167163714529933 -0.171830318051661 -0.175189176143719 -0.177214725143763 -0.177891548702759 -0.177214495114027 -0.175188716522123 -0.171829629713121 -0.167162798784740 -0.161223740589218 -0.154057654429681 -0.145719078067117 -0.136271472656013 -0.125786739767505 -0.114344674175774 -0.102032356572360 -0.088943490830147 -0.075177690860880 -0.060839722493653 -0.046038706144101 -0.030887286342493 -0.015500774441118 0.000003728974559 0.015508225291919 0.030894715911864 0.046046100289431 0.060847067139767 0.075184972026823 0.088950694655809 0.102039469344853 0.114351682355528 0.125793630014050 0.136278231853373 0.145725693348776 0.154064113203076 0.161230030559709 0.167168907979004 0.171835546501966 0.175194429642600 0.177219993690891 0.177896822269154 0.177219763661156 0.175193970021004 0.171834858163423 0.167167992233812 0.161228889151035 0.154062748303660 0.145724107556778 0.136276428187438 0.125791611907559 0.114349453650066 0.102037034282883 0.088948057872612 0.075182138541666 0.060844042346346 0.046042889945614 0.030891326128727 0.015504662522104 -0.000000000000000 -0.015504662522105 -0.030891326128728 -0.046042889945614 -0.060844042346346 -0.075182138541666 -0.088948057872612 -0.102037034282884 -0.114349453650066 -0.125791611907560 -0.136276428187439 -0.145724107556778 -0.154062748303659 -0.161228889151036 -0.167167992233813 -0.171834858163423 -0.175193970021005 -0.177219763661156 -0.177896822269154 -0.177219993690891 -0.175194429642601 -0.171835546501966 -0.167168907979005 -0.161230030559709 -0.154064113203076 -0.145725693348776 -0.136278231853375 -0.125793630014050 -0.114351682355528 -0.102039469344853 -0.088950694655809 -0.075184972026824 -0.060847067139768 -0.046046100289431 -0.030894715911864 -0.015508225291919 -0.000003728974559 +-0.000003442076006 0.012709342153773 0.025325380990258 0.037748658816184 0.049884627079227 0.061640923863384 0.072928076818687 0.083660184099489 0.093755568128993 0.103137397214467 0.111734270282307 0.119480760282708 0.126317912128383 0.132193691377642 0.137063380247124 0.140889917940297 0.143644182701584 0.145305213449536 0.145860369302308 0.145305425781320 0.143644606960973 0.140890553319687 0.137064225537031 0.132194744969009 0.126319172015644 0.119482224067593 0.111735935178417 0.103139260052580 0.093757625363087 0.083662431813504 0.072930510733971 0.061643539346842 0.049887419152141 0.037751622163681 0.025328509971434 0.012712630812438 0.000000000000000 -0.012712630812436 -0.025328509971433 -0.037751622163679 -0.049887419152140 -0.061643539346843 -0.072930510733972 -0.083662431813503 -0.093757625363085 -0.103139260052579 -0.111735935178416 -0.119482224067593 -0.126319172015645 -0.132194744969009 -0.137064225537029 -0.140890553319685 -0.143644606960972 -0.145305425781322 -0.145860369302308 -0.145305213449535 -0.143644182701583 -0.140889917940297 -0.137063380247122 -0.132193691377639 -0.126317912128383 -0.119480760282709 -0.111734270282307 -0.103137397214468 -0.093755568128991 -0.083660184099488 -0.072928076818687 -0.061640923863385 -0.049884627079228 -0.037748658816185 -0.025325380990256 -0.012709342153773 0.000003442076006 0.012716219753597 0.025332238945993 0.037755484073324 0.049891406645504 0.061647644833505 0.072934726398907 0.083666749631954 0.093762037115839 0.103143757341612 0.111740509442882 0.119486866600120 0.126323873978909 0.132199497412560 0.137069019414317 0.140895379505291 0.143649456267978 0.145310288978797 0.145865237132879 0.145310076647007 0.143649032008589 0.140894744125903 0.137068174124409 0.132198443821190 0.126322614091651 0.119485402815237 0.111738844546773 0.103141894503499 0.093759979881745 0.083664501917940 0.072932292483622 0.061645029350047 0.049888614572591 0.037752520725827 0.025329109964817 0.012712931094932 -0.000000000000000 -0.012712931094932 -0.025329109964817 -0.037752520725828 -0.049888614572590 -0.061645029350048 -0.072932292483622 -0.083664501917940 -0.093759979881746 -0.103141894503500 -0.111738844546774 -0.119485402815238 -0.126322614091651 -0.132198443821190 -0.137068174124410 -0.140894744125903 -0.143649032008589 -0.145310076647008 -0.145865237132880 -0.145310288978798 -0.143649456267978 -0.140895379505292 -0.137069019414318 -0.132199497412560 -0.126323873978909 -0.119486866600120 -0.111740509442883 -0.103143757341612 -0.093762037115839 -0.083666749631954 -0.072934726398907 -0.061647644833505 -0.049891406645504 -0.037755484073324 -0.025332238945993 -0.012716219753597 -0.000003442076006 +-0.000003128981177 0.010151515881682 0.020228883738782 0.030152279786803 0.039846181074733 0.049236811278952 0.058252702185384 0.066825237605469 0.074889175586441 0.082383144941559 0.089250112321428 0.095437816271683 0.100899164973613 0.105592594640687 0.109482385843348 0.112538935354671 0.114738981447976 0.116065780931729 0.116509236574417 0.116065973949595 0.114739367116287 0.112539512939287 0.109483154244802 0.105593552396284 0.100900310260211 0.095439146909164 0.089251625776850 0.082384838333970 0.074891045692373 0.066827280865069 0.058254914709192 0.049239188855303 0.039848719177778 0.030154973585116 0.020231728104562 0.010154505400520 0.000000000000000 -0.010154505400518 -0.020231728104560 -0.030154973585114 -0.039848719177776 -0.049239188855304 -0.058254914709193 -0.066827280865068 -0.074891045692372 -0.082384838333969 -0.089251625776848 -0.095439146909165 -0.100900310260211 -0.105593552396283 -0.109483154244801 -0.112539512939287 -0.114739367116287 -0.116065973949595 -0.116509236574417 -0.116065780931729 -0.114738981447975 -0.112538935354671 -0.109482385843348 -0.105592594640686 -0.100899164973613 -0.095437816271683 -0.089250112321428 -0.082383144941559 -0.074889175586439 -0.066825237605468 -0.058252702185384 -0.049236811278953 -0.039846181074734 -0.030152279786803 -0.020228883738780 -0.010151515881683 0.000003128981177 0.010157767887842 0.020235117887699 0.030158484211423 0.039852343964579 0.049242920902610 0.058258746912841 0.066831205930243 0.074895056147485 0.082388926544893 0.089255783961440 0.095443367152084 0.100904584527987 0.105597872552604 0.109487512066003 0.112543900130008 0.114743775325262 0.116070394785547 0.116513661622033 0.116070201767681 0.114743389656951 0.112543322545391 0.109486743664547 0.105596914797006 0.100903439241388 0.095442036514603 0.089254270506020 0.082387233152482 0.074893186041554 0.066829162670643 0.058256534389032 0.049240543326259 0.039849805861535 0.030155790413110 0.020232273521919 0.010154778369004 -0.000000000000000 -0.010154778369004 -0.020232273521920 -0.030155790413111 -0.039849805861535 -0.049240543326260 -0.058256534389033 -0.066829162670643 -0.074893186041555 -0.082387233152482 -0.089254270506021 -0.095442036514603 -0.100903439241389 -0.105596914797007 -0.109486743664548 -0.112543322545392 -0.114743389656950 -0.116070201767681 -0.116513661622032 -0.116070394785547 -0.114743775325263 -0.112543900130008 -0.109487512066003 -0.105597872552605 -0.100904584527987 -0.095443367152084 -0.089255783961442 -0.082388926544894 -0.074895056147485 -0.066831205930243 -0.058258746912841 -0.049242920902610 -0.039852343964579 -0.030158484211423 -0.020235117887699 -0.010157767887842 -0.000003128981177 +-0.000002792072912 0.007846762227233 0.015636582009499 0.023307382087189 0.030800783115645 0.038059755894160 0.045029055392430 0.051655641198341 0.057889081187209 0.063681935340334 0.068990116791766 0.073773227355488 0.077994864979475 0.081622900786708 0.084629723594685 0.086992450052510 0.088693098796278 0.089718727297319 0.090061530361840 0.089718899532282 0.088693442938344 0.086992965446586 0.084630409259688 0.081623755417436 0.077995886949091 0.073774414718612 0.068991467288188 0.063683446399306 0.057890749932343 0.051657464453088 0.045031029686119 0.038061877468612 0.030803047932324 0.023309785834885 0.015639120112542 0.007849429854200 0.000000000000000 -0.007849429854199 -0.015639120112541 -0.023309785834885 -0.030803047932323 -0.038061877468613 -0.045031029686120 -0.051657464453086 -0.057890749932342 -0.063683446399305 -0.068991467288188 -0.073774414718613 -0.077995886949091 -0.081623755417436 -0.084630409259688 -0.086992965446585 -0.088693442938344 -0.089718899532281 -0.090061530361839 -0.089718727297319 -0.088693098796278 -0.086992450052510 -0.084629723594684 -0.081622900786708 -0.077994864979475 -0.073773227355488 -0.068990116791767 -0.063681935340334 -0.057889081187208 -0.051655641198340 -0.045029055392431 -0.038059755894160 -0.030800783115646 -0.023307382087189 -0.015636582009498 -0.007846762227234 0.000002792072912 0.007852341058186 0.015642144905961 0.023312918459872 0.030806282425747 0.038065207673430 0.045034449263098 0.051660966892868 0.057894328567832 0.063687094418368 0.068995177746609 0.073778180553327 0.077999700991617 0.081627610407527 0.084634297859152 0.086996880253252 0.088697376500154 0.089722844361480 0.090065478949219 0.089722672126517 0.088697032358089 0.086996364859177 0.084633612194148 0.081626755776799 0.077998679022002 0.073776993190203 0.068993827250188 0.063685583359395 0.057892659822698 0.051659143638122 0.045032474969409 0.038063086098978 0.030804017609068 0.023310514712175 0.015639606802919 0.007849673431220 -0.000000000000000 -0.007849673431220 -0.015639606802919 -0.023310514712175 -0.030804017609069 -0.038063086098978 -0.045032474969410 -0.051659143638122 -0.057892659822698 -0.063685583359396 -0.068993827250189 -0.073776993190203 -0.077998679022002 -0.081626755776799 -0.084633612194149 -0.086996364859177 -0.088697032358090 -0.089722672126518 -0.090065478949219 -0.089722844361481 -0.088697376500154 -0.086996880253253 -0.084634297859152 -0.081627610407527 -0.077999700991617 -0.073778180553327 -0.068995177746611 -0.063687094418368 -0.057894328567832 -0.051660966892868 -0.045034449263098 -0.038065207673430 -0.030806282425747 -0.023312918459872 -0.015642144905961 -0.007852341058186 -0.000002792072912 +-0.000002433915285 0.005812621757386 0.011583425991478 0.017266059521899 0.022817274142194 0.028194821849378 0.033357776376580 0.038266844666418 0.042884665914616 0.047176095907963 0.051108474492625 0.054651874137218 0.057779327698926 0.060467033659235 0.062694537267301 0.064444886212360 0.065704759640407 0.066464569533255 0.066718533678423 0.066464719674502 0.065705059637099 0.064445335493435 0.062695134977527 0.060467778660838 0.057780218573751 0.054652909189436 0.051109651751955 0.047177413133424 0.042886120598795 0.038268434040240 0.033359497414583 0.028196671275468 0.022819248435884 0.017268154925009 0.011585638515287 0.005814947190229 0.000000000000000 -0.005814947190229 -0.011585638515286 -0.017268154925008 -0.022819248435883 -0.028196671275468 -0.033359497414584 -0.038268434040240 -0.042886120598794 -0.047177413133424 -0.051109651751954 -0.054652909189436 -0.057780218573751 -0.060467778660837 -0.062695134977527 -0.064445335493434 -0.065705059637099 -0.066464719674502 -0.066718533678424 -0.066464569533255 -0.065704759640407 -0.064444886212360 -0.062694537267300 -0.060467033659234 -0.057779327698926 -0.054651874137218 -0.051108474492625 -0.047176095907963 -0.042884665914615 -0.038266844666417 -0.033357776376580 -0.028194821849378 -0.022817274142194 -0.017266059521900 -0.011583425991477 -0.005812621757386 0.000002433915286 0.005817484954860 0.011588275298484 0.017270885707506 0.022822068019481 0.028199574292927 0.033362478339846 0.038271487198946 0.042889240179082 0.047180593196995 0.051112886245377 0.054656191955668 0.057783543363861 0.060471139145897 0.062698524760664 0.064448748122003 0.065708488614966 0.066468158474414 0.066721975754430 0.066468008333168 0.065708188618275 0.064448298840929 0.062697927050438 0.060470394144297 0.057782652489038 0.054655156903451 0.051111708986048 0.047179275971534 0.042887785494904 0.038269897825124 0.033360757301844 0.028197724866838 0.022820093725791 0.017268790304396 0.011586062774676 0.005815159522017 -0.000000000000000 -0.005815159522017 -0.011586062774676 -0.017268790304396 -0.022820093725791 -0.028197724866838 -0.033360757301844 -0.038269897825125 -0.042887785494905 -0.047179275971534 -0.051111708986048 -0.054655156903451 -0.057782652489037 -0.060470394144297 -0.062697927050439 -0.064448298840929 -0.065708188618275 -0.066468008333168 -0.066721975754430 -0.066468158474414 -0.065708488614966 -0.064448748122003 -0.062698524760664 -0.060471139145898 -0.057783543363862 -0.054656191955668 -0.051112886245378 -0.047180593196996 -0.042889240179083 -0.038271487198947 -0.033362478339846 -0.028199574292927 -0.022822068019481 -0.017270885707506 -0.011588275298484 -0.005817484954860 -0.000002433915285 +-0.000002057234094 0.004064575509362 0.008100262649378 0.012074290203503 0.015956413478238 0.019717087249293 0.023327690618449 0.026760744835678 0.029990122428793 0.032991246049015 0.035741275519124 0.038219281660643 0.040406405577135 0.042286002181360 0.043843766873964 0.045067844409623 0.045948919122068 0.046480285821356 0.046657900823805 0.046480412726222 0.045949172690229 0.045068224158397 0.043844272080478 0.042286631883923 0.040407158577075 0.038220156524580 0.035742270581707 0.032992359416085 0.029991351980991 0.026762088232482 0.023329145302627 0.019718650451772 0.015958082223373 0.012076061314743 0.008102132755310 0.004066541050135 0.000000000000000 -0.004066541050134 -0.008102132755309 -0.012076061314742 -0.015958082223372 -0.019718650451772 -0.023329145302628 -0.026762088232482 -0.029991351980991 -0.032992359416084 -0.035742270581706 -0.038220156524581 -0.040407158577075 -0.042286631883923 -0.043844272080477 -0.045068224158397 -0.045949172690228 -0.046480412726222 -0.046657900823804 -0.046480285821356 -0.045948919122068 -0.045067844409623 -0.043843766873964 -0.042286002181359 -0.040406405577136 -0.038219281660643 -0.035741275519124 -0.032991246049015 -0.029990122428793 -0.026760744835677 -0.023327690618449 -0.019717087249293 -0.015956413478238 -0.012074290203504 -0.008100262649377 -0.004064575509362 0.000002057234094 0.004068686061488 0.008104361460772 0.012078369471847 0.015960465438410 0.019721104188157 0.023331664889534 0.026764668873733 0.029993988764189 0.032995047321962 0.035745004493682 0.038222931238499 0.040409968811110 0.042289472288634 0.043847137248992 0.045071108636704 0.045952070987560 0.046483319325505 0.046660810192161 0.046483192420639 0.045951817419400 0.045070728887931 0.043846632042478 0.042288842586070 0.040409215811170 0.038222056374561 0.035744009431099 0.032993933954892 0.029992759211991 0.026763325476929 0.023330210205355 0.019719540985678 0.015958796693275 0.012076598360607 0.008102491354841 0.004066720520716 -0.000000000000000 -0.004066720520717 -0.008102491354841 -0.012076598360608 -0.015958796693275 -0.019719540985678 -0.023330210205356 -0.026763325476929 -0.029992759211991 -0.032993933954893 -0.035744009431100 -0.038222056374562 -0.040409215811170 -0.042288842586070 -0.043846632042479 -0.045070728887931 -0.045951817419401 -0.046483192420639 -0.046660810192162 -0.046483319325505 -0.045952070987561 -0.045071108636705 -0.043847137248992 -0.042289472288634 -0.040409968811110 -0.038222931238499 -0.035745004493683 -0.032995047321962 -0.029993988764189 -0.026764668873733 -0.023331664889534 -0.019721104188157 -0.015960465438410 -0.012078369471847 -0.008104361460772 -0.004068686061489 -0.000002057234094 +-0.000001664896110 0.002615927170609 0.005213600959422 0.007771586631392 0.010270416416132 0.012691072773210 0.015015133126991 0.017224910073410 0.019303585991610 0.021235341035969 0.023005473534423 0.024600511876786 0.026008317041512 0.027218174980640 0.028220878159780 0.029008795632603 0.029575931116515 0.029917968627515 0.030032305326953 0.029918071330177 0.029576136326337 0.029009102958958 0.028221287017654 0.027218684591750 0.026008926435783 0.024601219894201 0.023006278827232 0.021236242071251 0.019304581054193 0.017225997269135 0.015016310386320 0.012692337855163 0.010271766912554 0.007773019971535 0.005215114414843 0.002617517860358 0.000000000000000 -0.002617517860358 -0.005215114414842 -0.007773019971535 -0.010271766912554 -0.012692337855163 -0.015016310386320 -0.017225997269135 -0.019304581054192 -0.021236242071250 -0.023006278827232 -0.024601219894201 -0.026008926435783 -0.027218684591749 -0.028221287017654 -0.029009102958958 -0.029576136326337 -0.029918071330177 -0.030032305326953 -0.029917968627515 -0.029575931116515 -0.029008795632603 -0.028220878159779 -0.027218174980640 -0.026008317041512 -0.024600511876785 -0.023005473534423 -0.021235341035969 -0.019303585991610 -0.017224910073410 -0.015015133126991 -0.012691072773210 -0.010270416416132 -0.007771586631392 -0.005213600959422 -0.002615927170609 0.000001664896110 0.002619253793604 0.005216918080777 0.007774887936777 0.010273695621326 0.012694323636058 0.015018349459291 0.017228085752692 0.019306714972787 0.021238417362848 0.023008491351040 0.024603465438556 0.026011200726163 0.027220983298914 0.028223605765883 0.029011437334383 0.029578481885341 0.029920423607854 0.030034659845611 0.029920320905193 0.029578276675518 0.029011130008027 0.028223196908008 0.027220473687805 0.026010591331893 0.024602757421141 0.023007686058231 0.021237516327565 0.019305719910205 0.017226998556967 0.015017172199962 0.012693058554105 0.010272345124904 0.007773454596634 0.005215404625356 0.002617663103855 -0.000000000000000 -0.002617663103855 -0.005215404625357 -0.007773454596634 -0.010272345124904 -0.012693058554105 -0.015017172199962 -0.017226998556967 -0.019305719910205 -0.021237516327566 -0.023007686058232 -0.024602757421141 -0.026010591331893 -0.027220473687805 -0.028223196908009 -0.029011130008028 -0.029578276675519 -0.029920320905194 -0.030034659845611 -0.029920423607855 -0.029578481885341 -0.029011437334383 -0.028223605765883 -0.027220983298914 -0.026011200726163 -0.024603465438556 -0.023008491351041 -0.021238417362848 -0.019306714972787 -0.017228085752692 -0.015018349459291 -0.012694323636058 -0.010273695621326 -0.007774887936777 -0.005216918080777 -0.002619253793604 -0.000001664896110 +-0.000001259887260 0.001477701829702 0.002945410160087 0.004390694977792 0.005802556826820 0.007170250633715 0.008483367483974 0.009731913840049 0.010906387598060 0.011997850404382 0.012997995681715 0.013899211846938 0.014694640239616 0.015378227320278 0.015944770741221 0.016389958939211 0.016710403948748 0.016903667186178 0.016968278008410 0.016903744905006 0.016710559238463 0.016390191504208 0.015945080138801 0.015378612961484 0.014695101390360 0.013899747629392 0.012998605075986 0.011998532250454 0.010907140598000 0.009732736560479 0.008484258358800 0.007171207967105 0.005803578796435 0.004391779638256 0.002946555446686 0.001478905562318 0.000000000000000 -0.001478905562318 -0.002946555446686 -0.004391779638255 -0.005803578796435 -0.007171207967105 -0.008484258358800 -0.009732736560479 -0.010907140598000 -0.011998532250454 -0.012998605075985 -0.013899747629392 -0.014695101390359 -0.015378612961484 -0.015945080138801 -0.016390191504208 -0.016710559238462 -0.016903744905006 -0.016968278008409 -0.016903667186178 -0.016710403948748 -0.016389958939211 -0.015944770741221 -0.015378227320277 -0.014694640239616 -0.013899211846938 -0.012997995681715 -0.011997850404382 -0.010906387598060 -0.009731913840049 -0.008483367483975 -0.007170250633716 -0.005802556826820 -0.004390694977792 -0.002945410160087 -0.001477701829702 0.000001259887260 0.001480219205955 0.002947920346105 0.004393193195292 0.005805038320303 0.007172710679518 0.008485801399260 0.009734316991721 0.010908755411583 0.012000178372488 0.013000279372984 0.013901446914235 0.014696822428363 0.015380352476553 0.015946834819670 0.016391958010743 0.016712334208017 0.016905524958826 0.016970059758060 0.016905447239997 0.016712178918303 0.016391725445746 0.015946525422090 0.015379966835347 0.014696361277620 0.013900911131782 0.012999669978713 0.011999496526416 0.010908002411643 0.009733494271291 0.008484910524435 0.007171753346129 0.005804016350688 0.004392108534829 0.002946775059506 0.001479015473339 -0.000000000000000 -0.001479015473339 -0.002946775059506 -0.004392108534829 -0.005804016350688 -0.007171753346129 -0.008484910524435 -0.009733494271291 -0.010908002411643 -0.011999496526416 -0.012999669978713 -0.013900911131782 -0.014696361277620 -0.015379966835347 -0.015946525422090 -0.016391725445746 -0.016712178918303 -0.016905447239997 -0.016970059758060 -0.016905524958826 -0.016712334208018 -0.016391958010743 -0.015946834819670 -0.015380352476553 -0.014696822428363 -0.013901446914235 -0.013000279372984 -0.012000178372488 -0.010908755411583 -0.009734316991721 -0.008485801399260 -0.007172710679518 -0.005805038320303 -0.004393193195292 -0.002947920346105 -0.001480219205955 -0.000001259887260 +-0.000000845289908 0.000658562068765 0.001312952552927 0.001957345869626 0.002586837819541 0.003196637620855 0.003782104369932 0.004338782361325 0.004862434998286 0.005349077035711 0.005795004910138 0.006196824925951 0.006551479083295 0.006856268351123 0.007108873208259 0.007307371296146 0.007450252048934 0.007536428189563 0.007565244004343 0.007536480333071 0.007450356236692 0.007307527329825 0.007109080790842 0.006856527087464 0.006551788480875 0.006197184395814 0.005795413768012 0.005349534503313 0.004862940204799 0.004339334345061 0.003782702080158 0.003197279919795 0.002587523484544 0.001958073595489 0.001313720954382 0.000659369683117 0.000000000000000 -0.000659369683116 -0.001313720954382 -0.001958073595488 -0.002587523484544 -0.003197279919795 -0.003782702080158 -0.004339334345061 -0.004862940204799 -0.005349534503313 -0.005795413768012 -0.006197184395813 -0.006551788480875 -0.006856527087464 -0.007109080790842 -0.007307527329825 -0.007450356236691 -0.007536480333071 -0.007565244004343 -0.007536428189563 -0.007450252048934 -0.007307371296145 -0.007108873208259 -0.006856268351123 -0.006551479083295 -0.006196824925951 -0.005795004910138 -0.005349077035711 -0.004862434998286 -0.004338782361325 -0.003782104369932 -0.003196637620855 -0.002586837819541 -0.001957345869626 -0.001312952552927 -0.000658562068765 0.000000845289908 0.000660251039524 0.001314636699576 0.001959021986297 0.002588502715651 0.003198288127178 0.003783737344637 0.004340394695952 0.004864023623663 0.005350638927801 0.005796537095789 0.006198324488561 0.006552943168363 0.006857694171678 0.007110258050171 0.007308712523289 0.007451547108207 0.007537674615747 0.007566439424795 0.007537622472239 0.007451442920450 0.007308556489610 0.007110050467588 0.006857435435337 0.006552633770783 0.006197965018699 0.005796128237915 0.005350181460199 0.004863518417150 0.004339842712216 0.003783139634411 0.003197645828238 0.002587817050648 0.001958294260434 0.001313868298121 0.000659443425172 -0.000000000000000 -0.000659443425172 -0.001313868298121 -0.001958294260435 -0.002587817050648 -0.003197645828238 -0.003783139634411 -0.004339842712216 -0.004863518417150 -0.005350181460199 -0.005796128237915 -0.006197965018699 -0.006552633770783 -0.006857435435337 -0.007110050467588 -0.007308556489610 -0.007451442920450 -0.007537622472240 -0.007566439424795 -0.007537674615747 -0.007451547108208 -0.007308712523289 -0.007110258050171 -0.006857694171678 -0.006552943168363 -0.006198324488561 -0.005796537095789 -0.005350638927801 -0.004864023623663 -0.004340394695952 -0.003783737344637 -0.003198288127178 -0.002588502715651 -0.001959021986297 -0.001314636699576 -0.000660251039524 -0.000000845289908 +-0.000000424259389 0.000164742035989 0.000328652126036 0.000490058562903 0.000647732957648 0.000800475328989 0.000947123235861 0.001086560624255 0.001217726321010 0.001339622109931 0.001451320328749 0.001551970929120 0.001640807945924 0.001717155326632 0.001780432076381 0.001830156679588 0.001865950764463 0.001887541982529 0.001894766081233 0.001887568153873 0.001866003057332 0.001830234994439 0.001780536264139 0.001717285188968 0.001640963235638 0.001552151350610 0.001451525538572 0.001339851717458 0.001217979889170 0.001086837670367 0.000947423232552 0.000800797705198 0.000648077099714 0.000490423815732 0.000329037794348 0.000165147385643 0.000000000000000 -0.000165147385643 -0.000329037794348 -0.000490423815732 -0.000648077099713 -0.000800797705198 -0.000947423232552 -0.001086837670367 -0.001217979889170 -0.001339851717458 -0.001451525538572 -0.001552151350610 -0.001640963235638 -0.001717285188968 -0.001780536264139 -0.001830234994439 -0.001866003057332 -0.001887568153873 -0.001894766081233 -0.001887541982529 -0.001865950764463 -0.001830156679588 -0.001780432076381 -0.001717155326632 -0.001640807945924 -0.001551970929120 -0.001451320328749 -0.001339622109931 -0.001217726321010 -0.001086560624255 -0.000947123235861 -0.000800475328989 -0.000647732957648 -0.000490058562903 -0.000328652126036 -0.000164742035989 0.000000424259389 0.000165589747165 0.000329497415944 0.000490899822486 0.000648568585519 0.000801303734483 0.000947942842063 0.001087369870996 0.001218523667844 0.001340406039063 0.001452089347925 0.001552723574468 0.001641542784741 0.001717870960111 0.001781127142273 0.001830829854795 0.001866600767557 0.001888167576194 0.001895366074615 0.001888141404850 0.001866548474689 0.001830751539943 0.001781022954515 0.001717741097775 0.001641387495027 0.001552543152979 0.001451884138103 0.001340176431536 0.001218270099684 0.001087092824884 0.000947642845372 0.000800981358274 0.000648224443453 0.000490534569657 0.000329111747632 0.000165184397512 -0.000000000000000 -0.000165184397512 -0.000329111747632 -0.000490534569657 -0.000648224443453 -0.000800981358274 -0.000947642845372 -0.001087092824884 -0.001218270099684 -0.001340176431536 -0.001451884138103 -0.001552543152979 -0.001641387495027 -0.001717741097775 -0.001781022954515 -0.001830751539943 -0.001866548474689 -0.001888141404850 -0.001895366074615 -0.001888167576194 -0.001866600767557 -0.001830829854795 -0.001781127142273 -0.001717870960111 -0.001641542784741 -0.001552723574468 -0.001452089347925 -0.001340406039063 -0.001218523667844 -0.001087369870996 -0.000947942842063 -0.000801303734484 -0.000648568585519 -0.000490899822486 -0.000329497415944 -0.000165589747165 -0.000000424259389 +0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 0.000000000000000 \ No newline at end of file diff --git a/simulations/Tutorial/xhps_integration/xhps_acme_ex_01.slx b/simulations/Tutorial/xhps_integration/xhps_acme_ex_01.slx new file mode 100644 index 0000000000000000000000000000000000000000..ff2529cb060b48c931143d2e5b7f53cadcb7e27e Binary files /dev/null and b/simulations/Tutorial/xhps_integration/xhps_acme_ex_01.slx differ diff --git a/utils/HFT.m b/utils/HFT.m new file mode 100644 index 0000000000000000000000000000000000000000..4c8f445c700b30a823925aaabaa653c2d1b1c362 --- /dev/null +++ b/utils/HFT.m @@ -0,0 +1,19 @@ +function w = HFT(n) +%HFT Returns a high dynamic range flat top window. +% HFT returns a high dynamic range flat top window as described by Heinzel +% 2002. HFT248D has 10 cosine terms and -248dB of attenuation on the sidelobe. + w = nan(n,1); + for i=1:n + w(i) = 1 - 1.985844164102*cos(1*2*pi*i/n)... + + 1.791176438506*cos(2*2*pi*i/n) - 1.282075284005*cos(3*2*pi*i/n)... + + 0.667777530266*cos(4*2*pi*i/n) - 0.240160796576 *cos(5*2*pi*i/n)... + + 0.056656381764*cos(6*2*pi*i/n) - 0.008134974479*cos(7*2*pi*i/n)... + + 0.000624544650*cos(8*2*pi*i/n) - 0.000019808998*cos(9*2*pi*i/n)... + + 0.000000132974*cos(10*2*pi*i/n); + if isnan(w(i)) + w(i) = 0; + end + end + w = w./max(w); +end + diff --git a/utils/calcOpticalPath.m b/utils/calcOpticalPath.m new file mode 100644 index 0000000000000000000000000000000000000000..fa6697bd13d48f374c01d41f86b508566e98dc83 --- /dev/null +++ b/utils/calcOpticalPath.m @@ -0,0 +1,7 @@ +function [outputArg1,outputArg2] = calcOpticalPath(inputArg1,inputArg2) +%CALCOPTICALPATH Summary of this function goes here +% Detailed explanation goes here +outputArg1 = inputArg1; +outputArg2 = inputArg2; +end + diff --git a/utils/convert2OlderMatlab.m b/utils/convert2OlderMatlab.m new file mode 100644 index 0000000000000000000000000000000000000000..a8728985e594e3dcbabfb114e4d9bfc691a48631 --- /dev/null +++ b/utils/convert2OlderMatlab.m @@ -0,0 +1,2 @@ +proj = currentProject; +Simulink.exportToVersion(proj,'Acme_R2020a','R2020a'); \ No newline at end of file diff --git a/utils/convertVersion.m b/utils/convertVersion.m new file mode 100644 index 0000000000000000000000000000000000000000..9f9cbac9bb89115deb64a76bf4058d7526b90fe6 --- /dev/null +++ b/utils/convertVersion.m @@ -0,0 +1,4 @@ +proj = currentProject; +zipfilename = 'acme_2020b'; +version = 'R2020b'; +exported_project = Simulink.exportToVersion(proj,zipfilename,version); \ No newline at end of file diff --git a/utils/createAccelerationNoiseASD.m b/utils/createAccelerationNoiseASD.m new file mode 100644 index 0000000000000000000000000000000000000000..685b4c662721b8e243e24b97bc487bbae244e964 --- /dev/null +++ b/utils/createAccelerationNoiseASD.m @@ -0,0 +1,29 @@ +function asd = AccelerationNoiseASD(freq, variables) +%ACCELERATIONNOISEASD Returns ASD for a frequency input +% Returns ASD for a frequency input; +% can return for each axis + switch variables + case "x" + asd = 1./freq; + case "y" + asd = 1./freq.^2; + case "z" + asd = 1./freq.^3; + case "theta" + asd = 1./freq + freq; + case "psi" + asd = 1./freq + freq.^3; + case "phi" + asd = 10*(freq.^0); + case "linear" + asd = (1e-12 * sqrt(... + (1e-3./freq).^4 ./((1e-5./freq).^4+1) + ... + 1 + (freq/1e-1).^4)); + case "angular" + asd = (1e-10 * sqrt(... + (1e-3./freq).^4 ./ ((1e-5./freq).^4+1) +... + 1 + (freq/1e-1).^4)); + otherwise + asd = -1; + end +end \ No newline at end of file diff --git a/utils/createFrequencyArray.m b/utils/createFrequencyArray.m new file mode 100644 index 0000000000000000000000000000000000000000..74a5fcf6ce4ad71051d8b136a9efd8bc311ecf60 --- /dev/null +++ b/utils/createFrequencyArray.m @@ -0,0 +1,84 @@ +function freqs = createFrequencyArray(f1, f2, N, varargin) +%CREATEFREQUENCYARRAY returns either log or linspaced frequencies +% Returns either log or linspaced frequencies, if linear, can be +% one or two sided, negative or positive first. +% +% Syntax: freqs = createFrequencyArray(f1,f2,N,['log']) +% freqs = createFrequencyArray(f1,_,N,'lin',[1]) +% freqs = createFrequencyArray(f1,_,N,'lin', 2, ['direct']) +% +% Inputs: f1 - frequency 1; +% f2 - frequency 2; +% N - number of points; +% spacing - either 'lin' for linear or 'log' for base 10 logarithmic; +% order - either 'direct', where the elements are sorted in crescent +% order, or 'reverse', where the positive elements come first; +% sides - either 1, for only positives, or 2, to include negative +% frequencies. +% +% Outputs: freqs - logspaced array between f1 and f2 with N points; +% freqs - linspaced array between 0 f1 with N points; +% freqs - linspaced array between -f1 and f1 with N points; +% freqs - linspaced array between 0 to f1, then -f1 to 0 with N points; +% +% See also: setInjectionBlock, createTimeseriesFromASD_ENBW +% +% Author: Arthur Reis +% email: arthur.reis@aei.mpg.de +% Nov 2021; Last revision: 10.Nov.2021; + + + if length(varargin)>=1 + spacing = varargin{1}; + else + spacing = 'log'; + end + + if length(varargin)>=2 + sides = varargin{2}; + else + sides = 1; + end + + if length(varargin)>=3 + order = varargin{3}; + else + order = 'direct'; + end + + if strcmp(spacing,'lin') + f = linspace(0, f1, N); + if sides == 1 + freqs = f; + return; + + elseif sides == 2 + f = linspace(0,f1,N/2+1); + if strcmp(order,'direct') % negative, positive + if bitget(N,1) %even + freqs = [-f(end:-1:2),f]; + return + else + freqs = [-f(end-1:-1:2),f]; + return; + end + + elseif strcmp(order,'reverse') % positive, negative + if bitget(N,1) %even + freqs = [f,-f(end:-1:2)]; + return + else + freqs = [f,-f(end-1:-1:2)]; + return; + end + end + end + + elseif strcmp(spacing,'log') + freqs = logspace(log10(f1),log10(f2),N); + return; + end + +freqs = -1; %if reaches here, some error has occured. +end + diff --git a/utils/createTimeseriesFromASD_ENBW.m b/utils/createTimeseriesFromASD_ENBW.m new file mode 100644 index 0000000000000000000000000000000000000000..2d3953fc02317554211e4684e5e05111131ebe6e --- /dev/null +++ b/utils/createTimeseriesFromASD_ENBW.m @@ -0,0 +1,36 @@ +function ts = createTimeseriesFromASD_ENBW(ASDFunc, freqs,enbw) +%CREATETIMESERIESFROMASD_ENBW returns a timeseries from the ASD of a noise +% Returns a timeseries from the amplitude spectral density of a noise. +% The output time series will have the ASD, and random phase. +% +% Syntax: ts = createTimeseriesFromASD_ENBW(ASDFunc, freqs) +% +% Inputs: ASDFunc - function handle where the expression for the ASD is +% defined; +% freqs - frequency array, linearly spaced and in reverse order, as +% constructed from createFrequencyArray; +% +% Outputs: ts - timeseries containing the noise; +% +% See also: createFrequencyArray, setInjectionBlock +% +% Author: Arthur Reis +% email: arthur.reis@aei.mpg.de +% Nov 2021; Last revision: 10.Nov.2021; + + ASD = ASDFunc(freqs); + PSD_dblsided = (ASD).^2/2; +% if length(PSD_dblsided ) == 1 +% PSD_dblsided = PSD_dblsided *ones(size(freqs)); +% end + PSD_dblsided(freqs==0) = 0; + U_f = sqrt(PSD_dblsided').*sqrt(enbw/2); + phi = rand(size(U_f))*2*pi; + phi(freqs==0) = 0; + freq_domain = U_f.*exp(phi.*1i)*numel(U_f)*sqrt(2); + t_amplitude = ifft(freq_domain,'symmetric'); + + fmin = min(nonzeros(abs(freqs))); + ts = timeseries(t_amplitude,linspace(0,2/fmin,length(t_amplitude))); + +end \ No newline at end of file diff --git a/utils/facade/createFrequencyArray.m b/utils/facade/createFrequencyArray.m new file mode 100644 index 0000000000000000000000000000000000000000..74a5fcf6ce4ad71051d8b136a9efd8bc311ecf60 --- /dev/null +++ b/utils/facade/createFrequencyArray.m @@ -0,0 +1,84 @@ +function freqs = createFrequencyArray(f1, f2, N, varargin) +%CREATEFREQUENCYARRAY returns either log or linspaced frequencies +% Returns either log or linspaced frequencies, if linear, can be +% one or two sided, negative or positive first. +% +% Syntax: freqs = createFrequencyArray(f1,f2,N,['log']) +% freqs = createFrequencyArray(f1,_,N,'lin',[1]) +% freqs = createFrequencyArray(f1,_,N,'lin', 2, ['direct']) +% +% Inputs: f1 - frequency 1; +% f2 - frequency 2; +% N - number of points; +% spacing - either 'lin' for linear or 'log' for base 10 logarithmic; +% order - either 'direct', where the elements are sorted in crescent +% order, or 'reverse', where the positive elements come first; +% sides - either 1, for only positives, or 2, to include negative +% frequencies. +% +% Outputs: freqs - logspaced array between f1 and f2 with N points; +% freqs - linspaced array between 0 f1 with N points; +% freqs - linspaced array between -f1 and f1 with N points; +% freqs - linspaced array between 0 to f1, then -f1 to 0 with N points; +% +% See also: setInjectionBlock, createTimeseriesFromASD_ENBW +% +% Author: Arthur Reis +% email: arthur.reis@aei.mpg.de +% Nov 2021; Last revision: 10.Nov.2021; + + + if length(varargin)>=1 + spacing = varargin{1}; + else + spacing = 'log'; + end + + if length(varargin)>=2 + sides = varargin{2}; + else + sides = 1; + end + + if length(varargin)>=3 + order = varargin{3}; + else + order = 'direct'; + end + + if strcmp(spacing,'lin') + f = linspace(0, f1, N); + if sides == 1 + freqs = f; + return; + + elseif sides == 2 + f = linspace(0,f1,N/2+1); + if strcmp(order,'direct') % negative, positive + if bitget(N,1) %even + freqs = [-f(end:-1:2),f]; + return + else + freqs = [-f(end-1:-1:2),f]; + return; + end + + elseif strcmp(order,'reverse') % positive, negative + if bitget(N,1) %even + freqs = [f,-f(end:-1:2)]; + return + else + freqs = [f,-f(end-1:-1:2)]; + return; + end + end + end + + elseif strcmp(spacing,'log') + freqs = logspace(log10(f1),log10(f2),N); + return; + end + +freqs = -1; %if reaches here, some error has occured. +end + diff --git a/utils/facade/createTimeseriesFromASD_ENBW.m b/utils/facade/createTimeseriesFromASD_ENBW.m new file mode 100644 index 0000000000000000000000000000000000000000..6ba72a335a27142695524fc9157d268cc6102615 --- /dev/null +++ b/utils/facade/createTimeseriesFromASD_ENBW.m @@ -0,0 +1,33 @@ +function ts = createTimeseriesFromASD_ENBW(ASDFunc, freqs,enbw) +%CREATETIMESERIESFROMASD_ENBW returns a timeseries from the ASD of a noise +% Returns a timeseries from the amplitude spectral density of a noise. +% The output time series will have the ASD, and random phase. +% +% Syntax: ts = createTimeseriesFromASD_ENBW(ASDFunc, freqs) +% +% Inputs: ASDFunc - function handle where the expression for the ASD is +% defined; +% freqs - frequency array, linearly spaced and in reverse order, as +% constructed from createFrequencyArray; +% +% Outputs: ts - timeseries containing the noise; +% +% See also: createFrequencyArray, setInjectionBlock +% +% Author: Arthur Reis +% email: arthur.reis@aei.mpg.de +% Nov 2021; Last revision: 10.Nov.2021; + + ASD = ASDFunc(freqs); + PSD_dblsided = (ASD).^2/2; +% if length(PSD_dblsided ) == 1 +% PSD_dblsided = PSD_dblsided *ones(size(freqs)); +% end + PSD_dblsided(freqs==0) = 0; + U_f = sqrt(PSD_dblsided').*sqrt(enbw/2); + phi = rand(size(U_f))*2*pi; + phi(freqs==0) = 0; + freq_domain = U_f.*exp(phi.*1i)*numel(U_f)*sqrt(2); + ts = timeseries(ifft(freq_domain,'symmetric')); + +end \ No newline at end of file diff --git a/utils/facade/flpsd.m b/utils/facade/flpsd.m new file mode 100644 index 0000000000000000000000000000000000000000..8975d67e228abaf29f790b6e14dac8f86e465f01 --- /dev/null +++ b/utils/facade/flpsd.m @@ -0,0 +1,348 @@ +function [P,fArr,enbwcoef] = flpsd(varargin) +%% Compute PSD with logarithmic frequency axis +% +% code ported from LTPDA to bare MATLAB +% +% Example: +% y = randn(100000,1)*sqrt(3/2)*1e-3; +% [P,F] = flpsd( 'ts', y, 'fs', 3, 'scale','asd'); +% loglog(F, P); +% +% +% INPUTS: +% ts - y-values of time-series +% fs - sample frequency in [Hz] +% win - window name, e.g. 'hanning' +% see documentation of "getwin.m" +% Order - order of detrending +% -1 - no detrending +% 0 - subtract mean +% 1 - subtract linear fit +% N - subtract fit of polynomial, order N +% Scale - Scaling of output. Choose from: +% 'AS' - Amplitude (linear) Spectrum +% 'ASD' - Amplitude (linear) Spectral Density +% 'PS' - Power Spectrum +% 'PSD' - Power Spectral Density [default] +% +% Olap - desired overlap percentage, value between 0..100 +% (default value of -1 means taken "optimum" for window function) +% Kdes - desired number of averages (default 100) +% Lmin - minimum segment length (default 1) +% Jdes - number of spectral frequencies to compute (default: 1000) +% +% LTPDAmode - default: true +% true means use LTPDA-like frequency vector and procedure +% +% false: use strict appraoch from the paper (see reference +% below). This mode is EXPERIMENTAL. +% +% LTPDAbug - 'true' will reproduce the LTPDA bug in Welford's averaging +% algorithm, applies only if LTPDAmode = true +% 'false' +% +% OUTPUTS: +% P - spectral estimate in units requested by 'scale' parameter +% Nx1 +% fArr - frequency values in [Hz] +% Nx1 +% enbwcoeff - Equivalent Noise Bandwidth [Hz] for each frequency +% Nx1 +% +% +% ------------------------------------------------------------- +% References: "Improved spectrum estimation from digitized time series +% on a logarithmic frequency axis", Michael Troebs, +% Gerhard Heinzel, Measurement 39 (2006) 120-129. +% -------------------- +% Author: Arthur Reis; Vitali Mueller +% email: arthur.reis@aei.mpg.de +% -------------------------------------------------------------------- +%% input processing +% parameters: ts, fs, Kdes, Lmin, Jdes, win, olap, order, scale +defaultts = []; +defaultfs = 0; +defaultKdes = 100; +defaultLmin = 1; +defaultJdes = 1000; +defaultwin = 'hanning'; +defaultolap = -1; +defaultorder = 0; +defaultscale = 'PSD'; +expectedscales = {'AS','PS','ASD','PSD'}; +defaultmode = true; + +% parameter parsing, required parms will throw error w/ defaults; +p = inputParser; +addParameter(p, 'ts', defaultts, @(x) ~isempty(x)); +addParameter(p, 'fs', defaultfs, @(x) isnumeric(x) && x>0); +addParameter(p, 'Kdes', defaultKdes, @(x) isnumeric(x) && x>0); +addParameter(p, 'Lmin', defaultLmin, @(x) isnumeric(x)); +addParameter(p, 'Jdes', defaultJdes, @(x) isnumeric(x)); +addParameter(p, 'win', defaultwin); +addParameter(p, 'olap', defaultolap, @(x) isnumeric(x) && (x<100 && x >=0 || x == -1) ); +addParameter(p, 'order', defaultorder,... + @(x) isscalar(x) && (x>=-1)); +addParameter(p, 'scale', defaultscale,... + @(x) any(validatestring(x,expectedscales))); +addParameter(p, 'LTPDAmode', defaultmode); +addParameter(p, 'LTPDAbug', false); + +parse(p, varargin{:}); + +ts = p.Results.ts; +if isrow(ts) + ts = ts'; +end +if size(ts,2) ~= 1 + error('input ts not Nx1 or 1xN'); +end +fs = p.Results.fs; +desAvg = p.Results.Kdes; +Lmin = p.Results.Lmin; +desFreqs = p.Results.Jdes; +if desFreqs < 2 + error('Jdes should be >= 1') +end +wintype = p.Results.win; +if p.Results.olap == -1 + [~, mw] = getwin(wintype,1); + olap = mw.rov/100.0; +else + olap = p.Results.olap/100.0; +end + +order = p.Results.order; +scale = p.Results.scale; +ltpdamode = p.Results.LTPDAmode; +LTPDAbug = p.Results.LTPDAbug; +%% ------ Set up some variables ------------------------------------------- +entireData = ts; +nData = length(entireData); +fmin = fs / nData; % * bmin; +fmax = fs/2; +g = log(fmax) - log(fmin); +minAvgs = 1; +maxFreqs = 2*desFreqs; %overestimate n. of fourier frequencies +ravg = fs/nData * (1 + (1-olap)*(double(desAvg)-1)); +rmin = fs/nData * (1 + (1-olap)*(double(minAvgs)-1)); + +%% calculating freqs and resolution + +bmin = 1; +%LTPDA Switch: +if ltpdamode + % LTPDA version + Ndata = nData; + Jdes = desFreqs; + Kdes = desAvg; + + xov = (1 - olap); + fmin = fs / Ndata * bmin; + fmax = fs/2; + fresmin = fs / Ndata; + freslim = fresmin * (1+xov*(Kdes-1)); + logfact = (Ndata/2)^(1/Jdes) - 1; + + f = []; + r = []; + b = []; + L = []; + K = []; + + fi = fmin; + while fi < fmax + + fres = fi * logfact; + if fres <= freslim + fres = sqrt(fres*freslim); + end + if fres < fresmin + fres = fresmin; + end + + bin = fi/fres; + if bin < bmin + bin = bmin; + fres = fi/bin; + end + + dftlen = round(fs / fres); + if dftlen > Ndata + dftlen = Ndata; + end + if dftlen < Lmin + dftlen = Lmin; + end + + nseg = round((Ndata - dftlen) / (xov*dftlen) + 1); + if nseg == 1 + dftlen = Ndata; + end + + fres = fs / dftlen; + bin = fi / fres; + + % Store outputs + f = [f fi]; %#ok<*AGROW> + r = [r fres]; + b = [b bin]; + L = [L dftlen]; + K = [K nseg]; + + fi = fi + fres; + + end + segLength = L(:); + fArr = f(:); + binArr = b(:); + P = zeros(size(fArr)); + enbwcoef = zeros(size(fArr)); + j = 1:length(f); + nAvgs = K(:); + +elseif ~ltpdamode + % Implementation according to the paper (see reference in header) + j = (0:1:maxFreqs-1); + f = fmin*exp(g*(double(j)/(double(desFreqs)-1))); + r_1p = f*g/(double(desFreqs)-1); + r_2p = zeros(size(r_1p)); + + segLength = zeros(1,maxFreqs); + fRes = zeros(1,maxFreqs); + fArr = zeros(1,maxFreqs); + binArr = zeros(1,maxFreqs); + jj = 1; + fj = f(jj); + while fj < fmax + if r_1p(jj) >= ravg % eq. 18 in the paper + r_2p(jj) = r_1p(jj); + elseif sqrt(r_1p(jj)*ravg) > rmin && r_1p(jj) < ravg % see errata + r_2p(jj) = sqrt(r_1p(jj)*ravg); + else + r_2p(jj) = rmin; + end + segLength(jj) = round(fs/r_2p(jj)); + fRes(jj) = fs/double(segLength(jj)); + fArr(jj) = fj; + binArr(jj) = fArr(jj)/fRes(jj); + + fj = fArr(jj) + fRes(jj); + jj = jj+1; + end + %% -- crop --- + segLength = segLength(1:jj-1)'; + fArr = fArr(1:jj-1)'; + binArr = binArr(1:jj-1)'; + P = zeros(1,jj-1)'; + enbwcoef = zeros(size(fArr)); + j = j(1:jj-1)'; + nAvgs = floor(double(nData - segLength)./(double(segLength).*(1-olap))+1); + %A = (nAvgs == 1); why? + %segLength(A) = nData; +end + +%% -- loop over frequencies and segments +for jj = 1:length(j) + ll = (0:segLength(jj)-1)'; + + if nAvgs(jj) == 1 + segShift = 1; + else + segShift = (nData-segLength(jj))/(nAvgs(jj)-1); + end + + Aj = zeros(1,nAvgs(jj)); + win = getwin(wintype,segLength(jj)); + S1 = sum(win); + S2 = sum(win.^2); + C_PS = 2/S1^2; + C_PSD = 2/(fs*S2); + + % use same order in LTPDA (deviations close to machine precision) + fourierFactor = exp(2*pi*1i*binArr(jj)/segLength(jj).*ll); + detrendMat = []; + detrendMatInv = []; + + for kk = 0:int32(nAvgs(jj))-1 + + seg = entireData(kk*segShift+1:kk*segShift+segLength(jj)); + segAvg = sum(seg)/segLength(jj); + + %detrend options + if order == -1 %no detrend + weightedSeg = seg.*win; + elseif order == 0 + weightedSeg = (seg - segAvg).*win; + else + if size(detrendMat,1) ~= numel(seg) + % self-made polynomial fitting + % matlab polyfit is too slow here + detrendMat = ones(numel(seg),1); + for iz=1:order + detrendMat(:,iz+1) = ((1:1:numel(seg))/numel(seg))'.^iz; + end + detrendMatInv=inv(detrendMat'*detrendMat)*detrendMat'; %#ok<MINV> + end + pf = detrendMatInv*seg; % pf contains polynomial coefficients + weightedSeg = (seg-detrendMat*pf).*win; + end + + Aj(kk+1) = sum(weightedSeg .* fourierFactor); + end + + if LTPDAbug + % reproduce buggy Welford's algorithm that LTPDA is using + tt = Aj.*conj(Aj); + Mr = 0; + for ii=1:length(tt) + if ii==1 + Mr = tt(ii); + else + Mr = Mr + (tt(ii)-Mr)/(ii-1); % here is the off by one error + end + end + % replace result with wrong result from LTPDA + P(jj) = Mr; % replace result + else + % compute average + P(jj) = sum(Aj.*conj(Aj))/(nAvgs(jj)); + end + + enbwcoef(jj) = fs*S2/S1^2; + scale = upper(scale); + switch scale + case 'PSD' + P(jj) = C_PSD*P(jj); + case 'PS' + P(jj) = C_PS*P(jj); + case 'ASD' + P(jj) = sqrt(C_PSD*P(jj)); + case 'AS' + P(jj) = sqrt(C_PS*P(jj)); + otherwise + error('undefined scale? %s',scale); + end +end + + +if nargout == 0 + % create a basic plot + figure; + plot(fArr, P) + set(gca, 'yscale', 'log', 'xscale', 'log') + xlabel('Fourier Frequency [Hz]') + if strcmpi(scale, 'PS') + ylabel('Signal PS [X^2]') + elseif strcmpi(scale, 'PSD') + ylabel('Signal PSD [X^2/Hz]') + elseif strcmpi(scale, 'AS') + ylabel('Signal AS [X]') + elseif strcmpi(scale, 'ASD') + ylabel('Signal ASD [X/rtHz]') + end + + clearvars('P'); % remove output, if no semicolon +end + +end diff --git a/utils/facade/fpsd.m b/utils/facade/fpsd.m new file mode 100644 index 0000000000000000000000000000000000000000..c12b2aa4107d9208491721cd1e627c87e31e0a81 --- /dev/null +++ b/utils/facade/fpsd.m @@ -0,0 +1,334 @@ +function [P, fArr, enbw, dev] = fpsd(varargin) +%% Compute Power Spectral Density (PSD) of a time-series +% +% Code has been ported from LTPDA to bare MATLAB +% +% Example: +% y = randn(100000,1)*sqrt(3/2)*1e-3; +% [P,F] = mypsd( 'ts', y, 'fs', 3, 'scale','asd'); +% loglog(F, P); +% +% +% WOSA implements Welch's overlaped segmented averaging algorithm with +% segment detrending and variance estimation. +% +% INPUTS: +% ts - y-values of time-series +% fs - sample frequency in [Hz] +% win - window name, e.g. 'hanning' +% see documentation of "getwin.m" +% navs - force numbers of averages +% +% Order - order of detrending +% -1 - no detrending +% 0 - subtract mean +% 1 - subtract linear fit +% N - subtract fit of polynomial, order N +% Scale - Scaling of output. Choose from: +% 'AS' - Amplitude (linear) Spectrum +% 'ASD' - Amplitude (linear) Spectral Density +% 'PS' - Power Spectrum +% 'PSD' - Power Spectral Density [default] +% +% Olap - desired overlap percentage, value between 0..100 +% (default value of -1 means taken "optimum" for window function) +% nfft - number of samples in each fft [default: length of input data]. +% +% OUTPUTS: +% P - spectral estimate in units requested by 'scale' parameter +% Nx1 +% fArr - frequency values in [Hz] +% Nx1 +% enbw - Equivalent Noise Bandwidth [Hz] +% dev - standard deviation at each PSD sample (from averaging), +% empty [] if no averaging was applied +% +% +% +% Author: Arthur Reis +% email: arthur.reis@aei.mpg.de +% last rev: 08.02.2022 +% -------------------------------------------------------------------- + +%% process inputs +defaultts = []; +defaultfs = 0; +defaultwin = 'hanning'; +defaultolap = -1; +defaultnfft = -1; +defaultnavs = -1; +defaultmask = []; +defaultorder = 0; +defaultscale = 'PSD'; +expectedscales = {'AS','PS','ASD','PSD'}; + +% parameter parsing, required parms will throw error w/ defaults; +p = inputParser; +addParameter(p, 'ts', defaultts, @(x) ~isempty(x)); +addParameter(p, 'fs', defaultfs, @(x) isnumeric(x) && x>0); +addParameter(p, 'win', defaultwin); +addParameter(p, 'mask', defaultmask); +addParameter(p, 'olap', defaultolap); +addParameter(p, 'order', defaultorder,... + @(x) isscalar(x) && (x>=-1)); +addParameter(p, 'scale', defaultscale,... + @(x) any(validatestring(x,expectedscales))); +addParameter(p, 'nfft', defaultnfft); +addParameter(p, 'navs', defaultnavs); + +parse(p, varargin{:}); + +ts = p.Results.ts; +if isrow(ts) + ts = ts'; +end +if size(ts,2) ~= 1 + error('input ts not Nx1 or 1xN'); +end +fs = p.Results.fs; +wintype = p.Results.win; +if p.Results.olap == -1 + [~, mw] = getwin(wintype,1); + olap = mw.rov/100.0; +else + olap = p.Results.olap/100.0; +end + +mask = p.Results.mask; +order = p.Results.order; +scale = p.Results.scale; +nfft = p.Results.nfft; +navs = p.Results.navs; +if nfft == -1 && navs < 1 + nfft = length(ts); +end %apply default + +L = numel(ts); + + +if navs > 1 + if nfft ~= -1 + warning('navs and nfft specified. using nfft.'); + else + % Compute the number of segments + M = length(ts); + L2 = round(M/(navs*(1-olap) + olap)); + %fprintf('Asked for navs = %d\n', navs); + % Checks it will really obtain the correct answer. + % This is needed to cope with the need to work with integers + while fix((M-round(L2*olap))/(L2-round(L2*olap))) < navs + L2 = L2 - 1; + end + %navs_actual = fix((M-round(L2*olap))/(L2-round(L2*olap))); + %fprintf( 'Expect to get navs_actual = %d\n', navs_actual); + if L2 > 0 + % Reset Nfft + nfft = L2; + %fprintf('reset navs to %d\n', fix(navs_actual)); + end + end +end + +winVals = getwin(wintype, nfft); +xolap = round(olap*nfft); % Should this be round or floor? +nSegments = fix((L - xolap) ./ (nfft - xolap)); + +% Compute start and end indices of each segment +segmentStep = nfft - xolap; +segmentStarts = 1 : segmentStep : nSegments*segmentStep; +segmentEnds = segmentStarts + nfft - 1; + +if isempty(mask) %? + mask = ones(1, nSegments); +end +if length(mask) ~= nSegments + error('Please give a mask vector which is the same length as the number of segments (in this case %d)', nSegments); +end + +% ensure we have logicals here +mask = logical(mask); + +% filter the segments according to the mask +segmentStarts = segmentStarts(mask); +segmentEnds = segmentEnds(mask); +nSegments = numel(segmentStarts); + +[Sxx, Svxx] = psdPeriodogram(ts, winVals, nSegments, ... + segmentStarts, segmentEnds, order); +[Pxx, Pvxx] = scaleToPSD(Sxx, Svxx, nfft, fs); +% For the errors, the 1/nSegments factor should come after welchscale +% if we don't want to apply sqrt() to it. We correct for that here. +% It is only needed for 'asd','as' in psd/cpsd, the other cases go +% always through 'PSD'. +if (strcmpi(scale,'PSD') || strcmpi(scale,'PS')) + dP = Pvxx; +elseif (strcmpi(scale,'ASD') || strcmpi(scale,'AS')) + dP = Pvxx / nSegments; +else + error('### Unknown scale') +end + +% Compute frequencies +freqs = psdfreqvec('npts', nfft, 'Fs', fs, 'Range', 'half').'; + +% Scale to required units +[Pxx, dP, enbw] = welchscale(Pxx, dP, winVals, fs, scale); + +if nSegments == 1 + dev = []; +else + dev = sqrt(dP); +end + +% Set outputs +P = Pxx; +fArr = freqs'; +% enbw = enbw; %#ok<ASGSL> +% dev = dev; %#ok<ASGSL> + +if nargout == 0 + % create a basic plot + figure; + plot(freqs', Pxx) + set(gca, 'yscale', 'log', 'xscale', 'log') + xlabel('Fourier Frequency [Hz]') + if strcmpi(scale, 'PS') + ylabel('Signal PS [X^2]') + elseif strcmpi(scale, 'PSD') + ylabel('Signal PSD [X^2/Hz]') + elseif strcmpi(scale, 'AS') + ylabel('Signal AS [X]') + elseif strcmpi(scale, 'ASD') + ylabel('Signal ASD [X/rtHz]') + end + + clearvars('P'); % remove output, if no semicolon +end +end + +% scale averaged periodogram to PSD +function [Pxx, Pvxx] = scaleToPSD(Sxx, Svxx, nfft, fs) + + % Take 1-sided spectrum which means we double the power in the + % appropriate bins + if rem(nfft,2) + indices = 1:(nfft+1)/2; % ODD + Sxx1sided = Sxx(indices,:); + % double the power except for the DC bin + Sxx = [Sxx1sided(1,:); 2*Sxx1sided(2:end,:)]; + if ~isempty(Svxx) + Svxx1sided = Svxx(indices,:); + Svxx = [Svxx1sided(1,:); 4*Svxx1sided(2:end,:)]; + end + else + indices = 1:nfft/2+1; % EVEN + Sxx1sided = Sxx(indices,:); + % Double power except the DC bin and the Nyquist bin + Sxx = [Sxx1sided(1,:); 2*Sxx1sided(2:end-1,:); Sxx1sided(end,:)]; + if ~isempty(Svxx) + Svxx1sided = Svxx(indices,:); % Take only [0,pi] or [0,pi) + Svxx = [Svxx1sided(1,:); 4*Svxx1sided(2:end-1,:); Svxx1sided(end,:)]; + end + end + + % Now scale to PSD + Pxx = Sxx ./ fs; + Pvxx = Svxx ./ fs^2; +end + +% compute psd +function [Sxx, Svxx] = psdPeriodogram(x, winVals, nSegments, segmentStarts, segmentEnds, order) + Mnxx = 0; + Mn2xx = 0; + nfft = segmentEnds(1) - segmentStarts(1) + 1; + detrendMat = []; + detrendMatInv = []; + % Loop over the segments + for ii = 1:nSegments + seg = x(segmentStarts(ii):segmentEnds(ii)); + if order == -1 % + ; %#ok<NOSEMI> + elseif order == 0 + seg = (seg - mean(seg)); + else + if size(detrendMat,1) ~= numel(seg) + detrendMat = ones(numel(seg),1); + for iz=1:order + detrendMat(:,iz+1) = ((1:1:numel(seg))/numel(seg))'.^iz; + end + detrendMatInv=inv(detrendMat'*detrendMat)*detrendMat'; %#ok<MINV> + end + pf = detrendMatInv*seg; + seg = (seg-detrendMat*pf); + end + % Compute periodogram + Sxxk = wosa_periodogram(seg, [], winVals, nfft); + % Welford's algorithm for updating mean and variance + if ii == 1 + Mnxx = Sxxk; + else + Qxx = Sxxk - Mnxx; + Mnxx = Mnxx + Qxx/ii; + Mn2xx = Mn2xx + Qxx .* (Sxxk - Mnxx); + end + end + Sxx = Mnxx; + if nSegments == 1 + Svxx = []; + else + Svxx = Mn2xx/(nSegments-1)/nSegments; + end + +end + +function Sxx = wosa_periodogram(x, ~, win, nfft) + + xwin = x .* win; + X = fft(xwin, nfft); + K = win' * win; + Sxx = X .* conj(X) / K; + +end + +function [yy, dyy, enbw] = welchscale(xx, dxx, win, fs, norm) + + S1 = sum(win); + S2 = sum(win.^2); + enbw = fs * S2 / (S1*S1); + + if isempty(norm) + norm = 'None'; + end + switch lower(norm) + case 'asd' + yy = sqrt(xx); + if isempty(dxx) + dyy = dxx; + else + dyy = 1./2./sqrt(xx) .* dxx; + end + + case 'psd' + yy = xx; + dyy = dxx; + + case 'as' + yy = sqrt(xx * enbw); + if isempty(dxx) + dyy = dxx; + else + dyy = 1./2./sqrt(xx) .* dxx * enbw; + end + + case 'ps' + yy = xx * enbw; + dyy = dxx * enbw; + + case 'none' + yy = xx; + dyy = dxx; + + otherwise + error('Unknown normalisation'); + end +end \ No newline at end of file diff --git a/utils/facade/getwin.m b/utils/facade/getwin.m new file mode 100644 index 0000000000000000000000000000000000000000..03314db08ac443f25623595b8cf27e3b4939e45e --- /dev/null +++ b/utils/facade/getwin.m @@ -0,0 +1,109 @@ +function varargout = getwin(varargin) +%% GETWIN - return an array of length N of the window function. +% +% Uses the implementation of window functions from LTPDA and returns a simple +% array of values. +% +% Example: +% [winvals, winstruct] = getwin('hanning', N) +% [winstruct] = getwin('hanning') +% +% +% Inputs: +% winname - name of the window function, string, see list below +% N - length of the array, integer; +% +% Outputs: +% winvals - window values Nx1 +% winstruct - struct containing informtion on the window function +% +% ----------------------------------------------------------------------- +% Reference: Heinzel, G., Rüdiger, A., & Schilling, R. (2002). Spectrum and +% spectral density estimation by the Discrete Fourier transform (DFT), +% including a comprehensive list of window functions and some new +% flat-top windows., http://hdl.handle.net/11858/00-001M-0000-0013-557A-5 +% ----------------------------------------------------------------------- +% Author: Arthur Reis +% email: arthur.reis@aei.mpg.de +% Nov 2021; Last revision: 28.Jan.2022; +% --------------------------- +% List of available window functions: +% 'Rectangular' +% 'Welch' +% 'Bartlett' +% 'Hanning' +% 'Hamming' +% 'Nuttall3' +% 'Nuttall4' +% 'Nuttall3a' +% 'Nuttall3b' +% 'Nuttall4a' +% 'Nuttall4b' +% 'Nuttall4c' +% 'BH92' +% 'SFT3F' +% 'SFT3M' +% 'FTNI' +% 'SFT4F' +% 'SFT5F' +% 'SFT4M' +% 'FTHP' +% 'HFT70' +% 'FTSRS' +% 'SFT5M' +% 'HFT90D' +% 'HFT95' +% 'HFT116D' +% 'HFT144D' +% 'HFT169D' +% 'HFT196D' +% 'HFT223D' +% 'HFT248D' +% 'Kaiser' +% 'levelledHanning' + + + window.type = ''; % name of window object + window.alpha = []; % alpha parameter for various window functions + window.psll = []; % peak sidelobe level + window.rov = []; % recommended overlap + window.nenbw = []; % normalised equivalent noise bandwidth + window.w3db = []; % 3 dB bandwidth in bins + window.flatness = []; % window flatness + window.levelorder = []; % levelling coefficient + window.skip = []; %#ok<*STRNU> % number of bins to skip + % + if ~exist('win_hanning.m','file') + error('you need to add facade repository or "windows" sub-folder to PATH'); + end + if nargout == 1 && nargin == 1 + if isa(varargin{1},'struct') + winname = lower(varargin{1}.type); + N = varargin{1}.len; %#ok<NASGU> + window = eval(strcat('win_',winname,'(window, ''define'', N)')); %#ok<NASGU> + varargout{1} = eval(strcat('win_',winname,'(window, ''build'', N)'))'; + else + % if only the name is specified, return struct without evaluating + %return only struct + N = -1; %#ok<NASGU> + winname = lower(varargin{1}); + window = eval(strcat('win_',winname,'(window, ''define'', N)')); + varargout{1} = window; + end + elseif nargout == 1 && nargin == 2 + % return only values + winname = lower(varargin{1}); + N = varargin{2}; %#ok<NASGU> + window = eval(strcat('win_',winname,'(window, ''define'', N)')); %#ok<NASGU> + window_values = eval(strcat('win_',winname,'(window, ''build'', N)'))'; + varargout{1} = window_values; + elseif nargout == 2 && nargin == 2 + % return values and struct + winname = lower(varargin{1}); + N = varargin{2}; %#ok<NASGU> + window = eval(strcat('win_',winname,'(window, ''define'', N)')); + varargout{1} = eval(strcat('win_',winname,'(window, ''build'', N)'))'; + varargout{2} = window; + end +end + diff --git a/utils/facade/rand_test.m b/utils/facade/rand_test.m new file mode 100644 index 0000000000000000000000000000000000000000..8c6c9882b691e6ff9bc49e5baee4b9924138fd25 --- /dev/null +++ b/utils/facade/rand_test.m @@ -0,0 +1,107 @@ +clear all; +% ,'BH92', is special, since it has non-zero drop samples +% +% drop samples is not implemented in LTPDA LPSD, but in LTPDA/PSD, and not +% in facade +winL = {'Rectangular','Welch','Bartlett','Hanning','Hamming','Nuttall3','Nuttall4','Nuttall3a','Nuttall3b','Nuttall4a','Nuttall4b','Nuttall4c','SFT3F','SFT3M','FTNI','SFT4F','SFT5F','SFT4M','FTHP','HFT70','FTSRS','SFT5M','HFT90D','HFT95','HFT116D','HFT144D','HFT169D','HFT196D','HFT223D','HFT248D'}; +while (true) + fSample = (rand(1))*1e3; + N=round(rand(1)*1e5); + mt = [0:1:N]/fSample; + fsin = 10^(rand(1))*log10(fSample/2); + pf1 = randn(1); + pf2 = randn(1); + y = randn(size(mt))*sqrt(fSample/2)*1e-3 + sqrt(2)*sin(2*pi*fsin*mt)+ mt*pf1 + mt.^2*pf2; + + Kdes = round((rand(1)*200)+1); + Jdes = round((rand(1)*2000)+1); + Lmin = 0; + if round(rand(1)) + mynavs = round(rand(1)*100); + elseif round(rand(1)) + mynavs = 0; + else + mynavs = -1; + end + + if round(rand(1)) + nfft = round(rand(1)*N); + else + nfft = -1; + end + + if round(rand(1)) + olap = round(rand(1)*100); + else + olap = -1; + end + + order = round(rand(1)*3)-1; + + %mywin = 'bh92'; + mywin = winL{ ceil(rand(1)*numel(winL)) }; + ll = {'ASD','PSD','PS','AS'}; + myscale = ll{floor((rand(1))*4)+1}; + ap1 = ao(plist('type','tsdata','yvals', y,'fs', fSample,'yunits','m','name','x')); + % Compare implementations + +% tic +% [a_org,f_org, enbwcoeff] = flpsd( 'ts', y, 'fs', fSample, 'Kdes', Kdes, 'Lmin', Lmin, ... +% 'Jdes', Jdes, 'win', mywin, 'olap', olap, 'order', order,... +% 'scale', myscale, 'LTPDAmode',false); +% toc + tic + [a_ltp,f_ltp, enbwcoeff2] = flpsd( 'ts', y, 'fs', fSample, 'Kdes', Kdes, 'Lmin', Lmin, ... + 'Jdes', Jdes, 'win', mywin, 'olap', olap, 'order', order,... + 'scale', myscale, 'LTPDAmode',true, 'LTPDAbug',true); + toc + tic + + aoPSD2 = lpsd([ap1],plist('scale', myscale,'win', mywin, 'order', order,'kdes',Kdes,'jdes',Jdes,'olap',olap)); + toc + tic + aoPSD3 = psd([ap1],plist('scale', myscale,'win', mywin,'navs',mynavs,'olap',olap,'order', order, 'nfft', nfft )); + toc + tic + [aoPSD4, fpsd4, enbw] = fpsd( 'ts', y, 'fs', fSample, 'win', mywin, 'olap', olap, 'order', order,... + 'scale', myscale, 'navs', mynavs, 'nfft', nfft ); + toc + %% + try + er1 = fpsd4-aoPSD3.x; + catch + numel(fpsd4) + numel(aoPSD3.x) + N/mynavs + end + er2 = abs((aoPSD4-aoPSD3.y)./aoPSD3.y); + if er2(1) > 1e-4 + warning('diff PSD first sample: %e', er2(1)); + elseif any(er2(2:end) > 1e-4) + error('diff PSD: amplitude'); + end + if any(er1 ~=0) + error('diff PSD: frequency'); + end + + er1 = f_ltp-aoPSD2.x; + er2 = abs((a_ltp-aoPSD2.y)./aoPSD2.y); + if any(er2 > 1e-1) + error('diff LPSD: amplitude'); + end + if any(er1 ~=0) + error('diff LPSD: frequency'); + end + %error('fin'); +end % while loope +%% +figure +%loglog(f_org, a_org); hold on; +loglog(f_ltp, a_ltp, aoPSD2.x, aoPSD2.y); +hold on; +loglog(aoPSD3.x, aoPSD3.y); +loglog(fpsd4, aoPSD4,'g--'); +legend('flpsd paper','flpsd rwrt. from LTPDA','LPSD from LTPDA','PSD from LTPDA', 'fpsd'); +%loglog(f_org, a_org, f_ltp, a_ltp, aoPSD2.x, aoPSD2.y); +title('Comparison of implementations') +xlabel('Frequency [Hz]') \ No newline at end of file diff --git a/utils/facade/test_flpsd.m b/utils/facade/test_flpsd.m new file mode 100644 index 0000000000000000000000000000000000000000..6b5f90216d7045f9e7e4c3337ec13bb4093cd070 --- /dev/null +++ b/utils/facade/test_flpsd.m @@ -0,0 +1,190 @@ +func = @(f) 1e-5.*f.^-2 + f.^4; +fMin = 1e-4; +fSample = 1; +fMax = fSample/2; +frequencies = [fMin, fMax, fSample]; +N = 1e5; +fSeries = createFrequencyArray(frequencies(2),0,N,'lin', 2,'reverse'); +enbw = 1; +ts = createTimeseriesFromASD_ENBW(func,fSeries, enbw).Data; +Kdes = 100; +olap = 30; +Jdes = 1000; +Lmin = 1; +ap1 = ao(plist('type','tsdata','yvals', ts,'fs', fSample,'yunits','m','name','x')); +% parameters: ts, fs, Kdes, Lmin, Jdes, win, olap, order, scale +%% Compare implementations +order = 0; +[a_org,f_org] = flpsd( 'ts', ts, 'fs', fSample, 'Kdes', Kdes, 'Lmin', Lmin, ... + 'Jdes', Jdes, 'win', 'hanning', 'olap', olap, 'order', order,... + 'scale', 'PSD', 'LTPDAmode',false); +[a_ltp,f_ltp] = flpsd( 'ts', ts, 'fs', fSample, 'Kdes', Kdes, 'Lmin', Lmin, ... + 'Jdes', Jdes, 'win', 'hanning', 'olap', olap, 'order', order,... + 'scale', 'PSD', 'LTPDAmode',true); + +aoPSD2 = lpsd([ap1],plist('Kdes', Kdes, 'Lmin', Lmin, ... + 'Jdes', Jdes, 'win', 'hanning', 'olap', olap, 'order', order,... + 'scale', 'PSD')); +figure +loglog(f_org, a_org, f_ltp, a_ltp, aoPSD2.x, aoPSD2.y); +legend('LPSD rewritten from paper', 'LPSD rwrt. from LTPDA','LPSD LPDA'); +title('Comparison of implementations') +xlabel('F[Hz]') +ylabel('PSD [units^2/Hz]') + +%% comparison of detrending capabilities +ts = ts + ((1:length(ts))').^2; +y=ts; + +ap1 = ao(plist('type','tsdata','yvals', y,'fs', fSample,'yunits','m','name','x')); +order = 1; +[a_org_1,f_org_1] = flpsd( 'ts', ts, 'fs', fSample, 'Kdes', Kdes, 'Lmin', Lmin, ... + 'Jdes', Jdes, 'win', 'hanning', 'olap', olap, 'order', order,... + 'scale', 'PSD', 'LTPDAmode',false); + +aoPSD2_1 = lpsd([ap1],plist('Kdes', Kdes, 'Lmin', Lmin, ... + 'Jdes', Jdes, 'win', 'hanning', 'olap', olap, 'order', order,... + 'scale', 'PSD')); +order = 2; +[a_org_2,f_org_2] = flpsd( 'ts', ts, 'fs', fSample, 'Kdes', Kdes, 'Lmin', Lmin, ... + 'Jdes', Jdes, 'win', 'hanning', 'olap', olap, 'order', order,... + 'scale', 'PSD', 'LTPDAmode',false); + +aoPSD2_2 = lpsd([ap1],plist('Kdes', Kdes, 'Lmin', Lmin, ... + 'Jdes', Jdes, 'win', 'hanning', 'olap', olap, 'order', order,... + 'scale', 'PSD')); +order = 0; +[a_org_0,f_org_0] = flpsd( 'ts', ts, 'fs', fSample, 'Kdes', Kdes, 'Lmin', Lmin, ... + 'Jdes', Jdes, 'win', 'hanning', 'olap', olap, 'order', order,... + 'scale', 'PSD', 'LTPDAmode',false); + +aoPSD2_0 = lpsd([ap1],plist('Kdes', Kdes, 'Lmin', Lmin, ... + 'Jdes', Jdes, 'win', 'hanning', 'olap', olap, 'order', order,... + 'scale', 'PSD')); + +figure + +t = tiledlayout(2,1); +title(t,'Comparison of detrending capabilities - timeseries w/ quad bias') +ax1 = nexttile; +loglog(f_org_0, a_org_0, f_org_1, a_org_1, f_org_2, a_org_2); +legend('LTPDA remove mean', 'LTPDA remove linear', 'LTPDA remove quad'); +ylabel('PSD [units^2/Hz]') + +ax2 = nexttile; +loglog(aoPSD2_0.x,aoPSD2_0.y, aoPSD2_1.x, aoPSD2_1.y, aoPSD2_2.x, aoPSD2_2.y); +legend('flpsd remove mean', 'flpsd remove linear', 'flpsd remove quad'); +xlabel('F[Hz]') +ylabel('PSD [units^2/Hz]') +linkaxes([ax1,ax2],'x'); + +%% comparison of scales (monochromatic signal) +ts = sqrt(2)*sin(1:10000)'; +ap1 = ao(plist('type','tsdata','yvals', ts,'fs', fSample,'yunits','m','name','x')); +Pflpsd = []; +Fflpsd = []; +Pltpda = []; +Fltpda = []; +scales = {'PSD','PS','ASD','AS'}; +for s=1:4 +[pp,ff] = flpsd( 'ts', ts, 'fs', fSample, 'Kdes', Kdes, 'Lmin', Lmin, ... + 'Jdes', Jdes, 'win', 'hanning', 'olap', olap, 'order', order,... + 'scale', scales{s}); +ltpout = lpsd([ap1],plist('Kdes', Kdes, 'Lmin', Lmin, ... + 'Jdes', Jdes, 'win', 'hanning', 'olap', olap, 'order', order,... + 'scale', scales{s})); + Pflpsd(:,s) = pp; + Fflpsd(:,s) = ff; + Pltpda(:,s) = ltpout.y; + Fltpda(:,s) = ltpout.x; +end + + %% +figure + +t = tiledlayout(2,2); +title(t,'Comparison of scaling capabilities (monochromatic)') + +ax1 = nexttile; +title('PSD') +loglog(Fflpsd(:,1), Pflpsd(:,1),Fltpda(:,1), Pltpda(:,1)); +legend('rewritten','ltpda'); +ylabel('PSD [units^2/Hz]') +xlabel('F[Hz]') + +ax2 = nexttile; +title('PS') +loglog(Fflpsd(:,2), Pflpsd(:,2),Fltpda(:,2), Pltpda(:,2)); +legend('rewritten','ltpda'); +ylabel('PS [units^2]') +xlabel('F[Hz]') + +ax3 = nexttile; +title('ASD') +loglog(Fflpsd(:,3), Pflpsd(:,3),Fltpda(:,3), Pltpda(:,3)); +legend('rewritten','ltpda'); +ylabel('ASD [units/sqrt(Hz)]') +xlabel('F[Hz]') + +ax4 = nexttile; + +title('AS') +loglog(Fflpsd(:,4), Pflpsd(:,4),Fltpda(:,4), Pltpda(:,4)); +legend('rewritten','ltpda');ylabel('AS [units]') +xlabel('F[Hz]') + +%% comparison of scales broad spectrum signal +ts = createTimeseriesFromASD_ENBW(func,fSeries, enbw).Data; +ap1 = ao(plist('type','tsdata','yvals', ts,'fs', fSample,'yunits','m','name','x')); +Pflpsd = []; +Fflpsd = []; +Pltpda = []; +Fltpda = []; +scales = {'PSD','PS','ASD','AS'}; +for s=1:4 +[pp,ff] = flpsd( 'ts', ts, 'fs', fSample, 'Kdes', Kdes, 'Lmin', Lmin, ... + 'Jdes', Jdes, 'win', 'hanning', 'olap', olap, 'order', order,... + 'scale', scales{s}); +ltpout = lpsd([ap1],plist('Kdes', Kdes, 'Lmin', Lmin, ... + 'Jdes', Jdes, 'win', 'hanning', 'olap', olap, 'order', order,... + 'scale', scales{s})); + Pflpsd(:,s) = pp; + Fflpsd(:,s) = ff; + Pltpda(:,s) = ltpout.y; + Fltpda(:,s) = ltpout.x; +end + +%% +figure + +t = tiledlayout(2,2); +title(t,'Comparison of scaling capabilities (broad spec)') + +ax1 = nexttile; +title('PSD') +loglog(Fflpsd(:,1), Pflpsd(:,1),Fltpda(:,1), Pltpda(:,1)); +legend('rewritten','ltpda'); +ylabel('PSD [units^2/Hz]') +xlabel('F[Hz]') + +ax2 = nexttile; +title('PS') +loglog(Fflpsd(:,2), Pflpsd(:,2),Fltpda(:,2), Pltpda(:,2)); +legend('rewritten','ltpda'); +ylabel('PS [units^2]') +xlabel('F[Hz]') + +ax3 = nexttile; +title('ASD') +loglog(Fflpsd(:,3), Pflpsd(:,3),Fltpda(:,3), Pltpda(:,3)); +legend('rewritten','ltpda'); +ylabel('ASD [units/sqrt(Hz)]') +xlabel('F[Hz]') + +ax4 = nexttile; + +title('AS') +loglog(Fflpsd(:,4), Pflpsd(:,4),Fltpda(:,4), Pltpda(:,4)); +legend('rewritten','ltpda'); +ylabel('AS [units]') +xlabel('F[Hz]') diff --git a/utils/facade/test_fpsd.m b/utils/facade/test_fpsd.m new file mode 100644 index 0000000000000000000000000000000000000000..9af0bc635b7c45e497bf45af8e978e7e92d685a2 --- /dev/null +++ b/utils/facade/test_fpsd.m @@ -0,0 +1,176 @@ +func = @(f) 1e-5.*f.^-3 + 2e-2*f.^1; +fMin = 1e-4; +fSample = 1; +fMax = fSample/2; +frequencies = [fMin, fMax, fSample]; +N = 1e5; +fSeries = createFrequencyArray(frequencies(2),0,N,'lin', 2,'reverse'); +enbw = 1; +ts = createTimeseriesFromASD_ENBW(func,fSeries, enbw).Data; +Kdes = 100; +olap = 30; +Jdes = 1000; +Lmin = 1; +ap1 = ao(plist('type','tsdata','yvals', ts,'fs', fSample,'yunits','m','name','x')); +% parameters: ts, fs, Kdes, Lmin, Jdes, win, olap, order, scale +%% Compare implementations +order = 0; +[a_org,f_org] = fpsd('ts', ts, 'fs', fSample,'mask',[], 'win',... + 'hanning', 'olap', olap, 'order', order,... + 'scale', 'PSD'); + aoPSD2 = psd([ap1],plist('scale','psd','win','hanning','order',2)); + + figure + loglog(f_org, a_org, aoPSD2.x, aoPSD2.y); + legend('fpsd', 'PSD from LTPDA'); + title('Comparison of PSD implementations') + xlabel('F[Hz]') + ylabel('PSD [units^2/Hz]') + +%% comparison of detrending capabilities +ts = ts + ((1:length(ts))').^2; +y=ts; + +ap1 = ao(plist('type','tsdata','yvals', y,'fs', fSample,'yunits','m','name','x')); +order = 1; +[a_org_1,f_org_1] = fpsd('ts', ts, 'fs', fSample,'mask',[], 'win',... + 'hanning', 'olap', olap, 'order', order,... + 'scale', 'PSD'); + +aoPSD2_1 = psd([ap1],plist('scale','psd','win','hanning','order',order)); +order = 2; +[a_org_2,f_org_2] = fpsd('ts', ts, 'fs', fSample,'mask',[], 'win',... + 'hanning', 'olap', olap, 'order', order,... + 'scale', 'PSD'); + +aoPSD2_2 = psd([ap1],plist('scale','psd','win','hanning','order',order)); +order = 0; +[a_org_0,f_org_0] = fpsd('ts', ts, 'fs', fSample,'mask',[], 'win',... + 'hanning', 'olap', olap, 'order', order,... + 'scale', 'PSD'); + +aoPSD2_0 = psd([ap1],plist('scale','psd','win','hanning','order',order)); + +figure + +t = tiledlayout(2,1); +title(t,'Comparison of detrending capabilities - timeseries w/ quad bias') +ax1 = nexttile; +loglog(f_org_0, a_org_0, f_org_1, a_org_1, f_org_2, a_org_2); +legend('LTPDA remove mean', 'LTPDA remove linear', 'LTPDA remove quad'); +ylabel('PSD [units^2/Hz]') + +ax2 = nexttile; +loglog(aoPSD2_0.x,aoPSD2_0.y, aoPSD2_1.x, aoPSD2_1.y, aoPSD2_2.x, aoPSD2_2.y); +legend('fpsd remove mean', 'fpsd remove linear', 'fpsd remove quad'); +xlabel('F[Hz]') +ylabel('PSD [units^2/Hz]') +linkaxes([ax1,ax2],'x'); + +%% comparison of scales (monochromatic signal) +order = -1; +ts = sqrt(2)*sin(1:10000)'; +ap1 = ao(plist('type','tsdata','yvals', ts,'fs', fSample,'yunits','m','name','x')); +Pflpsd = []; +Fflpsd = []; +Pltpda = []; +Fltpda = []; +scales = {'PSD','PS','ASD','AS'}; +for s=1:4 +[pp,ff] = fpsd('ts', ts, 'fs', fSample,'mask',[], 'win',... + 'hanning', 'olap', olap, 'order', order,... + 'scale', scales{s}); +ltpout = psd([ap1],plist('scale',scales{s},'win','hanning','order',order)); + Pflpsd(:,s) = pp; + Fflpsd(:,s) = ff; + Pltpda(:,s) = ltpout.y; + Fltpda(:,s) = ltpout.x; +end + + %% +figure + +t = tiledlayout(2,2); +title(t,'Comparison of scaling capabilities (monochromatic)') + +ax1 = nexttile; +title('PSD') +loglog(Fflpsd(:,1), Pflpsd(:,1),Fltpda(:,1), Pltpda(:,1)); +legend('rewritten','ltpda'); +ylabel('PSD [units^2/Hz]') +xlabel('F[Hz]') + +ax2 = nexttile; +title('PS') +loglog(Fflpsd(:,2), Pflpsd(:,2),Fltpda(:,2), Pltpda(:,2)); +legend('rewritten','ltpda'); +ylabel('PS [units^2]') +xlabel('F[Hz]') + +ax3 = nexttile; +title('ASD') +loglog(Fflpsd(:,3), Pflpsd(:,3),Fltpda(:,3), Pltpda(:,3)); +legend('rewritten','ltpda'); +ylabel('ASD [units/sqrt(Hz)]') +xlabel('F[Hz]') + +ax4 = nexttile; + +title('AS') +loglog(Fflpsd(:,4), Pflpsd(:,4),Fltpda(:,4), Pltpda(:,4)); +legend('rewritten','ltpda');ylabel('AS [units]') +xlabel('F[Hz]') + +%% comparison of scales broad spectrum signal +ts = createTimeseriesFromASD_ENBW(func,fSeries, enbw).Data; +ap1 = ao(plist('type','tsdata','yvals', ts,'fs', fSample,'yunits','m','name','x')); +Pflpsd = []; +Fflpsd = []; +Pltpda = []; +Fltpda = []; +scales = {'PSD','PS','ASD','AS'}; +for s=1:4 +[pp,ff] = fpsd('ts', ts, 'fs', fSample,'mask',[], 'win',... + 'hanning', 'olap', olap, 'order', order,... + 'scale', scales{s}); +ltpout = psd([ap1],plist('scale',scales{s},'win','hanning','order',order)); + Pflpsd(:,s) = pp; + Fflpsd(:,s) = ff; + Pltpda(:,s) = ltpout.y; + Fltpda(:,s) = ltpout.x; +end + +%% +figure + +t = tiledlayout(2,2); +title(t,'Comparison of scaling capabilities (broad spec)') + +ax1 = nexttile; +title('PSD') +loglog(Fflpsd(:,1), Pflpsd(:,1),Fltpda(:,1), Pltpda(:,1)); +legend('rewritten','ltpda'); +ylabel('PSD [units^2/Hz]') +xlabel('F[Hz]') + +ax2 = nexttile; +title('PS') +loglog(Fflpsd(:,2), Pflpsd(:,2),Fltpda(:,2), Pltpda(:,2)); +legend('rewritten','ltpda'); +ylabel('PS [units^2]') +xlabel('F[Hz]') + +ax3 = nexttile; +title('ASD') +loglog(Fflpsd(:,3), Pflpsd(:,3),Fltpda(:,3), Pltpda(:,3)); +legend('rewritten','ltpda'); +ylabel('ASD [units/sqrt(Hz)]') +xlabel('F[Hz]') + +ax4 = nexttile; + +title('AS') +loglog(Fflpsd(:,4), Pflpsd(:,4),Fltpda(:,4), Pltpda(:,4)); +legend('rewritten','ltpda'); +ylabel('AS [units]') +xlabel('F[Hz]') diff --git a/utils/facade/windows/win_bartlett.m b/utils/facade/windows/win_bartlett.m new file mode 100644 index 0000000000000000000000000000000000000000..0e0fba116704c1de1657a1e31631726bca172283 --- /dev/null +++ b/utils/facade/windows/win_bartlett.m @@ -0,0 +1,37 @@ +% WIN_BARTLETT returns Bartlett window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_bartlett(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N; + v = z * 2; + idx = find(v > 1); + v(idx) = 2 - v(idx); + varargout{1} = v; + + case 'define' + % Make window struct + w.type = 'Bartlett'; + w.alpha = 0; + w.psll = 26.5; + w.rov = 50; + w.nenbw = 1.3333; + w.w3db = 1.2736; + w.flatness = -1.8242; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_bh92.m b/utils/facade/windows/win_bh92.m new file mode 100644 index 0000000000000000000000000000000000000000..91e8678f8c280040556a75ce85bdc4757d2d1b98 --- /dev/null +++ b/utils/facade/windows/win_bh92.m @@ -0,0 +1,34 @@ +% WIN_BH92 returns BH92 window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_bh92(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = 0.35875 - 0.48829 * cos (z) + 0.14128 * cos (2 * z) - 0.01168 * cos (3 * z); + + case 'define' + % Make window struct + w.type = 'BH92'; + w.alpha = 0; + w.psll = 92; + w.rov = 66.1; + w.nenbw = 2.0044; + w.w3db = 1.8962; + w.flatness = -0.8256; + w.len = N; + w.skip = 4; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_fthp.m b/utils/facade/windows/win_fthp.m new file mode 100644 index 0000000000000000000000000000000000000000..807ff40a76e2847acd3863fcc670bae50f099338 --- /dev/null +++ b/utils/facade/windows/win_fthp.m @@ -0,0 +1,36 @@ +% WIN_FTHP returns FTHP window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_fthp(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = (1 + 1.912510941 * cos (z) + ... + 1.079173272 * cos (2 * z) + ... + 0.1832630879 * cos (3 * z)); + + case 'define' + % Make window struct + w.type = 'FTHP'; + w.alpha = 0; + w.psll = 70.4; + w.rov = 72.3; + w.nenbw = 3.4279; + w.w3db = 3.3846; + w.flatness = 0.0096; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_ftni.m b/utils/facade/windows/win_ftni.m new file mode 100644 index 0000000000000000000000000000000000000000..2e425c9f203d26324428293b0a564ef6639c90df --- /dev/null +++ b/utils/facade/windows/win_ftni.m @@ -0,0 +1,34 @@ +% WIN_FTNI returns FTNI window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_ftni(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = 0.2810639 - 0.5208972 * cos (z) + 0.1980399 * cos (2 * z); + + case 'define' + % Make window struct + w.type = 'FTNI'; + w.alpha = 0; + w.psll = 44.4; + w.rov = 65.6; + w.nenbw = 2.9656; + w.w3db = 2.9355; + w.flatness = 0.0169; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_ftsrs.m b/utils/facade/windows/win_ftsrs.m new file mode 100644 index 0000000000000000000000000000000000000000..46caca5f9f3f04ff58eecceeff21238891015667 --- /dev/null +++ b/utils/facade/windows/win_ftsrs.m @@ -0,0 +1,35 @@ +% WIN_FTSRS returns FTSRS window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_ftsrs(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = (1.0 - 1.93 * cos (z) + ... + 1.29 * cos (2 * z) - 0.388 * cos (3 * z) + 0.028 * cos (4 * z)); + + case 'define' + % Make window struct + w.type = 'FTSRS'; + w.alpha = 0; + w.psll = 76.6; + w.rov = 75.4; + w.nenbw = 3.7702; + w.w3db = 3.7274; + w.flatness = -0.0156; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_hamming.m b/utils/facade/windows/win_hamming.m new file mode 100644 index 0000000000000000000000000000000000000000..7546e7cdb2799aa61dc98643d1d2e334a95d76e8 --- /dev/null +++ b/utils/facade/windows/win_hamming.m @@ -0,0 +1,35 @@ +% WIN_HAMMING returns Hamming window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_hamming(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = 0.54 - 0.46 * cos(z); + + case 'define' + % Make window struct + w.type = 'Hamming'; + w.alpha = 0; + w.psll = 42.7; + w.rov = 50; + w.nenbw = 1.3628; + w.w3db = 1.3008; + w.flatness = -1.7514; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END + diff --git a/utils/facade/windows/win_hanning.m b/utils/facade/windows/win_hanning.m new file mode 100644 index 0000000000000000000000000000000000000000..403d498b38ba149eb0ce83d5a0eb77599f322953 --- /dev/null +++ b/utils/facade/windows/win_hanning.m @@ -0,0 +1,34 @@ +% WIN_HANNING returns Hanning window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_hanning(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = 0.5 * (1 - cos(z)); + + case 'define' + % Make window struct + w.type = 'Hanning'; + w.alpha = 0; + w.psll = 31.5; + w.rov = 50; + w.nenbw = 1.5; + w.w3db = 1.4382; + w.flatness = -1.4236; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_hft116d.m b/utils/facade/windows/win_hft116d.m new file mode 100644 index 0000000000000000000000000000000000000000..af60fa57d8c1511fdeee6e0e1df3207e6b4380c7 --- /dev/null +++ b/utils/facade/windows/win_hft116d.m @@ -0,0 +1,36 @@ +% WIN_HFT116D returns HFT116D window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_hft116d(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = (1 - 1.9575375 * cos (z) + ... + 1.4780705 * cos (2 * z) - 0.6367431 * cos (3 * z) + ... + 0.1228389 * cos (4 * z) - 0.0066288 * cos (5 * z)); + + case 'define' + % Make window struct + w.type = 'HFT116D'; + w.alpha = 0; + w.psll = 116.8; + w.rov = 78.2; + w.nenbw = 4.2186; + w.w3db = 4.1579; + w.flatness = -0.0028; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_hft144d.m b/utils/facade/windows/win_hft144d.m new file mode 100644 index 0000000000000000000000000000000000000000..0267fc64c3cd3e5f70323927166d44892cf2bafc --- /dev/null +++ b/utils/facade/windows/win_hft144d.m @@ -0,0 +1,37 @@ +% WIN_HFT144D returns HFT144D window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_hft144d(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = (1 - 1.96760033 * cos (z) ... + + 1.57983607 * cos (2 * z) - 0.81123644 * cos (3 * z) + ... + 0.22583558 * cos (4 * z) - 0.02773848 * cos (5 * z) + ... + 0.00090360 * cos (6 * z)); + + case 'define' + % Make window struct + w.type = 'HFT144D'; + w.alpha = 0; + w.psll = 144.1; + w.rov = 79.9; + w.nenbw = 4.5386; + w.w3db = 4.4697; + w.flatness = 0.0021; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_hft169d.m b/utils/facade/windows/win_hft169d.m new file mode 100644 index 0000000000000000000000000000000000000000..03c9fedf123d753657ef5dcd68dd5ca38fa40d20 --- /dev/null +++ b/utils/facade/windows/win_hft169d.m @@ -0,0 +1,37 @@ +% WIN_HFT169D returns HFT169D window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_hft169d(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = (1 - 1.97441843 * cos (z) ... + + 1.65409889 * cos (2 * z) - 0.95788187 * cos (3 * z) + ... + 0.33673420 * cos (4 * z) - 0.06364622 * cos (5 * z) + ... + 0.00521942 * cos (6 * z) - 0.00010599 * cos (7 * z)); + + case 'define' + % Make window struct + w.type = 'HFT169D'; + w.alpha = 0; + w.psll = 169.5; + w.rov = 81.2; + w.nenbw = 4.8347; + w.w3db = 4.7588; + w.flatness = 0.0017; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_hft196d.m b/utils/facade/windows/win_hft196d.m new file mode 100644 index 0000000000000000000000000000000000000000..cb0988537d1ea36cfc463e7e539a5b54c6e2be82 --- /dev/null +++ b/utils/facade/windows/win_hft196d.m @@ -0,0 +1,38 @@ +% WIN_HFT196D returns HFT196D window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_hft196d(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = (1 - 1.979280420 * cos (z) + ... + 1.710288951 * cos (2 * z) - 1.081629853 * cos (3 * z) + ... + 0.448734314 * cos (4 * z) - 0.112376628 * cos (5 * z) + ... + 0.015122992 * cos (6 * z) - 0.000871252 * cos (7 * z) + ... + 0.000011896 * cos (8 * z)); + + case 'define' + % Make window struct + w.type = 'HFT196D'; + w.alpha = 0; + w.psll = 196.2; + w.rov = 82.3; + w.nenbw = 5.1134; + w.w3db = 5.0308; + w.flatness = 0.0013; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_hft223d.m b/utils/facade/windows/win_hft223d.m new file mode 100644 index 0000000000000000000000000000000000000000..2dc054a707636dc1eec18403b9c1a1ec1e042ec8 --- /dev/null +++ b/utils/facade/windows/win_hft223d.m @@ -0,0 +1,37 @@ +% WIN_HFT223D returns HFT223D window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_hft223d(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = (1 - 1.98298997309 * cos(z) + ... + 1.75556083063 * cos (2 * z) - 1.19037717712 * cos (3 * z) + ... + 0.56155440797 * cos (4 * z) - 0.17296769663 * cos (5 * z) + ... + 0.03233247087 * cos (6 * z) - 0.00324954578 * cos (7 * z) + ... + 0.00013801040 * cos (8 * z) - 0.00000132725 * cos (9 * z)); + case 'define' + % Make window struct + w.type = 'HFT223D'; + w.alpha = 0; + w.psll = 223; + w.rov = 83.3; + w.nenbw = 5.3888; + w.w3db = 5.3; + w.flatness = -0.0011; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_hft248d.m b/utils/facade/windows/win_hft248d.m new file mode 100644 index 0000000000000000000000000000000000000000..5138fe071732f28e02b322d7d7fcd94b511ee0d9 --- /dev/null +++ b/utils/facade/windows/win_hft248d.m @@ -0,0 +1,39 @@ +% WIN_HFT248D returns HFT248D window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_hft248d(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = (1 - 1.985844164102 * cos(z) + ... + 1.791176438506 * cos (2 * z) - 1.282075284005 * cos (3 * z) + ... + 0.667777530266 * cos (4 * z) - 0.240160796576 * cos (5 * z) + ... + 0.056656381764 * cos (6 * z) - 0.008134974479 * cos (7 * z) + ... + 0.000624544650 * cos (8 * z) - 0.000019808998 * cos (9 * z) + ... + 0.000000132974 * cos (10 * z)); + + case 'define' + % Make window struct + w.type = 'HFT248D'; + w.alpha = 0; + w.psll = 248.4; + w.rov = 84.1; + w.nenbw = 5.6512; + w.w3db = 5.5567; + w.flatness = 0.0009; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_hft70.m b/utils/facade/windows/win_hft70.m new file mode 100644 index 0000000000000000000000000000000000000000..d1fc401a63e93ee055f8679eeec75b4f81ac8e8d --- /dev/null +++ b/utils/facade/windows/win_hft70.m @@ -0,0 +1,35 @@ +% WIN_HFT70 returns HFT70 window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_hft70(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = (1 - 1.90796 * cos (z) + ... + 1.07349 * cos (2 * z) - 0.18199 * cos (3 * z)); + + case 'define' + % Make window struct + w.type = 'HFT70'; + w.alpha = 0; + w.psll = 70.4; + w.rov = 72.2; + w.nenbw = 3.4129; + w.w3db = 3.3720; + w.flatness = -0.0065; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_hft90d.m b/utils/facade/windows/win_hft90d.m new file mode 100644 index 0000000000000000000000000000000000000000..302b296ea6adc609952649b02851661c089b0987 --- /dev/null +++ b/utils/facade/windows/win_hft90d.m @@ -0,0 +1,36 @@ +% WIN_HFT90D returns HFT90D window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_hft90d(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = (1 - 1.942604 * cos (z) + ... + 1.340318 * cos (2 * z) - 0.440811 * cos (3 * z) + ... + 0.043097 * cos (4 * z)); + + case 'define' + % Make window struct + w.type = 'HFT90D'; + w.alpha = 0; + w.psll = 90.2; + w.rov = 76; + w.nenbw = 3.8832; + w.w3db = 3.8320; + w.flatness = -0.0039; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_hft95.m b/utils/facade/windows/win_hft95.m new file mode 100644 index 0000000000000000000000000000000000000000..ac564399978f739cd3e18c75041c02d58b0f9ee7 --- /dev/null +++ b/utils/facade/windows/win_hft95.m @@ -0,0 +1,36 @@ +% WIN_HFT95 returns HFT95 window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_hft95(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = (1 - 1.9383379 * cos (z) + ... + 1.3045202 * cos (2 * z) - 0.4028270 * cos (3 * z) + ... + 0.0350665 * cos (4 * z)); + + case 'define' + % Make window struct + w.type = 'HFT95'; + w.alpha = 0; + w.psll = 95; + w.rov = 75.6; + w.nenbw = 3.8112; + w.w3db = 3.759; + w.flatness = 0.0044; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_kaiser.m b/utils/facade/windows/win_kaiser.m new file mode 100644 index 0000000000000000000000000000000000000000..60bfde1eeaf30317f63f0526c19c866e9a7c2b77 --- /dev/null +++ b/utils/facade/windows/win_kaiser.m @@ -0,0 +1,34 @@ +% WIN_KAISER returns Kaiser window, with N points and psll peak sidelobe level. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_kaiser(w, mode, N, psll) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + + % Compute window samples + % - here we adjust to make the window asymmetric + v = kaiser(N+1, pi*w.alpha)'; + varargout{1} = v(1:end-1); + + case 'define' + % Make window struct + w.type = 'Kaiser'; + w.alpha = specwin.kaiser_alpha(psll); + w.psll = psll; + w.rov = specwin.kaiser_rov(w.alpha); + w.nenbw = specwin.kaiser_nenbw(w.alpha); + w.w3db = specwin.kaiser_w3db(w.alpha); + w.flatness = specwin.kaiser_flatness(w.alpha); + w.len = N; + w.skip = 0; + + varargout{1} = w; + end diff --git a/utils/facade/windows/win_levelledhanning.m b/utils/facade/windows/win_levelledhanning.m new file mode 100644 index 0000000000000000000000000000000000000000..b435da8178381e2a9849d67c4767c68135b26b4d --- /dev/null +++ b/utils/facade/windows/win_levelledhanning.m @@ -0,0 +1,37 @@ +% WIN_LEVELLEDHANNING returns Hanning window, with N points and levelCoef levelling order +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_levelledhanning(w, mode, N, levelCoef) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + if n_args < 4 + levelCoef = w.levelorder; + end + % Calculate the values of the window + z = (1:N)./(N+1); + v = 0.5 * (1 - cos(2*pi*z)); + + for jj = 1:levelCoef + v = v.*(2-v); + end + varargout{1} = v/norm(v)*length(v)^0.5; + + case 'define' + % Make window struct + w.type = 'levelledHanning'; + w.len = N; + w.levelorder = levelCoef; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_nuttall3.m b/utils/facade/windows/win_nuttall3.m new file mode 100644 index 0000000000000000000000000000000000000000..166c4bdc0fcb9e2703a7dc12aec6eb5baa6e6fce --- /dev/null +++ b/utils/facade/windows/win_nuttall3.m @@ -0,0 +1,35 @@ +% WIN_NUTTALL3 returns Nuttall3 window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_nuttall3(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = 0.375 - 0.5 * cos (z) + 0.125 * cos (2 * z); + + case 'define' + % Make window struct + w.type = 'Nuttall3'; + w.alpha = 0; + w.psll = 46.7; + w.rov = 64.7; + w.nenbw = 1.9444; + w.w3db = 1.8496; + w.flatness = -0.8630; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END + diff --git a/utils/facade/windows/win_nuttall3a.m b/utils/facade/windows/win_nuttall3a.m new file mode 100644 index 0000000000000000000000000000000000000000..dea2941e7bedea8370d5da9432664d45f5707f82 --- /dev/null +++ b/utils/facade/windows/win_nuttall3a.m @@ -0,0 +1,35 @@ +% WIN_NUTTALL3A returns Nuttall3a window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_nuttall3a(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = 0.40897 - 0.5 * cos (z) + 0.09103 * cos (2 * z); + + case 'define' + % Make window struct + w.type = 'Nuttall3a'; + w.alpha = 0; + w.psll = 64.2; + w.rov = 61.2; + w.nenbw = 1.7721; + w.w3db = 1.6828; + w.flatness = -1.0453; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END + \ No newline at end of file diff --git a/utils/facade/windows/win_nuttall3b.m b/utils/facade/windows/win_nuttall3b.m new file mode 100644 index 0000000000000000000000000000000000000000..82e4518affe0e70fed33961e5612598d60bdafc0 --- /dev/null +++ b/utils/facade/windows/win_nuttall3b.m @@ -0,0 +1,35 @@ +% WIN_NUTTALL3B returns Nuttall3b window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_nuttall3b(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = 0.4243801 - 0.4973406 * cos (z) + 0.0782793 * cos (2 * z); + + case 'define' + % Make window struct + w.type = 'Nuttall3b'; + w.alpha = 0; + w.psll = 71.5; + w.rov = 59.8; + w.nenbw = 1.7037; + w.w3db = 1.6162; + w.flatness = -1.1352; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END + \ No newline at end of file diff --git a/utils/facade/windows/win_nuttall4.m b/utils/facade/windows/win_nuttall4.m new file mode 100644 index 0000000000000000000000000000000000000000..c9ca0cfa07b464192c1969493a1d85c9380432c0 --- /dev/null +++ b/utils/facade/windows/win_nuttall4.m @@ -0,0 +1,35 @@ +% WIN_NUTTALL4 returns Nuttall4 window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_nuttall4(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = 0.3125 - 0.46875 * cos(z) + 0.1875 * cos (2 * z) - 0.03125 * cos (3 * z); + + case 'define' + % Make window struct + w.type = 'Nuttall4'; + w.alpha = 0; + w.psll = 60.9; + w.rov = 70.5; + w.nenbw = 2.31; + w.w3db = 2.1884; + w.flatness = -0.6184; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END + \ No newline at end of file diff --git a/utils/facade/windows/win_nuttall4a.m b/utils/facade/windows/win_nuttall4a.m new file mode 100644 index 0000000000000000000000000000000000000000..956feb31112f43d767af5134b63cc83fae2c9f63 --- /dev/null +++ b/utils/facade/windows/win_nuttall4a.m @@ -0,0 +1,34 @@ +% WIN_NUTTALL4A returns Nuttall4a window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_nuttall4a(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = 0.338946 - 0.481973 * cos (z) + 0.161054 * cos (2 * z) - 0.018027 * cos (3 * z); + + case 'define' + % Make window struct + w.type = 'Nuttall4a'; + w.alpha = 0; + w.psll = 82.6; + w.rov = 68; + w.nenbw = 2.1253; + w.w3db = 2.0123; + w.flatness = -0.7321; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_nuttall4b.m b/utils/facade/windows/win_nuttall4b.m new file mode 100644 index 0000000000000000000000000000000000000000..43cf171c26f498624d6a879e32dbc2d3ac9bbc87 --- /dev/null +++ b/utils/facade/windows/win_nuttall4b.m @@ -0,0 +1,34 @@ +% WIN_NUTTALL4B returns Nuttall4b window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_nuttall4b(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = 0.355768 - 0.487396 * cos (z) + 0.144232 * cos (2 * z) - 0.012604 * cos (3 * z); + + case 'define' + % Make window struct + w.type = 'Nuttall4b'; + w.alpha = 0; + w.psll = 93.3; + w.rov = 66.3; + w.nenbw = 2.0212; + w.w3db = 1.9122; + w.flatness = -0.8118; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_nuttall4c.m b/utils/facade/windows/win_nuttall4c.m new file mode 100644 index 0000000000000000000000000000000000000000..135b4699a0bcb188ecc16d0cbf532dbc159b45e1 --- /dev/null +++ b/utils/facade/windows/win_nuttall4c.m @@ -0,0 +1,34 @@ +% WIN_NUTTALL4C returns Nuttall4c window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_nuttall4c(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = 0.3635819 - 0.4891775 * cos (z) + 0.1365995 * cos (2 * z) - 0.0106411 * cos (3 * z); + + case 'define' + % Make window struct + w.type = 'Nuttall4c'; + w.alpha = 0; + w.psll = 98.1; + w.rov = 65.6; + w.nenbw = 1.9761; + w.w3db = 1.8687; + w.flatness = -0.8506; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_rectangular.m b/utils/facade/windows/win_rectangular.m new file mode 100644 index 0000000000000000000000000000000000000000..65169281a3c8a6b42c3b431b5bdf13f65243421e --- /dev/null +++ b/utils/facade/windows/win_rectangular.m @@ -0,0 +1,34 @@ +% WIN_RECTANGULAR returns rectangular window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_rectangular(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + + varargout{1} = ones(1, N); + + case 'define' + % Make window struct + w.type = 'Rectangular'; + w.alpha = 0; + w.psll = 13.3; + w.rov = 0.0; + w.nenbw = 1.0; + w.w3db = 0.8845; + w.flatness = -3.9224; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_sft3f.m b/utils/facade/windows/win_sft3f.m new file mode 100644 index 0000000000000000000000000000000000000000..66f07ddcb45f28c4627dddf4d71c682fd68e1bc8 --- /dev/null +++ b/utils/facade/windows/win_sft3f.m @@ -0,0 +1,34 @@ +% WIN_SFT3F returns SFT3F window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_sft3f(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = 0.26526 - 0.5 * cos (z) + 0.23474 * cos (2 * z); + + case 'define' + % Make window struct + w.type = 'SFT3F'; + w.alpha = 0; + w.psll = 31.7; + w.rov = 66.7; + w.nenbw = 3.1681; + w.w3db = 3.1502; + w.flatness = 0.0082; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_sft3m.m b/utils/facade/windows/win_sft3m.m new file mode 100644 index 0000000000000000000000000000000000000000..8b3d2e3a40640da06417824d8aec23779abc56b5 --- /dev/null +++ b/utils/facade/windows/win_sft3m.m @@ -0,0 +1,33 @@ +% WIN_SFT3M returns SFT3M window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculate% + +function varargout = win_sft3m(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = 0.28235 - 0.52105 * cos (z) + 0.19659 * cos (2 * z); + + case 'define' + % Make window struct + w.type = 'SFT3M'; + w.alpha = 0; + w.psll = 44.2; + w.rov = 65.5; + w.nenbw = 2.9452; + w.w3db = 2.9183; + w.flatness = -0.0115; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_sft4f.m b/utils/facade/windows/win_sft4f.m new file mode 100644 index 0000000000000000000000000000000000000000..da66b6c7392613e87dce8a942d8c3a0ec1956587 --- /dev/null +++ b/utils/facade/windows/win_sft4f.m @@ -0,0 +1,34 @@ +% WIN_SFT4F returns SFT4F window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_sft4f(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = 0.21706 - 0.42103 * cos (z) + 0.28294 * cos (2 * z) - 0.07897 * cos (3 * z); + + case 'define' + % Make window struct + w.type = 'SFT4F'; + w.alpha = 0; + w.psll = 44.7; + w.rov = 75; + w.nenbw = 3.7970; + w.w3db = 3.7618; + w.flatness = 0.0041; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_sft4m.m b/utils/facade/windows/win_sft4m.m new file mode 100644 index 0000000000000000000000000000000000000000..25fe64d781cd4f033bc00f78137aa0cafbdc3ba9 --- /dev/null +++ b/utils/facade/windows/win_sft4m.m @@ -0,0 +1,35 @@ +% WIN_SFT4M returns SFT4M window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_sft4m(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = 0.241906 - 0.460841 * cos(z) ... + + 0.255381 * cos (2 * z) - 0.041872 * cos (3 * z); + + case 'define' + % Make window struct + w.type = 'SFT4M'; + w.alpha = 0; + w.psll = 66.5; + w.rov = 72.1; + w.nenbw = 3.3868; + w.w3db = 3.3451; + w.flatness = -0.0067; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_sft5f.m b/utils/facade/windows/win_sft5f.m new file mode 100644 index 0000000000000000000000000000000000000000..eff6d234d2bbe47f00a66fa1ed476e61ba0f9076 --- /dev/null +++ b/utils/facade/windows/win_sft5f.m @@ -0,0 +1,35 @@ +% WIN_SFT5F returns SFT5F window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_sft5f(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = 0.1881 - 0.36923 * cos (z) + ... + 0.28702 * cos (2 * z) - 0.13077 * cos (3 * z) + 0.02488 * cos (4 * z); + + case 'define' + % Make window struct + w.type = 'SFT5F'; + w.alpha = 0; + w.psll = 57.3; + w.rov = 78.5; + w.nenbw = 4.3412; + w.w3db = 4.2910; + w.flatness = -0.0025; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_sft5m.m b/utils/facade/windows/win_sft5m.m new file mode 100644 index 0000000000000000000000000000000000000000..1462581b23c467e5255f9482153c0d65beda06ba --- /dev/null +++ b/utils/facade/windows/win_sft5m.m @@ -0,0 +1,36 @@ +% WIN_SFT5M returns SFT5M window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_sft5m(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N * 2 * pi; + varargout{1} = 0.209671 - 0.407331 * cos(z) + ... + 0.281225 * cos (2 * z) - 0.092669 * cos (3 * z) + ... + 0.0091036 * cos (4 * z); + + case 'define' + % Make window struct + w.type = 'SFT5M'; + w.alpha = 0; + w.psll = 89.9; + w.rov = 76; + w.nenbw = 3.8852; + w.w3db = 3.8340; + w.flatness = 0.0039; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END diff --git a/utils/facade/windows/win_welch.m b/utils/facade/windows/win_welch.m new file mode 100644 index 0000000000000000000000000000000000000000..734e018284e0b599c1501d0dc689ad167f63d380 --- /dev/null +++ b/utils/facade/windows/win_welch.m @@ -0,0 +1,35 @@ +% WIN_WELCH returns Welch window, with N points. +% If mode == 'define', the window values will be empty and all the features +% If mode == 'build', the window values will be calculated +% + +function varargout = win_welch(w, mode, N) + + switch lower(mode) + + case 'build' + n_args = nargin; + if n_args < 3 + N = w.len; + end + % Calculate the values of the window + z = [0:N-1]./N; + varargout{1} = 1 - (2 * z - 1).^2; + + case 'define' + % Make window struct + w.type = 'Welch'; + w.alpha = 0; + w.psll = 21.3; + w.rov = 29.3; + w.nenbw = 1.2; + w.w3db = 1.1535; + w.flatness = -2.2248; + w.len = N; + w.skip = 0; + + varargout{1} = w; + end + + % END + diff --git a/utils/getInvertedTFresponse.m b/utils/getInvertedTFresponse.m new file mode 100644 index 0000000000000000000000000000000000000000..aacd4fd92899bd7a43d8a4f855d3e9eb0d393b8a --- /dev/null +++ b/utils/getInvertedTFresponse.m @@ -0,0 +1,26 @@ +function invertedTFresponse = getInvertedTFresponse(mdl, io, freqs) +%GETINVERTEDTFRESPONSE returns the response of the inverted transfer function +%of the linearized model. +% Returns the response of the inverted transfer function of the linearized +% model. First, linearizes the model around the given input and output. Then, +% it gets the frequency response of the linear TF. Lastly, this is inverted. +% Syntax: invertedTFresponse = getInvertedTFresponse(mdl, io, freqs) +% +% Inputs: mdl - simulink model, string; +% io - list of IO elements; +% freqs - array of frequencies to respond to +% +% Outputs: invertedTFresponse - array containing the response, +% same size as the frequencies; +% +% See also: frd, linearize, linio +% +% Author: Arthur Reis +% email: arthur.reis@aei.mpg.de +% Nov 2021; Last revision: 19.Nov.2021; +linearizedModel = linearize(mdl,io); +linMdlResponse = frd(linearizedModel, freqs, 'unit', 'Hz'); +invertedTF = abs(squeeze(inv(linMdlResponse))); +invertedTFresponse = squeeze(invertedTF.ResponseData); +end + diff --git a/utils/getTFresponse.m b/utils/getTFresponse.m new file mode 100644 index 0000000000000000000000000000000000000000..98b7a4f919bd710d1e486275f1f9a13f7dc829e6 --- /dev/null +++ b/utils/getTFresponse.m @@ -0,0 +1,25 @@ +function TFresponse = getTFresponse(mdl, io, freqs) +%GETTFRESPONSE returns the response of the transfer function +%of the linearized model. +% Returns the response of the transfer function of the linearized +% model. First, linearizes the model around the given input and output. Then, +% it gets the frequency response of the linear TF. +% Syntax: TFresponse = getTFresponse(mdl, io, freqs) +% +% Inputs: mdl - simulink model, string; +% io - list of IO elements; +% freqs - array of frequencies to respond to +% +% Outputs: TFresponse - array containing the response, +% same size as the frequencies; +% +% See also: frd, linearize, linio, getInvertedTFresponse +% +% Author: Arthur Reis +% email: arthur.reis@aei.mpg.de +% Nov 2021; Last revision: 24.Nov.2021; +linearizedModel = linearize(mdl,io); +linMdlResponse = frd(linearizedModel, freqs, 'unit', 'Hz'); +TFresponse = squeeze(abs(linMdlResponse.ResponseData)); +end + diff --git a/utils/logpsd.m b/utils/logpsd.m new file mode 100644 index 0000000000000000000000000000000000000000..4af4070008ca49588e70deeac2faf7aefb87dc8b --- /dev/null +++ b/utils/logpsd.m @@ -0,0 +1,270 @@ +function [P,fArr] = logpsd(varargin) +%% Adapted LTPDA syntax +% INPUTS (compared with LTPDA): +% as - array of analysis objects [REMOVED] +% pl - parameter list [REMOVED] +% ts - timeseries [ADDED] +% fs - sample freqs +% Kdes - desired number of averages (default 100) +% Lmin - minimum segment length (default 0) +% Jdes - number of spectral frequencies to compute (default fs/2) +% win - a specwin window object. [REMOVED] +% win - a struct. See GETWIN. [ADDED] +% Olap - desired overlap percentage (default: taken from window) +% Order - order of detrending +% -1 - no detrending +% 0 - subtract mean +% 1 - subtract linear fit +% N - subtract fit of polynomial, order N +% Scale - Scaling of output. Choose from: +% AS - Amplitude (linear) Spectrum% ASD - Amplitude (linear) Spectral Density +% PS - Power Spectrum +% PSD - Power Spectral Density [default] +% +% OUTPUTS: +% [REMOVED] bs - array of analysis objects, one for each input +% ps - spectral estimate +% + +%% input processing +% parameters: ts, fs, Kdes, Lmin, Jdes, win, olap, order, scale +defaultts = []; +defaultfs = 0; +defaultKdes = 100; +defaultLmin = 1; +defaultJdes = 0; +defaultwin = ''; +defaultolap = -1; +defaultorder = 0; +defaultscale = 'PSD'; +expectedscales = {'AS','PS','ASD','PSD'}; +defaultmode = false; + +% parameter parsing, required parms will throw error w/ defaults; +p = inputParser; +addParameter(p, 'ts', defaultts, @(x) ~isempty(x)); +addParameter(p, 'fs', defaultfs, @(x) isnumeric(x) && x>0); +addParameter(p, 'Kdes', defaultKdes, @(x) isnumeric(x) && x>0); +addParameter(p, 'Lmin', defaultLmin, @(x) isnumeric(x)); +addParameter(p, 'Jdes', defaultJdes, @(x) isnumeric(x)); +addParameter(p, 'win', defaultwin); +addParameter(p, 'olap', defaultolap); +addParameter(p, 'order', defaultorder,... + @(x) isscalar(x) && (x>=-1)); +addParameter(p, 'scale', defaultscale,... + @(x) any(validatestring(x,expectedscales))); +addParameter(p, 'LTPDAmode', defaultmode); + +parse(p, varargin{:}); + +ts = p.Results.ts; +fs = p.Results.fs; +desAvg = p.Results.Kdes; +Lmin = p.Results.Lmin; +desFreqs = p.Results.Jdes; %correct default fs/2 +if desFreqs == 0 + desFreqs = fs/2; +end +wintype = p.Results.win; +if p.Results.olap == -1 + [~, mw] = getwin(wintype,1); + olap = mw.rov/100.0; +else + olap = p.Results.olap/100.0; +end + +order = p.Results.order; +scale = p.Results.scale; +ltpdamode = p.Results.LTPDAmode; + +%% ------ Set up some variables ------------------------------------------- + entireData = ts; + nData = length(entireData); + fmin = fs / nData; % * bmin; + fmax = fs/2; + g = log(fmax) - log(fmin); + minAvgs = 1; + maxFreqs = 2*desFreqs; %overestimate n. of fourier frequencies + ravg = fs/nData * (1 + (1-olap)*(double(desAvg)-1)); + rmin = fs/nData * (1 + (1-olap)*(double(minAvgs)-1)); + xov = (1 - olap); + +%% calculating freqs and resolution + +bmin = 1; +%LTPDA Switch: +if ltpdamode +% LTPDA version + Ndata = nData; + Jdes = desFreqs; + Kdes = desAvg; + + xov = (1 - olap); + fmin = fs / Ndata * bmin; + fmax = fs/2; + fresmin = fs / Ndata; + freslim = fresmin * (1+xov*(Kdes-1)); + logfact = (Ndata/2)^(1/Jdes) - 1; + + f = []; + r = []; + b = []; + L = []; + K = []; + + fi = fmin; + while fi < fmax + + fres = fi * logfact; + if fres <= freslim + fres = sqrt(fres*freslim); + end + if fres < fresmin + fres = fresmin; + end + + bin = fi/fres; + if bin < bmin + bin = bmin; + fres = fi/bin; + end + + dftlen = round(fs / fres); + if dftlen > Ndata + dftlen = Ndata; + end + if dftlen < Lmin + dftlen = Lmin; + end + + nseg = round((Ndata - dftlen) / (xov*dftlen) + 1); + if nseg == 1 + dftlen = Ndata; + end + + fres = fs / dftlen; + bin = fi / fres; + + % Store outputs + f = [f fi]; + r = [r fres]; + b = [b bin]; + L = [L dftlen]; + K = [K nseg]; + + fi = fi + fres; + + end + segLength = L(:); + fArr = f(:); + binArr = b(:); + P = zeros(size(fArr)); + j = 1:length(f); + nAvgs = K(:); + +elseif ~ltpdamode +% Gerhard's paper version: + j = (0:1:maxFreqs-1); + f = fmin*exp(g*(double(j)/(double(desFreqs)-1))); + r_1p = f*g/(double(desFreqs)-1); + r_2p = zeros(size(r_1p)); + + segLength = zeros(1,maxFreqs); + fRes = zeros(1,maxFreqs); + fArr = zeros(1,maxFreqs); + binArr = zeros(1,maxFreqs); + jj = 1; + fj = f(jj); + while fj < fmax + if r_1p(jj) >= ravg % see errata + r_2p(jj) = r_1p(jj); + elseif sqrt(r_1p(jj)*ravg) > rmin && r_1p(jj) < ravg + r_2p(jj) = sqrt(r_1p(jj)*ravg); + else + r_2p(jj) = rmin; + end + + + segLength(jj) = round(fs/r_2p(jj)); + fRes(jj) = fs/double(segLength(jj)); + fArr(jj) = fj; + binArr(jj) = fArr(jj)/fRes(jj); + + fj = fArr(jj) + fRes(jj); + jj = jj+1; + end + % -- crop --- + segLength = segLength(1:jj-1)'; + fArr = fArr(1:jj-1)'; + binArr = binArr(1:jj-1)'; + P = zeros(1,jj-1)'; + j = j(1:jj-1)'; + nAvgs = floor(double(nData - segLength)./(double(segLength).*(1-olap))+1); + +end + + +%% -- loop over frequencies and segments +for jj = 1:length(j) + ll = (0:segLength(jj)-1)'; + segShift = (1-olap)*segLength(jj); + Aj = zeros(1,nAvgs(jj)); + win = getwin(wintype,segLength(jj)); + S1 = sum(win); + S2 = sum(win.^2); + C_PS = 2/S1^2; + C_PSD = 2/(fs*S2); + + fourierFactor = exp(-2*pi*1i*binArr(jj)*ll/segLength(jj)); + detrendMat = []; + detrendMatInv = []; + + for kk = 0:int32(nAvgs(jj))-1 + + if (kk*segShift+segLength(jj)) <= length(entireData) + seg = entireData(kk*segShift+1:kk*segShift+segLength(jj)); + segAvg = sum(seg)/segLength(jj); + else %out of range + seg = entireData(kk*segShift+1:end); + segLenEnd = length(seg); + segAvg = sum(seg)/segLenEnd; + win = getwin(wintype,segLenEnd); %get shorter window + llEnd = (0:segLenEnd-1)'; + fourierFactor = exp(-2*pi*1i*binArr(jj)*llEnd/segLenEnd); + end + + %detrend options + if order == -1 %no detrend + weightedSeg = seg.*win; + elseif order == 0 + weightedSeg = (seg - segAvg).*win; + else + if any(size(detrendMat,1) ~= [numel(seg)]) + detrendMat = ones(numel(seg),1); + for iz=1:order + detrendMat(:,iz+1) = ([1:1:numel(seg)]/numel(seg))'.^iz; + end + detrendMatInv=inv(detrendMat'*detrendMat)*detrendMat'; + end + pf = detrendMatInv*seg; + weightedSeg = (seg-detrendMat*pf).*win; + end + Aj(kk+1) = sum(weightedSeg .* fourierFactor); + end + + P(jj) = sum(Aj.*conj(Aj))/nAvgs(jj); + + enbwcoef = fs*S2/S1^2; + switch scale + case 'PSD' + P(jj) = C_PSD*P(jj); + case 'PS' + P(jj) = C_PS*P(jj); + case 'ASD' + P(jj) = sqrt(C_PSD*P(jj)); + case 'AS' + P(jj) = sqrt(C_PS*P(jj)); + end +end + +end \ No newline at end of file diff --git a/utils/masks/masks.odg b/utils/masks/masks.odg new file mode 100644 index 0000000000000000000000000000000000000000..5b72cd7b0d4727ad84dcbb1922bc2c6586814b17 Binary files /dev/null and b/utils/masks/masks.odg differ diff --git a/utils/setIO.m b/utils/setIO.m new file mode 100644 index 0000000000000000000000000000000000000000..41388df7bfefdeb875c29d655b30a70cf34cf888 --- /dev/null +++ b/utils/setIO.m @@ -0,0 +1,14 @@ +function ioElement = setIO(mdl,block,mode) +%SETIO Summary of this function goes here +% Detailed explanation goes here +blockName = strcat(mdl,'/',block); +if strcmp(mode,'input') + ioElement = linio(blockName,1,'input'); +elseif strcmp(mode,'output') + blockPorts = get_param(blockName,'PortConnectivity'); + connectedBlock = blockPorts.SrcBlock; + ioElement = linio(strcat(mdl,'/',get_param(connectedBlock,'Name')),1,'output'); +end + +end + diff --git a/utils/setPID.m b/utils/setPID.m new file mode 100644 index 0000000000000000000000000000000000000000..ee3420fe2c3dbe55c10c885acf872a0887f289ca --- /dev/null +++ b/utils/setPID.m @@ -0,0 +1,9 @@ +function blockHandle = setPID(mdl,blockname, kp, ki, kd) +%SETPID Summary of this function goes here +% Detailed explanation goes here +blockHandle = Simulink.findBlocks(mdl,'Name',blockname); +set_param(blockHandle,'P',num2str(kp)); +set_param(blockHandle,'I',num2str(ki)); +set_param(blockHandle,'D',num2str(kd)); +end + diff --git a/utils/set_param_test.m b/utils/set_param_test.m new file mode 100644 index 0000000000000000000000000000000000000000..76f466175bf095671ac8c315cd04dd86a8a19dea --- /dev/null +++ b/utils/set_param_test.m @@ -0,0 +1,9 @@ +function [outputArg1,outputArg2] = set_param_test(blockhandle,parmname,parmvalue) +%SET_PARAM_TEST Summary of this function goes here +% Detailed explanation goes here +fprintf('Block handle = %f \n', blockhandle); +fprintf('Parameter = %s \n', parmname); +fprintf('Value = %s \n', parmvalue); + +end + diff --git a/utils/timeseriesFromASD.m b/utils/timeseriesFromASD.m new file mode 100644 index 0000000000000000000000000000000000000000..1be258e18cce94bb86f9dbc2fdc5abd510947011 --- /dev/null +++ b/utils/timeseriesFromASD.m @@ -0,0 +1,52 @@ +function ts = timeseriesFromASD(varargin) +%TIMESERIESFROMASD returns a timeseries from the ASD of a noise +% Returns a timeseries from the amplitude spectral density of a noise. +% The output time series will have the ASD, and random phase. +% +% Syntax: ts = timeseriesFromASD(ASDfunc, enbw, fSample, N) +% +% Inputs: ASDfunc - function handle where the expression for the ASD is +% defined; +% enbw - equivalent noise bandwith = 1/total_observation_time, in s; +% fSample - sampling frequency, in Hz; +% N - number of samples; +% +% Outputs: ts - timeseries containing the noise; +% +% See also: createFrequencyArray, setInjectionBlock +% +% Author: Arthur Reis, Alexey Kupryianov +% email: arthur.reis@aei.mpg.de, +% Nov 2021; Last revision: 11.Jul.2022; + +p = inputParser; + +addRequired(p, 'ASDfunc'); +addRequired(p, 'enbw' , @(x) isnumeric(x) && isscalar(x)); +addRequired(p, 'fSample', @(x) isnumeric(x) && isscalar(x)); +addRequired(p, 'N' , @(x) isnumeric(x) && isscalar(x)); + +parse(p, varargin{:}); + +ASDfunc = p.Results.ASDfunc; +enbw = p.Results.enbw; +fSample = p.Results.fSample; +N = p.Results.N; + +halfF = fSample/2*linspace(0,1,N/2+1); % single-sided positive frequency +fSeries= [halfF, -(halfF(end-1:-1:2))]; +ASD = ASDfunc(fSeries); +PSD_dblsided = (ASD).^2/2; +% if length(PSD_dblsided ) == 1 +% PSD_dblsided = PSD_dblsided *ones(size(freqs)); +% end +PSD_dblsided(fSeries == 0) = 0; +U_f = sqrt(PSD_dblsided').*sqrt(enbw/2); +phi = rand(size(U_f))*2*pi; +phi(fSeries==0) = 0; +freq_domain = U_f.*exp(phi.*1i)*numel(U_f)*sqrt(2); +t_amplitude = ifft(freq_domain,'symmetric'); + +ts = timeseries(t_amplitude,linspace(0,2/fSample,length(t_amplitude))); + +end \ No newline at end of file