How to pass data from mainwindow to themewidget?
-
The mainwidow has the data i then wrote this:
m_themewidget->putData(data);
However, no data is present in the themewidget window may I know what I should do instead`@DemonLord said in How to pass data from mainwindow to themewidget?:
may I know what I should do instead
May we know what putData does? Please show the code.
How else should we know what the problem is? -
@DemonLord said in How to pass data from mainwindow to themewidget?:
may I know what I should do instead
May we know what putData does? Please show the code.
How else should we know what the problem is?@jsulm
void ThemeWidget::putData(const QByteArray &data)
{qDebug()<< "Got Data:" << data;
QJsonParseError parseError;
QJsonDocument jsonResponse = QJsonDocument::fromJson(data,&parseError);if(parseError.error != QJsonParseError::NoError) // if have error { qDebug()<< "Parse Error" <<parseError.errorString();// message return; // then stop the process } QJsonArray jsonArray =jsonResponse.array(); if(!jsonArray.isEmpty()) { QJsonObject jsonObject = jsonArray.first().toObject(); QVector <double> x,y; for(int i=0;i< jsonObject.value("X").toArray().size();i++) { x.push_back(jsonObject.value("X").toArray()[i].toDouble()); y.push_back(jsonObject.value("Y").toArray()[i].toDouble()); } m_ui->widget->graph(0)->setData(x,y); m_ui->widget->replot(); m_ui->widget->rescaleAxes(); m_ui->widget->update(); } -
@jsulm
void ThemeWidget::putData(const QByteArray &data)
{qDebug()<< "Got Data:" << data;
QJsonParseError parseError;
QJsonDocument jsonResponse = QJsonDocument::fromJson(data,&parseError);if(parseError.error != QJsonParseError::NoError) // if have error { qDebug()<< "Parse Error" <<parseError.errorString();// message return; // then stop the process } QJsonArray jsonArray =jsonResponse.array(); if(!jsonArray.isEmpty()) { QJsonObject jsonObject = jsonArray.first().toObject(); QVector <double> x,y; for(int i=0;i< jsonObject.value("X").toArray().size();i++) { x.push_back(jsonObject.value("X").toArray()[i].toDouble()); y.push_back(jsonObject.value("Y").toArray()[i].toDouble()); } m_ui->widget->graph(0)->setData(x,y); m_ui->widget->replot(); m_ui->widget->rescaleAxes(); m_ui->widget->update(); }@DemonLord Next things to check: does JSON parsing succeed? What do x and y contain when you call setData?
-
@DemonLord Next things to check: does JSON parsing succeed? What do x and y contain when you call setData?
-
@jsulm said in How to pass data from mainwindow to themewidget?:
contain when you call setData?
No the parsing doesn't succeed. I also used various widgets to test it out such as plain text edit and label but no data was displayed.
@DemonLord said in How to pass data from mainwindow to themewidget?:
No the parsing doesn't succeed
Well, then why do you expect to see anything in the UI?
Fix your JSON and/or the parsing... -
@DemonLord said in How to pass data from mainwindow to themewidget?:
No the parsing doesn't succeed
Well, then why do you expect to see anything in the UI?
Fix your JSON and/or the parsing...@jsulm
basically i have a data set receiving from a TCP server. The TCP server then sends data to the mainwindow and then to the themewidget to create a graph. I am not sure if the parsing is wrong or its the passing the data from mainwindow to themewidget. -
Hi,
If the parsing failed then it's likely that your data incomplete. Did you ensure that you receive all your dataset ?
Since you mention QTcpSocket, how are you requesting the data ? How are you receiving it ? Are you checking that everything has arrived ?
-
Hi,
If the parsing failed then it's likely that your data incomplete. Did you ensure that you receive all your dataset ?
Since you mention QTcpSocket, how are you requesting the data ? How are you receiving it ? Are you checking that everything has arrived ?
-
@SGaist hi yes the tcp client sends the data set over to the TCP server and receives it successfully as it is displayed on the TCP console but im not sure why its not showing on themewidget iu even when the plaintext edit widget to display the data
@DemonLord said in How to pass data from mainwindow to themewidget?:
but im not sure why its not showing on themewidget iu even when the plaintext edit widget to display the data
I already suggested why.
Did you do anything to verify what is happening?
Did you check what is inside data before you try to parse it?
Did you add any error handling code to your parsing code?
Did you check what parseError contains after QJsonDocument::fromJson(data,&parseError)? -
@DemonLord said in How to pass data from mainwindow to themewidget?:
but im not sure why its not showing on themewidget iu even when the plaintext edit widget to display the data
I already suggested why.
Did you do anything to verify what is happening?
Did you check what is inside data before you try to parse it?
Did you add any error handling code to your parsing code?
Did you check what parseError contains after QJsonDocument::fromJson(data,&parseError)? -
@jsulm the problem is i dont understand the codes on parsing data to do any checking.....i only checked the connect function if is implemented correctly or not
@DemonLord It is really not that hard to check what parseError contains.
It is also not hard to print out data to console to see what is inside.
How else should anybody know why it does not work if you do not even try to do simple debugging? -
@DemonLord It is really not that hard to check what parseError contains.
It is also not hard to print out data to console to see what is inside.
How else should anybody know why it does not work if you do not even try to do simple debugging?@jsulm Hey would you mind explaining these codes to me as i cant find anything online and I don't understand it as well never seen anything like this before. Thank you for your help.
QJsonParseError parseError;
QJsonDocument jsonResponse = QJsonDocument::fromJson(data,&parseError);if(parseError.error != QJsonParseError::NoError) // if have error
{
qDebug()<< "Parse Error" <<parseError.errorString();// message
return; // then stop the process
}
QJsonArray jsonArray =jsonResponse.array();if(!jsonArray.isEmpty())
{
QJsonObject jsonObject = jsonArray.first().toObject();QVector <double> x,y; for(int i=0;i< jsonObject.value("X").toArray().size();i++) { x.push_back(jsonObject.value("X").toArray()[i].toDouble()); y.push_back(jsonObject.value("Y").toArray()[i].toDouble());}
-
@jsulm Hey would you mind explaining these codes to me as i cant find anything online and I don't understand it as well never seen anything like this before. Thank you for your help.
QJsonParseError parseError;
QJsonDocument jsonResponse = QJsonDocument::fromJson(data,&parseError);if(parseError.error != QJsonParseError::NoError) // if have error
{
qDebug()<< "Parse Error" <<parseError.errorString();// message
return; // then stop the process
}
QJsonArray jsonArray =jsonResponse.array();if(!jsonArray.isEmpty())
{
QJsonObject jsonObject = jsonArray.first().toObject();QVector <double> x,y; for(int i=0;i< jsonObject.value("X").toArray().size();i++) { x.push_back(jsonObject.value("X").toArray()[i].toDouble()); y.push_back(jsonObject.value("Y").toArray()[i].toDouble());}
@DemonLord said in How to pass data from mainwindow to themewidget?:
i cant find anything online and I don't understand it as well never seen anything like this before
Does it work for you? What exactly you dont understand? The code is not that complicated.
How does your JSON look like? There are a lot JSON Qt tutorials out there... but how should we know how your JSON data you want to parse looks like? -
@DemonLord said in How to pass data from mainwindow to themewidget?:
i cant find anything online and I don't understand it as well never seen anything like this before
Does it work for you? What exactly you dont understand? The code is not that complicated.
How does your JSON look like? There are a lot JSON Qt tutorials out there... but how should we know how your JSON data you want to parse looks like?@Pl45m4 Hi no it doesnt. This code i found it from youtube but the example shown also did not work. I am confused.....
QJsonDocument jsonResponse = QJsonDocument::fromJson(data,&parseError);
What does this mean? Does it mean that the data is already in QJsonDocument? I don't think i stored my data in the QJsonDocument yet? I am not sure because my data is received from the TCP sever then passed to the themewidget and then has to go to the JsonDocument right? -
@Pl45m4 Hi no it doesnt. This code i found it from youtube but the example shown also did not work. I am confused.....
QJsonDocument jsonResponse = QJsonDocument::fromJson(data,&parseError);
What does this mean? Does it mean that the data is already in QJsonDocument? I don't think i stored my data in the QJsonDocument yet? I am not sure because my data is received from the TCP sever then passed to the themewidget and then has to go to the JsonDocument right?@DemonLord said in How to pass data from mainwindow to themewidget?:
What does this mean? Does it mean that the data is already in QJsonDocument?
At least it tries to create a
QJsonDocumentfromdatawhileparseErroris used for any potential error.
If you got no error it was most likely successful. If you got the code from a YT tutorial, make sure that your data has the same JSON structure, otherwise it cant work. -
@Pl45m4 Hi no it doesnt. This code i found it from youtube but the example shown also did not work. I am confused.....
QJsonDocument jsonResponse = QJsonDocument::fromJson(data,&parseError);
What does this mean? Does it mean that the data is already in QJsonDocument? I don't think i stored my data in the QJsonDocument yet? I am not sure because my data is received from the TCP sever then passed to the themewidget and then has to go to the JsonDocument right?@DemonLord said in How to pass data from mainwindow to themewidget?:
What does this mean?
Please read documentation and learn C++.
https://doc.qt.io/qt-5/qjsondocument.html#fromJson
QJsonDocument::fromJson is a static method which converts its input to QJsonDocument.And you still refuse to tell us what is inside data - is it so hard to provide such simple information?
-
The data contains decimal numbers. Im not sure if this is what your asking
This is the data:
"Rounds: |FBSGLAB00200104|-0.129|-0.055|-0.050|-0.041|-0.055|-0.060|-0.058|-0.053|-0.060|-0.053|-0.043|-0.036|-0.031|-0.036|-0.036|-0.036|-0.014|0.004|0.026|0.035|0.006|-0.001|0.008|0.035|0.043|0.040|0.040|0.038|0.040|0.026|0.033|0.016|0.035|0.026|0.016|-0.006|-0.014|-0.014|-0.009|-0.014|-0.021|-0.038|-0.038|-0.031|-0.031|-0.036|-0.041|-0.048|-0.045|-0.031|-0.018|-0.016|-0.016|-0.026|-0.036|-0.021|0.008|0.006|0.008|-0.009|0.001|0.016|0.031|0.031|0.028|0.023|0.021|0.021|0.026|0.031|0.026|0.023|0.013|0.011|0.016|0.011|0.021|0.016|0.016|0.006|-0.016|-0.016|-0.011|-0.016|-0.011|-0.021|-0.048|-0.041|-0.033|-0.028|-0.028|-0.033|-0.038|-0.026|-0.033|-0.023|-0.018|-0.016|-0.006|-0.009|-0.004|-0.004|0.004|0.006|0.001|0.008|0.016|0.021|0.013|0.008|0.016|0.008|0.006|0.008|0.008|0.001|-0.006|-0.016|-0.018|-0.011|-0.011|-0.021|-0.021|-0.021|-0.033|-0.043|-0.041|-0.031|-0.014|-0.031|-0.045|-0.053|-0.038|-0.033|-0.028|-0.023|-0.023|-0.018|-0.016|-0.006|-0.004|0.016|0.016|0.018|0.026|0.028|0.033|0.035|0.040|0.033|0.031|0.038|0.040|0.028|0.021|0.016|0.001|-0.006|0.001|-0.001|-0.016|-0.033|-0.043|-0.053|-0.048|-0.050|-0.043|-0.048|-0.067|-0.067|-0.060|-0.050|-0.048|-0.055|-0.045|-0.043|-0.041|-0.036|-0.038|-0.031|-0.014|-0.004|0.008|0.035|0.018|0.008|0.008|0.035|0.055|0.050|0.048|0.035|0.031|0.031|0.026|0.028|0.038|0.031|0.021|-0.004|-0.014|-0.016|-0.006|-0.004|-0.018|-0.031|-0.048|-0.045|-0.041|-0.033|-0.033|-0.043|-0.041|-0.045|-0.028|-0.021|-0.016|-0.026|-0.028|-0.018|-0.001|0.008|0.004|-0.011|0.001|0.018|0.026|0.035|0.038|0.021|0.018|0.006|0.031|0.040|0.043|0.033|0.023|0.008|0.008|0.008|0.028|0.028|0.011|-0.001|-0.009|-0.011|-0.016|-0.009|-0.018|-0.031|-0.031|-0.026|-0.023|-0.033|-0.038|-0.038|-0.038|-0.028|-0.021|-0.028|-0.021|-0.018|-0.009|-0.006|-0.004|0.008|0.001|-0.006|0.001|0.004|0.018|0.018|0.021|0.016|0.008|0.001|0.008|0.006|0.011|0.004|-0.006|-0.011|-0.011|-0.018|-0.014|-0.014|-0.028|-0.026|-0.026|-0.036|-0.043|-0.036|-0.028|-0.023|-0.043|-0.043|-0.026|-0.041|-0.045|-0.023|-0.014|-0.023|-0.038|-0.006|0.018|0.008|-0.001|0.004|0.031|0.035|0.033|0.033|0.045|0.033|0.028|0.028|0.035|0.043|0.035|-0.004|-0.001|0.006|0.008|-0.001|-0.011|-0.021|-0.033|-0.041|-0.053|-0.048|-0.038|-0.038|-0.060|-0.067|-0.065|-0.055|-0.053|-0.050|-0.048|-0.041|-0.036|-0.031|-0.026|-0.041|-0.023|-0.011|0.008|0.023|0.011|-0.004|0.008|0.038|0.045|0.048|0.048|0.045|0.033|0.023|0.018|0.021|0.045|0.040|0.021|-0.001|-0.009|-0.009|-0.009|-0.004|-0.021|-0.031|-0.041|-0.043|-0.036|-0.031|-0.041|-0.041|-0.041|-0.041|-0.033|-0.023|-0.016|-0.028|-0.041|-0.036|-0.009|0.008|0.011|0.006|-0.009|-0.004|0.026|0.023|0.038|0.026|0.018|0.011|0.021|0.035|0.038|0.038|0.021|0.006|0.008|0.018|0.028|0.021|0.001|0.001|-0.004|-0.006|-0.018|-0.009|-0.014|-0.011|-0.023|-0.028|-0.041|-0.041|-0.036|-0.038|-0.026|-0.021|-0.031|-0.028|-0.021|-0.014|-0.004|-0.004|-0.004|-0.004|0.004|0.008|0.006|0.004|0.023|0.023|0.016|0.006|0.004|0.004|0.004|0.011|0.001|0.008|-0.004|-0.004|-0.018|-0.009|-0.011|-0.018|-0.026|-0.021|-0.023|-0.033|-0.038|-0.041|-0.028|-0.028|-0.038|-0.048|-0.038|-0.031|-0.036|-0.018|-0.021|-0.021|-0.026|-0.011|0.001|0.016|0.004|0.008|0.016|0.028|0.038|0.035|0.045|0.033|0.038|0.038|0.043|0.038|0.035|0.006|-0.006|-0.009|-0.006|-0.009|-0.004|-0.016|-0.036|-0.043|-0.058|-0.041|-0.036|-0.048|-0.067|-0.065|-0.063|-0.050|-0.050|-0.058|-0.060|-0.045|-0.036|-0.028|-0.038|-0.031|-0.038|-0.011|0.016|0.021|0.031|0.008|0.006|0.023|0.035|0.050|0.043|0.045|0.043|0.023|0.026|0.028|0.038|0.038|0.021|0.004|-0.006|-0.011|-0.006|-0.006|-0.016|-0.021|-0.041|-0.055|-0.041|-0.028|-0.031|-0.038|-0.041|-0.036|-0.036|-0.023|-0.023|-0.028|-0.031|-0.033|-0.004|0.006|0.001|-0.014|-0.004|0.006|0.016|0.035|0.021|0.016|0.018|0.021|0.028|0.031|0.033|0.033|0.026|0.011|0.016|0.016|0.026|0.035|0.018|-0.004|-0.001|-0.006|-0.016|-0.018|-0.016|-0.018|-0.028|-0.033|-0.041|-0.031|-0.033|-0.038|-0.033|-0.028|-0.026|-0.023|-0.026|-0.016|-0.016|-0.001|-0.009|0.004|0.001|0.001|0.004|0.006|0.016|0.016|0.021|0.008|0.004|0.004|0.008|0.013|0.011|0.001|-0.006|-0.014|-0.004|-0.009|-0.011|-0.018|-0.026|-0.026|-0.031|-0.038|-0.036|-0.033|-0.026|-0.031|-0.038|-0.048|-0.048|-0.036|-0.028|-0.033|-0.031|-0.031|-0.026|-0.016|0.004|0.008|0.008|0.008|0.013|0.021|0.045|0.045|0.040|0.031|0.023|0.028|0.038|0.048|0.033|0.018|-0.009|-0.004|-0.001|0.008|-0.006|-0.011|-0.028|-0.045|-0.055|-0.048|-0.038|-0.033|-0.053|-0.072|-0.075|-0.055|-0.045|-0.050|-0.058|-0.048|-0.041|-0.026|-0.036|-0.038|-0.026|-0.026|0.004|0.023|0.021|0.004|0.004|0.023|0.050|0.055|0.048|0.033|0.038|0.031|0.028|0.023|0.031|0.040|0.038|0.013|-0.011|-0.014|-0.018|-0.006|-0.001|-0.016|-0.033|-0.045|-0.048|-0.041|-0.036|-0.036|-0.041|-0.043|-0.045|-0.038|-0.018|-0.018|-0.023|-0.031|-0.016|0.004|0.001|-0.001|-0.001|0.001|0.026|0.035|0.033|0.023|0.011|0.006|0.028|0.035|0.035|0.038|0.031|0.021|0.006|0.016|0.021|0.021|0.016|0.001|-0.011|-0.009|-0.006|-0.004|-0.006|-0.016|-0.021|-0.033|-0.033|-0.033|-0.038|-0.043|-0.036|-0.026|-0.028|-0.023|-0.031|-0.026|-0.011|-0.001|-0.001|0.001|-0.001|0.001|0.001|0.008|0.008|0.021|0.021|0.018|0.006|0.011|0.004|0.006|0.018|0.013|0.004|-0.011|-0.018|-0.011|0.001|-0.004|-0.021|-0.028|-0.036|-0.038|-0.041|-0.038|-0.033|-0.028|-0.038|-0.058|-0.041|-0.026|-0.031|-0.041|-0.026|-0.028|-0.033|-0.028|0.011|0.018|0.001|-0.001|0.004|0.028|0.048|0.043|0.043|0.040|0.018|0.028|0.038|0.050|0.040|0.016|-0.011|-0.014|-0.004|0.008|0.008|-0.011|-0.036|-0.041|-0.033|-0.050|-0.045|-0.031|-0.041|-0.058|-0.060|-0.060|-0.065|-0.058|-0.050|-0.045|-0.041|-0.031|-0.031|-0.031|-0.028|-0.023|-0.011|0.011|0.026|0.028|0.016|0.016|0.038|0.040|0.043|0.043|0.038|0.028|0.031|0.028|0.026|0.028|0.031|0.011|0.004|-0.006|-0.009|-0.004|-0.011|-0.021|-0.021|-0.036|-0.041|-0.036|-0.045|-0.038|-0.038|-0.048|-0.043|-0.033|-0.023|-0.018|-0.026|-0.028|-0.026|0.001|-0.004|0.004|-0.006|0.001|0.008|0.033|0.028|0.026|0.011|0.023|0.018|0.035|0.031|0.035|0.023|0.021|0.004|0.004|0.008|0.023|0.018|0.008|-0.001|-0.011|-0.011|-0.018|-0.004|-0.016|-0.023|-0.033|-0.045|-0.036|-0.036|-0.028|-0.031|-0.031|-0.021|-0.023|-0.028|-0.033|-0.023|-0.009|0.001|-0.006|-0.001|-0.001|0.008|0.006|0.011|0.016|0.026|0.013|0.004|0.008|0.011|0.011|0.011|0.001|-0.001|-0.001|-0.016|-0.006|-0.006|-0.009|-0.023|-0.033|-0.036|-0.031|-0.038|-0.038|-0.038|-0.036|-0.038|-0.050|-0.043|-0.028|-0.028|-0.031|-0.036|-0.038|-0.031|-0.011|0.011|0.018|-0.004|0.001|0.001|0.028|0.045|0.050|0.040|0.040|0.026|0.021|0.043|0.057|0.048|0.028|-0.004|-0.009|-0.006|0.013|0.001|-0.009|-0.031|-0.043|-0.055|-0.050|-0.038|-0.041|-0.045|-0.070|-0.075|-0.067|-0.058|-0.045|-0.060|-0.048|-0.050|-0.041|-0.028|-0.033|-0.031|-0.036|-0.011|0.008|0.021|0.035|0.016|0.026|0.028|0.040|0.050|0.045|0.040|0.040|0.031|0.026|0.026|0.033|0.028|0.026|0.001|-0.011|-0.018|-0.006|-0.009|-0.009|-0.028|-0.043|-0.045|-0.045|-0.031|-0.031|-0.038|-0.041|-0.041|-0.038|-0.021|-0.028|-0.021|-0.031|-0.021|-0.011|0.001|-0.004|-0.006|0.008|0.021|0.021|0.023|0.023|0.021|0.018|0.018|0.026|0.031|0.038|0.038|0.026|0.013|-0.004|0.013|0.038|0.038|0.018|-0.006|-0.018|-0.011|-0.021|-0.001|-0.011|-0.018|-0.023|-0.028|-0.036|-0.028|-0.036|-0.041|-0.036|-0.018|-0.016|-0.023|-0.033|-0.014|-0.006|-0.004|0.004|0.004|-0.004|-0.001|-0.001|0.011|0.018|0.023|0.018|0.011|-0.001|0.008|0.008|0.021|0.008|0.008|-0.009|-0.016|-0.018|-0.006|-0.006|-0.023|-0.031|-0.038|-0.038|-0.028|-0.033|-0.033|-0.033|-0.033|-0.043|-0.043|-0.023|-0.028|-0.041|-0.038|-0.026|-0.026|-0.028|-0.004|0.021|0.004|-0.006|-0.009|0.021|0.048|0.048|0.040|0.031|0.028|0.021|0.035|0.045|0.050|0.035|-0.001|-0.018|-0.004|0.008|0.016|-0.006|-0.026|-0.036|-0.055|-0.045|-0.050|-0.031|-0.045|-0.058|-0.077|-0.070|-0.055|-0.050|-0.045|-0.065|-0.050|-0.043|-0.031|-0.033|-0.031|-0.036|-0.023|-0.006|0.011|0.023|0.008|0.004|0.033|0.045|0.038|0.048|0.048|0.035|0.028|0.026|0.023|0.033|0.033|0.016|0.001|-0.009|-0.011|-0.011|-0.004|-0.014|-0.028|-0.043|-0.031|-0.041|-0.041|-0.038|-0.041|-0.038|-0.043|-0.031|-0.031|-0.028|-0.023|-0.026|-0.016|-0.011|0.001|0.001|-0.001|-0.001|0.016|0.026|0.035|0.021|0.021|0.018|0.023|0.028|0.031|0.033|0.038|0.021|0.008|0.008|0.018|0.026|0.028|0.023|0.001|-0.018|-0.016|-0.018|-0.006|-0.006|-0.016|-0.031|-0.031|-0.031|-0.028|-0.036|-0.038|-0.036|-0.028|-0.023|-0.023|-0.026|-0.023|-0.018|-0.009|-0.001|-0.001|-0.004|0.001|0.004|0.011|0.011|0.018|0.011|0.001|0.001|0.001|0.011|0.011|0.006|0.008|-0.001|-0.011|-0.011|-0.001|-0.001|-0.014|-0.036|-0.038|-0.036|-0.031|-0.036|-0.031|-0.041|-0.038|-0.038|-0.043|-0.028|-0.021|-0.033|-0.045|-0.038|-0.021|-0.023|-0.006|0.006|0.001|-0.014|-0.004|0.023|0.045|0.050|0.045|0.028|0.018|0.021|0.043|0.055|0.045|0.023|0.001|-0.014|-0.001|0.011|0.011|-0.009|-0.021|-0.041|-0.048|-0.048|-0.036|-0.033|-0.045|-0.043|-0.072|-0.067|-0.045|-0.050|-0.050|-0.058|-0.063|-0.043|-0.028|-0.018|-0.036|-0.041|-0.031|-0.014|0.018|0.031|0.033|0.023|0.016|0.033|0.048|0.043|0.048|0.048|0.040|0.028|0.033|0.023|0.023|0.021|0.008|0.004|-0.006|-0.006|-0.006|-0.018|-0.021|-0.038|-0.053|-0.043|-0.031|-0.026|-0.031|-0.041|-0.045|-0.050|-0.033|-0.016|-0.018|-0.023|-0.026|-0.018|0.001|0.001|0.004|-0.004|0.004|0.018|0.023|0.033|0.026|0.023|0.031|0.023|0.021|0.038|0.035|0.021|0.018|0.008|0.016|0.031|0.033|0.016|-0.009|-0.016|-0.014|-0.014|-0.016|-0.009|-0.011|-0.018|-0.036|-0.041|-0.028|-0.031|-0.036|-0.036|-0.031|-0.023|-0.009|-0.028|-0.028|-0.014|-0.009|0.006|0.004|-0.011|-0.001|0.001|0.016|0.008|0.021|0.021|0.021|0.004|0.016|0.011|0.026|0.004|0.001|-0.006|-0.014|-0.006|-0.006|-0.001|-0.009|-0.031|-0.036|-0.026|-0.033|-0.023|-0.036|-0.041|-0.038|-0.048|-0.048|-0.036|-0.021|-0.031|-0.036|-0.041|-0.038|-0.026|-0.009|0.018|0.001|-0.009|-0.011|0.018|0.038|0.055|0.050|0.035|0.016|0.023|0.035|0.050|0.055|0.045|0.008|-0.016|-0.004|0.011|0.018|0.004|-0.018|-0.041|-0.055|-0.050|-0.043|-0.031|-0.038|-0.053|-0.080|-0.070|-0.060|-0.048|-0.043|-0.058|-0.053|-0.045|-0.036|-0.028|-0.043|-0.036|-0.023|-0.004|0.008|0.026|0.023|0.001|0.016|0.033|0.035|0.035|0.038|0.043|0.031|0.033|0.023|0.026|0.033|0.038|0.023|0.004|-0.016|-0.023|-0.016|-0.004|-0.018|-0.026|-0.041|-0.043|-0.041|-0.031|-0.031|-0.041|-0.045|-0.041|-0.036|-0.031|-0.014|-0.021|-0.026|-0.023|-0.009|0.004|0.001|0.001|0.006|0.016|0.028|0.035|0.031|0.021|0.018|0.028|0.031|0.023|0.038|0.026|0.016|0.011|0.016|0.023|0.035|0.011|0.004|-0.016|-0.011|-0.001|-0.006|-0.011|-0.009|-0.018|-0.033|-0.038|-0.038|-0.041|-0.038|-0.036|-0.033|-0.028|-0.021|-0.021|-0.018|-0.021|-0.001|-0.001|-0.004|-0.004|-0.006|0.001|0.004|0.011|0.018|0.018|0.018|0.011|0.001|0.001|0.016|0.011|0.011|-0.001|-0.011|-0.014|-0.009|-0.006|-0.016|-0.028|-0.033|-0.021|-0.026|-0.028|-0.036|-0.043|-0.045|-0.048|-0.041|-0.036|-0.021|-0.031|-0.045|-0.041|-0.028|-0.018|-0.001|0.006|0.006|-0.014|-0.011|0.016|0.043|0.055|0.040|0.028|0.023|0.021|0.035|0.053|0.060|0.048|0.011|-0.011|-0.009|0.013|0.021|0.016|-0.021|-0.043|-0.045|-0.041|-0.041|-0.043|-0.043|-0.050|-0.058|-0.072|-0.065|-0.053|-0.055|-0.050|-0.050|-0.050|-0.038|-0.028|-0.026|-0.038|-0.036|-0.026|-0.001|0.021|0.038|0.021|0.008|0.026|0.043|0.038|0.048|0.033|0.040|0.038|0.031|0.031|0.021|0.026|0.021|0.008|-0.006|0.008|-0.006|-0.009|-0.026|-0.036|-0.043|-0.031|-0.038|-0.028|-0.031|-0.043|-0.043|-0.043|-0.041|-0.028|-0.021|-0.026|-0.033|-0.026|-0.011|0.004|0.004|-0.016|0.008|0.016|0.026|0.031|0.023|0.021|0.023|0.021|0.028|0.035|0.031|0.026|0.021|0.016|0.011|0.016|0.023|0.021|0.011|-0.004|-0.009|-0.011|-0.016|-0.009|-0.004|-0.016|-0.028|-0.041|-0.038|-0.031|-0.033|-0.033|-0.031|-0.023|-0.021|-0.023|-0.028|-0.018|-0.009|0.006|0.004|-0.001|0.001|-0.001|0.008|0.018|0.018|0.023|0.011|0.006|0.011|0.011|0.018|0.013|0.011|-0.006|-0.004|-0.014|-0.006|0.001|-0.011|-0.031|-0.045|-0.026|-0.026|-0.021|-0.033|-0.043|-0.048|-0.043|-0.045|-0.031|-0.026|-0.026|-0.045|-0.048|-0.036|-0.018|-0.004|0.001|0.011|-0.009|-0.014|0.008|0.035|0.053|0.057|0.038|0.023|0.026|0.035|0.040|0.060|0.048|0.016|-0.009|-0.016|0.008|0.011|0.013|-0.011|-0.038|-0.050|-0.048|-0.045|-0.033|-0.036|-0.050|-0.070|-0.072|-0.063|-0.053|-0.050|-0.055|-0.063|-0.065|-0.038|-0.028|-0.023|-0.033|-0.033|-0.031|-0.009|0.021|0.038|0.028|0.016|0.016|0.038|0.048|0.045|0.053|0.040|0.035|0.028|0.016|0.021|0.033|0.026|0.013|0.001|-0.021|-0.014|-0.011|-0.018|-0.028|-0.043|-0.045|-0.041|-0.033|-0.036|-0.036|-0.041|-0.041|-0.045|-0.028|-0.026|-0.026|-0.028|-0.026|-0.016|0.008|0.006|0.004|-0.006|0.004|0.026|0.035|0.031|0.028|0.026|0.023|0.021|0.035|0.035|0.038|0.021|0.001|0.008|0.018|0.031|0.028|0.016|-0.001|-0.004|-0.014|-0.011|-0.011|-0.009|-0.011|-0.016|-0.036|-0.033|-0.036|-0.033|-0.043|-0.038|-0.026|-0.014|-0.021|-0.021|-0.023|-0.016|-0.004|-0.001|-0.006|0.001|0.006|0.006|0.013|0.016|0.016|0.016|0.016|0.004|0.006|0.008|0.001| 0.004|-0.001|-0.004|-0.006|-0.009|-0.006|-0.014|-0.021|-0.038|-0.036|-0.028|-0.014|-0.031|-0.041|-0.053|-0.038|-0.038|-0.031|-0.026|-0.026|-0.045|-0.050|-0.028|-0.014|-0.014|-0.009|0.004|-0.011|-0.009|-0.004|0.031|0.050|0.048|0.026|0.023|0.031|0.038|0.045|0.050|0.048|0.026|-0.009|-0.011|0.006|0.016|0.018|-0.014|-0.031|-0.041|-0.043|-0.041|-0.036|-0.041|-0.050|-0.060|-0.070|-0.063|-0.048|-0.038|-0.050|-0.065|-0.055|-0.048|-0.033|-0.031|-0.031|-0.023|-0.023|-0.014|0.018|0.031|0.026|0.016|0.018|0.033|0.055|0.048|0.045|0.035|0.026|0.033|0.028|0.028|0.031|0.026|0.018|0.008|-0.004|-0.011|-0.014|-0.018|-0.028|-0.038|-0.038|-0.038|-0.038|-0.033|-0.036|-0.045|-0.041|-0.036|-0.031|-0.026|-0.018|-0.028|-0.026|-0.018|0.001|0.006|0.001|0.001|0.016|0.016|0.026|0.028|0.026|0.016|0.023|0.016|0.028|0.031|0.031|0.035|0.021|0.021|0.011|0.016|0.028|0.016|0.001|-0.009|-0.009|-0.004|-0.011|-0.001|-0.006|-0.018|-0.038|-0.036|-0.038|-0.038|-0.033|-0.031|-0.031|-0.026|-0.014|-0.026|-0.026|-0.016|-0.004|0.011|0.004|-0.001|-0.004|0.006|0.004|0.016|0.016|0.018|0.018|0.008|0.001|0.006|0.016|0.008|-0.001|-0.006|-0.011|-0.011|-0.006|-0.014|-0.016|-0.028|-0.038|-0.026|-0.021|-0.026|-0.043|-0.045|-0.038|-0.033|-0.036|-0.031|-0.028|-0.043|-0.053|-0.033|-0.018|-0.014|-0.004|-0.001|-0.011|-0.011|0.006|0.028|0.053|0.048|0.035|0.021|0.023|0.043|0.050|0.055|0.048|0.021|0.006|-0.004|0.008|0.018|0.008|-0.016|-0.031|-0.043|-0.043|-0.043|-0.045|-0.043|-0.045|-0.050|-0.072|-0.070|-0.048|-0.045|-0.050|-0.063|-0.060|-0.045|-0.021|-0.016|-0.028|-0.036|-0.038|-0.018|0.011|0.035|0.050|0.021|0.016|0.023|0.033|0.045|0.045|0.040|0.038|0.040|0.028|0.021|0.021|0.023|0.023|0.004|-0.001|-0.018|-0.009|-0.014|-0.028|-0.041|-0.045|-0.036|-0.038|-0.033|-0.038|-0.041|-0.053|-0.045|-0.031|-0.021|-0.016|-0.036|-0.026|-0.026|-0.006|0.013|0.001|-0.006|0.001|0.018|0.021|0.028|0.035|0.021|0.018|0.018|0.021|0.033|0.033|0.031|0.028|0.018|0.018|0.018|0.018|0.011|0.004|-0.006|-0.004|-0.004|-0.018|-0.016|-0.011|-0.014|-0.023|-0.033|-0.033|-0.038|-0.033|-0.038|-0.031|-0.028|-0.018|-0.018|-0.028|-0.021|-0.001|0.004|0.004|-0.009|-0.001|-0.001|0.008|0.011|0.021|0.018|0.011|0.018|0.006|0.008|0.011|0.011|-0.001|-0.004|-0.001|-0.011|-0.006|-0.014|-0.014|-0.031|-0.041|-0.028|-0.028|-0.026|-0.045|-0.053|-0.050|-0.036|-0.026|-0.038|-0.031|-0.038|-0.055|-0.041|-0.031|-0.011|-0.006|0.001|0.004|-0.018|-0.014|0.021|0.045|0.053|0.033|0.026|0.026|0.035|0.048|0.055|0.050|0.031|0.001|-0.006|0.001|0.023|0.016|-0.001|-0.018|-0.033|-0.053|-0.038|-0.036|-0.033|-0.038|-0.055|-0.063|-0.077|-0.055|-0.048|-0.045|-0.060|-0.058|-0.058|-0.033|-0.028|-0.026|-0.031|-0.031|-0.014|-0.001|0.021|0.038|0.023|0.004|0.013|0.035|0.055|0.045|0.048|0.038|0.031|0.023|0.026|0.021|0.026|0.028|0.018|-0.006|-0.016|-0.021|-0.018|-0.016|-0.031|-0.043|-0.043|-0.038|-0.033|-0.036|-0.033|-0.045|-0.045|-0.043|-0.031|-0.018|-0.026|-0.028|-0.026|-0.006|0.006|0.004|-0.001|-0.006|0.004|0.026|0.031|0.038|0.021|0.016|0.016|0.023|0.028|0.040|0.033|0.021|0.011|0.018|0.021|0.028|0.018|0.001|0.004|-0.004|-0.004|-0.009|-0.009|-0.014|-0.016|-0.028|-0.036|-0.033|-0.033|-0.043|-0.033|-0.028|-0.021|-0.023|-0.026|-0.033|-0.018|-0.011|0.001|0.008|-0.004|-0.001|0.004|0.011|0.006|0.013|0.028|0.021|0.008|0.008|0.013|0.008|0.006|-0.001|0.006|0.001|-0.004|-0.011|-0.014|-0.011|-0.028|-0.033|-0.031|-0.021|-0.026|-0.041|-0.048|-0.041|-0.038|-0.031|-0.038|-0.031|-0.036|-0.053|-0.041|-0.023|-0.004|-0.011|-0.006|-0.006|-0.011|-0.004|0.018|0.040|0.043|0.031|0.023|0.021|0.040|0.043|0.050|0.043|0.033|0.016|-0.001|0.001|0.008|0.018|0.006|-0.018|-0.036|-0.031|-0.038|-0.041|-0.043|-0.048|-0.055|-0.060|-0.063|-0.053|-0.050|-0.053|-0.065|-0.060|-0.053|-0.036|-0.018|-0.023|-0.033|-0.036|-0.038|-0.009|0.028|0.045|0.026|0.016|0.008|0.035|0.045|0.043|0.040|0.040|0.035|0.035|0.023|0.026|0.033|0.028|0.016|0.006|-0.009|-0.016|-0.009|-0.028|-0.026|-0.038|-0.041|-0.036|-0.033|-0.031|-0.041|-0.048|-0.045|-0.036|-0.023|-0.021|-0.023|-0.031|-0.043|-0.018|-0.001|0.008|0.001|0.001|0.008|0.023|0.021|0.028|0.016|0.023|0.006|0.023|0.028|0.035|0.033|0.021|0.016|0.013|0.028|0.026|0.008|0.006|-0.001|0.001|0.004|-0.018|-0.026|-0.011|-0.009|-0.016|-0.038|-0.041|-0.045|-0.036|-0.026|-0.036|-0.031|-0.028|-0.016|-0.021|-0.026|-0.011|-0.001|0.006|-0.004|0.001|-0.009|0.008|0.004|0.011|0.018|0.023|0.023|0.001|0.008|0.016|0.004|0.004|0.006|0.006|-0.004|-0.016|-0.011|-0.014|-0.023|-0.028|-0.023|-0.028|-0.023|-0.036|-0.053|-0.050|-0.033|-0.023|-0.036|-0.038|-0.031|-0.043|-0.043|-0.031|-0.006|-0.011|-0.011|-0.009|-0.004|-0.001|0.016|0.040|0.043|0.028|0.028|0.026|0.035|0.048|0.043|0.043|0.048|0.026|0.008|0.004|0.016|0.023|-0.001|-0.011|-0.033|-0.033|-0.043|-0.041|-0.043|-0.048|-0.053|-0.058|-0.070|-0.060|-0.058|-0.048|-0.055|-0.065|-0.053|-0.043|-0.021|-0.021|-0.028|-0.043|-0.041|-0.018|0.023|0.045|0.038|0.008|0.018|0.028|0.040|0.045|0.048|0.053|0.038|0.031|0.011|0.016|0.028|0.035|0.026|0.004|-0.014|-0.023|-0.014|-0.023|-0.026|-0.038|-0.041|-0.036|-0.033|-0.036|-0.045|-0.048|-0.053|-0.041|-0.028|-0.018|-0.021|-0.033|-0.026|-0.016|0.004|0.018|0.006|-0.011|0.001|0.016|0.040|0.040|0.035|0.021|0.016|0.016|0.028|0.031|0.035|0.033|0.018|0.016|0.018|0.028|0.016|0.021|0.011|-0.001|-0.018|-0.018|-0.018|-0.021|-0.011|-0.011|-0.016|-0.026|-0.045|-0.055|-0.041|-0.036|-0.018|-0.018|-0.018|-0.028|-0.023|-0.018|-0.001|0.006|0.004|0.008|0.016|0.006|0.001|0.008|0.021|0.016|0.011|0.016|0.008|0.001|-0.004|0.004|0.008|-0.004|-0.011|-0.004|-0.014|-0.016|-0.014|-0.028|-0.028|-0.028|-0.026|-0.038|-0.050|-0.053|-0.036|-0.026|-0.023|-0.036|-0.033|-0.041|-0.041|-0.026|0.008|-0.009|-0.028|-0.018|0.008|0.001|0.006|0.026|0.040|0.040|0.026|0.028|0.040|0.050|0.040|0.035|0.035|0.031|0.018|0.008|0.004|0.006|0.006|-0.011|-0.028|-0.031|-0.031|-0.036|-0.053|-0.053|-0.050|-0.058|-0.060|-0.063|-0.053|-0.045|-0.050|-0.063|-0.063|-0.043|-0.023|-0.026|-0.026|-0.031|-0.033|-0.018|0.001|0.033|0.038|0.013|0.016|0.021|0.035|0.050|0.038|0.031|0.033|0.038|0.031|0.021|0.021|0.026|0.023|0.016|-0.006|-0.014|-0.016|-0.016|-0.018|-0.028|-0.028|-0.043|-0.041|-0.041|-0.031|-0.045|-0.041|-0.041|-0.028|-0.031|-0.026|-0.028|-0.023|-0.016|-0.006|0.013|0.004|0.001|-0.014|0.013|0.031|0.031|0.028|0.021|0.016|0.013|0.021|0.038|0.035|0.040|0.021|0.008|0.016|0.026|0.028|0.001|-0.004|-0.006|-0.001|-0.009|-0.009|-0.018|-0.016|-0.016|-0.028|-0.036|-0.045|-0.041|-0.036|-0.036|-0.036|-0.033|-0.021|-0.018|-0.021|-0.023|-0.009|0.001|0.001|-0.004|-0.006|0.001|0.011|0.011|0.013|0.016|0.018|0.008|0.001|0.016|0.006|0.008|0.008|0.004|0.001|-0.018|-0.014|-0.011|-0.023|-0.021|-0.021|-0.026|-0.033|-0.031|-0.038|-0.045|-0.077|-0.033|-0.036|-0.043|-0.038|-0.038|-0.043|-0.036|-0.018|-0.014|-0.014|-0.018|-0.006|0.004|0.008|0.016|0.035|0.031|0.021|0.031|0.031|0.043|0.050|0.040|0.035|0.028|0.013|0.008|0.011|0.011|0.001|-0.016|-0.018|-0.028|-0.031|-0.031|-0.043|-0.041|-0.045|-0.050|-0.053|-0.067|-0.053|-0.050|-0.045|-0.065|-0.065|-0.053|-0.031|-0.016|-0.021|-0.041|-0.043|-0.031|0.001|0.048|0.043|0.023|0.008|0.011|0.031|0.040|0.040|0.045|0.040|0.035|0.023|0.018|0.021|0.038|0.028|0.008|-0.009|-0.006|-0.016|-0.018|-0.021|-0.028|-0.038|-0.036|-0.036|-0.033|-0.031|-0.041|-0.050|-0.031|-0.026|-0.021|-0.021|-0.038|-0.021|-0.028|-0.001|0.011|0.013|-0.004|-0.014|0.004|0.028|0.035|0.038|0.021|0.016|0.026|0.028|0.035|0.031|0.031|0.023|0.021|0.023|0.018|0.013|0.011|0.008|0.004|-0.006|-0.001|-0.011|-0.021|-0.018|-0.011|-0.023|-0.038|-0.038|-0.043|-0.043|-0.031|-0.028|-0.018|-0.014|-0.023|-0.031|-0.031|-0.014|0.023|0.016|0.001|-0.006|-0.004|0.004|0.011|0.018|0.021|0.021|0.026|0.011|-0.001|0.001|0.008|0.011|0.001|0.004|-0.016|-0.018|-0.018|-0.018|-0.014|-0.028|-0.026|-0.033|-0.038|-0.041|-0.041|-0.038|-0.031|-0.038|-0.041|-0.045|-0.033|-0.038|-0.033|-0.028|-0.016|-0.018|-0.016|0.001|-0.006|0.004|0.026|0.028|0.035|0.038|0.038|0.035|0.038|0.040|0.040|0.033|0.035|0.028|0.016|0.001|0.008|-0.006|-0.009|-0.016|-0.021|-0.028|-0.038|-0.043|-0.058|-0.050|-0.053|-0.058|-0.070|-0.050|-0.045|-0.053|-0.067|-0.060|-0.055|-0.033|-0.016|-0.028|-0.033|-0.038|-0.026|-0.009|0.028|0.038|0.035|0.008|0.008|0.026|0.035|0.048|0.045|0.035|0.035|0.033|0.023|0.021|0.031|0.035|0.011|-0.004|-0.016|-0.014|-0.018|-0.016|-0.018|-0.038|-0.036|-0.043|-0.041|-0.038|-0.041|-0.048|-0.041|-0.038|-0.031|-0.021|-0.028|-0.026|-0.026|-0.009|0.004|0.006|-0.009|-0.009|0.001|0.031|0.035|0.035|0.021|0.004|0.011|0.021|0.031|0.038|0.035|0.033|0.021|0.021|0.011|0.004|0.011|0.018|0.004|-0.009|-0.011|-0.014|-0.018|-0.011|-0.006|-0.011|-0.038|-0.041|-0.041|-0.043|-0.033|-0.033|-0.028|-0.018|-0.026|-0.036|-0.026|-0.006|-0.001|0.006|0.001|-0.006|0.016|0.008|-0.006|0.018|0.026|0.026|0.016|0.001|0.001|0.004|0.008|0.006|0.008|0.004|-0.006|-0.011|-0.021|-0.018|-0.018|-0.018|-0.031|-0.036|-0.031|-0.038|-0.048|-0.041|-0.031|-0.028|-0.036|-0.048|-0.038|-0.036|-0.033|-0.031|-0.009|-0.021|-0.026|-0.006|0.011|0.011|0.006|0.021|0.035|0.031|0.028|0.031|0.048|0.048|0.035|0.031|0.031|0.031|0.026|0.006|-0.001|-0.004|0.001|-0.011|-0.011|-0.021|-0.036|-0.038|-0.053|-0.053|-0.050|-0.038|-0.055|-0.060|-0.058|-0.050|-0.058|-0.060|-0.050|-0.041|-0.026|-0.021|-0.026|-0.041|-0.033|-0.021|0.016|0.038|0.001|0.011|0.004|0.023|0.031|0.045|0.033|0.035|0.038|0.035|0.021|0.018|0.033|0.031|0.011|0.004|-0.006|-0.016|-0.021|-0.018|-0.026|-0.038|-0.031|-0.031|-0.031|-0.033|-0.045|-0.048|-0.038|-0.033|-0.021|-0.028|-0.036|-0.036|-0.033|-0.014|0.013|0.016|-0.001|-0.006|-0.004|0.023|0.035|0.048|0.031|0.011|0.013|0.011|0.031|0.048|0.040|0.028|0.018|0.011|0.023|0.021|0.011|0.008|-0.006|-0.009|0.001|-0.006|-0.028|-0.011|-0.009|-0.014|-0.026|-0.043|-0.048|-0.043|-0.026|-0.031|-0.031|-0.023|-0.009|-0.021|-0.026|-0.028|-0.016|0.006|0.008|0.001|-0.001|0.004|0.016|0.013|0.021|0.021|0.026|0.006|-0.001|0.004|0.001|0.011|0.011|-0.001|-0.009|-0.018|-0.018|-0.021|-0.011|-0.021|-0.031|-0.031|-0.033|-0.045|-0.041|-0.036|-0.031|-0.033|-0.038|-0.045|-0.033|-0.033|-0.023|-0.026|-0.031|-0.031|-0.023|-0.001|0.006|0.018|0.018|0.026|0.021|0.038|0.038|0.050|0.040|0.040|0.040|0.035|0.038|0.038|0.026|0.016|-0.004|-0.001|-0.004|-0.016|-0.021|-0.028|-0.036|-0.048|-0.050|-0.058|-0.041|-0.050|-0.060|-0.067|-0.060|-0.060|-0.050|-0.058|-0.060|-0.048|-0.028|-0.009|-0.023|-0.043|-0.033|-0.023|0.008|0.043|0.040|0.023|0.008|0.018|0.038|0.040|0.048|0.040|0.035|0.031|0.033|0.018|0.026|0.028|0.028|0.006|-0.011|-0.011|-0.016|-0.018|-0.014|-0.028|-0.038|-0.038|-0.031|-0.038|-0.048|-0.050|-0.041|-0.031|-0.028|-0.031|-0.026|-0.036|-0.023|-0.011|0.001|0.011|-0.004|-0.009|-0.001|0.021|0.038|0.038|0.031|0.018|0.011|0.016|0.031|0.043|0.031|0.035|0.026|0.011|0.001|0.008|0.023|0.035|0.018|-0.006|-0.014|-0.011|-0.018|-0.016|-0.006|-0.011|-0.021|-0.031|-0.041|-0.050|-0.045|-0.038|-0.028|-0.018|-0.009|-0.018|-0.021|-0.026|-0.018|-0.006|0.016|0.008|0.008|0.008|0.011|0.016|0.011|0.021|0.023|0.026|0.008|-0.001|-0.001|0.004|0.016|0.008|-0.004|-0.014|-0.016|-0.018|-0.018|-0.014|-0.026|-0.023|-0.038|-0.036|-0.048|-0.041|-0.036|-0.031|-0.045|-0.045|-0.038|-0.033|-0.038|-0.038|-0.021|-0.026|-0.026|-0.009|0.016|0.023|0.008|0.011|0.026|0.038|0.043|0.035|0.038|0.040|0.031|0.023|0.028|0.040|0.035|0.011|-0.004|-0.006|-0.001|-0.006|-0.011|-0.026|-0.036|-0.043|-0.048|-0.050|-0.045|-0.045|-0.053|-0.067|-0.060|-0.055|-0.050|-0.060|-0.058|-0.048|-0.036|-0.023|-0.021|-0.038|-0.038|-0.028|-0.001|0.035|0.048|0.021|0.006|0.018|0.040|0.055|0.040|0.038|0.035|0.038|0.028|0.011|0.013|0.021|0.026|0.011|-0.009|-0.016|-0.016|-0.016|-0.016|-0.026|-0.031|-0.038|-0.036|-0.041|-0.043|-0.043|-0.045|-0.038|-0.038|-0.033|-0.031|-0.026|-0.026|-0.011|-0.006|0.004|-0.004|-0.006|-0.004|0.008|0.021|0.035|0.031|0.021|0.021|0.016|0.023|0.035|0.040|0.038|0.023|0.008|0.018|0.028|0.021|0.016|-0.006|-0.009|0.001|-0.009|-0.016|-0.011|-0.016|-0.011|-0.018|-0.028|-0.038|-0.041|-0.036|-0.033|-0.031|-0.018|-0.016|-0.021|-0.033|-0.021|-0.014|-0.001|0.001|0.004|-0.004|-0.001|0.016|0.008|0.016|0.023|0.021|0.006|-0.009|0.004|0.006|0.016|0.011|0.004|-0.006|-0.016|-0.011|-0.016|-0.011|-0.011|-0.018|-0.045|-0.045|-0.036|-0.031|-0.031|-0.038|-0.036|-0.041|-0.041|-0.036|-0.026|-0.028|-0.033|-0.031|-0.021|-0.028|-0.011|0.006|0.006|0.001|0.001|0.021|0.040|0.040|0.038|0.038|0.045|0.033|0.035|0.040|0.038|0.028|0.011|-0.004|-0.004|-0.004|-0.001|-0.014|-0.023|-0.033|-0.038|-0.048|-0.050|-0.055|-0.048|-0.058|-0.065|-0.065|-0.055|-0.045|-0.053|-0.063|-0.055|-0.041|-0.023|-0.011|-0.021|-0.041|-0.031|-0.011|0.026|0.035|0.031|0.011|0.011|0.031|0.035|0.040|0.038|0.035|0.031|0.026|0.018|0.026|0.023|0.028|0.018|-0.006|-0.014|-0.014|-0.016|-0.016|-0.023|-0.038|-0.033|-0.038|-0.036|-0.041|-0.048|-0.045|-0.031|-0.021|-0.028|-0.031|-0.036|-0.033|-0.018|0.001|0.013|0.004|-0.001|-0.009|0.004|0.031|0.038|0.038|0.021|0.018|0.023|0.031|0.035|0.035|0.035|0.026|0.023|0.021|0.011|0.011|0.008|0.011|0.018|0.006|-0.006|-0.014|-0.011|-0.016|-0.016|-0.016|-0.028|-0.033|-0.045|-0.043|-0.041|-0.036|-0.026|-0.006|-0.001|-0.021|-0.031|-0.014|-0.001|0.016|0.011|-0.009|-0.004|0.008|0.011|0.008|0.016|0.021|0.033|0.004|-0.004|0.006|0.013|0.018|0.006|0.001|-0.004|-0.028|-0.023|-0.014|-0.011|-0.018|-0.031|-0.041|-0.041|-0.026|-0.033|-0.041|-0.033|-0.038|-0.043|-0.048|-0.036|-0.028|-0.026|-0.028|-0.036|-0.018|-0.001|0.011|0.016|0.018|0.008|0.008|0.031|0.040|0.053|0.045|0.031|0.031|0.028|0.043|0.048|0.045|0.018|-0.001|-0.011|-0.009|-0.006|-0.001|-0.016|-0.036|-0.048|-0.055|-0.050|-0.043|-0.048|-0.055|-0.060|-0.067|-0.063|-0.050|-0.053|-0.053|-0.065|-0.041|-0.018|-0.018|-0.028|-0.028|-0.023|-0.014|0.011|0.038|0.043|0.028|0.011|0.021|0.040|0.040|0.048|0.040|0.035|0.035|0.031|0.018|0.021|0.031|0.018|-0.001|-0.011|-0.014|-0.016|-0.016|-0.021|-0.031|-0.038|-0.041|-0.045|-0.038|-0.048|-0.045|-0.038|-0.036|-0.031|-0.036|-0.023|-0.018|-0.011|-0.009|-0.009|0.001|-0.009|-0.001|0.004|0.026|0.035|0.038|0.028|0.006|0.001|0.023|0.035|0.038|0.048|0.031|0.018|0.016|0.011|0.011|0.016|0.018|0.011|-0.006|-0.009|-0.018|-0.011|-0.009|-0.011|-0.016|-0.026|-0.033|-0.036|-0.048|-0.038|-0.038|-0.021|-0.021|-0.021|-0.023|-0.031|-0.011|-0.001|0.016|0.011|-0.004|-0.004|0.006|0.008|0.001|0.026|0.028|0.023|0.016|-0.004|-0.006|0.008|0.021|0.016|-0.009|-0.014|-0.018|-0.021|-0.011|-0.006|-0.018|-0.038|-0.036|-0.038|-0.033|-0.026|-0.038|-0.038|-0.043|-0.045|-0.043|-0.021|-0.065|-0.038|-0.041|-0.031|-0.023|-0.016|0.004|0.016|-0.001|-0.004|0.001|0.026|0.038|0.055|0.038|0.033|0.028|0.021|0.033|0.043|0.048|\n"); -
The data contains decimal numbers. Im not sure if this is what your asking
This is the data:
"Rounds: |FBSGLAB00200104|-0.129|-0.055|-0.050|-0.041|-0.055|-0.060|-0.058|-0.053|-0.060|-0.053|-0.043|-0.036|-0.031|-0.036|-0.036|-0.036|-0.014|0.004|0.026|0.035|0.006|-0.001|0.008|0.035|0.043|0.040|0.040|0.038|0.040|0.026|0.033|0.016|0.035|0.026|0.016|-0.006|-0.014|-0.014|-0.009|-0.014|-0.021|-0.038|-0.038|-0.031|-0.031|-0.036|-0.041|-0.048|-0.045|-0.031|-0.018|-0.016|-0.016|-0.026|-0.036|-0.021|0.008|0.006|0.008|-0.009|0.001|0.016|0.031|0.031|0.028|0.023|0.021|0.021|0.026|0.031|0.026|0.023|0.013|0.011|0.016|0.011|0.021|0.016|0.016|0.006|-0.016|-0.016|-0.011|-0.016|-0.011|-0.021|-0.048|-0.041|-0.033|-0.028|-0.028|-0.033|-0.038|-0.026|-0.033|-0.023|-0.018|-0.016|-0.006|-0.009|-0.004|-0.004|0.004|0.006|0.001|0.008|0.016|0.021|0.013|0.008|0.016|0.008|0.006|0.008|0.008|0.001|-0.006|-0.016|-0.018|-0.011|-0.011|-0.021|-0.021|-0.021|-0.033|-0.043|-0.041|-0.031|-0.014|-0.031|-0.045|-0.053|-0.038|-0.033|-0.028|-0.023|-0.023|-0.018|-0.016|-0.006|-0.004|0.016|0.016|0.018|0.026|0.028|0.033|0.035|0.040|0.033|0.031|0.038|0.040|0.028|0.021|0.016|0.001|-0.006|0.001|-0.001|-0.016|-0.033|-0.043|-0.053|-0.048|-0.050|-0.043|-0.048|-0.067|-0.067|-0.060|-0.050|-0.048|-0.055|-0.045|-0.043|-0.041|-0.036|-0.038|-0.031|-0.014|-0.004|0.008|0.035|0.018|0.008|0.008|0.035|0.055|0.050|0.048|0.035|0.031|0.031|0.026|0.028|0.038|0.031|0.021|-0.004|-0.014|-0.016|-0.006|-0.004|-0.018|-0.031|-0.048|-0.045|-0.041|-0.033|-0.033|-0.043|-0.041|-0.045|-0.028|-0.021|-0.016|-0.026|-0.028|-0.018|-0.001|0.008|0.004|-0.011|0.001|0.018|0.026|0.035|0.038|0.021|0.018|0.006|0.031|0.040|0.043|0.033|0.023|0.008|0.008|0.008|0.028|0.028|0.011|-0.001|-0.009|-0.011|-0.016|-0.009|-0.018|-0.031|-0.031|-0.026|-0.023|-0.033|-0.038|-0.038|-0.038|-0.028|-0.021|-0.028|-0.021|-0.018|-0.009|-0.006|-0.004|0.008|0.001|-0.006|0.001|0.004|0.018|0.018|0.021|0.016|0.008|0.001|0.008|0.006|0.011|0.004|-0.006|-0.011|-0.011|-0.018|-0.014|-0.014|-0.028|-0.026|-0.026|-0.036|-0.043|-0.036|-0.028|-0.023|-0.043|-0.043|-0.026|-0.041|-0.045|-0.023|-0.014|-0.023|-0.038|-0.006|0.018|0.008|-0.001|0.004|0.031|0.035|0.033|0.033|0.045|0.033|0.028|0.028|0.035|0.043|0.035|-0.004|-0.001|0.006|0.008|-0.001|-0.011|-0.021|-0.033|-0.041|-0.053|-0.048|-0.038|-0.038|-0.060|-0.067|-0.065|-0.055|-0.053|-0.050|-0.048|-0.041|-0.036|-0.031|-0.026|-0.041|-0.023|-0.011|0.008|0.023|0.011|-0.004|0.008|0.038|0.045|0.048|0.048|0.045|0.033|0.023|0.018|0.021|0.045|0.040|0.021|-0.001|-0.009|-0.009|-0.009|-0.004|-0.021|-0.031|-0.041|-0.043|-0.036|-0.031|-0.041|-0.041|-0.041|-0.041|-0.033|-0.023|-0.016|-0.028|-0.041|-0.036|-0.009|0.008|0.011|0.006|-0.009|-0.004|0.026|0.023|0.038|0.026|0.018|0.011|0.021|0.035|0.038|0.038|0.021|0.006|0.008|0.018|0.028|0.021|0.001|0.001|-0.004|-0.006|-0.018|-0.009|-0.014|-0.011|-0.023|-0.028|-0.041|-0.041|-0.036|-0.038|-0.026|-0.021|-0.031|-0.028|-0.021|-0.014|-0.004|-0.004|-0.004|-0.004|0.004|0.008|0.006|0.004|0.023|0.023|0.016|0.006|0.004|0.004|0.004|0.011|0.001|0.008|-0.004|-0.004|-0.018|-0.009|-0.011|-0.018|-0.026|-0.021|-0.023|-0.033|-0.038|-0.041|-0.028|-0.028|-0.038|-0.048|-0.038|-0.031|-0.036|-0.018|-0.021|-0.021|-0.026|-0.011|0.001|0.016|0.004|0.008|0.016|0.028|0.038|0.035|0.045|0.033|0.038|0.038|0.043|0.038|0.035|0.006|-0.006|-0.009|-0.006|-0.009|-0.004|-0.016|-0.036|-0.043|-0.058|-0.041|-0.036|-0.048|-0.067|-0.065|-0.063|-0.050|-0.050|-0.058|-0.060|-0.045|-0.036|-0.028|-0.038|-0.031|-0.038|-0.011|0.016|0.021|0.031|0.008|0.006|0.023|0.035|0.050|0.043|0.045|0.043|0.023|0.026|0.028|0.038|0.038|0.021|0.004|-0.006|-0.011|-0.006|-0.006|-0.016|-0.021|-0.041|-0.055|-0.041|-0.028|-0.031|-0.038|-0.041|-0.036|-0.036|-0.023|-0.023|-0.028|-0.031|-0.033|-0.004|0.006|0.001|-0.014|-0.004|0.006|0.016|0.035|0.021|0.016|0.018|0.021|0.028|0.031|0.033|0.033|0.026|0.011|0.016|0.016|0.026|0.035|0.018|-0.004|-0.001|-0.006|-0.016|-0.018|-0.016|-0.018|-0.028|-0.033|-0.041|-0.031|-0.033|-0.038|-0.033|-0.028|-0.026|-0.023|-0.026|-0.016|-0.016|-0.001|-0.009|0.004|0.001|0.001|0.004|0.006|0.016|0.016|0.021|0.008|0.004|0.004|0.008|0.013|0.011|0.001|-0.006|-0.014|-0.004|-0.009|-0.011|-0.018|-0.026|-0.026|-0.031|-0.038|-0.036|-0.033|-0.026|-0.031|-0.038|-0.048|-0.048|-0.036|-0.028|-0.033|-0.031|-0.031|-0.026|-0.016|0.004|0.008|0.008|0.008|0.013|0.021|0.045|0.045|0.040|0.031|0.023|0.028|0.038|0.048|0.033|0.018|-0.009|-0.004|-0.001|0.008|-0.006|-0.011|-0.028|-0.045|-0.055|-0.048|-0.038|-0.033|-0.053|-0.072|-0.075|-0.055|-0.045|-0.050|-0.058|-0.048|-0.041|-0.026|-0.036|-0.038|-0.026|-0.026|0.004|0.023|0.021|0.004|0.004|0.023|0.050|0.055|0.048|0.033|0.038|0.031|0.028|0.023|0.031|0.040|0.038|0.013|-0.011|-0.014|-0.018|-0.006|-0.001|-0.016|-0.033|-0.045|-0.048|-0.041|-0.036|-0.036|-0.041|-0.043|-0.045|-0.038|-0.018|-0.018|-0.023|-0.031|-0.016|0.004|0.001|-0.001|-0.001|0.001|0.026|0.035|0.033|0.023|0.011|0.006|0.028|0.035|0.035|0.038|0.031|0.021|0.006|0.016|0.021|0.021|0.016|0.001|-0.011|-0.009|-0.006|-0.004|-0.006|-0.016|-0.021|-0.033|-0.033|-0.033|-0.038|-0.043|-0.036|-0.026|-0.028|-0.023|-0.031|-0.026|-0.011|-0.001|-0.001|0.001|-0.001|0.001|0.001|0.008|0.008|0.021|0.021|0.018|0.006|0.011|0.004|0.006|0.018|0.013|0.004|-0.011|-0.018|-0.011|0.001|-0.004|-0.021|-0.028|-0.036|-0.038|-0.041|-0.038|-0.033|-0.028|-0.038|-0.058|-0.041|-0.026|-0.031|-0.041|-0.026|-0.028|-0.033|-0.028|0.011|0.018|0.001|-0.001|0.004|0.028|0.048|0.043|0.043|0.040|0.018|0.028|0.038|0.050|0.040|0.016|-0.011|-0.014|-0.004|0.008|0.008|-0.011|-0.036|-0.041|-0.033|-0.050|-0.045|-0.031|-0.041|-0.058|-0.060|-0.060|-0.065|-0.058|-0.050|-0.045|-0.041|-0.031|-0.031|-0.031|-0.028|-0.023|-0.011|0.011|0.026|0.028|0.016|0.016|0.038|0.040|0.043|0.043|0.038|0.028|0.031|0.028|0.026|0.028|0.031|0.011|0.004|-0.006|-0.009|-0.004|-0.011|-0.021|-0.021|-0.036|-0.041|-0.036|-0.045|-0.038|-0.038|-0.048|-0.043|-0.033|-0.023|-0.018|-0.026|-0.028|-0.026|0.001|-0.004|0.004|-0.006|0.001|0.008|0.033|0.028|0.026|0.011|0.023|0.018|0.035|0.031|0.035|0.023|0.021|0.004|0.004|0.008|0.023|0.018|0.008|-0.001|-0.011|-0.011|-0.018|-0.004|-0.016|-0.023|-0.033|-0.045|-0.036|-0.036|-0.028|-0.031|-0.031|-0.021|-0.023|-0.028|-0.033|-0.023|-0.009|0.001|-0.006|-0.001|-0.001|0.008|0.006|0.011|0.016|0.026|0.013|0.004|0.008|0.011|0.011|0.011|0.001|-0.001|-0.001|-0.016|-0.006|-0.006|-0.009|-0.023|-0.033|-0.036|-0.031|-0.038|-0.038|-0.038|-0.036|-0.038|-0.050|-0.043|-0.028|-0.028|-0.031|-0.036|-0.038|-0.031|-0.011|0.011|0.018|-0.004|0.001|0.001|0.028|0.045|0.050|0.040|0.040|0.026|0.021|0.043|0.057|0.048|0.028|-0.004|-0.009|-0.006|0.013|0.001|-0.009|-0.031|-0.043|-0.055|-0.050|-0.038|-0.041|-0.045|-0.070|-0.075|-0.067|-0.058|-0.045|-0.060|-0.048|-0.050|-0.041|-0.028|-0.033|-0.031|-0.036|-0.011|0.008|0.021|0.035|0.016|0.026|0.028|0.040|0.050|0.045|0.040|0.040|0.031|0.026|0.026|0.033|0.028|0.026|0.001|-0.011|-0.018|-0.006|-0.009|-0.009|-0.028|-0.043|-0.045|-0.045|-0.031|-0.031|-0.038|-0.041|-0.041|-0.038|-0.021|-0.028|-0.021|-0.031|-0.021|-0.011|0.001|-0.004|-0.006|0.008|0.021|0.021|0.023|0.023|0.021|0.018|0.018|0.026|0.031|0.038|0.038|0.026|0.013|-0.004|0.013|0.038|0.038|0.018|-0.006|-0.018|-0.011|-0.021|-0.001|-0.011|-0.018|-0.023|-0.028|-0.036|-0.028|-0.036|-0.041|-0.036|-0.018|-0.016|-0.023|-0.033|-0.014|-0.006|-0.004|0.004|0.004|-0.004|-0.001|-0.001|0.011|0.018|0.023|0.018|0.011|-0.001|0.008|0.008|0.021|0.008|0.008|-0.009|-0.016|-0.018|-0.006|-0.006|-0.023|-0.031|-0.038|-0.038|-0.028|-0.033|-0.033|-0.033|-0.033|-0.043|-0.043|-0.023|-0.028|-0.041|-0.038|-0.026|-0.026|-0.028|-0.004|0.021|0.004|-0.006|-0.009|0.021|0.048|0.048|0.040|0.031|0.028|0.021|0.035|0.045|0.050|0.035|-0.001|-0.018|-0.004|0.008|0.016|-0.006|-0.026|-0.036|-0.055|-0.045|-0.050|-0.031|-0.045|-0.058|-0.077|-0.070|-0.055|-0.050|-0.045|-0.065|-0.050|-0.043|-0.031|-0.033|-0.031|-0.036|-0.023|-0.006|0.011|0.023|0.008|0.004|0.033|0.045|0.038|0.048|0.048|0.035|0.028|0.026|0.023|0.033|0.033|0.016|0.001|-0.009|-0.011|-0.011|-0.004|-0.014|-0.028|-0.043|-0.031|-0.041|-0.041|-0.038|-0.041|-0.038|-0.043|-0.031|-0.031|-0.028|-0.023|-0.026|-0.016|-0.011|0.001|0.001|-0.001|-0.001|0.016|0.026|0.035|0.021|0.021|0.018|0.023|0.028|0.031|0.033|0.038|0.021|0.008|0.008|0.018|0.026|0.028|0.023|0.001|-0.018|-0.016|-0.018|-0.006|-0.006|-0.016|-0.031|-0.031|-0.031|-0.028|-0.036|-0.038|-0.036|-0.028|-0.023|-0.023|-0.026|-0.023|-0.018|-0.009|-0.001|-0.001|-0.004|0.001|0.004|0.011|0.011|0.018|0.011|0.001|0.001|0.001|0.011|0.011|0.006|0.008|-0.001|-0.011|-0.011|-0.001|-0.001|-0.014|-0.036|-0.038|-0.036|-0.031|-0.036|-0.031|-0.041|-0.038|-0.038|-0.043|-0.028|-0.021|-0.033|-0.045|-0.038|-0.021|-0.023|-0.006|0.006|0.001|-0.014|-0.004|0.023|0.045|0.050|0.045|0.028|0.018|0.021|0.043|0.055|0.045|0.023|0.001|-0.014|-0.001|0.011|0.011|-0.009|-0.021|-0.041|-0.048|-0.048|-0.036|-0.033|-0.045|-0.043|-0.072|-0.067|-0.045|-0.050|-0.050|-0.058|-0.063|-0.043|-0.028|-0.018|-0.036|-0.041|-0.031|-0.014|0.018|0.031|0.033|0.023|0.016|0.033|0.048|0.043|0.048|0.048|0.040|0.028|0.033|0.023|0.023|0.021|0.008|0.004|-0.006|-0.006|-0.006|-0.018|-0.021|-0.038|-0.053|-0.043|-0.031|-0.026|-0.031|-0.041|-0.045|-0.050|-0.033|-0.016|-0.018|-0.023|-0.026|-0.018|0.001|0.001|0.004|-0.004|0.004|0.018|0.023|0.033|0.026|0.023|0.031|0.023|0.021|0.038|0.035|0.021|0.018|0.008|0.016|0.031|0.033|0.016|-0.009|-0.016|-0.014|-0.014|-0.016|-0.009|-0.011|-0.018|-0.036|-0.041|-0.028|-0.031|-0.036|-0.036|-0.031|-0.023|-0.009|-0.028|-0.028|-0.014|-0.009|0.006|0.004|-0.011|-0.001|0.001|0.016|0.008|0.021|0.021|0.021|0.004|0.016|0.011|0.026|0.004|0.001|-0.006|-0.014|-0.006|-0.006|-0.001|-0.009|-0.031|-0.036|-0.026|-0.033|-0.023|-0.036|-0.041|-0.038|-0.048|-0.048|-0.036|-0.021|-0.031|-0.036|-0.041|-0.038|-0.026|-0.009|0.018|0.001|-0.009|-0.011|0.018|0.038|0.055|0.050|0.035|0.016|0.023|0.035|0.050|0.055|0.045|0.008|-0.016|-0.004|0.011|0.018|0.004|-0.018|-0.041|-0.055|-0.050|-0.043|-0.031|-0.038|-0.053|-0.080|-0.070|-0.060|-0.048|-0.043|-0.058|-0.053|-0.045|-0.036|-0.028|-0.043|-0.036|-0.023|-0.004|0.008|0.026|0.023|0.001|0.016|0.033|0.035|0.035|0.038|0.043|0.031|0.033|0.023|0.026|0.033|0.038|0.023|0.004|-0.016|-0.023|-0.016|-0.004|-0.018|-0.026|-0.041|-0.043|-0.041|-0.031|-0.031|-0.041|-0.045|-0.041|-0.036|-0.031|-0.014|-0.021|-0.026|-0.023|-0.009|0.004|0.001|0.001|0.006|0.016|0.028|0.035|0.031|0.021|0.018|0.028|0.031|0.023|0.038|0.026|0.016|0.011|0.016|0.023|0.035|0.011|0.004|-0.016|-0.011|-0.001|-0.006|-0.011|-0.009|-0.018|-0.033|-0.038|-0.038|-0.041|-0.038|-0.036|-0.033|-0.028|-0.021|-0.021|-0.018|-0.021|-0.001|-0.001|-0.004|-0.004|-0.006|0.001|0.004|0.011|0.018|0.018|0.018|0.011|0.001|0.001|0.016|0.011|0.011|-0.001|-0.011|-0.014|-0.009|-0.006|-0.016|-0.028|-0.033|-0.021|-0.026|-0.028|-0.036|-0.043|-0.045|-0.048|-0.041|-0.036|-0.021|-0.031|-0.045|-0.041|-0.028|-0.018|-0.001|0.006|0.006|-0.014|-0.011|0.016|0.043|0.055|0.040|0.028|0.023|0.021|0.035|0.053|0.060|0.048|0.011|-0.011|-0.009|0.013|0.021|0.016|-0.021|-0.043|-0.045|-0.041|-0.041|-0.043|-0.043|-0.050|-0.058|-0.072|-0.065|-0.053|-0.055|-0.050|-0.050|-0.050|-0.038|-0.028|-0.026|-0.038|-0.036|-0.026|-0.001|0.021|0.038|0.021|0.008|0.026|0.043|0.038|0.048|0.033|0.040|0.038|0.031|0.031|0.021|0.026|0.021|0.008|-0.006|0.008|-0.006|-0.009|-0.026|-0.036|-0.043|-0.031|-0.038|-0.028|-0.031|-0.043|-0.043|-0.043|-0.041|-0.028|-0.021|-0.026|-0.033|-0.026|-0.011|0.004|0.004|-0.016|0.008|0.016|0.026|0.031|0.023|0.021|0.023|0.021|0.028|0.035|0.031|0.026|0.021|0.016|0.011|0.016|0.023|0.021|0.011|-0.004|-0.009|-0.011|-0.016|-0.009|-0.004|-0.016|-0.028|-0.041|-0.038|-0.031|-0.033|-0.033|-0.031|-0.023|-0.021|-0.023|-0.028|-0.018|-0.009|0.006|0.004|-0.001|0.001|-0.001|0.008|0.018|0.018|0.023|0.011|0.006|0.011|0.011|0.018|0.013|0.011|-0.006|-0.004|-0.014|-0.006|0.001|-0.011|-0.031|-0.045|-0.026|-0.026|-0.021|-0.033|-0.043|-0.048|-0.043|-0.045|-0.031|-0.026|-0.026|-0.045|-0.048|-0.036|-0.018|-0.004|0.001|0.011|-0.009|-0.014|0.008|0.035|0.053|0.057|0.038|0.023|0.026|0.035|0.040|0.060|0.048|0.016|-0.009|-0.016|0.008|0.011|0.013|-0.011|-0.038|-0.050|-0.048|-0.045|-0.033|-0.036|-0.050|-0.070|-0.072|-0.063|-0.053|-0.050|-0.055|-0.063|-0.065|-0.038|-0.028|-0.023|-0.033|-0.033|-0.031|-0.009|0.021|0.038|0.028|0.016|0.016|0.038|0.048|0.045|0.053|0.040|0.035|0.028|0.016|0.021|0.033|0.026|0.013|0.001|-0.021|-0.014|-0.011|-0.018|-0.028|-0.043|-0.045|-0.041|-0.033|-0.036|-0.036|-0.041|-0.041|-0.045|-0.028|-0.026|-0.026|-0.028|-0.026|-0.016|0.008|0.006|0.004|-0.006|0.004|0.026|0.035|0.031|0.028|0.026|0.023|0.021|0.035|0.035|0.038|0.021|0.001|0.008|0.018|0.031|0.028|0.016|-0.001|-0.004|-0.014|-0.011|-0.011|-0.009|-0.011|-0.016|-0.036|-0.033|-0.036|-0.033|-0.043|-0.038|-0.026|-0.014|-0.021|-0.021|-0.023|-0.016|-0.004|-0.001|-0.006|0.001|0.006|0.006|0.013|0.016|0.016|0.016|0.016|0.004|0.006|0.008|0.001| 0.004|-0.001|-0.004|-0.006|-0.009|-0.006|-0.014|-0.021|-0.038|-0.036|-0.028|-0.014|-0.031|-0.041|-0.053|-0.038|-0.038|-0.031|-0.026|-0.026|-0.045|-0.050|-0.028|-0.014|-0.014|-0.009|0.004|-0.011|-0.009|-0.004|0.031|0.050|0.048|0.026|0.023|0.031|0.038|0.045|0.050|0.048|0.026|-0.009|-0.011|0.006|0.016|0.018|-0.014|-0.031|-0.041|-0.043|-0.041|-0.036|-0.041|-0.050|-0.060|-0.070|-0.063|-0.048|-0.038|-0.050|-0.065|-0.055|-0.048|-0.033|-0.031|-0.031|-0.023|-0.023|-0.014|0.018|0.031|0.026|0.016|0.018|0.033|0.055|0.048|0.045|0.035|0.026|0.033|0.028|0.028|0.031|0.026|0.018|0.008|-0.004|-0.011|-0.014|-0.018|-0.028|-0.038|-0.038|-0.038|-0.038|-0.033|-0.036|-0.045|-0.041|-0.036|-0.031|-0.026|-0.018|-0.028|-0.026|-0.018|0.001|0.006|0.001|0.001|0.016|0.016|0.026|0.028|0.026|0.016|0.023|0.016|0.028|0.031|0.031|0.035|0.021|0.021|0.011|0.016|0.028|0.016|0.001|-0.009|-0.009|-0.004|-0.011|-0.001|-0.006|-0.018|-0.038|-0.036|-0.038|-0.038|-0.033|-0.031|-0.031|-0.026|-0.014|-0.026|-0.026|-0.016|-0.004|0.011|0.004|-0.001|-0.004|0.006|0.004|0.016|0.016|0.018|0.018|0.008|0.001|0.006|0.016|0.008|-0.001|-0.006|-0.011|-0.011|-0.006|-0.014|-0.016|-0.028|-0.038|-0.026|-0.021|-0.026|-0.043|-0.045|-0.038|-0.033|-0.036|-0.031|-0.028|-0.043|-0.053|-0.033|-0.018|-0.014|-0.004|-0.001|-0.011|-0.011|0.006|0.028|0.053|0.048|0.035|0.021|0.023|0.043|0.050|0.055|0.048|0.021|0.006|-0.004|0.008|0.018|0.008|-0.016|-0.031|-0.043|-0.043|-0.043|-0.045|-0.043|-0.045|-0.050|-0.072|-0.070|-0.048|-0.045|-0.050|-0.063|-0.060|-0.045|-0.021|-0.016|-0.028|-0.036|-0.038|-0.018|0.011|0.035|0.050|0.021|0.016|0.023|0.033|0.045|0.045|0.040|0.038|0.040|0.028|0.021|0.021|0.023|0.023|0.004|-0.001|-0.018|-0.009|-0.014|-0.028|-0.041|-0.045|-0.036|-0.038|-0.033|-0.038|-0.041|-0.053|-0.045|-0.031|-0.021|-0.016|-0.036|-0.026|-0.026|-0.006|0.013|0.001|-0.006|0.001|0.018|0.021|0.028|0.035|0.021|0.018|0.018|0.021|0.033|0.033|0.031|0.028|0.018|0.018|0.018|0.018|0.011|0.004|-0.006|-0.004|-0.004|-0.018|-0.016|-0.011|-0.014|-0.023|-0.033|-0.033|-0.038|-0.033|-0.038|-0.031|-0.028|-0.018|-0.018|-0.028|-0.021|-0.001|0.004|0.004|-0.009|-0.001|-0.001|0.008|0.011|0.021|0.018|0.011|0.018|0.006|0.008|0.011|0.011|-0.001|-0.004|-0.001|-0.011|-0.006|-0.014|-0.014|-0.031|-0.041|-0.028|-0.028|-0.026|-0.045|-0.053|-0.050|-0.036|-0.026|-0.038|-0.031|-0.038|-0.055|-0.041|-0.031|-0.011|-0.006|0.001|0.004|-0.018|-0.014|0.021|0.045|0.053|0.033|0.026|0.026|0.035|0.048|0.055|0.050|0.031|0.001|-0.006|0.001|0.023|0.016|-0.001|-0.018|-0.033|-0.053|-0.038|-0.036|-0.033|-0.038|-0.055|-0.063|-0.077|-0.055|-0.048|-0.045|-0.060|-0.058|-0.058|-0.033|-0.028|-0.026|-0.031|-0.031|-0.014|-0.001|0.021|0.038|0.023|0.004|0.013|0.035|0.055|0.045|0.048|0.038|0.031|0.023|0.026|0.021|0.026|0.028|0.018|-0.006|-0.016|-0.021|-0.018|-0.016|-0.031|-0.043|-0.043|-0.038|-0.033|-0.036|-0.033|-0.045|-0.045|-0.043|-0.031|-0.018|-0.026|-0.028|-0.026|-0.006|0.006|0.004|-0.001|-0.006|0.004|0.026|0.031|0.038|0.021|0.016|0.016|0.023|0.028|0.040|0.033|0.021|0.011|0.018|0.021|0.028|0.018|0.001|0.004|-0.004|-0.004|-0.009|-0.009|-0.014|-0.016|-0.028|-0.036|-0.033|-0.033|-0.043|-0.033|-0.028|-0.021|-0.023|-0.026|-0.033|-0.018|-0.011|0.001|0.008|-0.004|-0.001|0.004|0.011|0.006|0.013|0.028|0.021|0.008|0.008|0.013|0.008|0.006|-0.001|0.006|0.001|-0.004|-0.011|-0.014|-0.011|-0.028|-0.033|-0.031|-0.021|-0.026|-0.041|-0.048|-0.041|-0.038|-0.031|-0.038|-0.031|-0.036|-0.053|-0.041|-0.023|-0.004|-0.011|-0.006|-0.006|-0.011|-0.004|0.018|0.040|0.043|0.031|0.023|0.021|0.040|0.043|0.050|0.043|0.033|0.016|-0.001|0.001|0.008|0.018|0.006|-0.018|-0.036|-0.031|-0.038|-0.041|-0.043|-0.048|-0.055|-0.060|-0.063|-0.053|-0.050|-0.053|-0.065|-0.060|-0.053|-0.036|-0.018|-0.023|-0.033|-0.036|-0.038|-0.009|0.028|0.045|0.026|0.016|0.008|0.035|0.045|0.043|0.040|0.040|0.035|0.035|0.023|0.026|0.033|0.028|0.016|0.006|-0.009|-0.016|-0.009|-0.028|-0.026|-0.038|-0.041|-0.036|-0.033|-0.031|-0.041|-0.048|-0.045|-0.036|-0.023|-0.021|-0.023|-0.031|-0.043|-0.018|-0.001|0.008|0.001|0.001|0.008|0.023|0.021|0.028|0.016|0.023|0.006|0.023|0.028|0.035|0.033|0.021|0.016|0.013|0.028|0.026|0.008|0.006|-0.001|0.001|0.004|-0.018|-0.026|-0.011|-0.009|-0.016|-0.038|-0.041|-0.045|-0.036|-0.026|-0.036|-0.031|-0.028|-0.016|-0.021|-0.026|-0.011|-0.001|0.006|-0.004|0.001|-0.009|0.008|0.004|0.011|0.018|0.023|0.023|0.001|0.008|0.016|0.004|0.004|0.006|0.006|-0.004|-0.016|-0.011|-0.014|-0.023|-0.028|-0.023|-0.028|-0.023|-0.036|-0.053|-0.050|-0.033|-0.023|-0.036|-0.038|-0.031|-0.043|-0.043|-0.031|-0.006|-0.011|-0.011|-0.009|-0.004|-0.001|0.016|0.040|0.043|0.028|0.028|0.026|0.035|0.048|0.043|0.043|0.048|0.026|0.008|0.004|0.016|0.023|-0.001|-0.011|-0.033|-0.033|-0.043|-0.041|-0.043|-0.048|-0.053|-0.058|-0.070|-0.060|-0.058|-0.048|-0.055|-0.065|-0.053|-0.043|-0.021|-0.021|-0.028|-0.043|-0.041|-0.018|0.023|0.045|0.038|0.008|0.018|0.028|0.040|0.045|0.048|0.053|0.038|0.031|0.011|0.016|0.028|0.035|0.026|0.004|-0.014|-0.023|-0.014|-0.023|-0.026|-0.038|-0.041|-0.036|-0.033|-0.036|-0.045|-0.048|-0.053|-0.041|-0.028|-0.018|-0.021|-0.033|-0.026|-0.016|0.004|0.018|0.006|-0.011|0.001|0.016|0.040|0.040|0.035|0.021|0.016|0.016|0.028|0.031|0.035|0.033|0.018|0.016|0.018|0.028|0.016|0.021|0.011|-0.001|-0.018|-0.018|-0.018|-0.021|-0.011|-0.011|-0.016|-0.026|-0.045|-0.055|-0.041|-0.036|-0.018|-0.018|-0.018|-0.028|-0.023|-0.018|-0.001|0.006|0.004|0.008|0.016|0.006|0.001|0.008|0.021|0.016|0.011|0.016|0.008|0.001|-0.004|0.004|0.008|-0.004|-0.011|-0.004|-0.014|-0.016|-0.014|-0.028|-0.028|-0.028|-0.026|-0.038|-0.050|-0.053|-0.036|-0.026|-0.023|-0.036|-0.033|-0.041|-0.041|-0.026|0.008|-0.009|-0.028|-0.018|0.008|0.001|0.006|0.026|0.040|0.040|0.026|0.028|0.040|0.050|0.040|0.035|0.035|0.031|0.018|0.008|0.004|0.006|0.006|-0.011|-0.028|-0.031|-0.031|-0.036|-0.053|-0.053|-0.050|-0.058|-0.060|-0.063|-0.053|-0.045|-0.050|-0.063|-0.063|-0.043|-0.023|-0.026|-0.026|-0.031|-0.033|-0.018|0.001|0.033|0.038|0.013|0.016|0.021|0.035|0.050|0.038|0.031|0.033|0.038|0.031|0.021|0.021|0.026|0.023|0.016|-0.006|-0.014|-0.016|-0.016|-0.018|-0.028|-0.028|-0.043|-0.041|-0.041|-0.031|-0.045|-0.041|-0.041|-0.028|-0.031|-0.026|-0.028|-0.023|-0.016|-0.006|0.013|0.004|0.001|-0.014|0.013|0.031|0.031|0.028|0.021|0.016|0.013|0.021|0.038|0.035|0.040|0.021|0.008|0.016|0.026|0.028|0.001|-0.004|-0.006|-0.001|-0.009|-0.009|-0.018|-0.016|-0.016|-0.028|-0.036|-0.045|-0.041|-0.036|-0.036|-0.036|-0.033|-0.021|-0.018|-0.021|-0.023|-0.009|0.001|0.001|-0.004|-0.006|0.001|0.011|0.011|0.013|0.016|0.018|0.008|0.001|0.016|0.006|0.008|0.008|0.004|0.001|-0.018|-0.014|-0.011|-0.023|-0.021|-0.021|-0.026|-0.033|-0.031|-0.038|-0.045|-0.077|-0.033|-0.036|-0.043|-0.038|-0.038|-0.043|-0.036|-0.018|-0.014|-0.014|-0.018|-0.006|0.004|0.008|0.016|0.035|0.031|0.021|0.031|0.031|0.043|0.050|0.040|0.035|0.028|0.013|0.008|0.011|0.011|0.001|-0.016|-0.018|-0.028|-0.031|-0.031|-0.043|-0.041|-0.045|-0.050|-0.053|-0.067|-0.053|-0.050|-0.045|-0.065|-0.065|-0.053|-0.031|-0.016|-0.021|-0.041|-0.043|-0.031|0.001|0.048|0.043|0.023|0.008|0.011|0.031|0.040|0.040|0.045|0.040|0.035|0.023|0.018|0.021|0.038|0.028|0.008|-0.009|-0.006|-0.016|-0.018|-0.021|-0.028|-0.038|-0.036|-0.036|-0.033|-0.031|-0.041|-0.050|-0.031|-0.026|-0.021|-0.021|-0.038|-0.021|-0.028|-0.001|0.011|0.013|-0.004|-0.014|0.004|0.028|0.035|0.038|0.021|0.016|0.026|0.028|0.035|0.031|0.031|0.023|0.021|0.023|0.018|0.013|0.011|0.008|0.004|-0.006|-0.001|-0.011|-0.021|-0.018|-0.011|-0.023|-0.038|-0.038|-0.043|-0.043|-0.031|-0.028|-0.018|-0.014|-0.023|-0.031|-0.031|-0.014|0.023|0.016|0.001|-0.006|-0.004|0.004|0.011|0.018|0.021|0.021|0.026|0.011|-0.001|0.001|0.008|0.011|0.001|0.004|-0.016|-0.018|-0.018|-0.018|-0.014|-0.028|-0.026|-0.033|-0.038|-0.041|-0.041|-0.038|-0.031|-0.038|-0.041|-0.045|-0.033|-0.038|-0.033|-0.028|-0.016|-0.018|-0.016|0.001|-0.006|0.004|0.026|0.028|0.035|0.038|0.038|0.035|0.038|0.040|0.040|0.033|0.035|0.028|0.016|0.001|0.008|-0.006|-0.009|-0.016|-0.021|-0.028|-0.038|-0.043|-0.058|-0.050|-0.053|-0.058|-0.070|-0.050|-0.045|-0.053|-0.067|-0.060|-0.055|-0.033|-0.016|-0.028|-0.033|-0.038|-0.026|-0.009|0.028|0.038|0.035|0.008|0.008|0.026|0.035|0.048|0.045|0.035|0.035|0.033|0.023|0.021|0.031|0.035|0.011|-0.004|-0.016|-0.014|-0.018|-0.016|-0.018|-0.038|-0.036|-0.043|-0.041|-0.038|-0.041|-0.048|-0.041|-0.038|-0.031|-0.021|-0.028|-0.026|-0.026|-0.009|0.004|0.006|-0.009|-0.009|0.001|0.031|0.035|0.035|0.021|0.004|0.011|0.021|0.031|0.038|0.035|0.033|0.021|0.021|0.011|0.004|0.011|0.018|0.004|-0.009|-0.011|-0.014|-0.018|-0.011|-0.006|-0.011|-0.038|-0.041|-0.041|-0.043|-0.033|-0.033|-0.028|-0.018|-0.026|-0.036|-0.026|-0.006|-0.001|0.006|0.001|-0.006|0.016|0.008|-0.006|0.018|0.026|0.026|0.016|0.001|0.001|0.004|0.008|0.006|0.008|0.004|-0.006|-0.011|-0.021|-0.018|-0.018|-0.018|-0.031|-0.036|-0.031|-0.038|-0.048|-0.041|-0.031|-0.028|-0.036|-0.048|-0.038|-0.036|-0.033|-0.031|-0.009|-0.021|-0.026|-0.006|0.011|0.011|0.006|0.021|0.035|0.031|0.028|0.031|0.048|0.048|0.035|0.031|0.031|0.031|0.026|0.006|-0.001|-0.004|0.001|-0.011|-0.011|-0.021|-0.036|-0.038|-0.053|-0.053|-0.050|-0.038|-0.055|-0.060|-0.058|-0.050|-0.058|-0.060|-0.050|-0.041|-0.026|-0.021|-0.026|-0.041|-0.033|-0.021|0.016|0.038|0.001|0.011|0.004|0.023|0.031|0.045|0.033|0.035|0.038|0.035|0.021|0.018|0.033|0.031|0.011|0.004|-0.006|-0.016|-0.021|-0.018|-0.026|-0.038|-0.031|-0.031|-0.031|-0.033|-0.045|-0.048|-0.038|-0.033|-0.021|-0.028|-0.036|-0.036|-0.033|-0.014|0.013|0.016|-0.001|-0.006|-0.004|0.023|0.035|0.048|0.031|0.011|0.013|0.011|0.031|0.048|0.040|0.028|0.018|0.011|0.023|0.021|0.011|0.008|-0.006|-0.009|0.001|-0.006|-0.028|-0.011|-0.009|-0.014|-0.026|-0.043|-0.048|-0.043|-0.026|-0.031|-0.031|-0.023|-0.009|-0.021|-0.026|-0.028|-0.016|0.006|0.008|0.001|-0.001|0.004|0.016|0.013|0.021|0.021|0.026|0.006|-0.001|0.004|0.001|0.011|0.011|-0.001|-0.009|-0.018|-0.018|-0.021|-0.011|-0.021|-0.031|-0.031|-0.033|-0.045|-0.041|-0.036|-0.031|-0.033|-0.038|-0.045|-0.033|-0.033|-0.023|-0.026|-0.031|-0.031|-0.023|-0.001|0.006|0.018|0.018|0.026|0.021|0.038|0.038|0.050|0.040|0.040|0.040|0.035|0.038|0.038|0.026|0.016|-0.004|-0.001|-0.004|-0.016|-0.021|-0.028|-0.036|-0.048|-0.050|-0.058|-0.041|-0.050|-0.060|-0.067|-0.060|-0.060|-0.050|-0.058|-0.060|-0.048|-0.028|-0.009|-0.023|-0.043|-0.033|-0.023|0.008|0.043|0.040|0.023|0.008|0.018|0.038|0.040|0.048|0.040|0.035|0.031|0.033|0.018|0.026|0.028|0.028|0.006|-0.011|-0.011|-0.016|-0.018|-0.014|-0.028|-0.038|-0.038|-0.031|-0.038|-0.048|-0.050|-0.041|-0.031|-0.028|-0.031|-0.026|-0.036|-0.023|-0.011|0.001|0.011|-0.004|-0.009|-0.001|0.021|0.038|0.038|0.031|0.018|0.011|0.016|0.031|0.043|0.031|0.035|0.026|0.011|0.001|0.008|0.023|0.035|0.018|-0.006|-0.014|-0.011|-0.018|-0.016|-0.006|-0.011|-0.021|-0.031|-0.041|-0.050|-0.045|-0.038|-0.028|-0.018|-0.009|-0.018|-0.021|-0.026|-0.018|-0.006|0.016|0.008|0.008|0.008|0.011|0.016|0.011|0.021|0.023|0.026|0.008|-0.001|-0.001|0.004|0.016|0.008|-0.004|-0.014|-0.016|-0.018|-0.018|-0.014|-0.026|-0.023|-0.038|-0.036|-0.048|-0.041|-0.036|-0.031|-0.045|-0.045|-0.038|-0.033|-0.038|-0.038|-0.021|-0.026|-0.026|-0.009|0.016|0.023|0.008|0.011|0.026|0.038|0.043|0.035|0.038|0.040|0.031|0.023|0.028|0.040|0.035|0.011|-0.004|-0.006|-0.001|-0.006|-0.011|-0.026|-0.036|-0.043|-0.048|-0.050|-0.045|-0.045|-0.053|-0.067|-0.060|-0.055|-0.050|-0.060|-0.058|-0.048|-0.036|-0.023|-0.021|-0.038|-0.038|-0.028|-0.001|0.035|0.048|0.021|0.006|0.018|0.040|0.055|0.040|0.038|0.035|0.038|0.028|0.011|0.013|0.021|0.026|0.011|-0.009|-0.016|-0.016|-0.016|-0.016|-0.026|-0.031|-0.038|-0.036|-0.041|-0.043|-0.043|-0.045|-0.038|-0.038|-0.033|-0.031|-0.026|-0.026|-0.011|-0.006|0.004|-0.004|-0.006|-0.004|0.008|0.021|0.035|0.031|0.021|0.021|0.016|0.023|0.035|0.040|0.038|0.023|0.008|0.018|0.028|0.021|0.016|-0.006|-0.009|0.001|-0.009|-0.016|-0.011|-0.016|-0.011|-0.018|-0.028|-0.038|-0.041|-0.036|-0.033|-0.031|-0.018|-0.016|-0.021|-0.033|-0.021|-0.014|-0.001|0.001|0.004|-0.004|-0.001|0.016|0.008|0.016|0.023|0.021|0.006|-0.009|0.004|0.006|0.016|0.011|0.004|-0.006|-0.016|-0.011|-0.016|-0.011|-0.011|-0.018|-0.045|-0.045|-0.036|-0.031|-0.031|-0.038|-0.036|-0.041|-0.041|-0.036|-0.026|-0.028|-0.033|-0.031|-0.021|-0.028|-0.011|0.006|0.006|0.001|0.001|0.021|0.040|0.040|0.038|0.038|0.045|0.033|0.035|0.040|0.038|0.028|0.011|-0.004|-0.004|-0.004|-0.001|-0.014|-0.023|-0.033|-0.038|-0.048|-0.050|-0.055|-0.048|-0.058|-0.065|-0.065|-0.055|-0.045|-0.053|-0.063|-0.055|-0.041|-0.023|-0.011|-0.021|-0.041|-0.031|-0.011|0.026|0.035|0.031|0.011|0.011|0.031|0.035|0.040|0.038|0.035|0.031|0.026|0.018|0.026|0.023|0.028|0.018|-0.006|-0.014|-0.014|-0.016|-0.016|-0.023|-0.038|-0.033|-0.038|-0.036|-0.041|-0.048|-0.045|-0.031|-0.021|-0.028|-0.031|-0.036|-0.033|-0.018|0.001|0.013|0.004|-0.001|-0.009|0.004|0.031|0.038|0.038|0.021|0.018|0.023|0.031|0.035|0.035|0.035|0.026|0.023|0.021|0.011|0.011|0.008|0.011|0.018|0.006|-0.006|-0.014|-0.011|-0.016|-0.016|-0.016|-0.028|-0.033|-0.045|-0.043|-0.041|-0.036|-0.026|-0.006|-0.001|-0.021|-0.031|-0.014|-0.001|0.016|0.011|-0.009|-0.004|0.008|0.011|0.008|0.016|0.021|0.033|0.004|-0.004|0.006|0.013|0.018|0.006|0.001|-0.004|-0.028|-0.023|-0.014|-0.011|-0.018|-0.031|-0.041|-0.041|-0.026|-0.033|-0.041|-0.033|-0.038|-0.043|-0.048|-0.036|-0.028|-0.026|-0.028|-0.036|-0.018|-0.001|0.011|0.016|0.018|0.008|0.008|0.031|0.040|0.053|0.045|0.031|0.031|0.028|0.043|0.048|0.045|0.018|-0.001|-0.011|-0.009|-0.006|-0.001|-0.016|-0.036|-0.048|-0.055|-0.050|-0.043|-0.048|-0.055|-0.060|-0.067|-0.063|-0.050|-0.053|-0.053|-0.065|-0.041|-0.018|-0.018|-0.028|-0.028|-0.023|-0.014|0.011|0.038|0.043|0.028|0.011|0.021|0.040|0.040|0.048|0.040|0.035|0.035|0.031|0.018|0.021|0.031|0.018|-0.001|-0.011|-0.014|-0.016|-0.016|-0.021|-0.031|-0.038|-0.041|-0.045|-0.038|-0.048|-0.045|-0.038|-0.036|-0.031|-0.036|-0.023|-0.018|-0.011|-0.009|-0.009|0.001|-0.009|-0.001|0.004|0.026|0.035|0.038|0.028|0.006|0.001|0.023|0.035|0.038|0.048|0.031|0.018|0.016|0.011|0.011|0.016|0.018|0.011|-0.006|-0.009|-0.018|-0.011|-0.009|-0.011|-0.016|-0.026|-0.033|-0.036|-0.048|-0.038|-0.038|-0.021|-0.021|-0.021|-0.023|-0.031|-0.011|-0.001|0.016|0.011|-0.004|-0.004|0.006|0.008|0.001|0.026|0.028|0.023|0.016|-0.004|-0.006|0.008|0.021|0.016|-0.009|-0.014|-0.018|-0.021|-0.011|-0.006|-0.018|-0.038|-0.036|-0.038|-0.033|-0.026|-0.038|-0.038|-0.043|-0.045|-0.043|-0.021|-0.065|-0.038|-0.041|-0.031|-0.023|-0.016|0.004|0.016|-0.001|-0.004|0.001|0.026|0.038|0.055|0.038|0.033|0.028|0.021|0.033|0.043|0.048|\n");@DemonLord This is not JSON, no wonder parsing fails...